用C语言自己写2048

用C语言自己写2048

2048是之前非常火爆的一个游戏,记得之前上课的时候很多同学都在玩这个游戏。尤其是一些比较无聊的课上玩的人更多。那么我们应该如何用代码自己来实现2048这个游戏的编写呢?

之前在实验楼网站学习linux的时候碰巧看到了一个教程,所以就试着玩了一下,代码编写也很简单,当然我也无聊的玩到了2048,所以我发现其实实验楼上面给的代码也是有点小bug的,所以我对代码进行了一个简单的更改。

实验楼该教程网址:

https://www.shiyanlou.com/courses/155

下面就是操作及其我修改后的代码:

基础知识

要实现我们的 2048 小游戏,需要涉及一些数据结构的知识,以及一些 Linux 的系统调用。此外,为了方便在屏幕上使用字符绘图,我们还需要使用一个文本界面的屏幕绘图库 ncurses ,具体到操作就是在编译的时候需要加上 -lcurses 选项。

ncurses 库的安装操作如下:

1
sudo apt-get install libncurses5-dev

我修改后的代码

创建一个c文件,命名为2048.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
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
#include <stdio.h>
#include <stdlib.h>
#include <curses.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>

// 4*4方格
int a[4][4] = {0};
// 方格里空格的个数
int empty;
int old_y, old_x;

void draw();
void play();
void init();
void draw_one(int y, int x);
void cnt_value(int *new_y, int *new_x);
int game_over();
int cnt_one(int y, int x);

int main()
{
init();
play();
endwin();

return 0;
}

void init()
{
int x, y;

initscr();
cbreak();
noecho();
curs_set(0);

empty = 15;
srand(time(0));
x = rand() % 4;
y = rand() % 4;
a[y][x] = 2;
draw();
}

void draw()
{
int n, m, x, y;
char c[4] = {'0', '0', '0', '0'};

clear();
for(n = 0; n < 9; n += 2) //横线
for(m = 0; m < 21; m++) {
move(n, m);
addch('-');
refresh();
}
for(m = 0; m < 22; m += 5) //竖线
for(n = 1; n < 8; n++) {
move(n, m);
addch('|');
refresh();
}
for(y = 0; y < 4; y++) //数字
for(x = 0; x < 4; x++) {
draw_one(y, x);
}
}

void draw_one(int y, int x)
{
int i, m, k, j;
char c[4] = {'0', '0', '0', '0'};

i = a[y][x];
m = 0;
do {
j = i % 10;
c[m++] = j + '0';
i = i / 10;
}while(i > 0);
m = 0;
k = (x + 1) * 5 - 1;
while(c[m] != '0') {
move(2*y+1, k);
addch(c[m++]);
k--;
}
}

void play()
{
int x, y, i, new_x, new_y, tmp;
int old_empty, move;
char ch;

while(1) {
move = 0;
old_empty = empty;
//draw();
ch = getch();
switch(ch) {
case 'A':
case 'a':
//从左向右消去相同方块
for(y = 0; y < 4; y++)
for(x = 0; x < 4; ) {
if(a[y][x] == 0) {
x++;
continue;
} else {
for(i = x + 1; i < 4; i++) {
if(a[y][i] == 0) {
continue;
}
else {
if(a[y][x] == a[y][i]) {
a[y][x] += a[y][i];
a[y][i] = 0;
x = i + 1;
empty++;
break;
}
else {
x = i;
break;
}
}
}
x = i;
}
}
//向左移动方块
for(y = 0; y < 4; y++)
for(x = 0; x < 4; x++) {
if(a[y][x] == 0) {
continue;
} else {
for(i = x; (i > 0) && (a[y][i-1] == 0); i--) {
a[y][i-1] = a[y][i];
a[y][i] = 0;
move = 1;
}
}
}
break;
case 'D':
case 'd':
//从右向左消去相同方块
for(y = 0; y < 4; y++)
for(x = 3; x >= 0; ) {
if(a[y][x] == 0) {
x--;
continue;
} else {
for(i = x - 1; i >= 0; i--) {
if(a[y][i] == 0) {
continue;
} else if(a[y][x] == a[y][i]) {
a[y][x] += a[y][i];
a[y][i] = 0;
x = i - 1;
empty++;
break;
} else {
x = i;
break;
}
}
x = i;
}
}
//向右移动方块
for(y = 0; y < 4; y++)
for(x = 3; x >= 0; x--) {
if(a[y][x] == 0) {
continue;
} else {
for(i = x; (i < 3) && (a[y][i+1] == 0); i++) {
a[y][i+1] = a[y][i];
a[y][i] = 0;
move = 1;
}
}
}
break;
case 'W':
case 'w':
//从上向下消去相同方块
for(x = 0; x < 4; x++)
for(y = 0; y < 4; ) {
if(a[y][x] == 0) {
y++;
continue;
} else {
for(i = y + 1; i < 4; i++) {
if(a[i][x] == 0) {
continue;
} else if(a[y][x] == a[i][x]) {
a[y][x] += a[i][x];
a[i][x] = 0;
y = i + 1;
empty++;
break;
} else {
y = i;
break;
}
}
y = i;
}
}
//向上移动方块
for(x = 0; x < 4; x++)
for(y = 0; y < 4; y++) {
if(a[y][x] == 0) {
continue;
} else {
for(i = y; (i > 0) && (a[i-1][x] == 0); i--) {
a[i-1][x] = a[i][x];
a[i][x] = 0;
move = 1;
}
}
}
break;
case 'S':
case 's':
//从下向上消去相同方块
for(x = 0; x < 4; x++)
for(y = 3; y >= 0; ) {
if(a[y][x] == 0) {
y--;
continue;
} else {
for(i = y - 1; i >= 0; i--) {
if(a[i][x] == 0) {
continue;
} else if(a[y][x] == a[i][x]) {
a[y][x] += a[i][x];
a[i][x] = 0;
y = i -1;
empty++;
break;
} else {
y = i;
break;
}
}
y = i;
}
}
//向下移动方块
for(x = 0; x < 4; x++)
for(y = 3; y >= 0; y--) {
if(a[y][x] == 0) {
continue;
} else {
for(i = y; (i < 3) && (a[i+1][x] == 0); i++) {
a[i+1][x] = a[i][x];
a[i][x] = 0;
move = 1;
}
}
}
break;
case 'Q':
case 'q':
game_over();
break;
default:
continue;
break;
}

if(empty <= 0)
game_over();
draw();
//生成新方块
if((empty != old_empty) || (move == 1)) { //修复了不移动或消除方块也生成新方块的bug
do {
new_x = rand() % 4;
new_y = rand() % 4;
}while(a[new_y][new_x] != 0);

cnt_value(&new_y, &new_x);

do {
tmp = rand() % 4;
}while(tmp == 0 || tmp == 2);
a[new_y][new_x] = tmp + 1;
empty--;

draw_one(new_y, new_x);
}
}
}

int cnt_one(int y, int x)
{
int value = 1;

if(y - 1 > 0)
a[y-1][x] ? 0 : value++;
if(y + 1 < 4)
a[y+1][x] ? 0 : value++;
if(x - 1 >= 0)
a[y][x-1] ? 0 : value++;
if(x + 1 < 4)
a[y][x+1] ? 0 : value++;
if(y - 1 >= 0 && x - 1 >= 0)
a[y-1][x-1] ? 0 : value++;
if(y - 1 >= 0 && x + 1 < 4)
a[y-1][x+1] ? 0 : value++;
if(y + 1 < 4 && x - 1 >= 0)
a[y+1][x-1] ? 0 : value++;
if(y + 1 < 4 && x + 1 < 4)
a[y+1][x+1] ? 0 : value++;

return value;
}

void cnt_value(int *new_y, int *new_x)
{
int max_x, max_y, x, y, value;
int max = 0;

max = cnt_one(*new_y, *new_x);
for(y = 0; y < 4; y++)
for(x = 0; x < 4; x++) {
if(!a[y][x]) {
value = cnt_one(y, x);
if(value > max && old_y != y && old_x != x) { //避免在同一位置反复出现新方块
*new_y = y;
*new_x = x;
old_x = x;
old_y = y;
break;
}
}
}
}

int game_over()
{
sleep(1);
endwin();
exit(0);
}

编译程序

1
gcc 2048.c -o 2048 -lcurses

运行程序

1
./2048

操作

使用“w”;”a”;”s”;”d”;或者”W”;”A”;”S”;”D”来进行移动

效果图如下: