-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2048.cpp
444 lines (415 loc) · 11.3 KB
/
2048.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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
#define LENGTH 4
#define R 114
#define B 98
#define Q 113
#define UP 65
#define DOWN 66
#define LEFT 68
#define RIGHT 67
int arr[LENGTH][LENGTH];
void initialize();
void addOne();
int playGame();
bool lose();
bool win();
void inputChoice(int &choice);
void menu();
void printfMatrix();
bool move(int dir);
bool moveUp();
bool moveDown();
bool moveRight();
bool moveLeft();
int main() {
do {
menu();
} while (1);
return 0;
}
bool move(int dir) {
bool flag;
switch (dir) {
case UP: flag = moveUp(); break;
case DOWN: flag = moveDown(); break;
case RIGHT: flag = moveRight(); break;
case LEFT: flag = moveLeft(); break;
}
return flag;
}
bool moveUp() {
int p0, p1, tmp, i;
bool flag = false;
for (i = 0; i < LENGTH; i++) {
//printf("第%d条\n",i+1);
p0 = 0;
do {
while (arr[p0][i] != 0 && p0 < LENGTH)
p0++;
if (p0 == LENGTH) break;
p1 = p0 + 1;
while (arr[p1][i] == 0 && p1 < LENGTH)
p1++;
if (p1 == LENGTH) break;
arr[p0][i] = arr[p1][i];
arr[p1][i] = 0;
//printf("调用过程1\n");
flag = true;
} while (1);
tmp = 0;
do {
if (arr[tmp][i] == arr[tmp + 1][i] && arr[tmp][i] != 0) {
arr[tmp][i] *= 2;
arr[tmp + 1][i] = 0;
tmp++;
flag = true;
//printf("调用过程2\n");
}
tmp++;
} while (tmp < LENGTH - 1 );
p0 = 0;
do {
while (arr[p0][i] != 0 && p0 < LENGTH)
p0++;
if (p0 == LENGTH) break;
p1 = p0 + 1;
while (arr[p1][i] == 0 && p1 < LENGTH)
p1++;
if (p1 == LENGTH) break;
arr[p0][i] = arr[p1][i];
arr[p1][i] = 0;
flag = true;
//printf("调用过程3\n");
} while (1);
}
return flag;
}
bool moveDown() {
int p0, p1, tmp, i;
bool flag = false;
//printf("调用DOWN\n");
for (i = 0; i < LENGTH; i++) {
//printf("第%d条\n",i+1);
p0 = LENGTH - 1;
do {
while (arr[p0][i] != 0 && p0 > 0)
p0--;
if (p0 == 0) break;
p1 = p0 - 1;
while (arr[p1][i] == 0 && p1 > -1)
p1--;
if (p1 == -1) break;
arr[p0][i] = arr[p1][i];
arr[p1][i] = 0;
flag = true;
//printf("调用过程1\n");
} while (1);
tmp = LENGTH - 1;
do {
if (arr[tmp][i] == arr[tmp - 1][i] && arr[tmp][i] != 0) {
arr[tmp][i] *= 2;
arr[tmp - 1][i] = 0;
tmp--;
flag = true;
//printf("调用过程2\n");
}
tmp--;
} while (tmp > 0 );
p0 = LENGTH - 1;
do {
while (arr[p0][i] != 0 && p0 > 0)
p0--;
if (p0 == 0) break;
p1 = p0 - 1;
while (arr[p1][i] == 0 && p1 > -1)
p1--;
if (p1 == -1) break;
arr[p0][i] = arr[p1][i];
arr[p1][i] = 0;
flag = true;
//printf("调用过程3\n");
} while (1);
}
return flag;
}
bool moveRight() {
int p0, p1, tmp, i;
int flag = false;
//printf("调用RIGHT\n");
for (i = 0; i < LENGTH; i++) {
//printf("第%d条\n",i+1);
p0 = LENGTH - 1;
do {
while (arr[i][p0] != 0 && p0 > 0)
p0--;
if (p0 == 0) break;
p1 = p0 - 1;
while (arr[i][p1] == 0 && p1 > -1)
p1--;
if (p1 == -1) break;
arr[i][p0] = arr[i][p1];
arr[i][p1] = 0;
flag = true;
//printf("调用过程1\n");
} while (1);
tmp = LENGTH - 1;
do {
if (arr[i][tmp] == arr[i][tmp - 1] && arr[i][tmp] != 0) {
arr[i][tmp] *= 2;
arr[i][tmp - 1] = 0;
tmp--;
flag = true;
//printf("调用过程2\n");
}
tmp--;
} while (tmp > 0 );
p0 = LENGTH - 1;
do {
while (arr[i][p0] != 0 && p0 > 0)
p0--;
if (p0 == 0) break;
p1 = p0 - 1;
while (arr[i][p1] == 0 && p1 > -1)
p1--;
if (p1 == -1) break;
arr[i][p0] = arr[i][p1];
arr[i][p1] = 0;
flag = true;
//printf("调用过程3\n");
} while (1);
}
return flag;
}
bool moveLeft() {
int p0, p1, tmp, i;
bool flag = false;
//printf("调用LEFT\n");
for (i = 0; i < LENGTH; i++) {
//printf("第%d条\n",i+1);
p0 = 0;
do {
while (arr[i][p0] != 0 && p0 < LENGTH)
p0++;
if (p0 == LENGTH) break;
p1 = p0 + 1;
while (arr[i][p1] == 0 && p1 < LENGTH)
p1++;
if (p1 == LENGTH) break;
arr[i][p0] = arr[i][p1];
arr[i][p1] = 0;
flag = true;
//printf("调用过程1\n");
} while (1);
tmp = 0;
do {
if (arr[i][tmp] == arr[i][tmp + 1] && arr[i][tmp] != 0) {
arr[i][tmp] *= 2;
arr[i][tmp + 1] = 0;
tmp++;
flag = true;
//printf("调用过程2\n");
}
tmp++;
} while (tmp < LENGTH - 1 );
p0 = 0;
do {
while (arr[i][p0] != 0 && p0 < LENGTH)
p0++;
if (p0 == LENGTH) break;
p1 = p0 + 1;
while (arr[i][p1] == 0 && p1 < LENGTH)
p1++;
if (p1 == LENGTH) break;
arr[i][p0] = arr[i][p1];
arr[i][p1] = 0;
flag = true;
//printf("调用过程3\n");
} while (1);
}
return flag;
}
int playGame() {
int init1, init2;
char dir;
bool sucMove = true;
initialize();
do {
if (win()) {
//printf("判定成功");
return 1;
}
if (sucMove) {
//printf("有效移动!\n");
addOne();
printfMatrix();
} else {
//printf("无效移动!\n");
}
if (lose()) {
//printf("判定失败");
return 0;
}
system("stty raw");
dir = getchar();
system("stty cooked");
if (dir == 27) {
getchar();
system("stty raw");
dir = getchar();
system("stty cooked");
if (dir == UP) {
sucMove = move(UP);
} else if (dir == DOWN) {
sucMove = move(DOWN);
} else if (dir == RIGHT) {
sucMove = move(RIGHT);
} else if (dir == LEFT) {
sucMove = move(LEFT);
}
}
} while (dir != 'r' && dir != 'b' && dir != 'q');
if (dir == 'q')
exit(0);
else
return dir;
}
void printfMatrix() {
int i, j;
system("clear");
for (i = 0; i < LENGTH; i++) {
printf("--------------------------------\n");
for (j = 0; j < LENGTH; j++) {
printf("|");
if (arr[i][j] == 0)
printf(" \t");
else
printf("%4d\t", arr[i][j]);
if (3 == j) printf("|\n");
}
printf("| \t| \t| \t| \t|\n");
}
printf("--------------------------------\n");
printf("按R重新开始\n按Q退出游戏\n按B返回菜单\n");
}
void addOne() {
int init, location;
location = rand() % 16 + 1;
if (rand() % 10) {
init = 2;
} else {
init = 4;
}
while (arr [location / 4][location % 4] != 0) {
location = (++location) % 16;
}
arr [location / 4][location % 4] = init;
}
bool lose() {
int flag = 1;
int i, j;
//printf("调用lose()\n");
for (int i = 0; i < LENGTH; i++)
for (int j = 0; j < LENGTH; j++) {
if (arr[i][j] == 0) {
flag = 0;
break;
}
}
//有可能输了
if (flag) {
for (i = 0; i < LENGTH - 1; i++)
for (j = 0; j < LENGTH; j++)
if (arr[i][j] == arr[i + 1][j]) {
printf("您就要输了!\n");
flag = 0;
return flag;
}
for (i = 0; i < LENGTH - 1; i++)
for (j = 0; j < LENGTH; j++)
if (arr[j][i] == arr[j][i + 1]) {
printf("您就要输了!\n");
flag = 0;
return flag;
}
}
return flag;
}
bool win() {
int flag = 0;
for (int i = 0; i < LENGTH; i++)
for (int j = 0; j < LENGTH; j++) {
if (arr[i][j] == 2048) {
flag = 1;
break;
}
}
return flag;
}
void initialize() {
int i, j, init;
int location;
for (i = 0; i < LENGTH; i++)
for (j = 0; j < LENGTH; j++)
arr[i][j] = 0;
srand((unsigned)time(NULL));
if (rand() % 10) {
init = 2;
} else {
init = 4;
}
location = (rand() % 16);
arr [location / 4][location % 4] = init;
system("clear");
}
void inputChoice(int &choice) {
do {
system("clear");
printf("------------------------------------\n");
printf("\t欢迎来到2048小游戏!\t\n");
printf("------------------------------------\n");
printf("-------------1. 简单模式------------\n");
printf("-------------2. 游戏说明------------\n");
printf("-------------3. 退出游戏------------\n");
system("stty raw");
choice = getchar();
system("stty cooked");
system("clear");
} while (choice < 49 || choice > 51);
}
void menu() {
int choice, option;
inputChoice(choice);
switch (choice) {
case '1': do {
option = playGame();
} while (option == R);
if (option == 0) {
printf("您输了!请按回车键继续!\n");
system("stty raw");
do {} while (getchar() == 13);
system("stty cooked");
break;
} else {
printf("您赢了!请按任意键继续!\n");
system("stty raw");
getchar();
system("stty cooked");
}
break;
case '2': printf("\t2048游戏共有16个格子,初始时初始数字由2或者4构成。\n");
printf("\t1.按↑↓← →键进行移动,所有格子会向那个方向运动。\n");
printf("\t2.相同数字的两个格子,相撞时数字会相加。 \n");
printf("\t3.每次滑动时,空白处会随机刷新出一个数字的格子。\n");
printf("\t4.当界面不可运动时(且界面全部被数字填满时),游戏结束;\n");
printf("\t当界面中最大数字是2048时,游戏胜利。\n\n");
printf("\t返回请按回车键");
do {} while (getchar() == 13);
system("clear");
menu();
break;
case '3': exit(0);
}
}