]> git.gir.st - VIper.git/blob - viiper.c
`-l`: set initial snake length; better init_snake meandering
[VIper.git] / viiper.c
1 /*******************************************************************************
2 viiper 0.1
3 By Tobias Girstmair, 2018
4
5 ./viiper 40x25
6 (see ./viiper -h for full list of options)
7
8 KEYBINDINGS: - hjkl to move
9 - p to pause and resume
10 - r to restart
11 - q to quit
12 - (see `./minesviiper -h' for all keybindings)
13
14 GNU GPL v3, see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt
15 *******************************************************************************/
16
17
18 #define _POSIX_C_SOURCE 2 /*for getopt and sigaction in c99, sigsetjmp*/
19 #include <setjmp.h>
20 #include <signal.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/ioctl.h>
25 #include <sys/time.h>
26 #include <termios.h>
27 #include <time.h>
28 #include <unistd.h>
29
30 #include "viiper.h"
31 #include "schemes.h"
32
33 #define MIN(a,b) (a>b?b:a)
34 #define MAX(a,b) (a>b?a:b)
35 #define CLAMP(a,m,M) (a<m?m:(a>M?M:a))
36 #define printm(n, s) for (int _loop = 0; _loop < n; _loop++) fputs (s, stdout)
37 #define print(str) fputs (str?str:"", stdout)
38 #define CTRL_ 0x1F &
39
40 #define OPPOSITE(dir) ( \
41 dir == EAST ? WEST : \
42 dir == WEST ? EAST : \
43 dir == NORTH ? SOUTH : \
44 dir == SOUTH ? NORTH : -1)
45
46 #define COL_OFFSET 1
47 #define LINE_OFFSET 1
48 #define LINES_AFTER 1
49 #define CW op.sch->cell_width
50
51 struct game {
52 int w; /* field width */
53 int h; /* field height */
54 int d; /* direction the snake is looking */
55 int t; /* time of game start */
56 int p; /* score */
57 float v; /* velocity in moves per second */
58 struct snake* s; /* snek */
59 struct item* i; /* items (food, boni) */
60 struct directions {
61 int h; /* write head */
62 int n; /* number of elements */
63 int c[16];
64 } k; /* ring buffer for direction events */
65 } g;
66
67 struct opt {
68 int l; /* initial snake length */
69 int s; /* initial snake speed */
70 struct scheme* sch;
71 } op;
72
73 jmp_buf game_over;
74
75 int main (int argc, char** argv) {
76 /* defaults: */
77 g.w = 30; //two-char-width
78 g.h = 20;
79 op.l = 10;
80 op.s = 8;
81 op.sch = &unic0de;
82
83 int optget;
84 opterr = 0; /* don't print message on unrecognized option */
85 while ((optget = getopt (argc, argv, "+s:l:dh")) != -1) {
86 switch (optget) {
87 case 's':
88 op.s = atof(optarg);
89 if (op.s < 1) {
90 fprintf (stderr, "speed must be >= 1\n");
91 return 1;
92 }
93 break;
94 case 'l':
95 op.l = atoi(optarg);
96 if (op.s < 2 || op.s > g.w*g.h-1) {
97 fprintf (stderr, "length must be >= 2 and < W*H\n");
98 return 1;
99 }
100 break;
101 case 'd': op.sch = &vt220_charset; break;
102 case 'h':
103 default:
104 fprintf (stderr, SHORTHELP LONGHELP, argv[0]);
105 return !(optget=='h');
106 }
107 } if (optind < argc) { /* parse Fieldspec */
108 int n = sscanf (argv[optind], "%dx%d", &g.w, &g.h);
109
110 if (n < 2) {
111 fprintf(stderr,"FIELDSIZE is WxH (width 'x' height)\n");
112 return 1;
113 }
114 }
115
116 clamp_fieldsize();
117
118 srand(time(0));
119 signal_setup();
120 screen_setup(1);
121 atexit (*quit);
122
123 char* end_screen_msg = "";
124 restart:
125 switch (sigsetjmp(game_over, 1)) {
126 case GAME_INIT:
127 case GAME_START:
128 viiper();
129 case GAME_OVER:
130 end_screen_msg = " GAME OVER ";
131 goto end_screen;
132 case GAME_WON:
133 end_screen_msg = "CONGRATULATIONS!";
134 goto end_screen;
135 end_screen:
136 timer_setup(0);
137 show_playfield();
138 for (;;) switch (end_screen(end_screen_msg)) {
139 case 'r': goto restart;
140 case 'q': goto quit;
141 case CTRL_'L':
142 screen_setup(1);
143 show_playfield();
144 break;
145 default: continue;
146 }
147 case GAME_EXIT:
148 goto quit;
149 }
150
151 quit:
152 return 0;
153 }
154
155 int viiper(void) {
156 init_snake();
157 show_playfield ();
158 g.d = EAST;
159 g.v = op.s;
160
161 timer_setup(1);
162 g.t = time(NULL);
163
164 spawn_item(FOOD, rand() % NUM_FOODS, NULL); //TODO: shape distribution, so bigger values get selected less
165
166 for(;;) {
167 switch (getctrlseq()) {
168 case CTRSEQ_CURSOR_LEFT: case 'h':append_movement(WEST); break;
169 case CTRSEQ_CURSOR_DOWN: case 'j':append_movement(SOUTH); break;
170 case CTRSEQ_CURSOR_UP: case 'k':append_movement(NORTH); break;
171 case CTRSEQ_CURSOR_RIGHT:case 'l':append_movement(EAST); break;
172 case 'p':
173 timer_setup(0);
174 move_ph (g.h/2+LINE_OFFSET, g.w*CW/2);
175 printf ("\033[5mPAUSE\033[0m"); /* blinking text */
176 if (getchar() == 'q') exit(0);
177 show_playfield();
178 timer_setup(1);
179 break;
180 case 'r': siglongjmp(game_over, GAME_START);
181 case 'q': siglongjmp(game_over, GAME_EXIT);
182 case CTRL_'L':
183 screen_setup(1);
184 show_playfield();
185 break;
186 case 0x02: /* STX; gets sent when returning from SIGALRM */
187 continue;
188 }
189 }
190
191 }
192
193 #define pop_dir() (g.k.n? g.k.c[(16+g.k.h-g.k.n--)%16] : NONE)
194 void snake_advance (void) {
195 int respawn = 0;
196 struct item* i; /*temporary item (defined here to respawn at the end) */
197 int new_dir = pop_dir();
198 /* switch direction if new one is in the buffer and it won't kill us: */
199 if (new_dir && g.d != OPPOSITE(new_dir)) g.d = new_dir;
200
201 int new_row = g.s->r +(g.d==SOUTH) -(g.d==NORTH);
202 int new_col = g.s->c +(g.d==EAST) -(g.d==WEST);
203
204 /* detect food hit and spawn a new food */
205 for (i = g.i; i; i = i->next) {
206 if (i->r == new_row && i->c == new_col) {
207 consume_item (i);
208 respawn = 1; /* must respawn after advancing head */
209 break;
210 }
211 }
212
213 if (new_row >= g.h || new_col >= g.w || new_row < 0 || new_col < 0)
214 siglongjmp(game_over, GAME_OVER);
215
216 struct snake* new_head;
217 struct snake* new_tail; /* former second-to-last element */
218 for (new_tail = g.s; new_tail->next->next; new_tail = new_tail->next)
219 /*use the opportunity of looping to check if we eat ourselves:*/
220 if(new_tail->next->r == new_row && new_tail->next->c == new_col)
221 siglongjmp(game_over, GAME_OVER);
222 int old_tail[2] = {new_tail->next->r, new_tail->next->c};/*gets erased*/
223 new_head = new_tail->next; /* reuse element instead of malloc() */
224 new_tail->next = NULL;
225
226 new_head->r = new_row;
227 new_head->c = new_col;
228 new_head->next = g.s;
229
230 g.s = new_head;
231
232 if (respawn) spawn_item(FOOD, rand() % NUM_FOODS, i);
233 draw_sprites (old_tail[0], old_tail[1]);
234 }
235
236 void spawn_item (int type, int value, struct item* p_item) {
237 int row, col;
238 char occupied[g.w][g.h]; int snake_len = 0;
239 memset(*occupied, 0, g.w*g.h);
240 try_again:
241 row = rand() % g.h;
242 col = rand() % g.w;
243 if (snake_len >= g.w*g.h-1) siglongjmp(game_over, GAME_WON);
244 /* loop through snake to check if we aren't on it */
245 if (occupied[row][col]) goto try_again; /* shortcut */
246 for (struct snake* s = g.s; s; s = s->next)
247 if (s->r == row && s->c == col) {
248 occupied[s->r][s->c] = 1; snake_len++;
249 goto try_again;
250 }
251
252 /* if we got a item buffer reuse it, otherwise create a new one: */
253 struct item* new_item;
254 if (p_item) new_item = p_item;
255 else new_item = malloc (sizeof(struct item));
256
257 new_item->r = row;
258 new_item->c = col;
259 new_item->t = type;
260 new_item->v = value;
261 new_item->s = time(0);
262 if (g.i) g.i->prev = new_item;
263 new_item->next = g.i;
264 new_item->prev = NULL;
265
266 g.i = new_item;
267 }
268
269 void consume_item (struct item* i) {
270 switch (i->t) {
271 case FOOD:
272 switch (i->v) {
273 case FOOD_5: g.p += 5; break;
274 case FOOD_10: g.p += 10; break;
275 case FOOD_20: g.p += 20; break;
276 }
277 snake_append(&g.s, -1, -1);
278 break; /* will be reused as the head before it is drawn */
279 case BONUS:
280 //TODO: handle bonus
281 break;
282 }
283
284 if (i->next) i->next->prev = i->prev;
285 if (i->prev) i->prev->next = i->next;
286 else g.i = i->next;
287 }
288
289 void show_playfield (void) {
290 move_ph (0,0);
291
292 /* top border */
293 print(BORDER(T,L));
294 printm (g.w, BORDER(T,C));
295 printf ("%s\n", BORDER(T,R));
296
297 /* main area */
298 for (int row = 0; row < g.h; row++)
299 printf ("%s%*s%s\n", BORDER(C,L), CW*g.w, "", BORDER(C,R));
300
301 /* bottom border */
302 print(BORDER(B,L));
303 printm (g.w, BORDER(B,C));
304 print (BORDER(B,R));
305
306 draw_sprites (0,0);
307 }
308
309 void draw_sprites (int erase_r, int erase_c) {
310 /* erase old tail */
311 move_ph (erase_r+LINE_OFFSET, erase_c*CW+COL_OFFSET);
312 printm (CW, " ");
313
314 /* print snake */
315 struct snake* last = NULL;
316 int color = 2;
317 for (struct snake* s = g.s; s; s = s->next) {
318 if (s->r < 0 || s->c < 0) continue; /*can't draw outside term.*/
319 move_ph (s->r+LINE_OFFSET, s->c*CW+COL_OFFSET);
320
321 int predecessor = (last==NULL)?NONE:
322 (last->r < s->r) ? NORTH:
323 (last->r > s->r) ? SOUTH:
324 (last->c > s->c) ? EAST:
325 (last->c < s->c) ? WEST:NONE;
326 int successor = (s->next == NULL)?NONE:
327 (s->next->r < s->r) ? NORTH:
328 (s->next->r > s->r) ? SOUTH:
329 (s->next->c > s->c) ? EAST:
330 (s->next->c < s->c) ? WEST:NONE;
331
332 printf ("\033[%sm", op.sch->color[color]);
333 print (op.sch->snake[predecessor][successor]);
334 printf ("\033[0m");
335 last = s;
336 color = !color;
337 }
338
339 /* print item queue */
340 for (struct item* i = g.i; i; i = i->next) {
341 move_ph (i->r+LINE_OFFSET, i->c*CW+COL_OFFSET);
342 if (i->t == FOOD) print (op.sch->item[i->v]);
343 else if (i->t==BONUS) /* TODO: print bonus */;
344 }
345
346 /* print score */
347 int score_width = g.p > 9999?6:4;
348 move_ph (0, (g.w*CW-score_width)/2-COL_OFFSET);
349 printf ("%s %0*d %s", BORDER(S,L), score_width, g.p, BORDER(S,R));
350 }
351
352 #define MOVE_POPUP(WIDTH, LINE) \
353 move_ph(g.h/2+LINE_OFFSET-1+LINE,(g.w*op.sch->display_width-WIDTH)/2)
354 int end_screen(char* message) {
355 int msg_w = strlen(message);
356 MOVE_POPUP(msg_w, -1);
357 print(BORDER(T,L));
358 printm ((msg_w+2)/op.sch->display_width, BORDER(T,C));
359 print (BORDER(T,R));
360
361 MOVE_POPUP(msg_w, 0);
362 printf("%s %s %s", BORDER(C,L), message, BORDER(C,R));
363 MOVE_POPUP(msg_w, 1);
364 printf("%s `r' restart%*s%s", BORDER(C,L), msg_w-10, "", BORDER(C,R));
365 MOVE_POPUP(msg_w, 2);
366 printf("%s `q' quit%*s%s", BORDER(C,L), msg_w-7, "", BORDER(C,R));
367
368 MOVE_POPUP(msg_w, 3);
369 print(BORDER(B,L));
370 printm ((msg_w+2)/op.sch->display_width, BORDER(B,C));
371 print (BORDER(B,R));
372 fflush(stdout);
373
374 return getctrlseq();
375 }
376
377 void snake_append (struct snake** s, int row, int col) {
378 struct snake* new = malloc (sizeof(struct snake));
379 new->r = row;
380 new->c = col;
381 new->next = NULL;
382
383 if (*s) {
384 struct snake* p = *s;
385 while (p->next) p = p->next;
386 p->next = new;
387 } else {
388 *s = new;
389 }
390 }
391
392 #define free_ll(head) do{ \
393 while (head) { \
394 void* tmp = head; \
395 head = head->next; \
396 free(tmp); \
397 } \
398 head = NULL; \
399 }while(0)
400
401 void init_snake() {
402 free_ll(g.s);
403 free_ll(g.i);
404
405 int direction = WEST;
406 int r = g.h/2;
407 int c = g.w/2;
408 int min_r = 0;
409 int max_r = g.h-1;
410 int min_c = 0;
411 int max_c = g.w-1;
412 for (int i = 0; i < op.l; i++) {
413 switch (direction) {
414 case NORTH: r--; if(r <= min_r){direction=EAST; min_r++;}break;
415 case EAST: c++; if(c >= max_c){direction=SOUTH;max_c--;}break;
416 case SOUTH: r++; if(r >= max_r){direction=WEST; max_r--;}break;
417 case WEST: c--; if(c <= min_c){direction=NORTH;min_c++;}break;
418 }
419
420 snake_append(&g.s, r, c);
421 }
422 }
423
424 void quit (void) {
425 screen_setup(0);
426 free_ll(g.s);
427 free_ll(g.i);
428 }
429
430 enum esc_states {
431 START,
432 ESC_SENT,
433 CSI_SENT,
434 MOUSE_EVENT,
435 };
436 int getctrlseq (void) {
437 int c;
438 int state = START;
439 while ((c = getchar()) != EOF) {
440 switch (state) {
441 case START:
442 switch (c) {
443 case '\033': state=ESC_SENT; break;
444 default: return c;
445 }
446 break;
447 case ESC_SENT:
448 switch (c) {
449 case '[': state=CSI_SENT; break;
450 default: return CTRSEQ_INVALID;
451 }
452 break;
453 case CSI_SENT:
454 switch (c) {
455 case 'A': return CTRSEQ_CURSOR_UP;
456 case 'B': return CTRSEQ_CURSOR_DOWN;
457 case 'C': return CTRSEQ_CURSOR_RIGHT;
458 case 'D': return CTRSEQ_CURSOR_LEFT;
459 default: return CTRSEQ_INVALID;
460 }
461 break;
462 default:
463 return CTRSEQ_INVALID;
464 }
465 }
466 return 2;
467 }
468
469 void append_movement (int dir) {
470 if (g.k.n > 15) return; /* no space in buffer */
471 if (g.k.n && g.k.c[(16+g.k.h-1)%16] == dir)
472 return; /* don't add the same direction twice */
473
474 g.k.c[g.k.h] = dir;
475 g.k.n++;
476 g.k.h = ++g.k.h % 16;
477 }
478
479 void move_ph (int line, int col) {
480 /* move printhead to zero-indexed position */
481 printf ("\033[%d;%dH", line+1, col+1);
482 }
483
484 void clamp_fieldsize (void) {
485 /* clamp field size to terminal size and mouse maximum: */
486 struct winsize w;
487 ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
488
489 if (g.w < 10) g.w = 10;
490 if (g.h < 10) g.h = 10;
491
492 if (COL_OFFSET + g.w*CW + COL_OFFSET > w.ws_col)
493 g.w = (w.ws_col - 2*COL_OFFSET) / op.sch->display_width;
494 if (LINE_OFFSET + g.h + LINES_AFTER > w.ws_row)
495 g.h = w.ws_row - (LINE_OFFSET+LINES_AFTER);
496 }
497
498 void timer_setup (int enable) {
499 static struct itimerval tbuf;
500 tbuf.it_interval.tv_sec = 0;//TODO: make it speed up automatically
501 tbuf.it_interval.tv_usec = (1000000/g.v)-1; /*WARN: 1 <= g.v <= 999999*/
502
503 if (enable) {
504 tbuf.it_value.tv_sec = tbuf.it_interval.tv_sec;
505 tbuf.it_value.tv_usec = tbuf.it_interval.tv_usec;
506 } else {
507 tbuf.it_value.tv_sec = 0;
508 tbuf.it_value.tv_usec = 0;
509 }
510
511 if ( setitimer(ITIMER_REAL, &tbuf, NULL) == -1 ) {
512 perror("setitimer");
513 exit(1);
514 }
515
516 }
517
518 void signal_setup (void) {
519 struct sigaction saction;
520
521 saction.sa_handler = signal_handler;
522 sigemptyset(&saction.sa_mask);
523 saction.sa_flags = 0;
524 if (sigaction(SIGALRM, &saction, NULL) < 0 ) {
525 perror("SIGALRM");
526 exit(1);
527 }
528
529 if (sigaction(SIGINT, &saction, NULL) < 0 ) {
530 perror ("SIGINT");
531 exit (1);
532 }
533
534 if (sigaction(SIGCONT, &saction, NULL) < 0 ) {
535 perror ("SIGCONT");
536 exit (1);
537 }
538 }
539
540 void signal_handler (int signum) {
541 switch (signum) {
542 case SIGALRM:
543 snake_advance();
544 break;
545 case SIGINT:
546 exit(128+SIGINT);
547 case SIGCONT:
548 screen_setup(1);
549 show_playfield();
550 }
551 }
552
553 void screen_setup (int enable) {
554 if (enable) {
555 raw_mode(1);
556 printf ("\033[s\033[?47h"); /* save cursor, alternate screen */
557 printf ("\033[H\033[J"); /* reset cursor, clear screen */
558 printf ("\033[?25l"); /* hide cursor */
559 print (op.sch->init_seq); /* swich charset, if necessary */
560 } else {
561 print (op.sch->reset_seq); /* reset charset, if necessary */
562 printf ("\033[?25h"); /* show cursor */
563 printf ("\033[?47l\033[u"); /* primary screen, restore cursor */
564 raw_mode(0);
565 }
566 }
567
568 /* http://users.csc.calpoly.edu/~phatalsk/357/lectures/code/sigalrm.c */
569 void raw_mode(int enable) {
570 static struct termios saved_term_mode;
571 struct termios raw_term_mode;
572
573 if (enable) {
574 tcgetattr(STDIN_FILENO, &saved_term_mode);
575 raw_term_mode = saved_term_mode;
576 raw_term_mode.c_lflag &= ~(ICANON | ECHO);
577 raw_term_mode.c_cc[VMIN] = 1 ;
578 raw_term_mode.c_cc[VTIME] = 0;
579 tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw_term_mode);
580 } else {
581 tcsetattr(STDIN_FILENO, TCSAFLUSH, &saved_term_mode);
582 }
583 }
Imprint / Impressum