-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
370 lines (323 loc) · 9.62 KB
/
main.cpp
File metadata and controls
370 lines (323 loc) · 9.62 KB
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
//////////////////////
//Powered by VisTzem//
//////////////////////
#include <iostream>
#include <algorithm>
#include <cstdlib>
#include <time.h>
#include <vector>
#include <limits>
using namespace std;
///////////////////////////////////////////////////
// FOR DEBUGGING
//
// for(int i=1; i<=N; i++){
// for(int j=1; j<=N; j++){
// if(Space[i][j]!=-1){
// cout<<Space[i][j]<<" ";
// }else{
// cout<<"*"<<" ";
// }
// }
// cout<<endl;
// }
///////////////////////////////////////////////////
// change state ///////////////////////////////////////////
void ChangeState(int N, int x, int y, vector<vector<int>> &SpaceState, vector<vector<int>> &Space){
if (SpaceState[x][y] == 1 || SpaceState[x][y] == 2){
return;
}
SpaceState[x][y] = 1;
if (Space[x][y] == 0){
for (int i = x - 1; i <= x + 1; i++){
for (int j = y - 1; j <= y + 1; j++){
if (i >= 1 && i <= N && j >= 1 && j <= N){
ChangeState(N, i, j, SpaceState, Space);
}
}
}
}else{
return;
}
}
// change state ///////////////////////////////////////////
// Check the game(lose=1, win=2, nothing=0) ///////////////
int GameCheck(int N, vector<vector<int>> &SpaceState, vector<vector<int>> &Space){
// Lose?
for (int i = 1; i <= N; i++){
for (int j = 1; j <= N; j++){
if (Space[i][j] == -1 && SpaceState[i][j] == 1){
return 1;
}
}
}
// Nothing?
for (int i = 1; i <= N; i++){
for (int j = 1; j <= N; j++){
if (Space[i][j] == -1 && SpaceState[i][j] == 0){
return 0;
}
}
}
return 2;
}
// Check the game(lose=1, win=2, nothing=0) ///////////////
// ShowTheCurrentBoard ////////////////////////////////////
void ShowTheCurrentBoard(int N, vector<vector<int>> &SpaceState, vector<vector<int>> &Space){
for (int i = 1; i <= N; i++){
cout<<(N+1-i)%10<<"|";
for (int j = 1; j <= N; j++){
if (SpaceState[i][j] == 0){
if((N+1-i)%5==0||j%5==0){
cout<<"。";
}else{
cout << ".";
}
}else if (SpaceState[i][j] == 1){
if (Space[i][j] == -1){
cout << "*"<<" ";
}else{
cout<<Space[i][j]<<" ";
}
}else if (SpaceState[i][j] == 2){
cout << "^"<<" ";
}
}
cout << endl;
}
cout<<"-+";
for(int i=1; i<=N; i++){
cout<<"--";
}
cout<<endl;
cout<<"0|";
for(int i=1; i<=N; i++){
cout<<i%10<<" ";
}
cout<<endl
<<endl;
}
// ShowTheCurrentBoard ////////////////////////////////////
// Run Program ////////////////////////////////////
void RunProgram(){
// Set the random number
srand(time(NULL));
// Ask for the space range
int N;
cout << "How Big?(5~30):";
while (cin >> N){
if (N >= 5 && N <= 30){
break;
}else{
cout << "Please enter again(5~30):";
}
}
// Ask for how hard it is
int ModeAsk;
string Mode;
cout << "How Hard?(Easy, Normal, Hard):";
while (cin >> Mode){
if (Mode == "Easy"){
ModeAsk = 8;
break;
}else if (Mode == "Normal"){
ModeAsk = 6;
break;
}else if (Mode == "Hard"){
ModeAsk = 4;
break;
}else{
cout << "Please enter again(Easy, Normal, Hard):";
}
}
// Game Started
cout << endl
<< endl
<< "Let's start the game!" << endl
<< endl;
// Set every spaces' state(0=close, 1=open, 2=flag), and show;
vector<vector<int>> SpaceState(N + 2, vector<int>(N + 2, 0));
// fake board
for (int i = 1; i <= N; i++){
cout<<(N+1-i)%10<<"|";
for (int j = 1; j <= N; j++){
if((N+1-i)%5==0||j%5==0){
cout<<"。";
}else{
cout <<".";
}
}
cout<<endl;
}
cout<<"-+";
for(int i=1; i<=N; i++){
cout<<"--";
}
cout<<endl;
cout<<"0|";
for(int i=1; i<=N; i++){
cout<<i%10<<" ";
}
cout<<endl
<<endl;
// First time to choose which to dig
int x, y;
string WhatToDo;
cout << "Where? (Enter x, y):";
while (cin >> y >> x){
if (x >= 1 && x <= N && y >= 1 && y <= N){
x=N+1-x;
cout << endl;
break;
}else{
cout << "Try again (Enter x, y):";
}
}
// Build the space and find the mines
vector<vector<int>> Space(N + 2, vector<int>(N + 2, 9));
for (int i = 1; i <= N; i++){
for (int j = 1; j <= N; j++){
Space[i][j] = 0;
}
}
for (int i = 1; i <= N; i++){
for (int j = 1; j <= N; j++){
int Rand = rand() % ModeAsk;
if (Rand == 0){
Space[i][j] = -1;
}
}
}
// Change the 3*3 place around the place where the player chose from maybe -1 to 0
for (int i = x - 1; i <= x + 1; i++){
for (int j = y - 1; j <= y + 1; j++){
if (Space[i][j] == -1){
Space[i][j] = 0;
}
}
}
// Scan and Edit the numbers
for (int i = 1; i <= N; i++){
for (int j = 1; j <= N; j++){
if (Space[i][j] != -1){
for (int m = i - 1; m <= i + 1; m++){
for (int n = j - 1; n <= j + 1; n++){
if (Space[m][n] == -1){
Space[i][j]++;
}
}
}
}
}
}
// reveal the place where the player chose
ChangeState(N, x, y, SpaceState, Space);
ShowTheCurrentBoard(N, SpaceState, Space);
// GameCheck for the first time
if (GameCheck(N, SpaceState, Space) == 2){
cout << "You Win OMGGG you're so lucky Bruhhh";
}
// Player move
while (GameCheck(N, SpaceState, Space) == 0){
int x, y;
string WhatToDo;
cout << "Where? (Enter x, y):";
while (cin >> y >> x){
int tx=N+1-x;
if (tx < 1 || tx > N || y < 1 || y > N){
cout << endl
<< "Wrong place :(" << endl
<< "Try again (Enter x, y):";
}else{
x=tx;
cout << endl;
break;
}
}
cout << "What to do? (Enter movement(d for dig, f for flag)):";
while (cin >> WhatToDo){
if (WhatToDo != "d" && WhatToDo != "f"){
cout << "Try again (Enter movement(d for dig, f for flag)):";
}else{
cout << endl;
break;
}
}
if (WhatToDo == "d"){
if(SpaceState[x][y]==0){
ChangeState(N, x, y, SpaceState, Space);
}else if(SpaceState[x][y]==1){
int count=Space[x][y];
for(int m=x-1; m<=x+1; m++){
for(int n=y-1; n<=y+1; n++){
if(SpaceState[m][n]==2){
count--;
}
}
}
if(count==0){
for(int m=x-1; m<=x+1; m++){
for(int n=y-1; n<=y+1; n++){
ChangeState(N, m, n, SpaceState, Space);
}
}
}
}
}
else if (WhatToDo == "f"){
if (SpaceState[x][y] == 2){
SpaceState[x][y] = 0;
}else if (SpaceState[x][y] == 0){
SpaceState[x][y] = 2;
}
}
ShowTheCurrentBoard(N, SpaceState, Space);
}
// GameCheck
if (GameCheck(N, SpaceState, Space) == 2){
cout << "You Win" << endl;
}else{
cout << "The whole map:" << endl;
for (int i = 1; i <= N; i++){
cout<<(N+1-i)%10<<"|";
for (int j = 1; j <= N; j++){
if (Space[i][j] == -1){
cout<<"*"<<" ";
}else{
cout<<Space[i][j]<<" ";
}
}
cout << endl;
}
cout<<"-+";
for(int i=1; i<=N; i++){
cout<<"--";
}
cout<<endl;
cout<<"0|";
for(int i=1; i<=N; i++){
cout<<i%10<<" ";
}
cout<<endl
<<endl
<< "You Lose :)" << endl;
}
}
// Run Program ////////////////////////////////////
int main(){
RunProgram();
// Play again?
cout <<"Wanna play again? (y for yes, n for no):";
string PlayAgain;
while(cin >> PlayAgain){
if(PlayAgain=="y"){
RunProgram();
cout <<"Wanna play again? (y for yes, n for no):";
}else if(PlayAgain=="n"){
return 0;
}else{
cout<<endl
<<"Please enter again (y for yes, n for no):";
}
}
}