Browse Source

Merge commit '896413211c40fcb697d435dca1435d5e0709e27f' into HEAD

Minesweeper_Game
Jenkins 2 years ago
parent
commit
42af096d06
  1. 13
      src/main/java/Minesweeper/Cell.java

13
src/main/java/Minesweeper/Cell.java

@ -18,7 +18,7 @@ public class Cell extends JButton {
private static final Color FLAGCOLOR = Color.RED; private static final Color FLAGCOLOR = Color.RED;
private static final Color FLOODEDCOLOR = Color.LIGHT_GRAY; private static final Color FLOODEDCOLOR = Color.LIGHT_GRAY;
private static final Color HIDDENCOLOR = Color.GRAY;
private static final Color HIDDENCOLOR = Color.WHITE;
private static final Color MINECOLOR = Color.BLACK; private static final Color MINECOLOR = Color.BLACK;
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private Playfield playfield; private Playfield playfield;
@ -33,7 +33,7 @@ public class Cell extends JButton {
cord = _cord; cord = _cord;
playfield = _playfield; playfield = _playfield;
setBackground(Color.white);
setBackground(HIDDENCOLOR);
addActionListener(new ActionListener() { addActionListener(new ActionListener() {
@Override @Override
public void actionPerformed(ActionEvent e) { public void actionPerformed(ActionEvent e) {
@ -72,11 +72,9 @@ public class Cell extends JButton {
if (flagged) { if (flagged) {
flagged = false; flagged = false;
setBackground(HIDDENCOLOR);
if (type == CellType.Number) { if (type == CellType.Number) {
setBackground(HIDDENCOLOR);
playfield.cellDried(); playfield.cellDried();
} else {
setBackground(MINECOLOR);
} }
} else { } else {
@ -91,7 +89,9 @@ public class Cell extends JButton {
public void reveal() { public void reveal() {
if (type == CellType.Number) { if (type == CellType.Number) {
setText(String.valueOf(value));
if(value > 0) {
setText(String.valueOf(value));
}
} else { } else {
setBackground(MINECOLOR); setBackground(MINECOLOR);
} }
@ -104,6 +104,7 @@ public class Cell extends JButton {
setBackground(FLOODEDCOLOR); setBackground(FLOODEDCOLOR);
setEnabled(false); setEnabled(false);
reveal();
playfield.cellFlooded(); playfield.cellFlooded();
if (value == 0) { if (value == 0) {

Loading…
Cancel
Save