|
|
@ -1,5 +1,6 @@ |
|
|
|
package Minesweeper; |
|
|
|
|
|
|
|
import java.awt.Color; |
|
|
|
import java.awt.Point; |
|
|
|
|
|
|
|
import javax.swing.JOptionPane; |
|
|
@ -12,8 +13,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; |
|
|
@ -44,11 +44,9 @@ public class Playfield { |
|
|
|
cells[i][j].setBounds(j * CELLSIZE + (MsG.WIDTH / 2 - Size * CELLSIZE / 2), |
|
|
|
i * CELLSIZE + (MsG.HEIGTH / 2 - Size * CELLSIZE / 2), CELLSIZE, CELLSIZE); |
|
|
|
MsG.add(cells[i][j]); |
|
|
|
|
|
|
|
for (int k = 0; k < bPlacement.length; k++) { |
|
|
|
if (bPlacement[k] == i * Size + j) { |
|
|
|
cells[i][j].type = CellType.Bomb; |
|
|
|
cells[i][j].update(); |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
@ -62,10 +60,10 @@ public class Playfield { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
MsG.repaint(); |
|
|
|
} |
|
|
|
|
|
|
|
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++) { |
|
|
@ -124,17 +122,16 @@ 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--; |
|
|
|
} |