本文实例为大家分享了C++实现推箱子游戏的具体代码,供大家参考,具体内容如下
头文件:
复制代码
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#include<stdio.h> #include<stdlib.h> //#include<Windows.h> #include<conio.h> #include<graphics.h> #include<stdbool.h> //播放音乐需要的头文件 #include <mmsystem.h> #pragma comment(lib,"winmm.lib") //格子边长 #define SPACE 60 //6.3.1 定义变量 IMAGE png[12];//5张图,定义5个变量,定义一个数组 #define MapMany 6 //枚举方向 enum CH { right = 1, left = 2, up = 3, down = 4 }ch; //定义一个全局三维数组 //0表示空地“ ” 1表示墙“■” 2代表目的地“⊙” 3代表人站在空地上“♀” 4代表箱子“□” //5箱子与目的地重合“◆” 6,人站在目的地上“♀” //下面定义地图 int map[MapMany][10][10] = { //图一 { { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, { 1, 2, 0, 1, 1, 0, 0, 0, 2, 1 }, { 1, 0, 0, 1, 1, 0, 0, 0, 0, 1 }, { 1, 0, 0, 1, 1, 1, 1, 0, 4, 1 }, { 1, 0, 0, 1, 1, 1, 1, 0, 0, 1 }, { 1, 0, 0, 1, 1, 1, 0, 0, 0, 1 }, { 1, 0, 0, 1, 1, 1, 0, 0, 0, 1 }, { 1, 4, 0, 0, 0, 0, 0, 3, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, }, //图二 { { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, { 1, 0, 1, 2, 0, 0, 0, 4, 0, 1 }, { 1, 0, 1, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 1, 0, 0, 1, 1, 0, 0, 1 }, { 1, 0, 1, 0, 0, 1, 1, 0, 0, 1 }, { 1, 0, 1, 1, 1, 1, 1, 0, 3, 1 }, { 1, 0, 1, 1, 1, 1, 1, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 2, 0, 0, 4, 0, 0, 0, 0, 1 }, { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, }, //图三 { { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, { 1, 2, 0, 1, 0, 0, 3, 0, 0, 1 }, { 1, 0, 0, 1, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 1, 1, 1, 1, 0, 0, 1 }, { 1, 4, 0, 1, 1, 1, 1, 0, 0, 1 }, { 1, 0, 0, 1, 1, 0, 0, 0, 4, 1 }, { 1, 0, 0, 1, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 4, 0, 1, 0, 0, 1 }, { 1, 2, 0, 0, 0, 0, 1, 0, 2, 1 }, { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, }, //图四 { { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, }, //图五 { { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 }, { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, }, //图六 { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, } }; //定义当前关卡 int WhatMap = 0;//初始化位第0张地图 void DrawMap(int n); void initscreen(); void ManUp(); int KbHit(); void ManUp(); void ManRight(); void ManLeft(); void ManDown(); int GameOver(); void drawGame();
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502#include"SokoBan.h" int main() { initscreen(); //播放音乐 mciSendString(TEXT("open sun.mp3 alias mysong"), NULL, 0, NULL); mciSendString(TEXT("play mySong"), NULL, 0, NULL); while (1) { switch (KbHit()) { case 4:ManUp(); break; case 2:ManLeft(); break; case 1:ManRight(); break; case 3:ManDown(); break; //case 0:continue; } drawGame(); if (GameOver()) { WhatMap++; Sleep(1000); } if (WhatMap == 3)break; } loadimage(&png[7], _T("6.jpg"), 10*SPACE, 10*SPACE, true); putimage(0, 0, &png[7]); Sleep(10000); return 0; //printf("作者:小豆芽n时间:2018/12/18n版权:2862841130@qq.com"); //system("pause"); } //设置窗口大小 void initscreen() { initgraph(10 * SPACE, 10 * SPACE ); //6.3.2 加载图片 //0表示空地“ ” 1表示墙“■” 2代表目的地“⊙” 3代表人站在空地上“♀” 4代表箱子“□” //5箱子与目的地重合“◆” 6,人站在目的地上“♀” loadimage(&png[0], _T("0.jpg"), SPACE, SPACE, true); loadimage(&png[1], _T("1.jpg"), SPACE, SPACE, true); loadimage(&png[2], _T("2.jpg"), SPACE, SPACE, true); loadimage(&png[3], _T("3.jpg"), SPACE, SPACE, true); loadimage(&png[4], _T("4.jpg"), SPACE, SPACE, true); loadimage(&png[5], _T("5.jpg"), SPACE, SPACE, true); loadimage(&png[6], _T("3.jpg"), SPACE, SPACE, true); //以下是windows窗口 //system("mode con cols=20 lines=10"); //cols 代表列 //lines 代表行 // //设置标题 //SetConsoleTitleA("推箱子"); //设置标题 } //贴图 void drawGame() { for (int i = 0; i < 10; i++) {//显示一行 for (int j = 0; j < 10; j++) {//显示一个格子 putimage(j*SPACE, i*SPACE, &png[map[WhatMap][i][j]]); } } } //画出地图 //0表示空地“ ” 1表示墙“■” 2代表目的地“⊙” 3代表人“♀” 4代表箱子“□” //5箱子与目的地重合“◆” 6,人站在目的地 void DrawMap(int n) { system("cls"); for (int j = 0; j < 10; j++) { int i; for (i = 0; i < 10; i++) { if (map[WhatMap][i][j] == 0)printf(" "); if (map[WhatMap][i][j] == 1)printf("■"); if (map[WhatMap][i][j] == 2)printf("⊙"); if (map[WhatMap][i][j] == 3)printf("♀"); if (map[WhatMap][i][j] == 4)printf("□"); if (map[WhatMap][i][j] == 5)printf("◆"); if (map[WhatMap][i][j] == 6)printf("♀"); } if(i<9)printf("n"); } } //判断按键操作 int KbHit() { if (GetAsyncKeyState(VK_UP)&1)return up; else if (GetAsyncKeyState(VK_DOWN)&1)return down; else if (GetAsyncKeyState(VK_RIGHT)&1)return right; else if (GetAsyncKeyState(VK_LEFT)&1)return left; else return 0; } //********************************************人向上移动 void ManUp() { //先找到人的位置 int i, j; for (i = 0; i < 10; i++) { int flag = 0; for (j = 0; j < 10; j++) if (map[WhatMap][i][j] == 3 || map[WhatMap][i][j] == 6) { flag = 1; break; } if (flag)break; } //人的位置是map[WhatMap][i][j]; //改变人的方向 //人的位置是空地 if (map[WhatMap][i][j] == 3) { //***********人的上面是空地 if (map[WhatMap][i + 1][j] == 0) { map[WhatMap][i][j] = 0; map[WhatMap][i + 1][j] = 3; } //************人的上面是目的地 else if (map[WhatMap][i + 1][j] == 2) { map[WhatMap][i][j] = 0; map[WhatMap][i + 1][j] = 6; } //*************人的上面是箱子 else if (map[WhatMap][i + 1][j] == 4) { //1,***********箱子上面是目的地 if (map[WhatMap][i + 2][j] == 2) { map[WhatMap][i][j] = 0; map[WhatMap][i + 1][j] = 3; map[WhatMap][i + 2][j] = 5; } //2,************箱子上面是空地 else if (map[WhatMap][i + 2][j] == 0) { map[WhatMap][i][j] = 0; map[WhatMap][i + 1][j] = 3; map[WhatMap][i + 2][j] = 4; } //3,*************箱子上面是。。。。。 } } //人的位置是目的地 else if (map[WhatMap][i][j] == 6) { //***********人的上面是空地 if (map[WhatMap][i + 1][j] == 0) { map[WhatMap][i][j] = 2; map[WhatMap][i + 1][j] = 3; } //************人的上面是目的地 else if (map[WhatMap][i + 1][j] == 2) { map[WhatMap][i][j] = 2; map[WhatMap][i + 1][j] = 6; } //*************人的上面是箱子 else if (map[WhatMap][i + 1][j] == 4) { //1,***********箱子上面是目的地 if (map[WhatMap][i + 2][j] == 2) { map[WhatMap][i][j] = 2; map[WhatMap][i + 1][j] = 3; map[WhatMap][i + 2][j] = 5; } //2,************箱子上面是空地 else if (map[WhatMap][i + 2][j] == 0) { map[WhatMap][i][j] = 2; map[WhatMap][i + 1][j] = 3; map[WhatMap][i + 2][j] = 4; } //3,*************箱子上面是。。。。。 } } } //********************************************人向右移动 void ManRight() { //先找到人的位置 int i, j; for (i = 0; i < 10; i++) { int flag = 0; for (j = 0; j < 10; j++) if (map[WhatMap][i][j] == 3 || map[WhatMap][i][j] == 6) { flag = 1; break; } if (flag)break; } //人的位置是map[WhatMap][i][j]; //改变人的方向 //人的位置是空地 if (map[WhatMap][i][j] == 3) { //***********人的右面是空地 if (map[WhatMap][i][j+1] == 0) { map[WhatMap][i][j] = 0; map[WhatMap][i][j+1] = 3; } //************人的右面是目的地 else if (map[WhatMap][i][j+1] == 2) { map[WhatMap][i][j] = 0; map[WhatMap][i][j+1] = 6; } //*************人的右面是箱子 else if (map[WhatMap][i][j+1] == 4) { //1,***********箱子右面是目的地 if (map[WhatMap][i][j+2] == 2) { map[WhatMap][i][j] = 0; map[WhatMap][i][j+1] = 3; map[WhatMap][i][j+2] = 5; } //2,************箱子右面是空地 else if (map[WhatMap][i][j+2] == 0) { map[WhatMap][i][j] = 0; map[WhatMap][i][j+1] = 3; map[WhatMap][i][j+2] = 4; } //3,*************箱子右面是。。。。。 } } //人的位置是目的地 else if (map[WhatMap][i][j] == 6) { //***********人的右面是空地 if (map[WhatMap][i][j+1] == 0) { map[WhatMap][i][j] = 2; map[WhatMap][i][j+1] = 3; } //************人的右面是目的地 else if (map[WhatMap][i][j+1] == 2) { map[WhatMap][i][j] = 2; map[WhatMap][i][j+1] = 6; } //*************人的右面是箱子 else if (map[WhatMap][i][j+1] == 4) { //1,***********箱子右面是目的地 if (map[WhatMap][i][j+2] == 2) { map[WhatMap][i][j] = 2; map[WhatMap][i][j+1] = 3; map[WhatMap][i][j+2] = 5; } //2,************箱子右面是空地 else if (map[WhatMap][i][j+2] == 0) { map[WhatMap][i][j] = 2; map[WhatMap][i][j+1] = 3; map[WhatMap][i][j+2] = 4; } //3,*************箱子右面是。。。。。 } } } //********************************************人向左移动 void ManLeft() { //先找到人的位置 int i, j; for (i = 0; i < 10; i++) { int flag = 0; for (j = 0; j < 10; j++) if (map[WhatMap][i][j] == 3 || map[WhatMap][i][j] == 6) { flag = 1; break; } if (flag)break; } //人的位置是map[WhatMap][i][j]; //改变人的方向 //人的位置是空地 if (map[WhatMap][i][j] == 3) { //***********人的左面是空地 if (map[WhatMap][i][j-1] == 0) { map[WhatMap][i][j] = 0; map[WhatMap][i][j-1] = 3; } //************人的左面是目的地 else if (map[WhatMap][i][j-1] == 2) { map[WhatMap][i][j] = 0; map[WhatMap][i][j-1] = 6; } //*************人的左面是箱子 else if (map[WhatMap][i][j-1] == 4) { //1,***********箱子左面是目的地 if (map[WhatMap][i][j-2] == 2) { map[WhatMap][i][j] = 0; map[WhatMap][i][j-1] = 3; map[WhatMap][i][j-2] = 5; } //2,************箱子左面是空地 else if (map[WhatMap][i][j-2] == 0) { map[WhatMap][i][j] = 0; map[WhatMap][i][j-1] = 3; map[WhatMap][i][j-2] = 4; } //3,*************箱子左面是。。。。。 } } //人的位置是目的地 else if (map[WhatMap][i][j] == 6) { //***********人的上面是空地 if (map[WhatMap][i][j-1] == 0) { map[WhatMap][i][j] = 2; map[WhatMap][i][j-1] = 3; } //************人的上面是目的地 else if (map[WhatMap][i][j-1] == 2) { map[WhatMap][i][j] = 2; map[WhatMap][i][j-1] = 6; } //*************人的上面是箱子 else if (map[WhatMap][i][j-1] == 4) { //1,***********箱子上面是目的地 if (map[WhatMap][i][j-2] == 2) { map[WhatMap][i][j] = 2; map[WhatMap][i][j-1] = 3; map[WhatMap][i][j-2] = 5; } //2,************箱子上面是空地 else if (map[WhatMap][i][j-2] == 0) { map[WhatMap][i][j] = 2; map[WhatMap][i][j-1] = 3; map[WhatMap][i][j-2] = 4; } //3,*************箱子上面是。。。。。 } } } //********************************************人向下移动 void ManDown() { //先找到人的位置 int i, j; for (i = 0; i < 10; i++) { int flag = 0; for (j = 0; j < 10; j++) if (map[WhatMap][i][j] == 3 || map[WhatMap][i][j] == 6) { flag = 1; break; } if (flag)break; } //人的位置是map[WhatMap][i][j]; //改变人的方向 //人的位置是空地 if (map[WhatMap][i][j] == 3) { //***********人的下面是空地 if (map[WhatMap][i - 1][j] == 0) { map[WhatMap][i][j] = 0; map[WhatMap][i - 1][j] = 3; } //************人的上面是目的地 else if (map[WhatMap][i - 1][j] == 2) { map[WhatMap][i][j] = 0; map[WhatMap][i - 1][j] = 6; } //*************人的上面是箱子 else if (map[WhatMap][i - 1][j] == 4) { //1,***********箱子上面是目的地 if (map[WhatMap][i - 2][j] == 2) { map[WhatMap][i][j] = 0; map[WhatMap][i - 1][j] = 3; map[WhatMap][i - 2][j] = 5; } //2,************箱子上面是空地 else if (map[WhatMap][i - 2][j] == 0) { map[WhatMap][i][j] = 0; map[WhatMap][i - 1][j] = 3; map[WhatMap][i - 2][j] = 4; } //3,*************箱子上面是。。。。。 } } //人的位置是目的地 else if (map[WhatMap][i][j] == 6) { //***********人的上面是空地 if (map[WhatMap][i - 1][j] == 0) { map[WhatMap][i][j] = 2; map[WhatMap][i - 1][j] = 3; } //************人的上面是目的地 else if (map[WhatMap][i - 1][j] == 2) { map[WhatMap][i][j] = 2; map[WhatMap][i - 1][j] = 6; } //*************人的上面是箱子 else if (map[WhatMap][i - 1][j] == 4) { //1,***********箱子上面是目的地 if (map[WhatMap][i - 2][j] == 2) { map[WhatMap][i][j] = 2; map[WhatMap][i - 1][j] = 3; map[WhatMap][i - 2][j] = 5; } //2,************箱子上面是空地 else if (map[WhatMap][i - 2][j] == 0) { map[WhatMap][i][j] = 2; map[WhatMap][i - 1][j] = 3; map[WhatMap][i - 2][j] = 4; } //3,*************箱子上面是。。。。。 } } } //判断游戏是否结束 int GameOver() { //统计目的地的个数 int flag = 0; for (int i = 0; i < 10; i++) { for (int j = 0; j < 10; j++) { if (map[WhatMap][i][j] == 2)flag++; } } //箱子到达目的地的个数 int count = 0; for (int i = 0; i < 10; i++) { for (int j = 0; j < 10; j++) { if (map[WhatMap][i][j] == 4)count++; } } if (count == 0&&flag == 0 )return 1; else return 0; }
运行效果:
游戏资源:
1.
2.
3.
4.
5.
6.
结束展示:
更多有趣的经典小游戏实现专题,分享给大家:
C++经典小游戏汇总
python经典小游戏汇总
python俄罗斯方块游戏集合
JavaScript经典游戏 玩不停
java经典小游戏汇总
javascript经典小游戏汇总
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。
最后
以上就是整齐皮皮虾最近收集整理的关于C++基于easyx图形库实现推箱子游戏的全部内容,更多相关C++基于easyx图形库实现推箱子游戏内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复