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