C++实现推箱子小游戏

时间:2021-12-17 23:59:23

本文实例为大家分享了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
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
#include <bits/stdc++.h>
#include <windows.h>
#include <conio.h>
using namespace std;
#define VERSION "2.2"
#define M 55
int n, m, wall[M][M], hole[M][M], box[M][M];
int step, dct, query, cross, rx[233], ry[233];
char str[M][M], title[M], o;
char atlas[M][M][M] = {
 {"...#@.","@..*..","#*##..","..##*#","..X.&.",".@#..."},
 {"########...####","########..*####","########*....##","######.*..*..##"
 ,"@@..##.###.#...","@@.X......*..*.","@@..#.####.####","#####......####"},
 {"####..#...##","##.*..*.#.##","...#.**#....","X*.....#*##.","#.*###**....","##..##.#*..."
 ,"###@@@.#.*#.","###@@@@@#.*.","####@@@@@...","#######.#*.#","#######....#","#######...##"},
 {"..@*.##",".@*@*..","&*@*@X.",".@*@*.#","..@*..#"}
};
int A[M] = {6, 8, 12, 5}, B[M] = {6, 15, 12, 7};
struct pos {
 int x, y;
} player;
struct node {
 pos man;
 int dct;
 vector<pos> box;
 node() {
 box.clear ();
 }
} rec[M * M * M];
void color (int x);
void clean ();
bool check (int x, int y, int cross);
bool forward (int rx, int ry);
bool win ();
void pt ();
void update ();
void playing ();
void in ();
void pass ();
void Init ();
void remain ();
int main() {
 MessageBox (NULL, "欢迎来到推箱子游戏!", "温馨提示", MB_OK);
 Init ();
 while (true) {
 remain ();
 }
 return 0;
}
void color (int x) {
 SetConsoleTextAttribute (GetStdHandle (STD_OUTPUT_HANDLE), x);
}
void clean () {
 system("cls");
 color(7);
}
bool check (int x, int y, int cross) {
 if (!cross) {
  return x < 1 || x > n || y < 1 || y > m || wall[x][y];
 }
 return x < 0 || x > n + 1 || y < 0 || y > m + 1;
}
bool forward (int rx, int ry) {
 int x = player.x + rx, y = player.y + ry, X = x + rx, Y = y + ry;
 if (check (x,y,cross)) {
 return false;
 }
 if(box[x][y]) {
 if (check (X, Y, 0) || box[X][Y]) {
 return false;
 }
 }
 return true;
}
bool win () {
 for (int i = 0; i < rec[step].box.size (); i++) {
 if (!hole[rec[step].box[i].x][rec[step].box[i].y]) {
 return false;
 }
 }
 return true;
}
void pt () {
 memset (box, 0, sizeof (box));
 for (int i = 0; i < rec[step].box.size (); i++) {
  box[rec[step].box[i].x][rec[step].box[i].y] = 1;
 }
 player.x = rec[step].man.x;
 player.y = rec[step].man.y;
 dct = rec[step].dct;
 clean ();
 color (154);
 puts ("按方向键进行移动,按删除键进行撤销");
 puts ("按空格键查询步数。");
 puts ("按0返回,按Esc键退出游戏");
 color (7);
 for (int i = 0; i <= n + 1; i++) {
 printf(" ");
  for (int j = 0; j <= m + 1; j++) {
 if (i == player.x && j == player.y) {
    color (15);
 if (check (i, j, 0)) {
  color (63);
 }
 printf ("♀");
    color (7);
   } else if (i == 0 || i == n + 1 || j == 0 || j == m + 1 || wall[i][j]) {
 color (3);
 printf ("■");
 } else if(box[i][j]) {
 color (14);
    if (hole[i][j]) {
  color (12);    
 }
    printf ("▓");
   } else if (hole[i][j]) {
 color (3);
 printf ("※");
 } else {
 printf (" ");
 }
  }
 puts ("");
 }
 color (7);
}
void update () {
 node temp;
 int i, j;
 for (i = 1; i <= n; i++) {
 for (j = 1; j <= m; j++) {
 if (box[i][j]) {
 pos po;
 po.x = i;
 po.y = j;
 temp.box.push_back (po);
 }
 }
 }
 temp.man.x = player.x;
 temp.man.y = player.y;
 temp.dct = dct;
 rec[step] = temp;
}
void playing () {
 dct = 72;
 step = 0;
 update ();
 pt ();
 int winstep = -1;
 while (o = getch ()) {
 int tp = 0;
 if (o == 72 || o == 77 || o == 80 || o == 75) {
 if (forward (rx[o],ry[o])) {
 int x = player.x + rx[o], y = player.y + ry[o];
 if (box[x][y]) {
  box[x][y] = 0;
  box[x + rx[o]][y + ry[o]] = 1;
 }
 player.x = x;
 player.y = y;
 step++;
 } else {
 tp = 1;
 }
 dct = o;
 update ();
 } else if (o == 8) {
 tp = 3;
 step = max (0, step - 1);
 if (step <= winstep) {
 winstep = -1;
 }
 } else if (o == 48) {
 break;
 }
 else if (o == 27) {
 exit (0);
 }
 else if (o == 32) {
 query ^= 1;
 }
 else {
 tp = 2;
 }
 pt ();
 color (154);
 if (query) {
 printf ("当前步数为%d!\n", step);
 }
 if(win () || winstep != -1) {
 if (winstep == -1) {
 winstep = step;
 }
 printf ("恭喜您,您赢了!共用了%d步。\n", winstep);
 MessageBox (NULL, "恭喜您,您赢了!", "温馨提示", MB_OK);
 } else if (tp == 1) {
 color (207);
 puts("对不起,您无法推动这个方块!");
 } else if (tp == 2) {
 color (207);
 } else if (tp == 3) {
 puts ("撤销成功!");
 }
 color (7);
 }
}
void in () {
 memset (wall, 0, sizeof (wall));
 memset (hole, 0, sizeof(hole));
 memset (box, 0, sizeof(box));
 clean ();
 puts ("第一行输入两个整数n和m,表示地图的大小");
 puts ("接下来n行,每行m个元素。");
 puts ("'.'表示空地");
 puts ("'#'表示墙");
 puts ("'*'表示箱子");
 puts ("'@'表示洞");
 puts ("'X'表示人" );
 puts ("'&'表示箱子已在洞上");
 scanf ("%d %d", &n, &m);
 int i,j;
 for (i = 1; i <= n; i++) {
 scanf ("%s", str[i] + 1);
 }
 for (i = 1; i <= n; i++) {
 for (j = 1; j <= m; j++) {
 o = str[i][j];
 if (o == 'X') {
 player.x = i;
 player.y = j;
 }
 if (o == '#') {
 wall[i][j] = 1;
 }
 if (o == '@' || o == '&') {
 hole[i][j] = 1;
 }
 if (o == '*' || o =='&') {
 box[i][j] = 1;
 }
 }
 }
 playing ();
}
void pass () {
 memset (wall, 0, sizeof (wall));
 memset (hole, 0, sizeof (hole));
 memset (box, 0, sizeof (box));
 clean ();
 puts ("1.第一关");
 puts ("2.第二关");
 puts ("3.第三关");
 puts ("4.第四关");
 puts ("\n0.返回");
 puts ("Esc.退出游戏");
 while (o = getch ()) {
 if (o >= '1' && o <= '4') {
 int id = o - 48 - 1;
 n = A[id];
 m = B[id];
 for (int i = 1; i <= n; i++) {
 for (int j = 1; j <= m; j++) {
  char o = atlas[id][i - 1][j - 1];
  if (o == 'X') {
  player.x = i;
  player.y = j;
  }
  if (o == '#') {
  wall[i][j] = 1;
  }
  if (o == '@' || o == '&') {
  hole[i][j] = 1;
  }
  if (o == '*' || o =='&') {
  box[i][j] = 1;
  }
  }
 }
 playing ();
 break;
 } else if (o == 48) {
 break;
 }
 }
}
void Init () {
 system ("mode con cols=40 lines=20");
 SetConsoleTitle ("推箱子");
 rx[72] = -1;
 rx[80] = 1;
 ry[77] = 1;
 ry[75] = -1;
}
void remain () {
 clean ();
 puts ("1.闯关模式");
 puts ("2.输入模式");
 puts ("Esc.退出游戏");
 while (o = getch ()) {
 if (o=='1') {
 pass ();
 break;
 } else if (o == '2') {
 in ();
 break;
 } else if (o == 27) {
 exit (0);
 }
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/yueyuedog/article/details/112506963