-
Notifications
You must be signed in to change notification settings - Fork 627
/
Copy pathmineswepper game.java
143 lines (121 loc) · 3.69 KB
/
mineswepper game.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import java.util.Random;
import java.util.Scanner;
public class Minesweeper {
private static final int SIZE = 10;
private static final int MINES = 15;
private char[][] board;
private boolean[][] mines;
private boolean[][] revealed;
private boolean gameOver;
public Minesweeper() {
board = new char[SIZE][SIZE];
mines = new boolean[SIZE][SIZE];
revealed = new boolean[SIZE][SIZE];
gameOver = false;
}
public void initialize() {
// Initialize the board and randomly place mines
for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < SIZE; j++) {
board[i][j] = ' ';
mines[i][j] = false;
revealed[i][j] = false;
}
}
placeMines();
}
public void placeMines() {
Random random = new Random();
int minesPlaced = 0;
while (minesPlaced < MINES) {
int x = random.nextInt(SIZE);
int y = random.nextInt(SIZE);
if (!mines[x][y]) {
mines[x][y] = true;
minesPlaced++;
}
}
}
public void printBoard() {
System.out.println("Minesweeper");
System.out.print(" ");
for (int i = 0; i < SIZE; i++) {
System.out.print(i + " ");
}
System.out.println();
for (int i = 0; i < SIZE; i++) {
System.out.print(i + ": ");
for (int j = 0; j < SIZE; j++) {
char cell = revealed[i][j] ? board[i][j] : ' ';
System.out.print(cell + " ");
}
System.out.println();
}
}
public void revealCell(int x, int y) {
if (x < 0 || x >= SIZE || y < 0 || y >= SIZE || revealed[x][y] || gameOver) {
return;
}
if (mines[x][y]) {
gameOver = true;
return;
}
revealed[x][y] = true;
int count = countMinesAround(x, y);
if (count > 0) {
board[x][y] = (char) (count + '0');
} else {
for (int i = -1; i <= 1; i++) {
for (int j = -1; j <= 1; j++) {
revealCell(x + i, y + j);
}
}
}
}
public int countMinesAround(int x, int y) {
int count = 0;
for (int i = -1; i <= 1; i++) {
for (int j = -1; j <= 1; j++) {
int nx = x + i;
int ny = y + j;
if (nx >= 0 && nx < SIZE && ny >= 0 && ny < SIZE && mines[nx][ny]) {
count++;
}
}
}
return count;
}
public boolean isGameOver() {
return gameOver;
}
public boolean isGameWon() {
int unrevealedCells = 0;
for (int i = 0; i < SIZE; i++) {
for (int j = 0; j < SIZE; j++) {
if (!revealed[i][j]) {
unrevealedCells++;
}
}
}
return unrevealedCells == MINES;
}
public static void main(String[] args) {
Minesweeper game = new Minesweeper();
game.initialize();
Scanner scanner = new Scanner(System.in);
while (!game.isGameOver() && !game.isGameWon()) {
game.printBoard();
System.out.print("Enter row and column (e.g., '1 2'): ");
int x = scanner.nextInt();
int y = scanner.nextInt();
game.revealCell(x, y);
}
game.printBoard();
if (game.isGameWon()) {
System.out.println("You won! Congratulations!");
} else {
System.out.println("Game over! You hit a mine!");
}
scanner.close();
}
}