-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmine.cpp
203 lines (161 loc) · 5.74 KB
/
mine.cpp
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// Simple console Minesweeper game
// It is also working with (Free)DOS now! Check out CM_DOS.CPP and CM_DOS.EXE
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
// Variables specific for a field in the board
class Field {
public:
bool has_bomb = false;
bool is_uncovered = false;
int bombs_near = 0;
};
bool gameplay = true; // Will be switched to false if player steps on a mine, which will end a game (end process)
const int board_x = 8;
const int board_y = 8;
const int bombs_to_place = 10;
int bombs_placed = 0;
int uncovered_fields = 0;
Field board[board_y][board_x]; // Arrays like that always come with y first
void prepare_board() {
cout << "Placing mines..." << endl;
cout << bombs_to_place - bombs_placed << " mines left to place" << endl;
while(bombs_placed < bombs_to_place) {
srand(time(0) - rand()); // Set seed for the pseudorandom number generator
int rx = rand() % 8;
srand(time(0) + rand());
int ry = rand() % 8;
if(!board[ry][rx].has_bomb) { // In order to prevent mine overriding, not the best solution but works
board[ry][rx].has_bomb = true;
bombs_placed++;
cout << bombs_to_place - bombs_placed << " mines left to place" << endl;
}
}
cout << "Mines placed" << endl << endl;
cout << "Setting up information about nearest mines" << endl;
for(int x = 0; x < board_x; x++) {
for(int y = 0; y < board_y; y++) {
for(int nx = -1; nx <= 1; nx++) {
for(int ny = -1; ny <=1; ny++) {
if(x + nx >= 0 && x + nx <= 7 && y + ny >= 0 && y + ny <= 7) { // Skip incorrect values
if(board[y + ny][x + nx].has_bomb) {
board[y][x].bombs_near++;
}
}
}
}
}
}
cout << "Mines information has been set up - Starting game" << endl << endl;
}
void draw_board(string with_bombs = "") {
cout << " a b c d e f g h" << endl;
for(int x = 0; x < board_x; x++) {
cout << x + 1 << " ";
for(int y = 0; y < board_y; y++) {
if(board[y][x].has_bomb && with_bombs == "WITH_BOMBS") { // I could also add a bool but I wanted to make the code more readable
cout << "[*] ";
} else if(board[y][x].is_uncovered) {
cout << "[" << board[y][x].bombs_near << "] ";
} else {
cout << "[ ] ";
}
}
cout << endl << endl;
}
}
void game_over() {
cout << "Game Over!" << endl << endl;
draw_board("WITH_BOMBS");
cout << endl << "You have uncovered " << uncovered_fields << " fields." << endl;
gameplay = false;
}
void win() {
cout << "Win!" << endl << endl;
draw_board("WITH_BOMBS");
cout << endl << "You have uncovered all fields without stepping on a mine!" << endl;
gameplay = false;
}
void uncover_field(int x, int y) {
if(board[y][x].has_bomb) {
game_over();
} else {
if(!board[y][x].is_uncovered) {
board[y][x].is_uncovered = true;
uncovered_fields++;
if(board[y][x].bombs_near == 0) {
for(int nx = -1; nx <= 1; nx++) {
for(int ny = -1; ny <=1; ny++) {
if(x + nx >= 0 && x + nx <= 7 && y + ny >= 0 && y + ny <= 7) { // Skip incorrect values
uncover_field(x + nx, y + ny);
}
}
}
}
}
}
}
int main() {
prepare_board();
cout << "Simple Minesweeper Game" << endl << endl;
while(gameplay) {
draw_board();
char cx = '-';
int x = -1;
int y = -1;
string choice;
while(true) {
cout << "Choose a field to uncover (e.g. a1): ";
getline(cin, choice);
if(isdigit(choice[1])) {
cx = choice[1];
y = cx - '0';
y--;
cx = choice[0];
cx = tolower(cx);
switch(cx) { // Also not the best solution (will not work with bigger boards),
// but I didn't want user to input some Frankensteinish value like e.g. xy = '45'
case 'a':
x = 0;
break;
case 'b':
x = 1;
break;
case 'c':
x = 2;
break;
case 'd':
x = 3;
break;
case 'e':
x = 4;
break;
case 'f':
x = 5;
break;
case 'g':
x = 6;
break;
case 'h':
x = 7;
break;
default:
x = -1;
break;
}
if (0 <= x && x <= 7 && 0 <= y && y <= 7) {
break;
}
}
cout << "Incorrect choice. Please try again." << endl;
}
cout << endl;
uncover_field(y, x);
if(uncovered_fields == (board_y * board_x) - bombs_placed) {
win();
}
}
return 0;
}