-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtetris.c
644 lines (560 loc) · 14.3 KB
/
tetris.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
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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
/* based on this: https://github.com/mamikk/tetris */
#include <stddef.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <math.h>
#include "matelight.h"
#define MODE_GAME 0
#define MODE_DEAD 1
#define TETRIS_WIDTH grid_width
#define TETRIS_HEIGHT (grid_height + 2)
#define TETRIS_VISIBLE_HEIGHT (TETRIS_HEIGHT - 2)
#define TETRIS_BLOCK_START_Y TETRIS_VISIBLE_HEIGHT
#define TETRIS_NUM_BRICKS 7
/* blocks: */
/* I, J, L, O, S, T, and Z */
static const unsigned int tetris_block_colors[TETRIS_NUM_BRICKS] = {
/* I block */ COLOR_CYAN,
/* J block */ COLOR_BLUE,
/* L block */ COLOR_ORANGE,
/* O block */ COLOR_YELLOW,
/* S block */ COLOR_GREEN,
/* T block */ COLOR_MAGENTA,
/* Z block */ COLOR_RED,
};
struct tetris_block_rotations {
const char rotations[4][4][4];
};
static const struct tetris_block_rotations tetris_blocks_rotations[TETRIS_NUM_BRICKS] = {
/* I block */
{
{
{
" ",
"####",
" ",
" "
},
{
" # ",
" # ",
" # ",
" # "
},
{
" ",
" ",
"####",
" "
},
{
" # ",
" # ",
" # ",
" # "
}
}
},
/* J block */
{
{
{
"# ",
"### ",
" ",
" "
},
{
" ## ",
" # ",
" # ",
" "
},
{
" ",
"### ",
" # ",
" "
},
{
" # ",
" # ",
"## ",
" "
}
}
},
/* L block */
{
{
{
" # ",
"### ",
" ",
" "
},
{
" # ",
" # ",
" ## ",
" "
},
{
" ",
"### ",
"# ",
" "
},
{
"## ",
" # ",
" # ",
" "
}
}
},
/* O block */
{
{
{
" ## ",
" ## ",
" ",
" "
},
{
" ## ",
" ## ",
" ",
" "
},
{
" ## ",
" ## ",
" ",
" "
},
{
" ## ",
" ## ",
" ",
" "
},
}
},
/* S block */
{
{
{
" ## ",
"## ",
" ",
" "
},
{
" # ",
" ## ",
" # ",
" "
},
{
" ",
" ## ",
"## ",
" "
},
{
"# ",
"## ",
" # ",
" "
}
}
},
/* T block */
{
{
{
" # ",
"### ",
" ",
" "
},
{
" # ",
" ## ",
" # ",
" "
},
{
" ",
"### ",
" # ",
" "
},
{
" # ",
"## ",
" # ",
" "
}
}
},
/* Z block */
{
{
{
"## ",
" ## ",
" ",
" "
},
{
" # ",
" ## ",
" # ",
" "
},
{
" ",
"## ",
" ## ",
" "
},
{
" # ",
"## ",
"# ",
" "
}
}
}
};
typedef int tetris_field[MAX_GRID_SIZE];
struct tetris {
tetris_field field;
double next_update;
int curblock;
int curblock_x, curblock_y;
int nextblock;
int rotation;
double last_tetris;
unsigned int score;
unsigned int level;
};
static int game_mode = MODE_DEAD;
static bool game_pause = false;
static double pause_start = 0.0;
static struct tetris _tetris = { 0 };
static struct tetris *tetris = &_tetris;
static void setup_game(bool start)
{
int x, y;
game_mode = start ? MODE_GAME : MODE_DEAD;
game_pause = false;
pause_start = 0.0;
memset(tetris, '\0', sizeof(*tetris));
for (x = 0; x < TETRIS_WIDTH; ++x) {
for (y = 0; y < TETRIS_HEIGHT; ++y) {
tetris->field[(y * TETRIS_WIDTH) + x] = 0;
}
}
tetris->next_update = time_val;
tetris->curblock = rand() % TETRIS_NUM_BRICKS;
tetris->curblock_x = (TETRIS_WIDTH / 2) - (4 / 2);
tetris->curblock_y = TETRIS_BLOCK_START_Y;
tetris->nextblock = rand() % TETRIS_NUM_BRICKS;
tetris->rotation = 0;
tetris->last_tetris = -100.0;
tetris->score = 0;
tetris->level = 0;
}
static void activate(bool start)
{
setup_game(start);
}
static void deactivate(void)
{
setup_game(false);
}
static void field_apply(tetris_field field1, tetris_field field2)
{
int x, y;
for (x = 0; x < TETRIS_WIDTH; ++x) {
for (y = 0; y < TETRIS_HEIGHT; ++y) {
if (field2[(y * TETRIS_WIDTH) + x])
field1[(y * TETRIS_WIDTH) + x] = field2[(y * TETRIS_WIDTH) + x];
}
}
}
static void write_block(tetris_field field, int i, int r, int x, int y)
{
int px, py;
for (px = 0; px < 4; ++px) {
for (py = 0; py < 4; ++py) {
int v = tetris_blocks_rotations[i].rotations[r][py][px] == '#';
int tx = x + px;
int ty = y + py;
if (v && tx >= 0 && tx < TETRIS_WIDTH && ty >= 0 && ty < TETRIS_HEIGHT)
field[(ty * TETRIS_WIDTH) + tx] = (i + 1);
}
}
}
static bool valid_block(tetris_field tstfield, int i, int r, int x, int y)
{
int px, py;
tetris_field curblock = { 0 };
for (px = 0; px < 4; ++px) {
for (py = 0; py < 4; ++py) {
int v = tetris_blocks_rotations[i].rotations[r][py][px] == '#';
int tx = x + px;
int ty = y + py;
if (! v)
continue;
if (v && tx >= 0 && tx < TETRIS_WIDTH && ty >= 0 && ty < TETRIS_HEIGHT)
continue;
return false;
}
}
write_block(curblock, i, r, x, y);
for (x = 0; x < TETRIS_WIDTH; ++x) {
for (y = 0; y < TETRIS_HEIGHT; ++y) {
if (! curblock[(y * TETRIS_WIDTH) + x]) continue;
if (tstfield[(y * TETRIS_WIDTH) + x]) return false;
}
}
return true;
}
static bool block_landed(void)
{
int x, y;
tetris_field curblock = { 0 };
write_block(curblock, tetris->curblock, tetris->rotation, tetris->curblock_x, tetris->curblock_y);
for (x = 0; x < TETRIS_WIDTH; ++x) {
if (curblock[(0 * TETRIS_WIDTH) + x]) return true;
}
for (x = 0; x < TETRIS_WIDTH; ++x) {
for (y = 0; y < TETRIS_HEIGHT; ++y) {
if (! tetris->field[(y * TETRIS_WIDTH) + x]) continue;
if (curblock[((y + 1) * TETRIS_WIDTH) + x]) return true;
}
}
return false;
}
static bool block_crashed(void)
{
int x, y;
tetris_field curblock = { 0 };
write_block(curblock, tetris->curblock, tetris->rotation, tetris->curblock_x, tetris->curblock_y);
for (x = 0; x < TETRIS_WIDTH; ++x) {
for (y = 0; y < TETRIS_HEIGHT; ++y) {
if (! tetris->field[(y * TETRIS_WIDTH) + x]) continue;
if (curblock[(y * TETRIS_WIDTH) + x]) return true;
}
}
return false;
}
static int check_tetris(void)
{
int ret = 0;
for (;;) {
int x, y;
for (y = 0; y < TETRIS_HEIGHT; ++y) {
bool allright = true;
for (x = 0; x < TETRIS_WIDTH; ++x) {
if (! tetris->field[(y * TETRIS_WIDTH) + x]) allright = false;
}
if (allright) goto doit;
}
break;
doit:
++ret;
for (; y < (TETRIS_HEIGHT - 1); ++y) {
for (x = 0; x < TETRIS_WIDTH; ++x) {
tetris->field[(y * TETRIS_WIDTH) + x] = tetris->field[((y + 1) * TETRIS_WIDTH) + x];
}
}
for (x = 0; x < TETRIS_WIDTH; ++x)
tetris->field[((TETRIS_HEIGHT - 1) * TETRIS_WIDTH) + x] = 0;
}
return ret;
}
static void iterate(void)
{
tetris->curblock_y--;
}
/* left: move block left */
static void key_left(void)
{
if (valid_block(tetris->field, tetris->curblock, tetris->rotation, tetris->curblock_x - 1, tetris->curblock_y))
tetris->curblock_x--;
}
/* right: move block right */
static void key_right(void)
{
if (valid_block(tetris->field, tetris->curblock, tetris->rotation, tetris->curblock_x + 1, tetris->curblock_y))
tetris->curblock_x++;
}
/* up: rotate block clockwise */
static void key_up(void)
{
int next_rotation = tetris->rotation;
next_rotation++;
if (next_rotation >= 4) next_rotation = 0;
if (valid_block(tetris->field, tetris->curblock, next_rotation, tetris->curblock_x, tetris->curblock_y))
tetris->rotation = next_rotation;
}
/* down: move block down */
static void key_down(void)
{
if (! block_landed()) iterate();
}
/* space: drop block */
static void key_drop(void)
{
while (! block_landed()) iterate();
}
static bool doit(void)
{
bool is_game_over = false;
double u;
if (game_pause)
return ! is_game_over;
if (time_val >= tetris->next_update) {
if (block_landed()) {
tetris_field curblock = { 0 };
int nt;
write_block(curblock, tetris->curblock, tetris->rotation, tetris->curblock_x, tetris->curblock_y);
field_apply(tetris->field, curblock);
tetris->curblock = tetris->nextblock;;
tetris->curblock_x = (TETRIS_WIDTH / 2) - (4 / 2);
tetris->curblock_y = TETRIS_BLOCK_START_Y;
tetris->nextblock = rand() % TETRIS_NUM_BRICKS;
tetris->rotation = 0;
nt = check_tetris();
tetris->level += nt;
if (nt == 1) tetris->score += 1000;
if (nt == 2) tetris->score += 2000;
if (nt == 3) tetris->score += 4000;
if (nt == 4) {
tetris->score += 10000;
tetris->last_tetris = time_val;
}
if (block_crashed()) {
is_game_over = true;
}
} else {
iterate();
}
u = 5.0 - log((double)( (tetris->level / 4) + 1));
u /= 10.0;
if (u <= 0.05)
u = 0.05;
tetris->next_update = time_val + u;
}
return ! is_game_over;
}
static void draw(char *screen)
{
int x, y;
tetris_field field = { 0 };
tetris_field curblock = { 0 };
for (y = 0; y < grid_height; y++) {
for (x = 0; x < grid_width; x++) {
set_pixel(screen, y, x, COLOR_BLACK);
}
}
write_block(curblock, tetris->curblock, tetris->rotation, tetris->curblock_x, tetris->curblock_y);
memcpy(field, tetris->field, sizeof(field));
field_apply(field, curblock);
/* playfield */
for (x = 0; x < TETRIS_WIDTH; ++x) {
for (y = 0; y < TETRIS_VISIBLE_HEIGHT; ++y) {
unsigned int color;
int v;
v = field[(y * TETRIS_WIDTH) + x];
if (v) {
color = tetris_block_colors[v - 1];
set_pixel(screen, (grid_height - y) - 1, x, color);
}
}
}
}
static void tick(void)
{
if (game_mode != MODE_GAME) return;
if (! doit())
game_mode = MODE_DEAD;
}
static void input(int player, int key_idx, bool key_val, int key_state)
{
(void)player;
(void)key_state;
switch (game_mode) {
case MODE_GAME:
if (key_idx == KEYPAD_LEFT && key_val) {
key_left();
} else if (key_idx == KEYPAD_RIGHT && key_val) {
key_right();
} else if (key_idx == KEYPAD_UP && key_val) {
key_up();
} else if (key_idx == KEYPAD_DOWN && key_val) {
key_down();
}
if (key_idx == KEYPAD_START && key_val) {
if (! game_pause) {
game_pause = true;
pause_start = time_val;
} else {
game_pause = false;
tetris->next_update += (time_val - pause_start);
pause_start = 0.0;
}
}
if ((key_idx == KEYPAD_B || key_idx == KEYPAD_A) && key_val) {
key_drop();
}
break;
case MODE_DEAD:
switch (key_idx) {
case KEYPAD_SELECT:
case KEYPAD_START:
case KEYPAD_B:
case KEYPAD_A:
if (key_val) {
setup_game(true);
}
break;
default:
break;
}
}
}
static void render(bool *display, char *screen)
{
if (game_mode == MODE_GAME) {
*display = true;
draw(screen);
} else {
*display = false;
}
}
static bool idle(void)
{
return game_mode != MODE_GAME;
}
const struct game tetris_game = {
"tetris",
true,
false,
0.1,
NULL,
activate,
deactivate,
input,
tick,
render,
idle,
};