]> git.gir.st - solVItaire.git/blob - sol.c
freecell: finished t2t, work on card selector dialog
[solVItaire.git] / sol.c
1 #define _DEFAULT_SOURCE /* for getopt, sigaction, usleep */
2 #include <poll.h>
3 #include <signal.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <sys/ioctl.h>
7 #include <time.h>
8 #include <termios.h>
9 #include <unistd.h>
10
11 #include "sol.h"
12 #include "schemes.h"
13
14 struct playfield f;
15 struct opts op;
16
17 // action table {{{
18 /* stores a function pointer for every takeable action; called by game loop */
19 int (*action[NUM_PLACES][10])(int,int,int) = {
20 #ifdef KLONDIKE
21 /* 1 2 3 4 5 6 7 stk wst fnd*/
22 /* 1 */ { t2f, t2t, t2t, t2t, t2t, t2t, t2t, nop, nop, t2f },
23 /* 2 */ { t2t, t2f, t2t, t2t, t2t, t2t, t2t, nop, nop, t2f },
24 /* 3 */ { t2t, t2t, t2f, t2t, t2t, t2t, t2t, nop, nop, t2f },
25 /* 4 */ { t2t, t2t, t2t, t2f, t2t, t2t, t2t, nop, nop, t2f },
26 /* 5 */ { t2t, t2t, t2t, t2t, t2f, t2t, t2t, nop, nop, t2f },
27 /* 6 */ { t2t, t2t, t2t, t2t, t2t, t2f, t2t, nop, nop, t2f },
28 /* 7 */ { t2t, t2t, t2t, t2t, t2t, t2t, t2f, nop, nop, t2f },
29 /*stk*/ { nop, nop, nop, nop, nop, nop, nop, nop, s2w, nop },
30 /*wst*/ { w2t, w2t, w2t, w2t, w2t, w2t, w2t, w2s, w2f, w2f },
31 /*fnd*/ { f2t, f2t, f2t, f2t, f2t, f2t, f2t, nop, nop, nop },
32 #elif defined SPIDER
33 /* 1 2 3 4 5 6 7 8 9 10*/
34 /* 1 */ { t2f, t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2t },
35 /* 2 */ { t2t, t2f, t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2t },
36 /* 3 */ { t2t, t2t, t2f, t2t, t2t, t2t, t2t, t2t, t2t, t2t },
37 /* 4 */ { t2t, t2t, t2t, t2f, t2t, t2t, t2t, t2t, t2t, t2t },
38 /* 5 */ { t2t, t2t, t2t, t2t, t2f, t2t, t2t, t2t, t2t, t2t },
39 /* 6 */ { t2t, t2t, t2t, t2t, t2t, t2f, t2t, t2t, t2t, t2t },
40 /* 7 */ { t2t, t2t, t2t, t2t, t2t, t2t, t2f, t2t, t2t, t2t },
41 /* 8 */ { t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2f, t2t, t2t },
42 /* 9 */ { t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2f, t2t },
43 /*10 */ { t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2f },
44 /*stk*/ { s2t, s2t, s2t, s2t, s2t, s2t, s2t, s2t, s2t, s2t },
45 #elif defined FREECELL
46 /* 1 2 3 4 5 6 7 8 cll fnd*/
47 /* 1 */ { t2f, t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2c, t2f },
48 /* 2 */ { t2t, t2f, t2t, t2t, t2t, t2t, t2t, t2t, t2c, t2f },
49 /* 3 */ { t2t, t2t, t2f, t2t, t2t, t2t, t2t, t2t, t2c, t2f },
50 /* 4 */ { t2t, t2t, t2t, t2f, t2t, t2t, t2t, t2t, t2c, t2f },
51 /* 5 */ { t2t, t2t, t2t, t2t, t2f, t2t, t2t, t2t, t2c, t2f },
52 /* 6 */ { t2t, t2t, t2t, t2t, t2t, t2f, t2t, t2t, t2c, t2f },
53 /* 7 */ { t2t, t2t, t2t, t2t, t2t, t2t, t2f, t2t, t2c, t2f },
54 /* 8 */ { t2t, t2t, t2t, t2t, t2t, t2t, t2t, t2f, t2c, t2f },
55 /*cll*/ { c2t, c2t, c2t, c2t, c2t, c2t, c2t, c2t, c2f, c2f },
56 /*fnd*/ { f2t, f2t, f2t, f2t, f2t, f2t, f2t, f2t, f2c, nop },
57 #endif
58 };
59 // }}}
60
61 // argv parsing, game loops, cleanup {{{
62 int main(int argc, char** argv) {
63 /* opinionated defaults: */
64 op.s = &unicode_large_color;
65 op.v = 1; /* enable fake visbell by default */
66 #ifdef SPIDER
67 op.m = MEDIUM;
68 #endif
69
70 int optget;
71 opterr = 0; /* don't print message on unrecognized option */
72 while ((optget = getopt (argc, argv, "+:hs:vbcmMV")) != -1) {
73 switch (optget) {
74 #ifdef SPIDER
75 case 's': /* number of suits */
76 switch (optarg[0]) {
77 case '1': op.m = EASY; break;
78 case '2': op.m = MEDIUM; break;
79 case '4': op.m = NORMAL; break;
80 default: goto error;
81 } break;
82 #endif
83 case 'b': op.s = &unicode_large_mono; break;
84 case 'c': op.s = &unicode_large_color; break;
85 case 'm': op.s = &unicode_small_mono; break; /* "mini, monochrome" */
86 case 'M': op.s = &unicode_small_color; break; /* "mini, colorful" */
87 case 'V': op.v = 0; /* WARN: experimental; might change */
88 case 'h': default: goto error;
89 error:
90 fprintf (stderr, SHORTHELP LONGHELP KEYHELP, argv[0]);
91 return optget != 'h';
92 }
93 }
94
95 signal_setup();
96 atexit (*quit);
97
98 signal_handler(SIGWINCH); /* initialize window size */
99
100 newgame:
101 screen_setup(1);
102
103 switch(sol()) {
104 case GAME_NEW: goto newgame;
105 case GAME_WON:
106 print_table(NO_HI, NO_HI);
107 win_anim();
108 if (getch(NULL)=='q') return 0;
109 goto newgame;
110 case GAME_QUIT: return 0;
111 }
112 }
113
114 #define is_tableu(where) (where <= TAB_MAX) // "card games helper functions"
115
116 int sol(void) {
117 int ret;
118 long seed = time(NULL);
119 restart:
120 free_undo(f.u);
121 deal(seed);
122
123 int from, to, opt;
124 for(;;) {
125 switch (get_cmd(&from, &to, &opt)) {
126 case CMD_MOVE:
127 ret = action[from][to](from,to,opt);
128 if (ret == ERR && is_tableu(from) && is_tableu(to))
129 /* try again with from/to swapped: */
130 ret = action[to][from](to,from,opt);
131 switch (ret) {
132 case OK: break;
133 case ERR: visbell(); break;
134 case WON: return GAME_WON;
135 }
136 break;
137 case CMD_JOIN:
138 switch (join(to)) {
139 case OK: break;
140 case ERR: visbell(); break;
141 case WON: return GAME_WON;
142 }
143 break;
144 case CMD_HINT: break;//TODO: show a possible (and sensible) move. if possible, involve active cursor
145 case CMD_UNDO: undo_pop(f.u); break;
146 case CMD_INVAL: visbell(); break;
147 case CMD_NEW: return GAME_NEW;
148 case CMD_AGAIN: goto restart;
149 case CMD_QUIT: return GAME_QUIT;
150 case CMD_HELP:
151 printf (KEYHELP "\nPress any key to continue.");
152 getch(NULL);
153 break;
154 }
155 }
156 }
157
158 void quit(void) {
159 screen_setup(0);
160 free_undo(f.u);
161 }
162 //}}}
163
164 // card games helper functions {{{
165 #define get_suit(card) \
166 ((card-1) % NUM_SUITS)
167 #define get_rank(card) \
168 ((card-1) / NUM_SUITS)
169 #define get_color(card) \
170 ((get_suit(card) ^ get_suit(card)>>1) & 1)
171
172 int find_top(card_t* pile) {
173 int i;
174 for(i=PILE_SIZE-1; i>=0 && !pile[i]; i--);
175 return i;
176 }
177 int first_movable(card_t* pile) {
178 int i = 0;
179 for (;pile[i] && !is_movable(pile, i); i++);
180 return i;
181 }
182 int turn_over(card_t* pile) {
183 int top = find_top(pile);
184 if (pile[top] < 0) {
185 pile[top] *= -1;
186 return 1;
187 } else return 0;
188 }
189 int check_won(void) {
190 for (int pile = 0; pile < NUM_DECKS*NUM_SUITS; pile++)
191 if (f.f[pile][NUM_RANKS-1] == NO_CARD) return 0;
192
193 return 1;
194 }
195 int rank_next (card_t a, card_t b) {
196 return get_rank(a) == get_rank(b)-1;
197 }
198 int is_consecutive (card_t* pile, int pos) {
199 if (pos+1 >= PILE_SIZE) return 1; /* card is last */
200 if (pile[pos+1] == NO_CARD) return 1; /* card is first */
201
202 #if defined KLONDIKE || defined FREECELL
203 /* ranks consecutive? */
204 if (!rank_next(pile[pos+1], pile[pos])) return 0;
205 /* color opposite? */
206 if (get_color(pile[pos+1]) == get_color(pile[pos])) return 0;
207 #elif defined SPIDER
208 /* ranks consecutive? */
209 if (!rank_next(pile[pos+1], pile[pos])) return 0;
210 /* same suit? */
211 if (get_suit(pile[pos+1]) != get_suit(pile[pos])) return 0;
212 #endif
213
214 return 1;
215 }
216
217 int is_movable(card_t* pile, int n) {
218 #ifdef KLONDIKE
219 return(pile[n] > NO_CARD); /*non-movable cards don't exist in klondike*/
220 #elif defined SPIDER || defined FREECELL
221 int top = find_top(pile);
222 for (int i = top; i >= 0; i--) {
223 if (pile[i] <= NO_CARD) return 0; /*no card or card face down?*/
224 if (!is_consecutive(pile, i)) return 0;
225 if (i == n) return 1; /* card reached, must be movable */
226 }
227 return 0;
228 #endif
229 }
230 //}}}
231
232 // takeable actions {{{
233 #ifdef KLONDIKE
234 card_t stack_take(void) { /*NOTE: assert(f.w >= 0) */
235 card_t card = f.s[f.w];
236 /* move stack one over, so there are no gaps in it: */
237 for (int i = f.w; i < f.z-1; i++)
238 f.s[i] = f.s[i+1];
239 f.z--;
240 f.w--; /* make previous card visible again */
241 return card;
242 }
243 int t2f(int from, int to, int opt) { /* tableu to foundation */
244 (void) to; (void) opt; /* don't need */
245 int top_from = find_top(f.t[from]);
246 to = get_suit(f.t[from][top_from]);
247 int top_to = find_top(f.f[to]);
248 if ((top_to < 0 && get_rank(f.t[from][top_from]) == RANK_A)
249 || (top_to >= 0 && rank_next(f.f[to][top_to],f.t[from][top_from]))) {
250 f.f[to][top_to+1] = f.t[from][top_from];
251 f.t[from][top_from] = NO_CARD;
252 undo_push(from, FOUNDATION, to,
253 turn_over(f.t[from]));
254 if (check_won()) return WON;
255 return OK;
256 } else return ERR;
257 }
258 int w2f(int from, int to, int opt) { /* waste to foundation */
259 (void) from; (void) to; (void) opt; /* don't need */
260 if (f.w < 0) return ERR;
261 to = get_suit(f.s[f.w]);
262 int top_to = find_top(f.f[to]);
263 if ((top_to < 0 && get_rank(f.s[f.w]) == RANK_A)
264 || (top_to >= 0 && rank_next(f.f[to][top_to], f.s[f.w]))) {
265 undo_push(WASTE, FOUNDATION, f.w | to<<16, 0);//ugly encoding :|
266 f.f[to][top_to+1] = stack_take();
267 if (check_won()) return WON;
268 return OK;
269 } else return ERR;
270
271 }
272 int s2w(int from, int to, int opt) { /* stock to waste */
273 (void) from; (void) to; (void) opt; /* don't need */
274 if (f.z == 0) return ERR;
275 f.w++;
276 if (f.w == f.z) f.w = -1;
277 return OK;
278 }
279 int w2s(int from, int to, int opt) { /* waste to stock (undo stock to waste) */
280 (void) from; (void) to; (void) opt; /* don't need */
281 if (f.z == 0) return ERR;
282 f.w--;
283 if (f.w < -1) f.w = f.z-1;
284 return OK;
285 }
286 int f2t(int from, int to, int opt) { /* foundation to tableu */
287 (void) from; /* don't need */
288 int top_to = find_top(f.t[to]);
289 from = opt;
290 int top_from = find_top(f.f[from]);
291
292 if ((get_color(f.t[to][top_to]) != get_color(f.f[from][top_from]))
293 && (rank_next(f.f[from][top_from], f.t[to][top_to]))) {
294 f.t[to][top_to+1] = f.f[from][top_from];
295 f.f[from][top_from] = NO_CARD;
296 undo_push(FOUNDATION, to, from, 0);
297 return OK;
298 } else return ERR;
299 }
300 int w2t(int from, int to, int opt) { /* waste to tableu */
301 (void) from; (void) opt; /* don't need */
302 if (f.w < 0) return ERR;
303 int top_to = find_top(f.t[to]);
304 if (((get_color(f.t[to][top_to]) != get_color(f.s[f.w]))
305 && (rank_next(f.s[f.w], f.t[to][top_to])))
306 || (top_to < 0 && get_rank(f.s[f.w]) == RANK_K)) {
307 undo_push(WASTE, to, f.w, 0);
308 f.t[to][top_to+1] = stack_take();
309 return OK;
310 } else return ERR;
311 }
312 int t2t(int from, int to, int opt) { /* tableu to tableu */
313 (void) opt; /* don't need */
314 int top_to = find_top(f.t[to]);
315 int top_from = find_top(f.t[from]);
316 int count = 0; //NOTE: could probably be factored out
317 for (int i = top_from; i >=0; i--) {
318 if (((get_color(f.t[to][top_to]) != get_color(f.t[from][i]))
319 && (rank_next(f.t[from][i], f.t[to][top_to]))
320 && f.t[from][i] > NO_CARD) /* card face up? */
321 || (top_to < 0 && get_rank(f.t[from][i]) == RANK_K)) {
322 /* move cards [i..top_from] to their destination */
323 for (;i <= top_from; i++) {
324 top_to++;
325 f.t[to][top_to] = f.t[from][i];
326 f.t[from][i] = NO_CARD;
327 count++;
328 }
329 undo_push(from, to, count,
330 turn_over(f.t[from]));
331 return OK;
332 }
333 }
334 return ERR; /* no such move possible */
335 }
336 #elif defined SPIDER
337 int remove_if_complete (int pileno) { //cleanup!
338 card_t* pile = f.t[pileno];
339 /* test if K...A complete; move to foundation if so */
340 int top_from = find_top(pile);
341 if (get_rank(pile[top_from]) != RANK_A) return 0;
342 for (int i = top_from; i>=0; i--) {
343 if (!is_consecutive (pile, i)) return 0;
344 if (i+RANK_K == top_from /* if ace to king: remove it */
345 && get_rank(pile[top_from-RANK_K]) == RANK_K) {
346 for(int i=top_from, j=0; i>top_from-NUM_RANKS; i--,j++){
347 f.f[f.w][j] = pile[i];
348 pile[i] = NO_CARD;
349 }
350 undo_push(pileno, FOUNDATION, f.w,
351 turn_over(pile));
352 f.w++;
353 return 1;
354 }
355 }
356
357 return 0;
358 }
359 int t2t(int from, int to, int opt) { //in dire need of cleanup
360 int top_from = find_top(f.t[from]);
361 int top_to = find_top(f.t[to]);
362 int empty_to = (top_to < 0)? opt: -1; /* empty pile? */
363 int count = 0; //NOTE: could probably be factored out
364
365 for (int i = top_from; i >= 0; i--) {
366 if (!is_consecutive(f.t[from], i)) break;
367
368 /* is consecutive OR to empty pile and rank ok? */
369 if (rank_next(f.t[from][i], f.t[to][top_to])
370 || (empty_to >= RANK_A && get_rank(f.t[from][i]) == empty_to)) {
371 for (;i <= top_from; i++) {
372 top_to++;
373 f.t[to][top_to] = f.t[from][i];
374 f.t[from][i] = NO_CARD;
375 count++;
376 }
377 undo_push(from, to, count,
378 turn_over(f.t[from]));
379 remove_if_complete(to);
380 if (check_won()) return WON;
381 return OK;
382 }
383 }
384
385 return ERR; /* no such move possible */
386 }
387 int s2t(int from, int to, int opt) {
388 (void) from; (void) to; (void) opt; /* don't need */
389 if (f.z <= 0) return ERR; /* stack out of cards */
390 for (int pile = 0; pile < NUM_PILES; pile++)
391 if (f.t[pile][0]==NO_CARD) return ERR; /*no piles may be empty*/
392 for (int pile = 0; pile < NUM_PILES; pile++) {
393 f.t[pile][find_top(f.t[pile])+1] = f.s[--f.z];
394 remove_if_complete(pile);
395 if (check_won()) return WON;
396 }
397 undo_push(STOCK, TABLEU, 1, 0);/*NOTE: puts 1 card on each tableu pile*/
398 return OK;
399 }
400 int t2f(int from, int to, int opt) {
401 (void) to; (void) opt; /* don't need */
402 /* manually retrigger remove_if_complete() (e.g. after undo_pop) */
403 return remove_if_complete(from)?OK:ERR;
404 }
405 #elif defined FREECELL
406 int max_move(int from, int to) {
407 /* returns the maximum number of cards that can be moved */
408 /* see also: https://boardgames.stackexchange.com/a/45157/26498 */
409 int free_tabs = 0, free_cells = 0;
410 for (int i = 0; i < NUM_PILES; i++) free_tabs += f.t[i][0] == NO_CARD;
411 for (int i = 0; i < NUM_CELLS; i++) free_cells += f.s[i] == NO_CARD;
412
413 /* don't count the tableau we are moving to: */
414 if (f.t[to][0] == NO_CARD) free_tabs--;
415
416 /* theoretic maximum is limited by the number of cards on the pile */
417 int max_theory = (1<<free_tabs) * (free_cells + 1);
418 int max_effective = 1 + find_top(f.t[from]) - first_movable(f.t[from]);
419 return max_effective < max_theory? max_effective : max_theory;
420 }
421 //TODO FREECELL: auto move to tableu after each move (not all cards possible, only when it is the smallest rank still on the board)
422 int t2t(int from, int to, int opt) {
423 int top_to = find_top(f.t[to]);
424 int top_from = find_top(f.t[from]);
425 int count = 0; //NOTE: could probably be factored out
426 int cards = max_move(from, to);
427 if (top_to < 0) { /* moving to empty pile? */
428 if (opt > cards)
429 return ERR; /* cannot execute move */
430 cards = opt; /* user wants to move n cards*/
431 }
432
433 for (int i = top_from; i >=0; i--) {
434 if (cards-->0/*enough space and not more attempted than wanted*/
435 && ((top_to >= 0 /* if destn. not empty: check rank/color */
436 && ((get_color(f.t[to][top_to]) != get_color(f.t[from][i]))
437 && (rank_next(f.t[from][i], f.t[to][top_to]))))
438 || (top_to < 0 && !cards))) {/*if dest empty and right # cards*/
439 /* move cards [i..top_from] to their destination */
440 for (;i <= top_from; i++) {
441 top_to++;
442 f.t[to][top_to] = f.t[from][i];
443 f.t[from][i] = NO_CARD;
444 count++;
445 }
446 undo_push(from, to, count, 0);
447 return OK;
448 }
449 }
450 return ERR; /* no such move possible */
451 }
452 int t2f(int from, int to, int opt) { /* 1:1 copy from KLONDIKE */
453 (void) to; (void) opt; /* don't need */
454 int top_from = find_top(f.t[from]);
455 to = get_suit(f.t[from][top_from]);
456 int top_to = find_top(f.f[to]);
457 if ((top_to < 0 && get_rank(f.t[from][top_from]) == RANK_A)
458 || (top_to >= 0 && rank_next(f.f[to][top_to],f.t[from][top_from]))) {
459 f.f[to][top_to+1] = f.t[from][top_from];
460 f.t[from][top_from] = NO_CARD;
461 undo_push(from, FOUNDATION, to, 0);
462 if (check_won()) return WON;
463 return OK;
464 } else return ERR;
465 }
466 int f2t(int from, int to, int opt) {
467 (void) from; /* don't need */
468 int top_to = find_top(f.t[to]);
469 from = opt;
470 int top_from = find_top(f.f[from]);
471
472 if (top_to < 0 /* empty tableu? */
473 ||((get_color(f.t[to][top_to]) != get_color(f.f[from][top_from]))
474 && (rank_next(f.f[from][top_from], f.t[to][top_to])))) {
475 f.t[to][top_to+1] = f.f[from][top_from];
476 f.f[from][top_from] = NO_CARD;
477 undo_push(FOUNDATION, to, from, 0);
478 return OK;
479 } else return ERR;
480 }
481 int t2c(int from, int to, int opt) {
482 (void) to; (void) opt; /* don't need */
483 /* is a cell free? */
484 if (f.w == (1<<NUM_CELLS)-1)
485 return ERR;
486 for (to = 0; to < NUM_CELLS; to++)
487 if (!(f.w>>to&1)) break;
488 /* move 1 card */
489 int top_from = find_top(f.t[from]);
490 f.s[to] = f.t[from][top_from];
491 f.t[from][top_from] = NO_CARD;
492 f.w |= 1<<to; /* mark cell as occupied */
493 undo_push(from, STOCK, to, 0);
494
495 return OK;
496 }
497 int c2t(int from, int to, int opt) {
498 (void) from; /* don't need */
499 int top_to = find_top(f.t[to]);
500 from = opt;
501
502 if (top_to < 0 /* empty tableu? */
503 ||((get_color(f.t[to][top_to]) != get_color(f.s[from]))
504 && (rank_next(f.s[from], f.t[to][top_to])))) {
505 f.t[to][top_to+1] = f.s[from];
506 f.s[from] = NO_CARD;
507 f.w &= ~(1<<from); /* mark cell as free */
508 undo_push(STOCK, to, from, 0);
509 return OK;
510 } else return ERR;
511 return ERR;
512 }
513 int c2f(int from, int to, int opt) {
514 (void) from; (void) to; /* don't need */
515 from = opt;
516 to = get_suit(f.s[from]);
517 int top_to = find_top(f.f[to]);
518 if ((top_to < 0 && get_rank(f.s[from]) == RANK_A)
519 || (top_to >= 0 && rank_next(f.f[to][top_to],f.s[from]))) {
520 f.f[to][top_to+1] = f.s[from];
521 f.s[from] = NO_CARD;
522 f.w &= ~(1<<from); /* mark cell as free */
523 undo_push(STOCK, FOUNDATION, from | to<<16, 0);
524 if (check_won()) return WON;
525 return OK;
526 } else return ERR;
527 }
528 int f2c(int from, int to, int opt) {
529 (void) from; (void) to; /* don't need */
530 /* is a cell free? */
531 if (f.w == (1<<NUM_CELLS)-1)
532 return ERR;
533 for (to = 0; to < NUM_CELLS; to++)
534 if (!(f.w>>to&1)) break;
535 /* move 1 card */
536 from = opt;
537 int top_from = find_top(f.f[from]);
538 f.s[to] = f.f[from][top_from];
539 f.f[from][top_from] = NO_CARD;
540 f.w |= 1<<to; /* mark cell as occupied */
541 undo_push(FOUNDATION, STOCK, from | to<<16, 0);
542
543 return OK;
544 }
545 #endif
546
547 //TODO: generalize prediction engine for CMD_HINT
548 #ifdef KLONDIKE
549 #define would_complete(pile) 0
550 #elif defined SPIDER
551 #define would_complete(pile) \
552 (get_rank(f.t[pile][r[pile].top]) == RANK_A \
553 && get_rank(f.t[to][bottom_to]) == RANK_K)
554 #elif defined FREECELL
555 #define would_complete(pile) 0
556 #endif
557 #define would_turn(pile) \
558 (f.t[pile][r[pile].pos-1] < 0)
559 #define would_empty(pile) \
560 (r[pile].pos == 0)
561
562 int join(int to) {
563 int top_to = find_top(f.t[to]);
564 #ifdef SPIDER
565 int bottom_to = first_movable(f.t[to]);
566 #endif
567
568 #ifdef KLONDIKE
569 if (to == WASTE || to == STOCK) return ERR; /*why would you do that!?*/
570
571 if (to == FOUNDATION) {
572 int status = ERR;
573 for (int i = 0; i <= TAB_MAX; i++)
574 switch ((i?t2f:w2f)(i-1, FOUNDATION, 0)) {
575 case WON: return WON;
576 case OK: status = OK;
577 case ERR: /* nop */;
578 }
579 return status;
580 }
581
582 if (top_to < 0) { /* move a king to empty pile: */
583 for (int i = 0; i < TAB_MAX; i++) {
584 if (f.t[i][0] < 0) /* i.e. would turn? */
585 if (t2t(i, to, 0) == OK) return OK;
586 }
587 return w2t(WASTE, to, 0);
588 }
589 #endif
590
591 struct rating {
592 int ok:1; /* card to move in pile? */
593 int above; /* number of movable cards above */
594 int below; /* number of cards below ours */
595 int pos; /* where the card to move is in the pile */
596 int top; /* find_top() */
597 } r[NUM_PILES] = {{0}};
598 int complete = 0;/* SPIDER: true if any pile would complete a stack */
599 int turn = 0; /* SPIDER: true if any pile would turn_over */
600 int empty = 0; /* true if any pile would become empty */
601
602 /* 1. rate each pile: */
603 #ifdef SPIDER
604 if (top_to < 0) {
605 for (int pile = 0; pile < NUM_PILES; pile++) {
606 if (pile == to) continue;
607 int top = find_top(f.t[pile]);
608 int bottom = first_movable(f.t[pile]);
609 r[pile].pos = bottom; /* need for would_empty */
610
611 if (top < 0) continue; /* no cards to move */
612 if (would_empty(pile)) continue; /* doesn't help */
613
614 r[pile].ok++;
615 r[pile].above = 0; /* always take as many as possible */
616 r[pile].below = top - bottom;
617 r[pile].top = top;
618 complete |= would_complete(pile); /* never happens */
619 turn |= would_turn(pile);
620 empty |= would_empty(pile);
621 }
622 } else
623 #endif
624 for (int pile = 0; pile < NUM_PILES; pile++) {
625 r[pile].top = r[pile].pos = find_top(f.t[pile]);
626 /* backtrack until we find a compatible-to-'to'-pile card: */
627 while (r[pile].pos >= 0 && is_movable(f.t[pile], r[pile].pos)) {
628 int rankdiff = get_rank(f.t[pile][r[pile].pos])
629 - get_rank(f.t[to][top_to]);
630 if (rankdiff >= 0) break; /* past our card */
631 if (rankdiff == -1 /* rank matches */
632 #ifdef KLONDIKE
633 && get_color(f.t[pile][r[pile].pos]) /* color OK */
634 != get_color(f.t[to][top_to])
635 #elif defined SPIDER
636 && get_suit(f.t[pile][r[pile].pos]) /* color OK */
637 == get_suit(f.t[to][top_to])
638 #endif
639 ) {
640 r[pile].ok++;
641 complete |= would_complete(pile);
642 turn |= would_turn(pile);
643 empty |= would_empty(pile);
644 for (int i = r[pile].pos; i >= 0; i--)
645 if (is_movable(f.t[pile], i-1))
646 r[pile].above++;
647 else break;
648 break;
649 }
650 r[pile].pos--;
651 r[pile].below++;
652 }
653 }
654
655 /* 2. find optimal pile: (optimized for spider) */
656 //todo: in spider, prefer longest piles if above==0 (faster completions)
657 int from = -1;
658 for (int pile = 0, above = 99, below = 99; pile < NUM_PILES; pile++) {
659 if (!r[pile].ok) continue;
660 /* don't bother if another pile would be better: prefer ... */
661 /* ... to complete a stack: */
662 if (!would_complete(pile) && complete) continue;
663 /* ... emptying piles: */
664 if (!would_empty(pile) && empty && !complete) continue;
665 /* ... to turn_over: */
666 if (!would_turn(pile) && turn && !complete && !empty) continue;
667 /* ... not to rip apart too many cards: */
668 if (r[pile].above > above) continue;
669 /* if tied, prefer ... */
670 if (r[pile].above == above
671 /* ... larger pile if destination is empty */
672 && (top_to < 0? r[pile].below < below
673 /* ... shorter pile otherwise */
674 : r[pile].below > below))
675 continue;
676
677 from = pile;
678 above = r[pile].above;
679 below = r[pile].below;
680 }
681
682 /* 3. move cards over and return: */
683 #ifdef KLONDIKE
684 /* prefer waste if it wouldn't turn_over: */
685 /* NOTE: does not attempt to take from froundation */
686 if (!turn && w2t(WASTE, to, 0) == OK) //TODO: gives higher priority to waste than to empty!
687 return OK;
688 if (from < 0) /* nothing found */
689 return ERR;
690 return t2t(from, to, 0);
691 #elif defined SPIDER
692 if (from < 0) /* nothing found */
693 return ERR;
694 int bottom = first_movable(f.t[from]);
695 return t2t(from, to, get_rank(f.t[from][bottom]));
696 #elif defined FREECELL
697 (void)from;
698 return ERR; //TODO FREECELL: implement join
699 #endif
700 }
701 #undef would_empty
702 #undef would_turn
703 #undef would_complete
704 int nop(int from, int to, int opt) { (void)from;(void)to;(void)opt;return ERR; }
705 // }}}
706
707 // keyboard input handling {{{
708 // cursor functions{{{
709 #ifdef KLONDIKE
710 void cursor_left (struct cursor* cursor) {
711 op.h = 1;
712 if (is_tableu(cursor->pile)) {
713 if (cursor->pile > 0) cursor->pile--;
714 cursor->opt = 0;
715 } else { /* stock/waste/foundation*/
716 switch (cursor->pile) {
717 case WASTE: cursor->pile = STOCK; cursor->opt = 0; break;
718 case FOUNDATION:
719 if (cursor->opt <= 0)
720 cursor->pile = WASTE;
721 else
722 cursor->opt--;
723 }
724 }
725 }
726 void cursor_down (struct cursor* cursor) {
727 op.h = 1;
728 if (!is_tableu(cursor->pile)) {
729 switch (cursor->pile) {
730 case STOCK: cursor->pile = TAB_1; break;
731 case WASTE: cursor->pile = TAB_2; break;
732 case FOUNDATION:
733 cursor->pile = TAB_4 + cursor->opt;
734 }
735 cursor->opt = 0;
736 }
737 }
738 void cursor_up (struct cursor* cursor) {
739 op.h = 1;
740 if (is_tableu(cursor->pile)) {
741 switch (cursor->pile) { //ugly :|
742 case TAB_1: cursor->pile = STOCK; break;
743 case TAB_2: cursor->pile = WASTE; break;
744 case TAB_3: cursor->pile = WASTE; break;
745 case TAB_4: case TAB_5: case TAB_6: case TAB_7:
746 cursor->opt=cursor->pile-TAB_4;
747 cursor->pile = FOUNDATION;
748 break;
749 }
750 }
751 }
752 void cursor_right (struct cursor* cursor) {
753 op.h = 1;
754 if (is_tableu(cursor->pile)) {
755 if (cursor->pile < TAB_MAX) cursor->pile++;
756 cursor->opt = 0;
757 } else {
758 switch (cursor->pile) {
759 case STOCK: cursor->pile = WASTE; break;
760 case WASTE: cursor->pile = FOUNDATION;cursor->opt = 0; break;
761 case FOUNDATION:
762 if (cursor->opt < NUM_SUITS-1)
763 cursor->opt++;
764 }
765 }
766 }
767 #elif defined SPIDER
768 /*NOTE: one can't highlight the stock due to me being too lazy to implement it*/
769 void cursor_left (struct cursor* cursor) {
770 op.h = 1;
771 if (cursor->pile > 0) cursor->pile--;
772 cursor->opt = 0;
773 }
774 void cursor_down (struct cursor* cursor) {
775 op.h = 1;
776 int first = first_movable(f.t[cursor->pile]);
777 int top = find_top(f.t[cursor->pile]);
778 if (first + cursor->opt < top)
779 cursor->opt++;
780 }
781 void cursor_up (struct cursor* cursor) {
782 op.h = 1;
783 if (cursor->opt > 0) cursor->opt--;
784 }
785 void cursor_right (struct cursor* cursor) {
786 op.h = 1;
787 if (cursor->pile < TAB_MAX) cursor->pile++;
788 cursor->opt = 0;
789 }
790 #elif defined FREECELL
791 void cursor_left (struct cursor* cursor) {
792 op.h = 1;
793 if (is_tableu(cursor->pile)) {
794 if (cursor->pile > 0) cursor->pile--;
795 cursor->opt = 0;
796 } else { /* cells/foundation*/
797 switch (cursor->pile) {
798 case STOCK:
799 if (cursor->opt > 0)
800 cursor->opt--;
801 break;
802 case FOUNDATION:
803 if (cursor->opt <= 0) {
804 cursor->pile = STOCK;
805 cursor->opt = 3;
806 } else {
807 cursor->opt--;
808 }
809 }
810 }
811 }
812 void cursor_down (struct cursor* cursor) {
813 op.h = 1;
814 if (is_tableu(cursor->pile)) {
815 int first = first_movable(f.t[cursor->pile]);
816 int top = find_top(f.t[cursor->pile]);
817 if (first + cursor->opt < top)
818 cursor->opt++;
819 } else {
820 cursor->pile = cursor->opt+NUM_CELLS*(cursor->pile==FOUNDATION);
821 cursor->opt = 0;
822 }
823 }
824 void cursor_up (struct cursor* cursor) {
825 op.h = 1;
826 if (is_tableu(cursor->pile)) {
827 if (cursor->opt > 0) {
828 cursor->opt--;
829 } else {
830 switch (cursor->pile) {
831 case TAB_1: case TAB_2: case TAB_3: case TAB_4:
832 cursor->opt = cursor->pile; /*assumes TAB_1==0*/
833 cursor->pile = STOCK;
834 break;
835 case TAB_5: case TAB_6: case TAB_7: case TAB_8:
836 cursor->opt = cursor->pile - NUM_CELLS;
837 cursor->pile = FOUNDATION;
838 }
839 }
840 }
841 }
842 void cursor_right (struct cursor* cursor) {
843 op.h = 1;
844 if (is_tableu(cursor->pile)) {
845 if (cursor->pile < TAB_MAX) cursor->pile++;
846 cursor->opt = 0;
847 } else {
848 switch (cursor->pile) {
849 case STOCK:
850 if (cursor->opt < NUM_SUITS-1) {
851 cursor->opt++;
852 } else {
853 cursor->pile = FOUNDATION;
854 cursor->opt = 0;
855 } break;
856 case FOUNDATION:
857 if (cursor->opt < NUM_SUITS-1)
858 cursor->opt++;
859 }
860 }
861 }
862 #endif
863 void cursor_to (struct cursor* cursor, int pile) {
864 op.h = 1;
865 cursor->pile = pile;
866 cursor->opt = 0;
867 }
868 int set_mouse(int pile, int* main, int* opt) {
869 op.h = 0;
870 if (pile < 0) return 1;
871 *main = pile;
872 #ifdef KLONDIKE
873 if (pile >= FOUNDATION)//TODO: check upper bound!
874 *main = FOUNDATION,
875 *opt = pile - FOUNDATION;
876 #elif defined SPIDER
877 (void)opt;
878 #elif defined FREECELL
879 (void)opt; //TODO FREECELL: needs to decode not-yet-decided term2pile STOCK/FOUNDATION encodings
880 #endif
881 return 0;
882 }
883 //}}}
884 int get_cmd (int* from, int* to, int* opt) {
885 //TODO FREECELL: allow selecting less cards; store number of cards to move in opt (0 == max)
886 int _f, t;
887 unsigned char mouse[6] = {0}; /* must clear [3]! */
888 struct cursor inactive = {-1,-1};
889 static struct cursor active = {0,0};
890 if (is_tableu(active.pile))
891 active.opt = 0;
892
893 /***/
894 from_l: print_table(&active, &inactive);
895 _f = getch(mouse);
896
897 switch (_f) {
898 /* direct addressing: */
899 case '1': *from = TAB_1; break;
900 case '2': *from = TAB_2; break;
901 case '3': *from = TAB_3; break;
902 case '4': *from = TAB_4; break;
903 case '5': *from = TAB_5; break;
904 case '6': *from = TAB_6; break;
905 case '7': *from = TAB_7; break;
906 #ifdef SPIDER
907 case '8': *from = TAB_8; break;
908 case '9': *from = TAB_9; break;
909 case '0': *from = TAB_10;break;
910 #elif defined FREECELL
911 case '8': *from = TAB_8; break;
912 case '9': *from = STOCK; break;
913 case '0': *from = FOUNDATION; break;
914 #elif defined KLONDIKE
915 case '9': *from = WASTE; break;
916 case '0': *from = FOUNDATION; break;
917 case '8': /* fallthrough */
918 #endif
919 #ifndef FREECELL
920 case '\n': *from = STOCK; break;
921 #endif
922 /* cursor keys addressing: */
923 case KEY_LEFT:
924 case 'h': cursor_left (&active); goto from_l;
925 case KEY_DOWN:
926 case 'j': cursor_down (&active); goto from_l;
927 case KEY_UP:
928 case 'k': cursor_up (&active); goto from_l;
929 case KEY_RIGHT:
930 case 'l': cursor_right(&active); goto from_l;
931 case KEY_HOME:
932 case 'H': cursor_to(&active,TAB_1); goto from_l; /* leftmost tableu */
933 case KEY_END:
934 case 'L': cursor_to(&active,TAB_MAX);goto from_l; /* rigthmost tableu */
935 case KEY_INS:
936 case 'M': cursor_to(&active,TAB_MAX/2); goto from_l; /* center tableu */
937 case ' ': /* continue with second cursor */
938 *from = active.pile;
939 #ifdef KLONDIKE
940 *opt = active.opt; /* when FOUNDATION */
941 #endif
942 inactive = active;
943 break;
944 #ifdef FREECELL
945 //TODO: instead of backspace, use doublespace (first try x2t, then x2c)
946 case 0x7f: case '\b': /* backspace key sends DEL on most terminals */
947 if (active.pile == STOCK) return CMD_INVAL;
948 *from = active.pile;
949 *opt = active.opt; /* when FOUNDATION */
950 *to = STOCK;
951 return CMD_MOVE;
952 case '\n': return CMD_INVAL;//TODO: move card to foundation?
953 #endif
954 /* mouse addressing: */
955 case MOUSE_MIDDLE: return CMD_NONE;
956 case MOUSE_RIGHT:
957 if (set_mouse(term2pile(mouse), to, opt))
958 return CMD_INVAL;
959 goto join_l;
960 case MOUSE_LEFT:
961 if (set_mouse(term2pile(mouse), from, opt))
962 return CMD_INVAL;
963 break;
964 /* misc keys: */
965 case ':':
966 {char buf[256];
967 fprintf (stderr, ":");
968 raw_mode(0); /* turn on echo */
969 fgets (buf, 256, stdin);
970 raw_mode(1);
971 switch(buf[0]) {
972 case 'q': return CMD_QUIT;
973 case 'n': return CMD_NEW;
974 case 'r': return CMD_AGAIN;
975 case 'h': return CMD_HELP;
976 default: return CMD_INVAL;
977 }}
978 case 'J':
979 *to = active.pile;
980 join_l:
981 #ifdef KLONDIKE
982 if (*to == FOUNDATION) return CMD_JOIN;
983 #endif
984 if (*to > TAB_MAX) return CMD_INVAL;
985 return CMD_JOIN;
986 case 'K': /* fallthrough */
987 case '?': return CMD_HINT;
988 case 'u': return CMD_UNDO;
989 case 002: return CMD_NONE; /* sent by SIGWINCH */
990 case EOF: return CMD_NONE; /* sent by SIGCONT */
991 default: return CMD_INVAL;
992 }
993 inactive.pile = *from; /* for direct addressing highlighting */
994 if (is_tableu(*from) && f.t[*from][0] == NO_CARD) return CMD_INVAL;
995
996 #ifndef FREECELL
997 if (*from == STOCK) {
998 *to = WASTE;
999 return CMD_MOVE;
1000 }
1001 #endif
1002
1003 /***/
1004 to_l: print_table(&active, &inactive);
1005 t = getch(mouse);
1006
1007 switch (t) {
1008 case KEY_LEFT:
1009 case 'h': cursor_left (&active); goto to_l;
1010 case KEY_DOWN:
1011 case 'j': cursor_down (&active); goto to_l;
1012 case KEY_UP:
1013 case 'k': cursor_up (&active); goto to_l;
1014 case KEY_RIGHT:
1015 case 'l': cursor_right(&active); goto to_l;
1016 case KEY_HOME:
1017 case 'H': cursor_to(&active,TAB_1); goto to_l;
1018 case KEY_END:
1019 case 'L': cursor_to(&active,TAB_MAX); goto to_l;
1020 case KEY_INS:
1021 case 'M': cursor_to(&active,TAB_MAX/2); goto to_l;
1022 case 'J': /* fallthrough; just join selected pile */
1023 case ' ':
1024 *to = active.pile;
1025 break; /* continues with the foundation/empty tableu check */
1026 case MOUSE_MIDDLE:
1027 case MOUSE_RIGHT: return CMD_NONE;
1028 case MOUSE_LEFT:
1029 if (set_mouse(term2pile(mouse), to, opt))
1030 return CMD_INVAL;
1031 /*#ifdef SPIDER
1032 //TODO: set opt if to field is empty; suppress "up do" dialog from below
1033 if (is_tableu(*to) && f.t[*to][0] == NO_CARD) {
1034 int top = find_top(f.t[*from]);
1035 if (top < 0) return CMD_INVAL;
1036 if (top >= 0 && !is_movable(f.t[*from], top-1)) {
1037 *opt = get_rank(f.t[*from][top]);
1038 } else {
1039 // ask user
1040 }
1041 }
1042 #endif*/
1043 break;
1044 case 'K': /* fallthrough */
1045 case '?': return CMD_HINT;
1046 case 'u': return CMD_NONE; /* cancel selection */
1047 case EOF: return CMD_NONE; /* sent by SIGCONT */
1048 default:
1049 if (t < '0' || t > '9') return CMD_INVAL;
1050 if (t == '0')
1051 #ifdef KLONDIKE
1052 *to = FOUNDATION;
1053 #elif defined SPIDER
1054 *to = TAB_10;
1055 #elif defined FREECELL
1056 *to = FOUNDATION;
1057 else if (t == '9')
1058 *to = STOCK;
1059 #endif
1060 else
1061 *to = t-'1';
1062 }
1063
1064 /***/
1065 #ifdef KLONDIKE
1066 if (*from == FOUNDATION) {
1067 if (inactive.opt >= 0) {
1068 *opt = inactive.opt;
1069 return CMD_MOVE;
1070 }
1071 int top = find_top(f.t[*to]);
1072 if (top < 0) return CMD_INVAL;
1073 int color = get_color(f.t[*to][top]);
1074 int choice_1 = 1-color; /* selects piles of */
1075 int choice_2 = 2+color; /* the opposite color */
1076 int top_c1 = find_top(f.f[choice_1]);
1077 int top_c2 = find_top(f.f[choice_2]);
1078
1079 switch ((rank_next(f.f[choice_1][top_c1], f.t[*to][top])
1080 && top_c1 >= 0 ) << 0
1081 |(rank_next(f.f[choice_2][top_c2], f.t[*to][top])
1082 && top_c2 >= 0 ) << 1) {
1083 case ( 1<<0): *opt = choice_1; break; /* choice_1 only */
1084 case (1<<1 ): *opt = choice_2; break; /* choice_2 only */
1085 case (1<<1 | 1<<0): /* both, ask user which to pick from */
1086 printf ("take from (1-4): "); fflush (stdout);
1087 *opt = getch(NULL) - '1';
1088 if (*opt < 0 || *opt > 3) return CMD_INVAL;
1089 break;
1090 default: return CMD_INVAL; /* none matched */
1091 }
1092 /* `opt` is the foundation index (0..3) */
1093 }
1094 #elif defined SPIDER
1095 /* moving to empty tableu? */
1096 if (is_tableu(*to) && f.t[*to][0] == NO_CARD) {
1097 int bottom = first_movable(f.t[*from]);
1098 if (inactive.opt >= 0) { /*if from was cursor addressed: */
1099 *opt = get_rank(f.t[*from][bottom + inactive.opt]);
1100 return CMD_MOVE;
1101 }
1102 int top = find_top(f.t[*from]);
1103 if (top < 0) return CMD_INVAL;
1104 if (top >= 0 && !is_movable(f.t[*from], top-1)) {
1105 *opt = get_rank(f.t[*from][top]);
1106 } else { /* only ask the user if it's unclear: */
1107 printf ("\rup to ([a23456789xjqk] or space/return): ");
1108 *opt = getch(NULL);
1109 switch (*opt) {
1110 case ' ': *opt = get_rank(f.t[*from][top]); break;
1111 case'\n': *opt = get_rank(f.t[*from][bottom]); break;
1112 case 'a': case 'A': *opt = RANK_A; break;
1113 case '0': /* fallthrough */
1114 case 'x': case 'X': *opt = RANK_X; break;
1115 case 'j': case 'J': *opt = RANK_J; break;
1116 case 'q': case 'Q': *opt = RANK_Q; break;
1117 case 'k': case 'K': *opt = RANK_K; break;
1118 default: *opt -= '1';
1119 }
1120 if (*opt < RANK_A || *opt > RANK_K) return ERR;
1121 }
1122 /* `opt` is the rank of the highest card to move */
1123 }
1124 #elif defined FREECELL
1125 //TODO FREECELL: card selector choice dialog
1126
1127 /* if it was selected with a cursor, it's obvious: */
1128 if (inactive.opt >= 0) {
1129 if (is_tableu(*from)) {
1130 //WARN: inefficient!
1131 int movable = 1 + (find_top(f.t[*from]) - first_movable(f.t[*from]));
1132 *opt = movable - inactive.opt;
1133 } else {
1134 *opt = inactive.opt;
1135 }
1136 /* moving from tableu to empty tableu? */
1137 } else if (is_tableu(*from) && is_tableu(*to) && f.t[*to][0] == NO_CARD) {
1138 // how many cards? (NOTE: spider asks "up to rank?"; do this then convert to number of cards?
1139 printf ("take how many (1-9): "); fflush (stdout);
1140 *opt = getch(NULL) - '0';
1141 if (*opt < 1 || *opt > 9) return CMD_INVAL;
1142 /* moving between stock/foundation? */
1143 } else if (*from == FOUNDATION && *to == STOCK) {
1144 //can take from all non-empty foundations
1145 printf ("take from (1-4): "); fflush (stdout);
1146 *opt = getch(NULL) - '1';
1147 if (*opt < 0 || *opt > 3) return CMD_INVAL;
1148 } else if (*from == STOCK && *to == FOUNDATION) {
1149 //check all non-empty cells
1150 printf ("take from (1-4): "); fflush (stdout);
1151 *opt = getch(NULL) - '1';
1152 if (*opt < 0 || *opt > 3) return CMD_INVAL;
1153 } else if (*from == FOUNDATION || *from == STOCK) { /* -> tableu */
1154 //foundation: 2 choices
1155 //stock: 4 choices
1156 printf ("take from (1-4): "); fflush (stdout);
1157 *opt = getch(NULL) - '1';
1158 if (*opt < 0 || *opt > 3) return CMD_INVAL;
1159 }
1160 #endif
1161 return CMD_MOVE;
1162 }
1163
1164 int getctrlseq(unsigned char* buf) {
1165 int c;
1166 enum esc_states {
1167 START,
1168 ESC_SENT,
1169 CSI_SENT,
1170 MOUSE_EVENT,
1171 } state = START;
1172 int offset = 0x20; /* never sends control chars as data */
1173 while ((c = getchar()) != EOF) {
1174 switch (state) {
1175 case START:
1176 switch (c) {
1177 case '\033': state=ESC_SENT; break;
1178 default: return c;
1179 }
1180 break;
1181 case ESC_SENT:
1182 switch (c) {
1183 case '[': state=CSI_SENT; break;
1184 default: return KEY_INVAL;
1185 }
1186 break;
1187 case CSI_SENT:
1188 switch (c) {
1189 case 'A': return KEY_UP;
1190 case 'B': return KEY_DOWN;
1191 case 'C': return KEY_RIGHT;
1192 case 'D': return KEY_LEFT;
1193 /*NOTE: home/end send ^[[x~ . no support for modifiers*/
1194 case 'H': return KEY_HOME;
1195 case 'F': return KEY_END;
1196 case '2': getchar(); return KEY_INS;
1197 case '5': getchar(); return KEY_PGUP;
1198 case '6': getchar(); return KEY_PGDN;
1199 case 'M': state=MOUSE_EVENT; break;
1200 default: return KEY_INVAL;
1201 }
1202 break;
1203 case MOUSE_EVENT:
1204 if (buf == NULL) return KEY_INVAL;
1205 buf[0] = c - offset;
1206 buf[1] = getchar() - offset;
1207 buf[2] = getchar() - offset;
1208 return MOUSE_ANY;
1209 default:
1210 return KEY_INVAL;
1211 }
1212 }
1213 return 2;
1214 }
1215 int term2pile(unsigned char *mouse) {
1216 int line = (mouse[2]-1);
1217 int column = (mouse[1]-1) / op.s->width;
1218
1219 if (line < op.s->height) { /* first line */
1220 #ifdef KLONDIKE
1221 switch (column) {
1222 case 0: return STOCK;
1223 case 1: return WASTE;
1224 case 2: return -1; /* spacer */
1225 case 3: return FOUNDATION+0;
1226 case 4: return FOUNDATION+1;
1227 case 5: return FOUNDATION+2;
1228 case 6: return FOUNDATION+3;
1229 }
1230 #elif defined SPIDER
1231 if (column < 3) return STOCK;
1232 return -1;
1233 #elif defined FREECELL
1234 //TODO FREECELL: term2pile cells/foundation (how to encode open cells?)
1235 #endif
1236 } else if (line > op.s->height) { /* tableu */
1237 if (column <= TAB_MAX) return column;
1238 }
1239 return -1;
1240 }
1241 int wait_mouse_up(unsigned char* mouse) {
1242 //TODO: mouse drag: start gets inactive, hovering gets active cursors
1243 struct cursor cur = {-1,-1};
1244 int level = 1;
1245 /* note: if dragged [3]==1 and second position is in mouse[0,4,5] */
1246
1247 /* display a cursor while mouse button is pushed: */
1248 int pile = term2pile(mouse);
1249 cur.pile = pile;
1250 #ifdef KLONDIKE
1251 //TODO: need something similar from FREECELL
1252 if (pile >= FOUNDATION) {
1253 cur.pile = FOUNDATION;
1254 cur.opt = pile-FOUNDATION;
1255 }
1256 #endif
1257 /* need to temporarily show the cursor, then revert to last state: */
1258 int old_show_cursor_hi = op.h; //TODO: ARGH! that's awful!
1259 op.h = 1;
1260 print_table(&cur, NO_HI); //TODO: should not overwrite inactive cursor!
1261 op.h = old_show_cursor_hi;
1262
1263 while (level > 0) {
1264 if (getctrlseq (mouse+3) == MOUSE_ANY) {
1265 /* ignore mouse wheel events: */
1266 if (mouse[3] & 0x40) continue;
1267
1268 else if((mouse[3]&3) == 3) level--; /* release event */
1269 else level++; /* another button pressed */
1270 }
1271 }
1272
1273 int success = mouse[1] == mouse[4] && mouse[2] == mouse[5];
1274 if (success) {
1275 mouse[3] = 0;
1276 }
1277 return success;
1278 }
1279
1280 int getch(unsigned char* buf) {
1281 /* returns a character, EOF, or constant for an escape/control sequence - NOT
1282 compatible with the ncurses implementation of same name */
1283 int action;
1284 if (buf && buf[3]) {
1285 /* mouse was dragged; return 'ungetted' previous destination */
1286 action = MOUSE_DRAG;
1287 /* keep original [0], as [3] only contains release event */
1288 buf[1] = buf[4];
1289 buf[2] = buf[5];
1290 buf[3] = 0;
1291 } else {
1292 action = getctrlseq(buf);
1293 }
1294
1295 switch (action) {
1296 case MOUSE_ANY:
1297 if (buf[0] > 3) break; /* ignore wheel events */
1298 wait_mouse_up(buf);
1299 /* fallthrough */
1300 case MOUSE_DRAG:
1301 switch (buf[0]) {
1302 case 0: return MOUSE_LEFT;
1303 case 1: return MOUSE_MIDDLE;
1304 case 2: return MOUSE_RIGHT;
1305 }
1306 }
1307
1308 return action;
1309 }
1310 // }}}
1311
1312 // shuffling and dealing {{{
1313 void deal(long seed) {
1314 f = (const struct playfield){0}; /* clear playfield */
1315 card_t deck[DECK_SIZE*NUM_DECKS];
1316 int avail = DECK_SIZE*NUM_DECKS;
1317 for (int i = 0; i < DECK_SIZE*NUM_DECKS; i++) deck[i] = (i%DECK_SIZE)+1;
1318 #ifdef SPIDER
1319 if (op.m != NORMAL) for (int i = 0; i < DECK_SIZE*NUM_DECKS; i++) {
1320 if (op.m == MEDIUM) deck[i] = 1+((deck[i]-1) | 2);
1321 if (op.m == EASY) deck[i] = 1+((deck[i]-1) | 2 | 1);
1322 /* the 1+ -1 dance gets rid of the offset created by NO_CARD */
1323 }
1324 #endif
1325 srand (seed);
1326 for (int i = DECK_SIZE*NUM_DECKS-1; i > 0; i--) { /* fisher-yates */
1327 int j = rand() % (i+1);
1328 if (j-i) deck[i]^=deck[j],deck[j]^=deck[i],deck[i]^=deck[j];
1329 }
1330
1331 /* deal cards: */
1332 for (int i = 0; i < NUM_PILES; i++) {
1333 #ifdef KLONDIKE
1334 #define SIGN -
1335 int count = i; /* pile n has n closed cards, then 1 open */
1336 #elif defined SPIDER
1337 #define SIGN -
1338 int count = i<4?5:4; /* pile 1-4 have 5, 5-10 have 4 closed */
1339 #elif defined FREECELL
1340 #define SIGN +
1341 int count = i<4?6:5;/*like spider, but cards are dealt face-up*/
1342 #endif
1343 /* "SIGN": face down cards are negated */
1344 for (int j = 0; j < count; j++) f.t[i][j] = SIGN deck[--avail];
1345 f.t[i][count] = deck[--avail]; /* the face-up card */
1346 #undef SIGN
1347 }
1348 /* rest of the cards to the stock: */
1349 /* NOTE: assert(avail==50) for spider, assert(avail==0) for freecell */
1350 for (f.z = 0; avail; f.z++) f.s[f.z] = deck[--avail];
1351 #ifdef KLONDIKE
1352 f.w = -1; /* @start: nothing on waste */
1353 #elif defined SPIDER
1354 f.w = 0; /* number of used foundations */
1355 #elif defined FREECELL
1356 f.w = 0; /* bitmask of used free cells */
1357 #endif
1358
1359 f.u = &undo_sentinel;
1360 }
1361 //}}}
1362
1363 // screen drawing routines {{{
1364 void print_hi(int invert, int grey_bg, int bold, char* str) {
1365 if (!op.h) invert = 0; /* don't show invert if we used the mouse last */
1366 if (bold && op.s == &unicode_large_color){ //awful hack for bold + faint
1367 int offset = str[3]==017?16:str[4]==017?17:0;
1368 printf ("%s%s%s""%.*s%s%s""%s%s%s",
1369 "\033[1m", invert?"\033[7m":"", grey_bg?"\033[100m":"",
1370 offset, str, bold?"\033[1m":"", str+offset,
1371 grey_bg?"\033[49m":"", invert?"\033[27m":"","\033[22m");
1372 return;
1373 }
1374 printf ("%s%s%s%s%s%s%s",
1375 bold?"\033[1m":"", invert?"\033[7m":"", grey_bg?"\033[100m":"",
1376 str,
1377 grey_bg?"\033[49m":"", invert?"\033[27m":"",bold?"\033[22m":"");
1378 }
1379 void print_table(const struct cursor* active, const struct cursor* inactive) {
1380 printf("\033[2J\033[H"); /* clear screen, reset cursor */
1381 #ifdef KLONDIKE
1382 /* print stock, waste and foundation: */
1383 for (int line = 0; line < op.s->height; line++) {
1384 /* stock: */
1385 print_hi (active->pile == STOCK, inactive->pile == STOCK, 1, (
1386 (f.w < f.z-1)?op.s->facedown
1387 :op.s->placeholder)[line]);
1388 /* waste: */
1389 print_hi (active->pile == WASTE, inactive->pile == WASTE, 1, (
1390 /* NOTE: cast, because f.w sometimes is (short)-1 !? */
1391 ((short)f.w >= 0)?op.s->card[f.s[f.w]]
1392 :op.s->placeholder)[line]);
1393 printf ("%s", op.s->card[NO_CARD][line]); /* spacer */
1394 /* foundation: */
1395 for (int pile = 0; pile < NUM_SUITS; pile++) {
1396 int card = find_top(f.f[pile]);
1397 print_hi (active->pile==FOUNDATION && active->opt==pile,
1398 inactive->pile==FOUNDATION && (
1399 /* cursor addr. || direct addr. */
1400 inactive->opt==pile || inactive->opt < 0
1401 ), 1,
1402 (card < 0)?op.s->placeholder[line]
1403 :op.s->card[f.f[pile][card]][line]);
1404 }
1405 printf("\n");
1406 }
1407 printf("\n");
1408 #elif defined SPIDER
1409 int fdone; for (fdone = NUM_DECKS*NUM_SUITS; fdone; fdone--)
1410 if (f.f[fdone-1][RANK_K]) break; /*number of completed stacks*/
1411 int spacer_from = f.z?(f.z/10-1) * op.s->halfwidth[0] + op.s->width:0;
1412 int spacer_to = NUM_PILES*op.s->width -
1413 ((fdone?(fdone-1) * op.s->halfwidth[1]:0)+op.s->width);
1414 for (int line = 0; line < op.s->height; line++) {
1415 /* available stock: */
1416 for (int i = f.z/10; i; i--) {
1417 if (i==1) printf ("%s", op.s->facedown[line]);
1418 else printf ("%s", op.s->halfstack[line]);
1419 }
1420 /* spacer: */
1421 for (int i = spacer_from; i < spacer_to; i++) printf (" ");
1422 /* foundation (overlapping): */
1423 for (int i = NUM_DECKS*NUM_SUITS-1, half = 0; i >= 0; i--) {
1424 int overlap = half? op.s->halfcard[line]: 0;
1425 if (f.f[i][RANK_K]) printf ("%.*s", op.s->halfwidth[2],
1426 op.s->card[f.f[i][RANK_K]][line]+overlap),
1427 half++;
1428 }
1429 printf("\n");
1430 }
1431 printf("\n");
1432 #elif defined FREECELL
1433 /* print open cells, foundation: */
1434 for (int line = 0; line < op.s->height; line++) {
1435 //FREECELL TODO: cells and foundation look the same! (different placeholder?)
1436 for (int pile = 0; pile < NUM_CELLS; pile++)
1437 print_hi (active->pile==STOCK && active->opt==pile,
1438 inactive->pile==STOCK && (
1439 /* cursor addr. || direct addr. */
1440 inactive->opt==pile || inactive->opt < 0
1441 ), 1,
1442 ((f.s[pile])?op.s->card[f.s[pile]]
1443 :op.s->placeholder)[line]);
1444 for (int pile = 0; pile < NUM_SUITS; pile++) {
1445 int card = find_top(f.f[pile]);
1446 print_hi (active->pile==FOUNDATION && active->opt==pile,
1447 inactive->pile==FOUNDATION && (
1448 /* cursor addr. || direct addr. */
1449 inactive->opt==pile || inactive->opt < 0
1450 ), 1,
1451 (card < 0)?op.s->placeholder[line]
1452 :op.s->card[f.f[pile][card]][line]);
1453 }
1454 printf("\n");
1455 }
1456 printf("\n");
1457 #endif
1458 #ifdef KLONDIKE
1459 #define DO_HI(cursor) (cursor->pile == pile && (movable || empty))
1460 #define TOP_HI(c) 1 /* can't select partial stacks in KLONDIKE */
1461 #elif defined SPIDER || defined FREECELL
1462 int offset[NUM_PILES]={0};
1463 //TODO FREECELL: multi-card-moving constraint! for DO_HI() and TOP_HI()
1464 #define DO_HI(cursor) (cursor->pile == pile && (movable || empty) \
1465 && offset[pile] >= cursor->opt)
1466 #define TOP_HI(cursor) (cursor->pile == pile && movable \
1467 && offset[pile] == cursor->opt)
1468 #endif
1469 /* print tableu piles: */
1470 int row[NUM_PILES] = {0};
1471 int line[NUM_PILES]= {0};
1472 int label[NUM_PILES]={0};
1473 int line_had_card;
1474 int did_placeholders = 0;
1475 do {
1476 line_had_card = 0;
1477 for (int pile = 0; pile < NUM_PILES; pile++) {
1478 card_t card = f.t[pile][row[pile]];
1479 card_t next = f.t[pile][row[pile]+1];
1480 int movable = is_movable(f.t[pile], row[pile]);
1481 int empty = !card && row[pile] == 0;
1482
1483 print_hi (DO_HI(active), DO_HI(inactive), movable, (
1484 (!card && row[pile] == 0)?op.s->placeholder
1485 :(card<0)?op.s->facedown
1486 :op.s->card[card]
1487 )[line[pile]]);
1488
1489 int extreme_overlap = ( 3 /* spacer, labels, status */
1490 + 2 * op.s->height /* stock, top tableu card */
1491 + find_top(f.t[pile]) * op.s->overlap) >op.w[0];
1492 /* normal overlap: */
1493 if (++line[pile] >= (next?op.s->overlap:op.s->height)
1494 /* extreme overlap on closed cards: */
1495 || (extreme_overlap &&
1496 line[pile] >= 1 &&
1497 f.t[pile][row[pile]] < 0 &&
1498 f.t[pile][row[pile]+1] <0)
1499 /* extreme overlap on sequences: */
1500 || (extreme_overlap &&
1501 !TOP_HI(active) && /*always show top selected card*/
1502 line[pile] >= 1 && row[pile] > 0 &&
1503 f.t[pile][row[pile]-1] > NO_CARD &&
1504 is_consecutive (f.t[pile], row[pile]) &&
1505 is_consecutive (f.t[pile], row[pile]-1) &&
1506 f.t[pile][row[pile]+1] != NO_CARD)
1507 ) {
1508 line[pile]=0;
1509 row[pile]++;
1510 #if defined SPIDER || defined FREECELL
1511 if (movable) offset[pile]++;
1512 #endif
1513 }
1514 /* tableu labels: */
1515 if(!card && !label[pile] && row[pile]>0&&line[pile]>0) {
1516 label[pile] = 1;
1517 printf ("\b\b%d ", (pile+1) % 10); //XXX: hack
1518 }
1519 line_had_card |= !!card;
1520 did_placeholders |= row[pile] > 0;
1521 }
1522 printf ("\n");
1523 } while (line_had_card || !did_placeholders);
1524 }
1525
1526 void visbell (void) {
1527 if (!op.v) return;
1528 printf ("\033[?5h"); fflush (stdout);
1529 usleep (100000);
1530 printf ("\033[?5l"); fflush (stdout);
1531 }
1532 void win_anim(void) {
1533 printf ("\033[?25l"); /* hide cursor */
1534 for (;;) {
1535 /* set cursor to random location */
1536 int row = 1+rand()%(op.w[0]-op.s->width);
1537 int col = 1+rand()%(op.w[1]-op.s->height);
1538
1539 /* draw random card */
1540 int face = 1 + rand() % 52;
1541 for (int l = 0; l < op.s->height; l++) {
1542 printf ("\033[%d;%dH", row+l, col);
1543 printf ("%s", op.s->card[face][l]);
1544 }
1545 fflush (stdout);
1546
1547 /* exit on keypress */
1548 struct pollfd p = {STDIN_FILENO, POLLIN, 0};
1549 if (poll (&p, 1, 80)) goto fin;
1550 }
1551 fin:
1552 printf ("\033[?25h"); /* show cursor */
1553 return;
1554 }
1555 //}}}
1556
1557 // undo logic {{{
1558 void undo_push (int _f, int t, int n, int o) {
1559 struct undo* new = malloc(sizeof(struct undo));
1560 new->f = _f;
1561 new->t = t;
1562 new->n = n;
1563 new->o = o;
1564 new->prev = f.u;
1565 new->next = NULL;
1566 f.u->next = new;
1567 f.u = f.u->next;
1568 }
1569 void undo_pop (struct undo* u) {
1570 if (u == &undo_sentinel) return;
1571
1572 #ifdef KLONDIKE
1573 if (u->f == FOUNDATION) {
1574 /* foundation -> tableu */
1575 int top_f = find_top(f.f[u->n]);
1576 int top_t = find_top(f.t[u->t]);
1577 f.f[u->n][top_f+1] = f.t[u->t][top_t];
1578 f.t[u->t][top_t] = NO_CARD;
1579 } else if (u->f == WASTE && u->t == FOUNDATION) {
1580 /* waste -> foundation */
1581 /* split u->n into wst and fnd: */
1582 int wst = u->n & 0xffff;
1583 int fnd = u->n >> 16;
1584 /* move stock cards one position up to make room: */
1585 for (int i = f.z; i >= wst; i--) f.s[i+1] = f.s[i];
1586 /* move one card from foundation to waste: */
1587 int top = find_top(f.f[fnd]);
1588 f.s[wst] = f.f[fnd][top];
1589 f.f[fnd][top] = NO_CARD;
1590 f.z++;
1591 f.w++;
1592 } else if (u->f == WASTE) {
1593 /* waste -> tableu */
1594 /* move stock cards one position up to make room: */
1595 for (int i = f.z; i >= u->n; i--) f.s[i+1] = f.s[i];
1596 /* move one card from tableu to waste: */
1597 int top = find_top(f.t[u->t]);
1598 f.s[u->n] = f.t[u->t][top];
1599 f.t[u->t][top] = NO_CARD;
1600 f.z++;
1601 f.w++;
1602 } else if (u->t == FOUNDATION) {
1603 /* tableu -> foundation */
1604 int top_f = find_top(f.t[u->f]);
1605 int top_t = find_top(f.f[u->n]);
1606 /* close topcard if previous action caused turn_over(): */
1607 if (u->o) f.t[u->f][top_f] *= -1;
1608 /* move one card from foundation to tableu: */
1609 f.t[u->f][top_f+1] = f.f[u->n][top_t];
1610 f.f[u->n][top_t] = NO_CARD;
1611 } else {
1612 /* tableu -> tableu */
1613 int top_f = find_top(f.t[u->f]);
1614 int top_t = find_top(f.t[u->t]);
1615 /* close topcard if previous action caused turn_over(): */
1616 if (u->o) f.t[u->f][top_f] *= -1;
1617 /* move n cards from tableu[f] to tableu[t]: */
1618 for (int i = 0; i < u->n; i++) {
1619 f.t[u->f][top_f+u->n-i] = f.t[u->t][top_t-i];
1620 f.t[u->t][top_t-i] = NO_CARD;
1621 }
1622 }
1623 #elif defined SPIDER
1624 if (u->f == STOCK) {
1625 /* stock -> tableu */
1626 /*remove a card from each pile and put it back onto the stock:*/
1627 for (int pile = NUM_PILES-1; pile >= 0; pile--) {
1628 int top = find_top(f.t[pile]);
1629 f.s[f.z++] = f.t[pile][top];
1630 f.t[pile][top] = NO_CARD;
1631 }
1632 } else if (u->t == FOUNDATION) {
1633 /* tableu -> foundation */
1634 int top = find_top(f.t[u->f]);
1635 /* close topcard if previous action caused turn_over(): */
1636 if (u->o) f.t[u->f][top] *= -1;
1637 /* append cards from foundation to tableu */
1638 for (int i = RANK_K; i >= RANK_A; i--) {
1639 f.t[u->f][++top] = f.f[u->n][i];
1640 f.f[u->n][i] = NO_CARD;
1641 }
1642 f.w--; /* decrement complete-foundation-counter */
1643
1644 } else {
1645 /* tableu -> tableu */
1646 int top_f = find_top(f.t[u->f]);
1647 int top_t = find_top(f.t[u->t]);
1648 /* close topcard if previous action caused turn_over(): */
1649 if (u->o) f.t[u->f][top_f] *= -1;
1650 /* move n cards from tableu[f] to tableu[t]: */
1651 for (int i = 0; i < u->n; i++) {
1652 f.t[u->f][top_f+u->n-i] = f.t[u->t][top_t-i];
1653 f.t[u->t][top_t-i] = NO_CARD;
1654 }
1655 }
1656 #elif defined FREECELL
1657 /*NOTE: if from and to are both stock/foundation, opt = from | to<<16 */
1658 if (u->f == STOCK && u->t == FOUNDATION) {
1659 /* free cells -> foundation */
1660 /* split u->n into cll and fnd: */
1661 int cll = u->n & 0xffff;
1662 int fnd = u->n >> 16;
1663 /* move one card from foundation to free cell: */
1664 int top = find_top(f.f[fnd]);
1665 f.s[cll] = f.f[fnd][top];
1666 f.f[fnd][top] = NO_CARD;
1667 f.w |= 1<<cll; /* mark cell as occupied */
1668 } else if (u->f == STOCK) {
1669 /* free cells -> cascade */
1670 int top_t = find_top(f.t[u->t]);
1671 f.s[u->n] = f.t[u->t][top_t];
1672 f.t[u->t][top_t] = NO_CARD;
1673 f.w |= 1<<u->n; /* mark cell as occupied */
1674 } else if (u->f == FOUNDATION && u->t == STOCK) {
1675 /* foundation -> free cells */
1676 /* split u->n into cll and fnd: */
1677 int cll = u->n >> 16;
1678 int fnd = u->n & 0xffff;
1679 /* move 1 card from free cell to foundation: */
1680 int top_f = find_top(f.f[fnd]);
1681 f.f[fnd][top_f+1] = f.s[cll];
1682 f.s[cll] = NO_CARD;
1683 f.w &= ~(1<<cll); /* mark cell as free */
1684 } else if (u->f == FOUNDATION) {
1685 /* foundation -> cascade */
1686 int top_f = find_top(f.f[u->n]);
1687 int top_t = find_top(f.t[u->t]);
1688 f.f[u->n][top_f+1] = f.t[u->t][top_t];
1689 f.t[u->t][top_t] = NO_CARD;
1690 } else if (u->t == STOCK) {
1691 /* cascade -> free cells */
1692 int top_f = find_top(f.t[u->f]);
1693 f.t[u->f][top_f+1] = f.s[u->n];
1694 f.s[u->n] = NO_CARD;
1695 f.w &= ~(1<<u->n); /* mark cell as free */
1696 } else if (u->t == FOUNDATION) {
1697 /* cascade -> foundation */
1698 int top_f = find_top(f.t[u->f]);
1699 int top_t = find_top(f.f[u->n]);
1700 /* move one card from foundation to cascade: */
1701 f.t[u->f][top_f+1] = f.f[u->n][top_t];
1702 f.f[u->n][top_t] = NO_CARD;
1703 } else {
1704 /* cascade -> cascade */
1705 int top_f = find_top(f.t[u->f]);
1706 int top_t = find_top(f.t[u->t]);
1707 /* move n cards from tableu[f] to tableu[t]: */
1708 for (int i = 0; i < u->n; i++) {
1709 f.t[u->f][top_f+u->n-i] = f.t[u->t][top_t-i];
1710 f.t[u->t][top_t-i] = NO_CARD;
1711 }
1712 }
1713 #endif
1714
1715 void* old = f.u;
1716 f.u = f.u->prev;
1717 free(old);
1718 }
1719 void free_undo (struct undo* u) {
1720 while (u && u != &undo_sentinel) {
1721 void* old = u;
1722 u = u->prev;
1723 free (old);
1724 }
1725 }
1726 //}}}
1727
1728 // initialization stuff {{{
1729 void screen_setup (int enable) {
1730 if (enable) {
1731 raw_mode(1);
1732 printf ("\033[s\033[?47h"); /* save cursor, alternate screen */
1733 printf ("\033[H\033[J"); /* reset cursor, clear screen */
1734 printf ("\033[?1000h"); /* enable mouse */
1735 } else {
1736 printf ("\033[?1000l"); /* disable mouse */
1737 printf ("\033[?47l\033[u"); /* primary screen, restore cursor */
1738 raw_mode(0);
1739 }
1740 }
1741
1742 void raw_mode(int enable) {
1743 static struct termios saved_term_mode;
1744 struct termios raw_term_mode;
1745
1746 if (enable) {
1747 if (saved_term_mode.c_lflag == 0)/*don't overwrite stored mode*/
1748 tcgetattr(STDIN_FILENO, &saved_term_mode);
1749 raw_term_mode = saved_term_mode;
1750 raw_term_mode.c_lflag &= ~(ICANON | ECHO);
1751 raw_term_mode.c_cc[VMIN] = 1 ;
1752 raw_term_mode.c_cc[VTIME] = 0;
1753 tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw_term_mode);
1754 } else {
1755 tcsetattr(STDIN_FILENO, TCSAFLUSH, &saved_term_mode);
1756 }
1757 }
1758
1759 void signal_handler (int signum) {
1760 struct winsize w;
1761 switch (signum) {
1762 case SIGTSTP:
1763 screen_setup(0);
1764 signal(SIGTSTP, SIG_DFL); /* NOTE: assumes SysV semantics! */
1765 raise(SIGTSTP);
1766 break;
1767 case SIGCONT:
1768 screen_setup(1);
1769 print_table(NO_HI, NO_HI);
1770 break;
1771 case SIGINT: //TODO: don't exit; just warn like vim does
1772 exit(128+SIGINT);
1773 case SIGWINCH:
1774 ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
1775 op.w[0] = w.ws_row;
1776 op.w[1] = w.ws_col;
1777 break;
1778 }
1779 }
1780 void signal_setup(void) {
1781 struct sigaction saction;
1782
1783 saction.sa_handler = signal_handler;
1784 sigemptyset(&saction.sa_mask);
1785 saction.sa_flags = 0;
1786 if (sigaction(SIGTSTP, &saction, NULL) < 0) {
1787 perror ("SIGTSTP");
1788 exit (1);
1789 }
1790 if (sigaction(SIGCONT, &saction, NULL) < 0) {
1791 perror ("SIGCONT");
1792 exit (1);
1793 }
1794 if (sigaction(SIGINT, &saction, NULL) < 0) {
1795 perror ("SIGINT");
1796 exit (1);
1797 }
1798 if (sigaction(SIGWINCH, &saction, NULL) < 0) {
1799 perror ("SIGWINCH");
1800 exit (1);
1801 }
1802 }
1803 //}}}
1804
1805 //vim: foldmethod=marker
Imprint / Impressum