|
|
@ -12,8 +12,7 @@ public class Playfield { |
|
|
|
public Cell[][] cells; |
|
|
|
private int bombAmount; |
|
|
|
private int cellsFlooded = 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Playfield(MinesweeperGame _MsG, int _Size, int _bombAmount) { |
|
|
|
MsG = _MsG; |
|
|
|
Size = _Size; |
|
|
@ -65,7 +64,6 @@ public class Playfield { |
|
|
|
} |
|
|
|
|
|
|
|
public void reset() { |
|
|
|
JOptionPane.showMessageDialog(MsG,"KABOOM! Try again!"); |
|
|
|
cellsFlooded = 0; |
|
|
|
for (int i = 0; i < Size; i++) { |
|
|
|
for (int j = 0; j < Size; j++) { |
|
|
@ -126,15 +124,15 @@ public class Playfield { |
|
|
|
|
|
|
|
cells[row][column].update(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void cellFlooded() { |
|
|
|
cellsFlooded++; |
|
|
|
if(cellsFlooded >= Size * Size - bombAmount) { |
|
|
|
if (cellsFlooded >= Size * Size - bombAmount) { |
|
|
|
JOptionPane.showMessageDialog(MsG, "You won, congratulations!"); |
|
|
|
System.exit(0); |
|
|
|
reset(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void cellDried() { |
|
|
|
cellsFlooded--; |
|
|
|
} |