]> git.gir.st - minesVIiper.git/blob - mines.c
note a wontfix in dec mode
[minesVIiper.git] / mines.c
1 /*******************************************************************************
2 minesviiper 0.5
3 By Tobias Girstmair, 2015 - 2018
4
5 ./minesviiper 16x16x40
6 (see ./minesviiper -h for full list of options)
7
8 MOUSE MODE: - left click to open and choord
9 - right click to flag/unflag
10 VI MODE: - hjkl to move cursor left/down/up/right
11 - o/space to open and choord
12 - i to flag/unflag
13 - (see `./minesviiper -h' for all keybindings)
14
15 GNU GPL v3, see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt
16 *******************************************************************************/
17
18
19 #define _POSIX_C_SOURCE 2 /*for getopt, sigaction in c99*/
20 #include <ctype.h>
21 #include <poll.h>
22 #include <signal.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <sys/ioctl.h>
26 #include <sys/time.h>
27 #include <termios.h>
28 #include <time.h>
29 #include <unistd.h>
30
31 #include "mines.h"
32 #include "schemes.h"
33
34 #define LINE_OFFSET 3
35 #define LINES_AFTER 2
36 #define COL_OFFSET 2
37 #define BIG_MOVE 5
38 #define MOUSE_MAX 231
39 #define STOMP_TIMEOUT 150 /*ms*/
40
41 #define MIN(a,b) (a>b?b:a)
42 #define MAX(a,b) (a>b?a:b)
43 #define CLAMP(a,m,M) (a<m?m:(a>M?M:a))
44 #define printm(n, s) for (int _loop = 0; _loop < n; _loop++) fputs (s, stdout)
45 #define print(str) fputs (str?str:"", stdout)
46 #define EMOT(e) op.scheme->emoticons[EMOT_ ## e]
47 #define BORDER(l, c) op.scheme->border[B_ ## l][B_ ## c]
48 #define CW op.scheme->cell_width /* for brevity */
49 #define DW op.scheme->display_width /* ditto. */
50 #define HI_CELL f.c[g.p[0]][g.p[1]]
51 #define LINE_BELOW LINE_OFFSET+f.h-1+LINES_AFTER
52 #define CTRL_ 0x1F &
53
54 #define AR_CELL f.c[ROW][COL] /* helper for AROUND() */
55 #define AROUND(l, c) /* gives us loop-variables ROW, COL, AR_CELL */ \
56 for (int ROW = MAX(l-1, 0); ROW <= MIN(l+1, f.h-1); ROW++) \
57 for (int COL = MAX(c-1, 0); COL <= MIN(c+1, f.w-1); COL++) \
58 if (!(ROW == l && COL == c)) /* skip itself */
59
60 #define PAUSE_TIMER \
61 for (int _break=(timer_setup(0),1); _break; _break=0, timer_setup(g.t))
62
63 struct minefield f;
64 struct game g;
65 struct opt op;
66
67 int main (int argc, char** argv) {
68 /* defaults: */
69 f.w = 30;
70 f.h = 16;
71 f.m = 99;
72 op.scheme = &symbols_mono;
73 op.mode = FLAG;
74
75 int optget;
76 opterr = 0; /* don't print message on unrecognized option */
77 while ((optget = getopt (argc, argv, "+hnfqbcd")) != -1) {
78 switch (optget) {
79 case 'n': op.mode = NOFLAG; break;
80 case 'f': op.mode = FLAG; break; /*default*/
81 case 'q': op.mode = QUESM; break; /*WARN:implicitly sets -f*/
82 case 'b': op.scheme = &symbols_mono; break;
83 case 'c': op.scheme = &symbols_col1; break;
84 case 'd': op.scheme = &symbols_doublewidth; break;
85 case 'h':
86 default:
87 fprintf (stderr, SHORTHELP LONGHELP KEYHELP, argv[0]);
88 return !(optget=='h');
89 }
90 } if (optind < argc) { /* parse Fieldspec */
91 if (parse_fieldspec (argv[optind])) {
92 fprintf (stderr, SHORTHELP FIELDHELP, argv[0]);
93 return 1;
94 }
95 }
96
97 signal_setup();
98 atexit (*quit);
99
100 newgame:
101 screen_setup(1);
102 switch (g.o = minesviiper()) {
103 case GAME_NEW: goto newgame;
104 case GAME_WON: goto game_end;
105 case GAME_LOST:goto game_end;
106 case GAME_QUIT:goto quit;
107 }
108
109 game_end:
110 timer_setup(0); /* stop timer */
111 int show_how = g.o==GAME_WON?SHOWFLAGS:SHOWMINES;
112 show_minefield (show_how);
113 for(;;) {
114 switch(getch_wrapper()) {
115 case WRAPPER_EMOTICON:
116 case 'r': goto newgame;
117 case 'q': goto quit;
118 case CTRL_'L':
119 /*WARN: updates the timer (would require fix in struct*/
120 screen_setup(1);
121 show_minefield (show_how);
122 break;
123 case CTRL_'R':
124 interactive_resize();
125 goto newgame;
126 }
127 }
128
129 quit:
130 return 0;
131 }
132
133 int minesviiper(void) {
134 f.c = alloc_array (f.h, f.w);
135 g = (const struct game){0}; /* reset all game-specific parameters */
136
137 show_minefield (NORMAL);
138
139 for(;;) {
140 int actor = KEYBOARD; /* WARN: feels like a hack :| */
141 switch (getch_wrapper()) {
142 case ' ':
143 if (HI_CELL.o == OPENED) goto open_cell;
144 if (g.s == MODE_OPEN) goto open_cell;
145 if (g.s == MODE_FLAG) goto flag_cell;
146 if (g.s == MODE_QUESM) goto quesm_cell;
147 break;
148 case 's':
149 g.s = (g.s+1)%(op.mode+1);
150 show_minefield (g.c?SHOWMINES:NORMAL);
151 break;
152 case CTRSEQ_MOUSE_LEFT:
153 actor = MOUSE;
154 /* fallthrough */
155 open_cell:
156 case 'o':
157 switch (do_uncover(&(g.n), actor)) {
158 case GAME_LOST: return GAME_LOST;
159 case GAME_WON: return GAME_WON;
160 }
161 break;
162 flag_cell:
163 case CTRSEQ_MOUSE_RIGHT:
164 case 'i': flag_square (g.p[0], g.p[1]); break;
165 quesm_cell:
166 case '?':quesm_square (g.p[0], g.p[1]); break;
167 case CTRSEQ_CURSOR_LEFT:
168 case 'h': move_hi (g.p[0], g.p[1]-1); break;
169 case CTRSEQ_CURSOR_DOWN:
170 case 'j': move_hi (g.p[0]+1, g.p[1] ); break;
171 case CTRSEQ_CURSOR_UP:
172 case 'k': move_hi (g.p[0]-1, g.p[1] ); break;
173 case CTRSEQ_CURSOR_RIGHT:
174 case 'l': move_hi (g.p[0], g.p[1]+1); break;
175 case 'w': to_next_boundary (g.p[0], g.p[1], '>', 1); break;
176 case 'b': to_next_boundary (g.p[0], g.p[1], '<', 1); break;
177 case 'u': to_next_boundary (g.p[0], g.p[1], '^', 1); break;
178 case 'd': to_next_boundary (g.p[0], g.p[1], 'v', 1); break;
179 case 'e': to_next_boundary (g.p[0], g.p[1], '>', 0); break;
180 case '0': /* fallthrough */
181 case '^': move_hi (g.p[0], 0 ); break;
182 case '$': move_hi (g.p[0], f.w-1 ); break;
183 case 'g': move_hi (0, g.p[1]); break;
184 case 'G': move_hi (f.h-1, g.p[1]); break;
185 case 'z': move_hi (f.h/2, f.w/2 ); break;
186 case 'm': set_mark(); break;
187 case'\'': /* fallthrough */
188 case '`': jump_mark(); break;
189 case 'f': find(getch_wrapper(), '>', 0); break;
190 case 'F': find(getch_wrapper(), '<', 0); break;
191 case 't': find(getch_wrapper(), '>',-1); break;
192 case 'T': find(getch_wrapper(), '<',-1); break;
193 case 'a': find(getch_wrapper(), '>',+1); break;
194 case 'A': find(getch_wrapper(), '<',+1); break;
195 //TODO: HJKL, ^H^J^K^L: <spacemode> up/down/left/right/45deg
196 case WRAPPER_EMOTICON:
197 case 'r': timer_setup(0); return GAME_NEW;
198 case ':':
199 switch (ex_cmd()) {
200 case EX_QUIT: return GAME_QUIT;
201 case EX_HELP: printf (KEYHELP); break; //TODO: charset problems with vt220
202 case EX_RESZ:
203 timer_setup(0);
204 interactive_resize();
205 return GAME_NEW;
206 default:
207 printf ("\rinvalid command");
208 PAUSE_TIMER ungetc(getchar(), stdin);
209 printf("\033[2K"); /* clear line */
210 }
211 break;
212 case 'q': //TODO: redefine `q' as macro functionality
213 break;
214 case CTRL_'L':
215 screen_setup(1);
216 show_minefield (NORMAL);
217 break;
218 case '\\':
219 if (g.n == GAME_NEW) break; /* must open a cell first */
220 g.c = !g.c;
221 show_minefield (g.c?SHOWMINES:NORMAL);
222 break;
223 }
224 }
225
226 }
227
228 void quit (void) {
229 screen_setup(0);
230 free_field ();
231 }
232
233 /* I haven't won as long as a cell exists, that
234 - I haven't opened, and
235 - is not a mine */
236 int everything_opened (void) {
237 for (int row = 0; row < f.h; row++)
238 for (int col = 0; col < f.w; col++)
239 if (f.c[row][col].o == CLOSED &&
240 f.c[row][col].m == NO_MINE ) return 0;
241 return 1;
242 }
243
244 int wait_mouse_up (int l, int c) {
245 unsigned char mouse2[3];
246 int level = 1;
247 int l2, c2;
248
249 /* show :o face */
250 move_ph (1, field2screen_c (f.w/2)-1); print (EMOT(OHH));
251
252 if (!(l < 0 || l >= f.h || c < 0 || c >= f.w)) {
253 /* show a pushed-in button if cursor is on minefield */
254 redraw_cell (l, c, HIGHLIGHT);
255
256 show_stomp(1, l, c);
257 }
258
259 while (level > 0) {
260 if (getctrlseq (mouse2) == CTRSEQ_MOUSE) {
261 /* ignore mouse wheel events: */
262 if (mouse2[0] & 0x40) continue;
263
264 else if((mouse2[0]&3) == 3) level--; /* release event */
265 else level++; /* another button pressed */
266 }
267 }
268
269 move_ph (1, field2screen_c (f.w/2)-1); print (get_emoticon());
270
271 if (!(l < 0 || l >= f.h || c < 0 || c >= f.w)) {
272 redraw_cell (l, c, g.o?SHOWMINES:NORMAL);
273 show_stomp(0, l, c);
274 }
275 c2 = screen2field_c(mouse2[1]);
276 l2 = screen2field_l(mouse2[2]);
277 return ((l2 == l) && (c2 == c));
278 }
279
280 int choord_square (int line, int col) {
281 AROUND(line,col)
282 if (AR_CELL.f != FLAG) {
283 if (uncover_square (ROW, COL))
284 return 1;
285 }
286
287 return 0;
288 }
289
290 int uncover_square (int l, int c) {
291 if (f.c[l][c].o == OPENED)
292 return 0; /* nothing to do */
293
294 f.c[l][c].o = OPENED;
295 f.c[l][c].f = NOFLAG; /*must not be QUESM, otherwise rendering issues*/
296 redraw_cell (l, c, NORMAL);
297
298 if (f.c[l][c].m) {
299 f.c[l][c].m = DEATH_MINE;
300 return 1;
301 }
302
303 /* check for chording */
304 if (f.c[l][c].n == 0) {
305 AROUND(l, c)
306 if (uncover_square (ROW, COL)) return 1;
307 }
308
309 return 0;
310 }
311
312 void flag_square (int l, int c) {
313 static char modechar[] = {'*', '!', '?'};
314
315 if (f.c[l][c].o != CLOSED) return;
316 /* cycle through flag/quesm/noflag: */
317 f.c[l][c].f = (f.c[l][c].f + 1) % (op.mode + 1);
318 if (f.c[l][c].f==FLAG) g.f++;
319 else if ((op.mode==FLAG && f.c[l][c].f==NOFLAG) ||
320 (op.mode==QUESM && f.c[l][c].f==QUESM)) g.f--;
321 redraw_cell (l, c, NORMAL);
322 move_ph (1, op.scheme->cell_width);
323 printf ("[%03d%c]", f.m - g.f, modechar[g.s]);
324 }
325
326 void quesm_square (int l, int c) {
327 /* toggle question mark / none. won't turn flags into question marks.
328 unlike flag_square, this function doesn't respect `-q'. */
329 if (f.c[l][c].o != CLOSED) return;
330 else if (f.c[l][c].f == NOFLAG) f.c[l][c].f = QUESM;
331 else if (f.c[l][c].f == QUESM) f.c[l][c].f = NOFLAG;
332 redraw_cell (l, c, NORMAL);
333 }
334
335 int do_uncover (int* is_newgame, int actor) {
336 if (*is_newgame == GAME_NEW) {
337 *is_newgame = GAME_INPROGRESS;
338 fill_minefield (g.p[0], g.p[1]);
339 timer_setup(1);
340 }
341
342 #ifdef COORD_ON_FLAG
343 if (HI_CELL.f == FLAG ) {
344 if (choord_square(g.p[0], g.p[1])) return GAME_LOST;
345 else return GAME_INPROGRESS;
346 }
347 #else
348 if (HI_CELL.f == FLAG ) return GAME_INPROGRESS;
349 #endif
350 if (HI_CELL.o == CLOSED) {
351 if (uncover_square (g.p[0], g.p[1])) return GAME_LOST;
352 } else if (get_neighbours (g.p[0], g.p[1], 1) == 0) {
353 if (choord_square (g.p[0], g.p[1])) return GAME_LOST;
354 } else if (actor != MOUSE) {
355 show_stomp(1, g.p[0], g.p[1]);
356
357 wait_stomp();
358
359 show_stomp(0, g.p[0], g.p[1]);
360 }
361 if (everything_opened()) return GAME_WON;
362
363 return GAME_INPROGRESS;
364 }
365
366 int ex_cmd(void) {
367 char what[256];
368 printf ("\033[?9l\033[?25h"); /* disable mouse, show cursor */
369 PAUSE_TIMER { /* timer spams ASCII STX (0x02) chars */
370 move_ph(LINE_BELOW, 0);
371 putchar(':'); /* prompt */
372
373 raw_mode(0);/*use cooked mode, so we get line editing for free*/
374 fgets(what, 256, stdin); //TODO: cancel on ^G, ESC, ^C, ...
375 raw_mode(1);
376
377 move_ph(LINE_BELOW, 0);
378 printf ("\033[0J"); /* clear to the end of the screen */
379 }
380 printf ("\033[?1000h\033[?25l"); /* enable mouse, hide cursor */
381
382 switch (what[0]) { //TODO: urgh.
383 case 'q': return EX_QUIT;
384 case 'h': return EX_HELP;
385 case 'r': return EX_RESZ;
386 default: return EX_INVALID;
387 }
388 }
389 void set_mark(void) {
390 int mark = tolower(getch_wrapper());
391 if (mark < 'a' || mark > 'z') return; /*out of bound*/
392
393 g.m[mark-'a'].l = g.p[0];
394 g.m[mark-'a'].c = g.p[1];
395 g.m[mark-'a'].s = 1;
396 }
397
398 void jump_mark(void) {
399 int mark = tolower(getch_wrapper());
400 /* check bounds and if set: */
401 if (mark < 'a' || mark > 'z' || !g.m[mark-'a'].s) return;
402 move_hi (g.m[mark-'a'].l, g.m[mark-'a'].c);
403 }
404
405 void fill_minefield (int l, int c) {
406 srand (time(0));
407 int mines_set = f.m;
408 while (mines_set) {
409 int line = rand() % f.h;
410 int col = rand() % f.w;
411
412 if (f.c[line][col].m) {
413 /* skip if field already has a mine */
414 continue;
415 } else if ((line == l) && (col == c)) {
416 /* don't put a mine on the already opened (first click) field */
417 continue;
418 } else {
419 mines_set--;
420 f.c[line][col].m = STD_MINE;
421 }
422 }
423
424 /* precalculate neighbours */
425 for (int l=0; l < f.h; l++)
426 for (int c=0; c < f.w; c++)
427 f.c[l][c].n = get_neighbours (l, c, NORMAL);
428 }
429
430 void move_ph (int line, int col) {
431 /* move printhead to zero-indexed position */
432 printf ("\033[%d;%dH", line+1, col+1);
433 }
434
435 void move_hi (int l, int c) {
436 /* move cursor and highlight to absolute coordinates */
437
438 redraw_cell (g.p[0], g.p[1], NORMAL);
439 /* update g.p */
440 g.p[0] = CLAMP(l, 0, f.h-1);
441 g.p[1] = CLAMP(c, 0, f.w-1);
442 move_ph (g.p[0]+LINE_OFFSET, field2screen_c(g.p[1]));
443
444 redraw_cell (g.p[0], g.p[1], HIGHLIGHT);
445 }
446
447 /* to_next_boundary(): move into the supplied direction until a change in open-
448 state or flag-state is found and move there. falls back to BIG_MOVE. */
449 #define FIND_BOUND(X, L, C, L1, C1, MAX, OP) do {\
450 new_ ## X OP ## = BIG_MOVE;\
451 for (int i = X OP 1; i > 0 && i < f.MAX-1; i OP ## OP)\
452 if (((f.c[L ][C ].o<<2) + f.c[L ][C ].f) \
453 != ((f.c[L1][C1].o<<2) + f.c[L1][C1].f)) {\
454 new_ ## X = i OP advance;\
455 break;\
456 }\
457 } while(0)
458 void to_next_boundary (int l, int c, char direction, int advance) {
459 int new_l = l;
460 int new_c = c;
461 switch (direction) {
462 case '>': FIND_BOUND(c, l, i, l, i+1, w, +); break;
463 case '<': FIND_BOUND(c, l, i, l, i-1, w, -); break;
464 case '^': FIND_BOUND(l, i, c, i-1, c, h, -); break;
465 case 'v': FIND_BOUND(l, i, c, i+1, c, h, +); break;
466 }
467
468 move_hi (new_l, new_c);
469 }
470 #undef FIND_BOUND
471
472 #define CELL f.c[g.p[0]][c]
473 #define FIND_NEXT(CONDITION, DIRECTION) do {\
474 int plusminus = DIRECTION-'='; /* -1 if '<', 1 if '>' */ \
475 for (int c = g.p[1]+plusminus; c >= 0 && c < f.w; c+=plusminus) \
476 if (CONDITION) { \
477 move_hi (g.p[0], c+(till_after*plusminus)); \
478 return 1; /* NOTE: break didn't work */ \
479 } \
480 return 0; \
481 } while(0)
482 int find (int what, char direction, int till_after) {
483 switch (what) {
484 case ' ': what = '0'; /* fallthrough */
485 case '0': case '1': case '2':
486 case '3': case '4': case '5':
487 case '6': case '7': case '8': /* numbers, opened */
488 FIND_NEXT(CELL.o && CELL.n == what-'0', direction);
489 case 'o': FIND_NEXT(CELL.o, direction); /* any opened */
490 case 'c': FIND_NEXT(!CELL.o, direction); /* any closed */
491 case 'f': case 'i': FIND_NEXT(CELL.f==FLAG, direction); /* is flagged */
492 case 'q': case '?': FIND_NEXT(CELL.f==QUESM, direction);/* questioned */
493 }
494
495 return 0;
496 }
497 #undef FIND_NEXT
498 #undef CELL
499
500 char* cell2schema (int l, int c, int mode) {
501 struct minecell cell = f.c[l][c];
502
503 if (mode == SHOWMINES) return (
504 cell.f == FLAG && cell.m ? op.scheme->field_flagged:
505 cell.f == FLAG && !cell.m ? op.scheme->mine_wrongf:
506 cell.m == STD_MINE ? op.scheme->mine_normal:
507 cell.m == DEATH_MINE ? op.scheme->mine_death:
508 cell.o == CLOSED ? op.scheme->field_closed:
509 /*.......................*/ op.scheme->number[f.c[l][c].n]);
510 else if (mode == SHOWFLAGS) return (
511 /* on win (everything opened, only correct flags left) */
512 cell.m == STD_MINE ? op.scheme->field_flagged:
513 /*.......................*/ op.scheme->number[f.c[l][c].n]);
514 else return (
515 cell.f == FLAG ? op.scheme->field_flagged:
516 cell.f == QUESM ? op.scheme->field_question:
517 cell.o == CLOSED ? op.scheme->field_closed:
518 cell.m == STD_MINE ? op.scheme->mine_normal:
519 cell.m == DEATH_MINE ? op.scheme->mine_death:
520 /*.......................*/ op.scheme->number[f.c[l][c].n]);
521 }
522
523 void redraw_cell (int l, int c, int mode) {
524 move_ph (l+LINE_OFFSET, field2screen_c(c));
525 if (mode == HIGHLIGHT) printf ("\033[7m"); /* reverse video */
526 print (cell2schema(l, c, mode));
527 if (mode == HIGHLIGHT) printf ("\033[0m"); /* reset all */
528 }
529
530 char* get_emoticon(void) {
531 return g.o==GAME_WON ? EMOT(WON):
532 g.o==GAME_LOST? EMOT(DEAD):
533 EMOT(SMILE);
534 }
535
536 /* https://zserge.com/blog/c-for-loop-tricks.html */
537 #define print_line(which) \
538 for (int _break = (printf("%s", BORDER(which,LEFT)), 1); _break; \
539 _break = 0, printf("%s\r\n", BORDER(which,RIGHT)))
540 #define print_border(which, width) \
541 print_line(which) printm (width, BORDER(which,MIDDLE))
542 void show_minefield (int mode) {
543 int dtime = difftime (time(NULL), g.t)*!!g.t;
544 int half_spaces = f.w*op.scheme->cell_width/2;
545 int left_spaces = MAX(0,half_spaces-7-(f.m-g.f>999));
546 int right_spaces = MAX(0,half_spaces-6-(dtime>999));
547 static char modechar[] = {'*', '!', '?'};
548
549 move_ph (0,0);
550
551 print_border(TOP, f.w);
552 print_line(STATUS) {
553 printf("[%03d%c]%*s%s%*s[%03d]",
554 /* [ */ f.m - g.f, modechar[g.s], /* ] */
555 left_spaces,"", get_emoticon(), right_spaces,"",
556 /* [ */ dtime /* ] */);
557 }
558 print_border(DIVIDER, f.w);
559 /* main body */
560 for (int l = 0; l < f.h; l++) print_line(FIELD)
561 printm (f.w, cell2schema(l, _loop, mode));
562 print_border(BOTTOM, f.w);
563 }
564
565 void show_stomp (int enable, int l, int c) {
566 if (enable) {
567 if (f.c[l][c].o == OPENED && get_neighbours (l, c, 1) != 0) {
568 /* show the stomp radius if we aren't fully flagged */
569 AROUND(l, c)
570 if (AR_CELL.o == CLOSED && AR_CELL.f != FLAG)
571 redraw_cell (ROW, COL, HIGHLIGHT);
572 fflush(stdout); /* won't display without */
573 }
574 } else {
575 AROUND(l, c) redraw_cell (ROW, COL, g.o?SHOWMINES:NORMAL);
576 }
577 }
578
579 void wait_stomp (void) {
580 /* block SIGALRM, otherwise poll gets cancelled by the timer: */
581 sigset_t sig;
582 sigemptyset (&sig);
583 sigaddset(&sig, SIGALRM);
584 sigprocmask (SIG_BLOCK, &sig, NULL);
585
586 /* wait for timout or keypress: */
587 struct pollfd fds;
588 fds.fd = 0; fds.events = POLLIN;
589 poll(&fds, 1, STOMP_TIMEOUT);
590
591 /* restore signal mask: */
592 sigprocmask (SIG_UNBLOCK, &sig, NULL);
593 }
594
595 int get_neighbours (int line, int col, int reduced_mode) {
596 /* counts mines surrounding a square
597 modes: 0=normal; 1=reduced */
598
599 int count = 0;
600 AROUND(line, col) {
601 count += !!AR_CELL.m;
602 count -= reduced_mode * AR_CELL.f==FLAG;
603 }
604 return count;
605 }
606
607 void interactive_resize(void) {
608 unsigned char buf[3];
609 int old_w = f.w;
610 int old_h = f.h;
611 for(;;) {
612 screen_setup(1); /* clears the screen */
613 show_minefield (RESIZEMODE);
614 /* show the new field size in the corner: */
615 move_ph(f.h+LINE_OFFSET-1,COL_OFFSET);
616 printf("%d x %d", f.w, f.h);
617 move_ph(LINE_BELOW, 0);
618 printf("Resize Mode: Enter to set, Q to abort");
619 //TODO: need escape seq. to print lowercase in `-d' mode!
620
621 free_field(); /* must free before resizing! */
622 switch (getctrlseq(buf)) {
623 case CTRSEQ_CURSOR_LEFT: case 'h': f.w--; break;
624 case CTRSEQ_CURSOR_DOWN: case 'j': f.h++; break;
625 case CTRSEQ_CURSOR_UP: case 'k': f.h--; break;
626 case CTRSEQ_CURSOR_RIGHT:case 'l': f.w++; break;
627 case 'w': f.w+=BIG_MOVE; break;
628 case 'b': f.w-=BIG_MOVE; break;
629 case 'u': f.h-=BIG_MOVE; break;
630 case 'd': f.h+=BIG_MOVE; break;
631 case 0xa: return; /* enter */
632 case 'q': /* abort */
633 f.w = old_w;
634 f.h = old_h;
635 screen_setup(1);
636 return;
637 }
638
639 clamp_fieldsize();
640 f.m = mines_percentage(f.w, f.h);
641 f.c = alloc_array (f.h, f.w);
642 }
643 }
644
645 struct minecell** alloc_array (int lines, int cols) {
646 free_field (); /* NOTE: this feels like a hack :| */
647 struct minecell** a = malloc (lines * sizeof(struct minecell*));
648 if (a == NULL) return NULL;
649 for (int l = 0; l < lines; l++) {
650 a[l] = calloc (cols, sizeof(struct minecell));
651 if (a[l] == NULL) goto unalloc;
652 }
653
654 return a;
655 unalloc:
656 for (int l = 0; l < lines; l++)
657 free (a[l]);
658 return NULL;
659 }
660
661 void free_field (void) {
662 if (f.c == NULL) return;
663 for (int l = 0; l < f.h; l++) {
664 free (f.c[l]);
665 }
666
667 free (f.c);
668 f.c = NULL;
669 }
670
671 int screen2field_l (int l) {
672 return (l-LINE_OFFSET) - 1;
673 }
674 int screen2field_c (int c) {
675 /* this depends on the cell width and only works when it is 1 or 2. */
676 return (c-COL_OFFSET+1 - 2*(CW%2))/2 - CW/2;
677 }
678 int field2screen_c (int c) {
679 return (CW*c+COL_OFFSET - (CW%2));
680 }
681 int clicked_emoticon (unsigned char* mouse) {
682 return (mouse[2] == LINE_OFFSET-1 && (
683 mouse[1] == f.w+COL_OFFSET ||
684 mouse[1] == f.w+COL_OFFSET+1));
685 }
686
687 enum esc_states {
688 START,
689 ESC_SENT,
690 CSI_SENT,
691 MOUSE_EVENT,
692 };
693 int getctrlseq (unsigned char* buf) {
694 int c;
695 int state = START;
696 int offset = 0x20; /* never sends control chars as data */
697 while ((c = getchar()) != EOF) {
698 switch (state) {
699 case START:
700 switch (c) {
701 case '\033': state=ESC_SENT; break;
702 default: return c;
703 }
704 break;
705 case ESC_SENT:
706 switch (c) {
707 case '[': state=CSI_SENT; break;
708 default: return CTRSEQ_INVALID;
709 }
710 break;
711 case CSI_SENT:
712 switch (c) {
713 case 'A': return CTRSEQ_CURSOR_UP;
714 case 'B': return CTRSEQ_CURSOR_DOWN;
715 case 'C': return CTRSEQ_CURSOR_RIGHT;
716 case 'D': return CTRSEQ_CURSOR_LEFT;
717 case 'M': state=MOUSE_EVENT; break;
718 default: return CTRSEQ_INVALID;
719 }
720 break;
721 case MOUSE_EVENT:
722 buf[0] = c - offset;
723 buf[1] = getchar() - offset;
724 buf[2] = getchar() - offset;
725 return CTRSEQ_MOUSE;
726 default:
727 return CTRSEQ_INVALID;
728 }
729 }
730 return 2;
731 }
732
733 int getch(unsigned char* buf) {
734 /* returns a character, EOF, or constant for an escape/control sequence - NOT
735 compatible with the ncurses implementation of same name */
736 int action = getctrlseq(buf);
737 int l, c;
738 switch (action) {
739 case CTRSEQ_MOUSE:
740 l = screen2field_l (buf[2]);
741 c = screen2field_c (buf[1]);
742
743 if (buf[0] > 3) break; /* ignore all but left/middle/right/up */
744 int success = wait_mouse_up(l, c);
745
746 /* mouse moved while pressed: */
747 if (!success) return CTRSEQ_INVALID;
748
749 switch (buf[0]) {
750 case 0: return CTRSEQ_MOUSE_LEFT;
751 case 1: return CTRSEQ_MOUSE_MIDDLE;
752 case 2: return CTRSEQ_MOUSE_RIGHT;
753 }
754 }
755
756 return action;
757 }
758
759 int getch_wrapper (void) {
760 unsigned char mouse[3];
761 int c;
762 /*skip over ASCII_STX=0x02 that gets sent when returning from SIGALRM:*/
763 while ( (c = getch(mouse)) == 0x02);
764
765 if (c == CTRSEQ_MOUSE_LEFT || c == CTRSEQ_MOUSE_RIGHT) {
766 if (clicked_emoticon(mouse))
767 return WRAPPER_EMOTICON;
768
769 if (screen2field_c (mouse[1]) < 0
770 || screen2field_c (mouse[1]) >= f.w
771 || screen2field_l (mouse[2]) < 0
772 || screen2field_l (mouse[2]) >= f.h)
773 return CTRSEQ_INVALID;
774
775 g.p[0] = screen2field_l (mouse[2]);
776 g.p[1] = screen2field_c (mouse[1]);
777
778 return c; /* CTRSEQ_MOUSE_LEFT || CTRSEQ_MOUSE_RIGHT */
779 }
780
781 return c;
782 }
783
784 void clamp_fieldsize (void) {
785 /* clamp field size to terminal size and mouse maximum: */
786 struct winsize w;
787 ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
788
789 /* seven is the minimum width of the status bar */
790 /* NOTE: min of status in DEC mode: 13 (WONTFIX) */
791 if (f.w < 7) f.w = 7;
792 if (f.h < 7) f.h = 7;
793
794 if (COL_OFFSET + f.w*CW + COL_OFFSET > w.ws_col)
795 f.w = (w.ws_col - COL_OFFSET - COL_OFFSET)/DW;
796 if (LINE_OFFSET + f.h + LINES_AFTER > w.ws_row)
797 f.h = w.ws_row - (LINE_OFFSET+LINES_AFTER);
798 if (COL_OFFSET + f.w*CW > MOUSE_MAX)
799 f.w = MOUSE_MAX/CW - COL_OFFSET;
800 if (LINE_OFFSET + f.h > MOUSE_MAX)
801 f.h = MOUSE_MAX - LINE_OFFSET;
802 }
803
804 int mines_percentage(int w, int h) {
805 return w*h*(w*h<30*16?.15625:.20625);
806 }
807
808 int parse_fieldspec(char* str) {
809 /* parses the FIELDSPEC (WxHxM); returns 1 on error */
810 int n = sscanf (str, "%dx%dx%d", &f.w, &f.h, &f.m);
811
812 clamp_fieldsize();
813
814 if (n < 2) {
815 return 1; /* error */
816 } else if (n == 2) {
817 f.m = mines_percentage(f.w, f.h);
818 }
819
820 f.m = MIN(f.m, (f.w-1) * (f.h-1)); /* limit mines */
821
822 return 0;
823 }
824
825 void timer_setup (int enable) {
826 static struct itimerval tbuf;
827 tbuf.it_interval.tv_sec = 1;
828 tbuf.it_interval.tv_usec = 0;
829
830 if (enable) {
831 g.t = time(NULL);
832 tbuf.it_value.tv_sec = 1;
833 tbuf.it_value.tv_usec = 0;
834 if (setitimer(ITIMER_REAL, &tbuf, NULL) == -1) {
835 perror("setitimer");
836 exit(1);
837 }
838 } else {
839 tbuf.it_value.tv_sec = 0;
840 tbuf.it_value.tv_usec = 0;
841 if ( setitimer(ITIMER_REAL, &tbuf, NULL) == -1 ) {
842 perror("setitimer");
843 exit(1);
844 }
845 }
846
847 }
848
849 void signal_setup (void) {
850 struct sigaction saction;
851
852 saction.sa_handler = signal_handler;
853 sigemptyset(&saction.sa_mask);
854 saction.sa_flags = 0;
855 if (sigaction(SIGALRM, &saction, NULL) < 0 ) {
856 perror("SIGALRM");
857 exit(1);
858 }
859
860 if (sigaction(SIGCONT, &saction, NULL) < 0 ) {
861 perror ("SIGCONT");
862 exit (1);
863 }
864
865 if (sigaction(SIGINT, &saction, NULL) < 0 ) {
866 perror ("SIGINT");
867 exit (1);
868 }
869 }
870
871 void signal_handler (int signum) {
872 int dtime;
873 switch (signum) {
874 case SIGALRM:
875 dtime = difftime (time(NULL), g.t);
876 move_ph (1, f.w*CW-(CW%2)-3-(dtime>999));
877 printf ("[%03d]", g.t?dtime:0);
878 break;
879 case SIGCONT:
880 /* NOTE: will leave the VT220 in special graphics charset */
881 screen_setup(0);
882 screen_setup(1);
883 show_minefield (g.c?SHOWMINES:NORMAL);
884 break;
885 case SIGINT:
886 exit(128+SIGINT);
887 }
888 }
889
890 void screen_setup (int enable) {
891 static int sent_init;
892 if (enable) {
893 raw_mode(1);
894 printf ("\033[s\033[?47h"); /* save cursor, alternate screen */
895 printf ("\033[H\033[J"); /* reset cursor, clear screen */
896 printf ("\033[?1000h\033[?25l"); /* enable mouse, hide cursor */
897 if (!sent_init++) /* swich charset, if necessary and only once*/
898 print (op.scheme->init_seq);
899 } else {
900 print (op.scheme->reset_seq); /* reset charset, if necessary */
901 printf ("\033[?9l\033[?25h"); /* disable mouse, show cursor */
902 printf ("\033[?47l\033[u"); /* primary screen, restore cursor */
903 raw_mode(0);
904 sent_init = 0;
905 }
906 }
907
908 /* http://users.csc.calpoly.edu/~phatalsk/357/lectures/code/sigalrm.c */
909 void raw_mode(int enable) {
910 static struct termios saved_term_mode;
911 struct termios raw_term_mode;
912
913 if (enable) {
914 tcgetattr(STDIN_FILENO, &saved_term_mode);
915 raw_term_mode = saved_term_mode;
916 raw_term_mode.c_lflag &= ~(ICANON | ECHO);
917 raw_term_mode.c_cc[VMIN] = 1 ;
918 raw_term_mode.c_cc[VTIME] = 0;
919 tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw_term_mode);
920 } else {
921 tcsetattr(STDIN_FILENO, TCSAFLUSH, &saved_term_mode);
922 }
923 }
Imprint / Impressum