-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminesweeper.java
70 lines (55 loc) · 2.01 KB
/
minesweeper.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import java.util.*;
import org.w3c.dom.events.MouseEvent;
import java.awt.event.MouseListener;
import java.io.*;
import java.io.IOException;
public class minesweeper{
public static minesweeper game = new minesweeper();
private static Board gameBoard;
public static boolean FM = true;
private static GeometricShape shape;
public static boolean flagMode = false;
public static void main(String[] args) throws IOException{
Scanner input = new Scanner(System.in);
System.out.print("How many squares wide do you want the board to be: ");
int width = input.nextInt();
gameBoard = new Board(width, width);
shape = new GeometricShape(width);
shape.setW(width);
shape.MyPanel();
}
public void handleInput(){
//System.out.println(GeometricShape.getW());
int x = GeometricShape.getxvalue();
int y = GeometricShape.getyvalue();
int col = (int)(x-10)/50;
int row = (int)(y-130)/50;
if(FM == true){
gameBoard.InitNewBoard(row, col);
gameBoard.exposeSpace(row, col);
FM = false;
} else{
if(x >= 200 && x <= 260 && y >= 50 && y <= 110){
flagMode = !flagMode;
System.out.println(flagMode);
} else{
if(flagMode){
if(gameBoard.coverBoard[row][col].equals("F")){
gameBoard.unFlag(row, col);
} else if(gameBoard.coverBoard[row][col].equals("#")){
gameBoard.flag(row, col);
}
} else{
gameBoard.exposeSpace(row, col);
//if(guess > 0){
// shape.setpreviousguess(guess);
//}
}
}
}
shape.frame.getContentPane().repaint();
gameBoard.printBoard();
System.out.print(gameBoard);
System.out.println(row + " " + col);
}
}