-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathboard.c
More file actions
572 lines (493 loc) · 11.3 KB
/
board.c
File metadata and controls
572 lines (493 loc) · 11.3 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
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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
/*
* Copyright 2014-2015, 2024 by Wade T. Cline (Frostsnow)
*
* "2048" is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* "2048" is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with "2048". If not, see <http://www.gnu.org/licenses/>.
*/
#include "board.h"
int board_done(struct board* board) {
int i;
int j;
int k;
// Check for winning number.
for (i = 0; i < BOARD_ROWS; i++) {
for (j = 0; j < BOARD_COLUMNS; j++) {
if (board->tiles[i][j] == 2048) {
return 1;
}
}
}
// Check for zeroes
for (i = 0; i < BOARD_ROWS; i++) {
for (j = 0; j < BOARD_COLUMNS; j++) {
if (!board->tiles[i][j]) {
return 0;
}
}
}
// Check for possible horizontal merge.
for (i = 0; i < BOARD_ROWS; i++) {
j = -1;
while ((k = ++j + 1) < BOARD_COLUMNS) {
if (board->tiles[i][j] == board->tiles[i][k]) {
return 0;
}
}
}
// Check for possible verical merge.
for (i = 0; i < BOARD_COLUMNS; i++) {
j = -1;
while ((k = ++j + 1) < BOARD_ROWS) {
if (board->tiles[j][i] == board->tiles[k][i]) {
return 0;
}
}
}
// No possible merges.
return -1;
}
void board_free(struct board* board) {
// Close the score file.
close(board->score_file);
}
unsigned board_get_tiles_empty(struct board* board) {
int i;
int j;
unsigned count;
// Calculate the number of empty tiles on the board.
count = 0;
for (i = 0; i < BOARD_ROWS; i++) {
for (j = 0; j < BOARD_COLUMNS; j++) {
count += (board->tiles[i][j] == 0);
}
}
// Return the calculated number.
return count;
}
void board_init(struct board* board) {
// Initialize the scores.
board->score_current = 0;
board_init_score(board);
// Initialize the tiles.
board_tiles_clear(board);
// Add two tiles to the board.
board_plop(board);
board_plop(board);
}
void board_init_score(struct board* board) {
char directory_path[128];
char file_path[128];
char* home;
// Get filepaths.
if (!(home = getenv("HOME"))) {
fprintf(stderr, "Unable to get home directory.");
goto out;
}
strncpy(directory_path, home, sizeof(directory_path));
if (strlen(directory_path) + strlen("/.2048") + 1 > 128) {
fprintf(stderr, "Directory path too long.");
goto out;
}
strncat(directory_path, "/.2048", sizeof(directory_path) - 1);
strncpy(file_path, home, sizeof(file_path));
if (strlen(file_path) + strlen("/.2048/score_top") + 1 > 128) {
fprintf(stderr, "File path too long.");
goto out;
}
strncat(file_path, "/.2048/score_top", sizeof(file_path) - 1);
// Open the top scores file.
if ((board->score_file = open(file_path, O_RDWR)) == -1) {
int directory;
// Create program directory.
if ((directory = open(directory_path, O_DIRECTORY | O_RDONLY))
== -1) {
if (mkdir(directory_path, 0755) == -1) {
perror("Unable to create save path.");
goto out;
}
} else {
close(directory);
}
// Create top scores file.
if ((board->score_file = open(file_path, O_CREAT | O_RDWR,
0644)) == -1) {
perror("Unable to create save file.");
goto out;
}
// Set initial score.
board->score_top = 0;
} else {
// Read in top score.
if (read(board->score_file, &board->score_top,
sizeof(board->score_top)) == -1 ) {
perror("Unable to read in top score.");
goto out;
}
}
// Return safely.
return;
out:
// Score file neither found nor loaded.
board->score_top = 0;
board->score_file = 0;
return;
}
int board_merge_down(struct board* board) {
int i;
int j;
int k;
int merge;
// Merge elements downwards.
merge = 0;
for (i = 0; i < BOARD_COLUMNS; i++) {
j = BOARD_ROWS - 1;
while (1) {
// Find two potential elements to merge.
while (j >= 0 && !board->tiles[j][i]) {
j--;
}
k = j - 1;
while (k >= 0 && !board->tiles[k][i]) {
k--;
}
if (k < 0) {
break;
}
// Try to merge the tiles.
if (board->tiles[j][i] == board->tiles[k][i]) {
board_tiles_merge(board,
&board->tiles[k][i],
&board->tiles[j][i]);
j = k - 1;
merge = 1;
} else {
j = k;
}
}
}
// Return whether an item was merged or not.
return merge;
}
int board_merge_left(struct board* board) {
int i;
int j;
int k;
int merge;
// Merge items leftwards.
merge = 0;
for (i = 0; i < BOARD_ROWS; i++) {
j = 0;
while (1) {
// Two two potential tiles to merge.
while (j < BOARD_COLUMNS && !board->tiles[i][j]) {
j++;
}
k = j + 1;
while (k < BOARD_COLUMNS && !board->tiles[i][k]) {
k++;
}
if (k >= BOARD_COLUMNS) {
break;
}
// Try to merge the tiles.
if (board->tiles[i][j] == board->tiles[i][k]) {
board_tiles_merge(board,
&board->tiles[i][j],
&board->tiles[i][k]);
j = k + 1;
merge = 1;
} else {
j = k;
}
}
}
// Return whether a tile was merged or not.
return merge;
}
int board_merge_right(struct board* board) {
int i;
int j;
int k;
int merge;
// Merge items rightward.
merge = 0;
for (i = 0; i < BOARD_ROWS; i++) {
j = BOARD_ROWS - 1;
while (1) {
// Find potential tiles to merge.
while (j >= 0 && !board->tiles[i][j]) {
j--;
}
k = j - 1;
while (k >= 0 && !board->tiles[i][k]) {
k--;
}
if (k < 0) {
break;
}
// Try to merge the tiles.
if (board->tiles[i][j] == board->tiles[i][k]) {
board_tiles_merge(board,
&board->tiles[i][k],
&board->tiles[i][j]);
j = k - 1;
merge = 1;
} else {
j = k;
}
}
}
// Return whether a tile was merged or not.
return merge;
}
int board_merge_up(struct board* board) {
int i;
int j;
int k;
int merge;
// Merge elements upwards.
merge = 0;
for (i = 0; i < BOARD_COLUMNS; i++) {
j = 0;
while (1) {
// Find two potential tiles to merge.
while (j < BOARD_ROWS && !board->tiles[j][i]) {
j++;
}
k = j + 1;
while (k < BOARD_ROWS && !board->tiles[k][i]) {
k++;
}
if (k >= BOARD_ROWS) {
break;
}
// Try to merge the tiles.
if (board->tiles[j][i] == board->tiles[k][i]) {
board_tiles_merge(board,
&board->tiles[j][i],
&board->tiles[k][i]);
j = k + 1;
merge = 1;
} else {
j = k;
}
}
}
// Return whether an item was merged or not.
return merge;
}
int board_move_down(struct board* board) {
char a = board_merge_down(board);
return a | board_shift_down(board);
}
int board_move_left(struct board* board) {
char a = board_merge_left(board);
return a | board_shift_left(board);
}
int board_move_right(struct board* board) {
char a = board_merge_right(board);
return a | board_shift_right(board);
}
int board_move_up(struct board* board) {
char a = board_merge_up(board);
return a | board_shift_up(board);
}
void board_plop(struct board* board) {
int i;
int j;
unsigned target;
unsigned tiles_empty;
// Count number of empty tiles.
tiles_empty = board_get_tiles_empty(board);
// Choose a random tile to palce the value into.
target = rand() % tiles_empty;
// Place the value into the tile. Implemented poorly.
tiles_empty = 0;
for (i = 0; i < BOARD_ROWS; i++) {
for (j = 0; j < BOARD_COLUMNS; j++) {
if (target == tiles_empty && board->tiles[i][j] == 0) {
board->tiles[i][j] = (rand() % 100 <=
BOARD_4SPAWN_CHANCE) ? 4 : 2;
tiles_empty++;
} else if (board->tiles[i][j] == 0) {
tiles_empty++;
}
}
}
}
void board_print(struct board* board) {
int i;
int j;
// Print the board's score.
printf(" Top: %5u\n Current: %5u\n\n", board->score_top,
board->score_current);
// Print the board's tiles.
for (i = 0; i < BOARD_ROWS; i++) {
printf(" ");
for (j = 0; j < BOARD_COLUMNS; j++) {
if (board->tiles[i][j]) {
printf("%4u ", board->tiles[i][j]);
} else {
printf(" . ");
}
}
printf("\n");
}
}
void board_reset(struct board* board) {
// Clear the current score.
board->score_current = 0;
// Clear the tiles.
board_tiles_clear(board);
// Place new starting tiles.
board_plop(board);
board_plop(board);
}
void board_score_updated(struct board* board) {
// Check for new top score.
if (board->score_current <= board->score_top) {
// Nothing to do.
return;
}
// Update in-game score.
board->score_top = board->score_current;
// Update score file.
if (!board->score_file) {
// Nothing to do.
return;
}
if (lseek(board->score_file, 0, SEEK_SET) == -1) {
fprintf(stderr, "Error updating score file: %i", errno);
return;
}
if (write(board->score_file, &board->score_top,
sizeof(board->score_top)) == -1) {
fprintf(stderr, "Error writing to score file: %i", errno);
return;
}
}
int board_shift_up(struct board* board) {
int i;
int j;
unsigned k;
int valid;
// Shift tiles up the columns.
valid = 0;
for (i = 0; i < BOARD_COLUMNS; i++) {
// Find first free tile in the column.
k = 0;
while (k < BOARD_ROWS && board->tiles[k][i]) {
k++;
}
// Shift tiles up the column.
for (j = k + 1; j < BOARD_ROWS; j++) {
if (board->tiles[j][i]) {
board->tiles[k++][i] = board->tiles[j][i];
board->tiles[j][i] = 0;
valid = 1;
}
}
}
// Return move status.
return valid;
}
int board_shift_down(struct board* board) {
int i;
int j;
int k;
int valid;
// Shift tiles down the columns.
valid = 0;
for (i = 0; i < BOARD_COLUMNS; i++) {
// Find the last free tile in the column.
k = BOARD_ROWS - 1;
while (k >= 0 && board->tiles[k][i]) {
k--;
}
// Shift tiles down the column.
for (j = k - 1; j >= 0; j--) {
if (board->tiles[j][i]) {
board->tiles[k--][i] = board->tiles[j][i];
board->tiles[j][i] = 0;
valid = 1;
}
}
}
// Return move status.
return valid;
}
int board_shift_left(struct board* board) {
int i;
int j;
unsigned k;
int valid;
// Shift tiles left across the rows.
valid = 0;
for (i = 0; i < BOARD_ROWS; i++) {
// Find the first free tile in the row.
k = 0;
while (k < BOARD_COLUMNS && board->tiles[i][k]) {
k++;
}
// Shift tiles left across the row.
for (j = k + 1; j < BOARD_COLUMNS; j++) {
if (board->tiles[i][j]) {
board->tiles[i][k++] = board->tiles[i][j];
board->tiles[i][j] = 0;
valid = 1;
}
}
}
// Return move status.
return valid;
}
int board_shift_right(struct board* board) {
int i;
int j;
int k;
int valid;
// Shift tiles right across the rows.
valid = 0;
for (i = 0; i < BOARD_ROWS; i++) {
// Find the last free tile in the row.
k = BOARD_COLUMNS - 1;
while (k >= 0 && board->tiles[i][k]) {
k--;
}
// Shift tiles right across the row.
for (j = k - 1; j >= 0; j--) {
if (board->tiles[i][j]) {
board->tiles[i][k--] = board->tiles[i][j];
board->tiles[i][j] = 0;
valid = 1;
}
}
}
// Return move status.
return valid;
}
void board_tiles_clear(struct board* board) {
int i;
int j;
// Clear the tiles.
for (i = 0; i < BOARD_ROWS; i++) {
for (j = 0; j < BOARD_COLUMNS; j++) {
board->tiles[i][j] = 0;
}
}
}
void board_tiles_merge(struct board* board, unsigned* a, unsigned* b) {
// Merge the two specified tiles.
board->score_current += (*a) += (*a);
(*b) = 0;
// Propogate updated score.
board_score_updated(board);
}