Redraw glitch: tiles marked black (at game-over time) were not
[sgt/puzzles] / flip.c
CommitLineData
f4afe206 1/*
2 * flip.c: Puzzle involving lighting up all the squares on a grid,
3 * where each click toggles an overlapping set of lights.
4 */
5
f4afe206 6#include <stdio.h>
7#include <stdlib.h>
8#include <string.h>
9#include <assert.h>
10#include <ctype.h>
11#include <math.h>
12
13#include "puzzles.h"
14#include "tree234.h"
15
16enum {
17 COL_BACKGROUND,
18 COL_WRONG,
19 COL_RIGHT,
20 COL_GRID,
21 COL_DIAG,
79cb09e9 22 COL_HINT,
f4afe206 23 NCOLOURS
24};
25
26#define PREFERRED_TILE_SIZE 48
27#define TILE_SIZE (ds->tilesize)
28#define BORDER (TILE_SIZE / 2)
29#define COORD(x) ( (x) * TILE_SIZE + BORDER )
30#define FROMCOORD(x) ( ((x) - BORDER + TILE_SIZE) / TILE_SIZE - 1 )
31
d1044751 32#define ANIM_TIME 0.25F
f4afe206 33#define FLASH_FRAME 0.07F
34
35/*
36 * Possible ways to decide which lights are toggled by each click.
37 * Essentially, each of these describes a means of inventing a
38 * matrix over GF(2).
39 */
40enum {
41 CROSSES, RANDOM
42};
43
44struct game_params {
45 int w, h;
46 int matrix_type;
47};
48
49/*
50 * This structure is shared between all the game_states describing
51 * a particular game, so it's reference-counted.
52 */
53struct matrix {
54 int refcount;
55 unsigned char *matrix; /* array of (w*h) by (w*h) */
56};
57
58struct game_state {
59 int w, h;
79cb09e9 60 int moves, completed, cheated, hints_active;
f4afe206 61 unsigned char *grid; /* array of w*h */
62 struct matrix *matrix;
63};
64
65static game_params *default_params(void)
66{
67 game_params *ret = snew(game_params);
68
69 ret->w = ret->h = 5;
70 ret->matrix_type = CROSSES;
71
72 return ret;
73}
74
75static const struct game_params flip_presets[] = {
76 {3, 3, CROSSES},
77 {4, 4, CROSSES},
78 {5, 5, CROSSES},
79 {3, 3, RANDOM},
80 {4, 4, RANDOM},
81 {5, 5, RANDOM},
82};
83
84static int game_fetch_preset(int i, char **name, game_params **params)
85{
86 game_params *ret;
87 char str[80];
88
89 if (i < 0 || i >= lenof(flip_presets))
90 return FALSE;
91
92 ret = snew(game_params);
93 *ret = flip_presets[i];
94
95 sprintf(str, "%dx%d %s", ret->w, ret->h,
96 ret->matrix_type == CROSSES ? "Crosses" : "Random");
97
98 *name = dupstr(str);
99 *params = ret;
100 return TRUE;
101}
102
103static void free_params(game_params *params)
104{
105 sfree(params);
106}
107
108static game_params *dup_params(game_params *params)
109{
110 game_params *ret = snew(game_params);
111 *ret = *params; /* structure copy */
112 return ret;
113}
114
115static void decode_params(game_params *ret, char const *string)
116{
117 ret->w = ret->h = atoi(string);
118 while (*string && isdigit(*string)) string++;
119 if (*string == 'x') {
120 string++;
121 ret->h = atoi(string);
122 while (*string && isdigit(*string)) string++;
123 }
124 if (*string == 'r') {
125 string++;
126 ret->matrix_type = RANDOM;
127 } else if (*string == 'c') {
128 string++;
129 ret->matrix_type = CROSSES;
130 }
131}
132
133static char *encode_params(game_params *params, int full)
134{
135 char data[256];
136
137 sprintf(data, "%dx%d%s", params->w, params->h,
138 !full ? "" : params->matrix_type == CROSSES ? "c" : "r");
139
140 return dupstr(data);
141}
142
143static config_item *game_configure(game_params *params)
144{
145 config_item *ret = snewn(4, config_item);
146 char buf[80];
147
148 ret[0].name = "Width";
149 ret[0].type = C_STRING;
150 sprintf(buf, "%d", params->w);
151 ret[0].sval = dupstr(buf);
152 ret[0].ival = 0;
153
154 ret[1].name = "Height";
155 ret[1].type = C_STRING;
156 sprintf(buf, "%d", params->h);
157 ret[1].sval = dupstr(buf);
158 ret[1].ival = 0;
159
160 ret[2].name = "Shape type";
161 ret[2].type = C_CHOICES;
162 ret[2].sval = ":Crosses:Random";
163 ret[2].ival = params->matrix_type;
164
165 ret[3].name = NULL;
166 ret[3].type = C_END;
167 ret[3].sval = NULL;
168 ret[3].ival = 0;
169
170 return ret;
171}
172
173static game_params *custom_params(config_item *cfg)
174{
175 game_params *ret = snew(game_params);
176
177 ret->w = atoi(cfg[0].sval);
178 ret->h = atoi(cfg[1].sval);
179 ret->matrix_type = cfg[2].ival;
180
181 return ret;
182}
183
184static char *validate_params(game_params *params)
185{
186 if (params->w <= 0 || params->h <= 0)
187 return "Width and height must both be greater than zero";
188 return NULL;
189}
190
191static char *encode_bitmap(unsigned char *bmp, int len)
192{
193 int slen = (len + 3) / 4;
194 char *ret;
195 int i;
196
197 ret = snewn(slen + 1, char);
198 for (i = 0; i < slen; i++) {
199 int j, v;
200 v = 0;
201 for (j = 0; j < 4; j++)
202 if (i*4+j < len && bmp[i*4+j])
203 v |= 8 >> j;
204 ret[i] = "0123456789abcdef"[v];
205 }
206 ret[slen] = '\0';
207 return ret;
208}
209
210static void decode_bitmap(unsigned char *bmp, int len, char *hex)
211{
212 int slen = (len + 3) / 4;
213 int i;
214
215 for (i = 0; i < slen; i++) {
216 int j, v, c = hex[i];
217 if (c >= '0' && c <= '9')
218 v = c - '0';
219 else if (c >= 'A' && c <= 'F')
220 v = c - 'A' + 10;
221 else if (c >= 'a' && c <= 'f')
222 v = c - 'a' + 10;
223 else
224 v = 0; /* shouldn't happen */
225 for (j = 0; j < 4; j++) {
226 if (i*4+j < len) {
227 if (v & (8 >> j))
228 bmp[i*4+j] = 1;
229 else
230 bmp[i*4+j] = 0;
231 }
232 }
233 }
234}
235
236/*
237 * Structure used during random matrix generation, and a compare
238 * function to permit storage in a tree234.
239 */
240struct sq {
241 int cx, cy; /* coords of click square */
242 int x, y; /* coords of output square */
243 /*
244 * Number of click squares which currently affect this output
245 * square.
246 */
247 int coverage;
248 /*
249 * Number of output squares currently affected by this click
250 * square.
251 */
252 int ominosize;
253};
254#define SORT(field) do { \
255 if (a->field < b->field) \
256 return -1; \
257 else if (a->field > b->field) \
258 return +1; \
259} while (0)
260/*
261 * Compare function for choosing the next square to add. We must
262 * sort by coverage, then by omino size, then everything else.
263 */
264static int sqcmp_pick(void *av, void *bv)
265{
266 struct sq *a = (struct sq *)av;
267 struct sq *b = (struct sq *)bv;
268 SORT(coverage);
269 SORT(ominosize);
270 SORT(cy);
271 SORT(cx);
272 SORT(y);
273 SORT(x);
274 return 0;
275}
276/*
277 * Compare function for adjusting the coverage figures after a
278 * change. We sort first by coverage and output square, then by
279 * everything else.
280 */
281static int sqcmp_cov(void *av, void *bv)
282{
283 struct sq *a = (struct sq *)av;
284 struct sq *b = (struct sq *)bv;
285 SORT(coverage);
286 SORT(y);
287 SORT(x);
288 SORT(ominosize);
289 SORT(cy);
290 SORT(cx);
291 return 0;
292}
293/*
294 * Compare function for adjusting the omino sizes after a change.
295 * We sort first by omino size and input square, then by everything
296 * else.
297 */
298static int sqcmp_osize(void *av, void *bv)
299{
300 struct sq *a = (struct sq *)av;
301 struct sq *b = (struct sq *)bv;
302 SORT(ominosize);
303 SORT(cy);
304 SORT(cx);
305 SORT(coverage);
306 SORT(y);
307 SORT(x);
308 return 0;
309}
310static void addsq(tree234 *t, int w, int h, int cx, int cy,
311 int x, int y, unsigned char *matrix)
312{
313 int wh = w * h;
314 struct sq *sq;
315 int i;
316
317 if (x < 0 || x >= w || y < 0 || y >= h)
318 return;
319 if (abs(x-cx) > 1 || abs(y-cy) > 1)
320 return;
321 if (matrix[(cy*w+cx) * wh + y*w+x])
322 return;
323
324 sq = snew(struct sq);
325 sq->cx = cx;
326 sq->cy = cy;
327 sq->x = x;
328 sq->y = y;
329 sq->coverage = sq->ominosize = 0;
330 for (i = 0; i < wh; i++) {
331 if (matrix[i * wh + y*w+x])
332 sq->coverage++;
333 if (matrix[(cy*w+cx) * wh + i])
334 sq->ominosize++;
335 }
336
337 if (add234(t, sq) != sq)
338 sfree(sq); /* already there */
339}
340static void addneighbours(tree234 *t, int w, int h, int cx, int cy,
341 int x, int y, unsigned char *matrix)
342{
343 addsq(t, w, h, cx, cy, x-1, y, matrix);
344 addsq(t, w, h, cx, cy, x+1, y, matrix);
345 addsq(t, w, h, cx, cy, x, y-1, matrix);
346 addsq(t, w, h, cx, cy, x, y+1, matrix);
347}
348
349static char *new_game_desc(game_params *params, random_state *rs,
350 game_aux_info **aux, int interactive)
351{
352 int w = params->w, h = params->h, wh = w * h;
353 int i, j;
354 unsigned char *matrix, *grid;
355 char *mbmp, *gbmp, *ret;
356
357 matrix = snewn(wh * wh, unsigned char);
358 grid = snewn(wh, unsigned char);
359
360 /*
361 * First set up the matrix.
362 */
363 switch (params->matrix_type) {
364 case CROSSES:
365 for (i = 0; i < wh; i++) {
366 int ix = i % w, iy = i / w;
367 for (j = 0; j < wh; j++) {
368 int jx = j % w, jy = j / w;
369 if (abs(jx - ix) + abs(jy - iy) <= 1)
370 matrix[i*wh+j] = 1;
371 else
372 matrix[i*wh+j] = 0;
373 }
374 }
375 break;
376 case RANDOM:
377 while (1) {
378 tree234 *pick, *cov, *osize;
379 int limit;
380
381 pick = newtree234(sqcmp_pick);
382 cov = newtree234(sqcmp_cov);
383 osize = newtree234(sqcmp_osize);
384
385 memset(matrix, 0, wh * wh);
386 for (i = 0; i < wh; i++) {
387 matrix[i*wh+i] = 1;
388 }
389
390 for (i = 0; i < wh; i++) {
391 int ix = i % w, iy = i / w;
392 addneighbours(pick, w, h, ix, iy, ix, iy, matrix);
393 addneighbours(cov, w, h, ix, iy, ix, iy, matrix);
394 addneighbours(osize, w, h, ix, iy, ix, iy, matrix);
395 }
396
397 /*
398 * Repeatedly choose a square to add to the matrix,
399 * until we have enough. I'll arbitrarily choose our
400 * limit to be the same as the total number of set bits
401 * in the crosses matrix.
402 */
403 limit = 4*wh - 2*(w+h); /* centre squares already present */
404
405 while (limit-- > 0) {
406 struct sq *sq, *sq2, sqlocal;
407 int k;
408
409 /*
410 * Find the lowest element in the pick tree.
411 */
412 sq = index234(pick, 0);
413
414 /*
415 * Find the highest element with the same coverage
416 * and omino size, by setting all other elements to
417 * lots.
418 */
419 sqlocal = *sq;
420 sqlocal.cx = sqlocal.cy = sqlocal.x = sqlocal.y = wh;
421 sq = findrelpos234(pick, &sqlocal, NULL, REL234_LT, &k);
422 assert(sq != 0);
423
424 /*
425 * Pick at random from all elements up to k of the
426 * pick tree.
427 */
428 k = random_upto(rs, k+1);
429 sq = delpos234(pick, k);
430 del234(cov, sq);
431 del234(osize, sq);
432
433 /*
434 * Add this square to the matrix.
435 */
436 matrix[(sq->cy * w + sq->cx) * wh + (sq->y * w + sq->x)] = 1;
437
438 /*
439 * Correct the matrix coverage field of any sq
440 * which points at this output square.
441 */
442 sqlocal = *sq;
443 sqlocal.cx = sqlocal.cy = sqlocal.ominosize = -1;
444 while ((sq2 = findrel234(cov, &sqlocal, NULL,
445 REL234_GT)) != NULL &&
446 sq2->coverage == sq->coverage &&
447 sq2->x == sq->x && sq2->y == sq->y) {
448 del234(pick, sq2);
449 del234(cov, sq2);
450 del234(osize, sq2);
451 sq2->coverage++;
452 add234(pick, sq2);
453 add234(cov, sq2);
454 add234(osize, sq2);
455 }
456
457 /*
458 * Correct the omino size field of any sq which
459 * points at this input square.
460 */
461 sqlocal = *sq;
462 sqlocal.x = sqlocal.y = sqlocal.coverage = -1;
463 while ((sq2 = findrel234(osize, &sqlocal, NULL,
464 REL234_GT)) != NULL &&
465 sq2->ominosize == sq->ominosize &&
466 sq2->cx == sq->cx && sq2->cy == sq->cy) {
467 del234(pick, sq2);
468 del234(cov, sq2);
469 del234(osize, sq2);
470 sq2->ominosize++;
471 add234(pick, sq2);
472 add234(cov, sq2);
473 add234(osize, sq2);
474 }
475
476 /*
477 * The sq we actually picked out of the tree is
478 * finished with; but its neighbours now need to
479 * appear.
480 */
481 addneighbours(pick, w,h, sq->cx,sq->cy, sq->x,sq->y, matrix);
482 addneighbours(cov, w,h, sq->cx,sq->cy, sq->x,sq->y, matrix);
483 addneighbours(osize, w,h, sq->cx,sq->cy, sq->x,sq->y, matrix);
484 sfree(sq);
485 }
486
487 /*
488 * Free all remaining sq structures.
489 */
490 {
491 struct sq *sq;
492 while ((sq = delpos234(pick, 0)) != NULL)
493 sfree(sq);
494 }
495 freetree234(pick);
496 freetree234(cov);
497 freetree234(osize);
498
499 /*
500 * Finally, check to see if any two matrix rows are
501 * exactly identical. If so, this is not an acceptable
502 * matrix, and we give up and go round again.
503 *
504 * I haven't been immediately able to think of a
505 * plausible means of algorithmically avoiding this
506 * situation (by, say, making a small perturbation to
507 * an offending matrix), so for the moment I'm just
508 * going to deal with it by throwing the whole thing
509 * away. I suspect this will lead to scalability
510 * problems (since most of the things happening in
511 * these matrices are local, the chance of _some_
512 * neighbourhood having two identical regions will
513 * increase with the grid area), but so far this puzzle
514 * seems to be really hard at large sizes so I'm not
515 * massively worried yet. Anyone needs this done
516 * better, they're welcome to submit a patch.
517 */
518 for (i = 0; i < wh; i++) {
519 for (j = 0; j < wh; j++)
520 if (i != j &&
521 !memcmp(matrix + i * wh, matrix + j * wh, wh))
522 break;
523 if (j < wh)
524 break;
525 }
526 if (i == wh)
527 break; /* no matches found */
528 }
529 break;
530 }
531
532 /*
533 * Now invent a random initial set of lights.
534 *
535 * At first glance it looks as if it might be quite difficult
536 * to choose equiprobably from all soluble light sets. After
537 * all, soluble light sets are those in the image space of the
538 * transformation matrix; so first we'd have to identify that
539 * space and its dimension, then pick a random coordinate for
540 * each basis vector and recombine. Lot of fiddly matrix
541 * algebra there.
542 *
543 * However, vector spaces are nicely orthogonal and relieve us
544 * of all that difficulty. For every point in the image space,
545 * there are precisely as many points in the input space that
546 * map to it as there are elements in the kernel of the
547 * transformation matrix (because adding any kernel element to
548 * the input does not change the output, and because any two
549 * inputs mapping to the same output must differ by an element
550 * of the kernel because that's what the kernel _is_); and
551 * these cosets are all disjoint (obviously, since no input
552 * point can map to more than one output point) and cover the
553 * whole space (equally obviously, because no input point can
554 * map to fewer than one output point!).
555 *
556 * So the input space contains the same number of points for
557 * each point in the output space; thus, we can simply choose
558 * equiprobably from elements of the _input_ space, and filter
559 * the result through the transformation matrix in the obvious
560 * way, and we thereby guarantee to choose equiprobably from
561 * all the output points. Phew!
562 */
563 while (1) {
564 memset(grid, 0, wh);
565 for (i = 0; i < wh; i++) {
566 int v = random_upto(rs, 2);
567 if (v) {
568 for (j = 0; j < wh; j++)
569 grid[j] ^= matrix[i*wh+j];
570 }
571 }
572 /*
573 * Ensure we don't have the starting state already!
574 */
575 for (i = 0; i < wh; i++)
576 if (grid[i])
577 break;
578 if (i < wh)
579 break;
580 }
581
582 /*
583 * Now encode the matrix and the starting grid as a game
584 * description. We'll do this by concatenating two great big
585 * hex bitmaps.
586 */
587 mbmp = encode_bitmap(matrix, wh*wh);
588 gbmp = encode_bitmap(grid, wh);
589 ret = snewn(strlen(mbmp) + strlen(gbmp) + 2, char);
590 sprintf(ret, "%s,%s", mbmp, gbmp);
591 sfree(mbmp);
592 sfree(gbmp);
593 return ret;
594}
595
596static void game_free_aux_info(game_aux_info *aux)
597{
598 assert(!"Shouldn't happen");
599}
600
601static char *validate_desc(game_params *params, char *desc)
602{
603 int w = params->w, h = params->h, wh = w * h;
604 int mlen = (wh*wh+3)/4, glen = (wh+3)/4;
605
606 if (strspn(desc, "0123456789abcdefABCDEF") != mlen)
607 return "Matrix description is wrong length";
608 if (desc[mlen] != ',')
609 return "Expected comma after matrix description";
610 if (strspn(desc+mlen+1, "0123456789abcdefABCDEF") != glen)
611 return "Grid description is wrong length";
612 if (desc[mlen+1+glen])
613 return "Unexpected data after grid description";
614
615 return NULL;
616}
617
618static game_state *new_game(midend_data *me, game_params *params, char *desc)
619{
620 int w = params->w, h = params->h, wh = w * h;
621 int mlen = (wh*wh+3)/4;
622
623 game_state *state = snew(game_state);
624
625 state->w = w;
626 state->h = h;
627 state->completed = FALSE;
79cb09e9 628 state->cheated = FALSE;
629 state->hints_active = FALSE;
f4afe206 630 state->moves = 0;
631 state->matrix = snew(struct matrix);
632 state->matrix->refcount = 1;
633 state->matrix->matrix = snewn(wh*wh, unsigned char);
634 decode_bitmap(state->matrix->matrix, wh*wh, desc);
635 state->grid = snewn(wh, unsigned char);
636 decode_bitmap(state->grid, wh, desc + mlen + 1);
637
638 return state;
639}
640
641static game_state *dup_game(game_state *state)
642{
643 game_state *ret = snew(game_state);
644
645 ret->w = state->w;
646 ret->h = state->h;
647 ret->completed = state->completed;
79cb09e9 648 ret->cheated = state->cheated;
649 ret->hints_active = state->hints_active;
f4afe206 650 ret->moves = state->moves;
651 ret->matrix = state->matrix;
652 state->matrix->refcount++;
653 ret->grid = snewn(ret->w * ret->h, unsigned char);
654 memcpy(ret->grid, state->grid, ret->w * ret->h);
655
656 return ret;
657}
658
659static void free_game(game_state *state)
660{
661 sfree(state->grid);
662 if (--state->matrix->refcount <= 0) {
663 sfree(state->matrix->matrix);
664 sfree(state->matrix);
665 }
666 sfree(state);
667}
668
79cb09e9 669static void rowxor(unsigned char *row1, unsigned char *row2, int len)
670{
671 int i;
672 for (i = 0; i < len; i++)
673 row1[i] ^= row2[i];
674}
675
4a29930e 676static game_state *solve_game(game_state *state, game_state *currstate,
677 game_aux_info *aux, char **error)
f4afe206 678{
79cb09e9 679 int w = state->w, h = state->h, wh = w * h;
680 unsigned char *equations, *solution, *shortest;
681 int *und, nund;
682 int rowsdone, colsdone;
683 int i, j, k, len, bestlen;
684 game_state *ret;
685
686 /*
687 * Set up a list of simultaneous equations. Each one is of
688 * length (wh+1) and has wh coefficients followed by a value.
689 */
690 equations = snewn((wh + 1) * wh, unsigned char);
691 for (i = 0; i < wh; i++) {
692 for (j = 0; j < wh; j++)
693 equations[i * (wh+1) + j] = currstate->matrix->matrix[j*wh+i];
694 equations[i * (wh+1) + wh] = currstate->grid[i] & 1;
695 }
696
697 /*
698 * Perform Gaussian elimination over GF(2).
699 */
700 rowsdone = colsdone = 0;
701 nund = 0;
702 und = snewn(wh, int);
703 do {
704 /*
705 * Find the leftmost column which has a 1 in it somewhere
706 * outside the first `rowsdone' rows.
707 */
708 j = -1;
709 for (i = colsdone; i < wh; i++) {
710 for (j = rowsdone; j < wh; j++)
711 if (equations[j * (wh+1) + i])
712 break;
713 if (j < wh)
714 break; /* found one */
715 /*
716 * This is a column which will not have an equation
717 * controlling it. Mark it as undetermined.
718 */
719 und[nund++] = i;
720 }
721
722 /*
723 * If there wasn't one, then we've finished: all remaining
724 * equations are of the form 0 = constant. Check to see if
725 * any of them wants 0 to be equal to 1; this is the
726 * condition which indicates an insoluble problem
727 * (therefore _hopefully_ one typed in by a user!).
728 */
729 if (i == wh) {
730 for (j = rowsdone; j < wh; j++)
731 if (equations[j * (wh+1) + wh]) {
732 *error = "No solution exists for this position";
733 sfree(equations);
734 return NULL;
735 }
736 break;
737 }
738
739 /*
740 * We've found a 1. It's in column i, and the topmost 1 in
741 * that column is in row j. Do a row-XOR to move it up to
742 * the topmost row if it isn't already there.
743 */
744 assert(j != -1);
745 if (j > rowsdone)
746 rowxor(equations + rowsdone*(wh+1), equations + j*(wh+1), wh+1);
747
748 /*
749 * Do row-XORs to eliminate that 1 from all rows below the
750 * topmost row.
751 */
752 for (j = rowsdone + 1; j < wh; j++)
753 if (equations[j*(wh+1) + i])
754 rowxor(equations + j*(wh+1),
755 equations + rowsdone*(wh+1), wh+1);
756
757 /*
758 * Mark this row and column as done.
759 */
760 rowsdone++;
761 colsdone = i+1;
762
763 /*
764 * If we've done all the rows, terminate.
765 */
766 } while (rowsdone < wh);
767
768 /*
769 * If we reach here, we have the ability to produce a solution.
770 * So we go through _all_ possible solutions (each
771 * corresponding to a set of arbitrary choices of those
772 * components not directly determined by an equation), and pick
773 * one requiring the smallest number of flips.
774 */
775 solution = snewn(wh, unsigned char);
776 shortest = snewn(wh, unsigned char);
777 memset(solution, 0, wh);
778 bestlen = wh + 1;
779 while (1) {
780 /*
781 * Find a solution based on the current values of the
782 * undetermined variables.
783 */
784 for (j = rowsdone; j-- ;) {
785 int v;
786
787 /*
788 * Find the leftmost set bit in this equation.
789 */
790 for (i = 0; i < wh; i++)
791 if (equations[j * (wh+1) + i])
792 break;
793 assert(i < wh); /* there must have been one! */
794
795 /*
796 * Compute this variable using the rest.
797 */
798 v = equations[j * (wh+1) + wh];
799 for (k = i+1; k < wh; k++)
800 if (equations[j * (wh+1) + k])
801 v ^= solution[k];
802
803 solution[i] = v;
804 }
805
806 /*
807 * Compare this solution to the current best one, and
808 * replace the best one if this one is shorter.
809 */
810 len = 0;
811 for (i = 0; i < wh; i++)
812 if (solution[i])
813 len++;
814 if (len < bestlen) {
815 bestlen = len;
816 memcpy(shortest, solution, wh);
817 }
818
819 /*
820 * Now increment the binary number given by the
821 * undetermined variables: turn all 1s into 0s until we see
822 * a 0, at which point we turn it into a 1.
823 */
824 for (i = 0; i < nund; i++) {
825 solution[und[i]] = !solution[und[i]];
826 if (solution[und[i]])
827 break;
828 }
829
830 /*
831 * If we didn't find a 0 at any point, we have wrapped
832 * round and are back at the start, i.e. we have enumerated
833 * all solutions.
834 */
835 if (i == nund)
836 break;
837 }
838
839 /*
840 * We have a solution. Produce a game state with the solution
841 * marked in annotations.
842 */
843 ret = dup_game(currstate);
844 ret->hints_active = TRUE;
845 ret->cheated = TRUE;
846 for (i = 0; i < wh; i++) {
847 ret->grid[i] &= ~2;
848 if (shortest[i])
849 ret->grid[i] |= 2;
850 }
851
852 sfree(shortest);
853 sfree(solution);
854 sfree(equations);
855
856 return ret;
f4afe206 857}
858
859static char *game_text_format(game_state *state)
860{
861 return NULL;
862}
863
864static game_ui *new_ui(game_state *state)
865{
866 return NULL;
867}
868
869static void free_ui(game_ui *ui)
870{
871}
872
873static void game_changed_state(game_ui *ui, game_state *oldstate,
874 game_state *newstate)
875{
876}
877
878struct game_drawstate {
879 int w, h, started;
880 unsigned char *tiles;
881 int tilesize;
882};
883
884static game_state *make_move(game_state *from, game_ui *ui, game_drawstate *ds,
885 int x, int y, int button)
886{
887 int w = from->w, h = from->h, wh = w * h;
888 game_state *ret;
889
890 if (button == LEFT_BUTTON) {
891 int tx = FROMCOORD(x), ty = FROMCOORD(y);
892 if (tx >= 0 && tx < w && ty >= 0 && ty < h) {
893 int i, j, done;
894
895 ret = dup_game(from);
896
897 if (!ret->completed)
898 ret->moves++;
899
900 i = ty * w + tx;
901
902 done = TRUE;
903 for (j = 0; j < wh; j++) {
904 ret->grid[j] ^= ret->matrix->matrix[i*wh+j];
905 if (ret->grid[j] & 1)
906 done = FALSE;
907 }
79cb09e9 908 ret->grid[i] ^= 2; /* toggle hint */
909 if (done) {
f4afe206 910 ret->completed = TRUE;
79cb09e9 911 ret->hints_active = FALSE;
912 }
f4afe206 913
914 return ret;
915 }
916 }
917
918 return NULL;
919}
920
921/* ----------------------------------------------------------------------
922 * Drawing routines.
923 */
924
925static void game_size(game_params *params, game_drawstate *ds,
926 int *x, int *y, int expand)
927{
928 int tsx, tsy, ts;
929 /*
930 * Each window dimension equals the tile size times one more
931 * than the grid dimension (the border is half the width of the
932 * tiles).
933 */
934 tsx = *x / (params->w + 1);
935 tsy = *y / (params->h + 1);
936 ts = min(tsx, tsy);
937 if (expand)
938 ds->tilesize = ts;
939 else
940 ds->tilesize = min(ts, PREFERRED_TILE_SIZE);
941
942 *x = TILE_SIZE * params->w + 2 * BORDER;
943 *y = TILE_SIZE * params->h + 2 * BORDER;
944}
945
946static float *game_colours(frontend *fe, game_state *state, int *ncolours)
947{
948 float *ret = snewn(3 * NCOLOURS, float);
949
950 frontend_default_colour(fe, &ret[COL_BACKGROUND * 3]);
951
952 ret[COL_WRONG * 3 + 0] = ret[COL_BACKGROUND * 3 + 0] / 3;
953 ret[COL_WRONG * 3 + 1] = ret[COL_BACKGROUND * 3 + 1] / 3;
954 ret[COL_WRONG * 3 + 2] = ret[COL_BACKGROUND * 3 + 2] / 3;
955
956 ret[COL_RIGHT * 3 + 0] = 1.0F;
957 ret[COL_RIGHT * 3 + 1] = 1.0F;
958 ret[COL_RIGHT * 3 + 2] = 1.0F;
959
960 ret[COL_GRID * 3 + 0] = ret[COL_BACKGROUND * 3 + 0] / 1.5F;
961 ret[COL_GRID * 3 + 1] = ret[COL_BACKGROUND * 3 + 1] / 1.5F;
962 ret[COL_GRID * 3 + 2] = ret[COL_BACKGROUND * 3 + 2] / 1.5F;
963
964 ret[COL_DIAG * 3 + 0] = ret[COL_GRID * 3 + 0];
965 ret[COL_DIAG * 3 + 1] = ret[COL_GRID * 3 + 1];
966 ret[COL_DIAG * 3 + 2] = ret[COL_GRID * 3 + 2];
967
79cb09e9 968 ret[COL_HINT * 3 + 0] = 1.0F;
969 ret[COL_HINT * 3 + 1] = 0.0F;
970 ret[COL_HINT * 3 + 2] = 0.0F;
971
f4afe206 972 *ncolours = NCOLOURS;
973 return ret;
974}
975
976static game_drawstate *game_new_drawstate(game_state *state)
977{
978 struct game_drawstate *ds = snew(struct game_drawstate);
979 int i;
980
981 ds->started = FALSE;
982 ds->w = state->w;
983 ds->h = state->h;
984 ds->tiles = snewn(ds->w*ds->h, unsigned char);
985 ds->tilesize = 0; /* haven't decided yet */
986 for (i = 0; i < ds->w*ds->h; i++)
987 ds->tiles[i] = -1;
988
989 return ds;
990}
991
992static void game_free_drawstate(game_drawstate *ds)
993{
994 sfree(ds->tiles);
995 sfree(ds);
996}
997
998static void draw_tile(frontend *fe, game_drawstate *ds,
d1044751 999 game_state *state, int x, int y, int tile, int anim,
1000 float animtime)
f4afe206 1001{
1002 int w = ds->w, h = ds->h, wh = w * h;
1003 int bx = x * TILE_SIZE + BORDER, by = y * TILE_SIZE + BORDER;
1004 int i, j;
1005
1006 clip(fe, bx+1, by+1, TILE_SIZE-1, TILE_SIZE-1);
1007
1008 draw_rect(fe, bx+1, by+1, TILE_SIZE-1, TILE_SIZE-1,
d1044751 1009 anim ? COL_BACKGROUND : tile & 1 ? COL_WRONG : COL_RIGHT);
1010 if (anim) {
1011 /*
1012 * Draw a polygon indicating that the square is diagonally
1013 * flipping over.
1014 */
1015 int coords[8], colour;
1016
1017 coords[0] = bx + TILE_SIZE;
1018 coords[1] = by;
1019 coords[2] = bx + TILE_SIZE * animtime;
1020 coords[3] = by + TILE_SIZE * animtime;
1021 coords[4] = bx;
1022 coords[5] = by + TILE_SIZE;
1023 coords[6] = bx + TILE_SIZE - TILE_SIZE * animtime;
1024 coords[7] = by + TILE_SIZE - TILE_SIZE * animtime;
1025
1026 colour = (tile & 1 ? COL_WRONG : COL_RIGHT);
1027 if (animtime < 0.5)
1028 colour = COL_WRONG + COL_RIGHT - colour;
1029
1030 draw_polygon(fe, coords, 4, TRUE, colour);
1031 draw_polygon(fe, coords, 4, FALSE, COL_GRID);
1032 }
f4afe206 1033
1034 /*
1035 * Draw a little diagram in the tile which indicates which
1036 * surrounding tiles flip when this one is clicked.
1037 */
1038 for (i = 0; i < h; i++)
1039 for (j = 0; j < w; j++)
1040 if (state->matrix->matrix[(y*w+x)*wh + i*w+j]) {
1041 int ox = j - x, oy = i - y;
1042 int td = TILE_SIZE / 16;
1043 int cx = (bx + TILE_SIZE/2) + (2 * ox - 1) * td;
1044 int cy = (by + TILE_SIZE/2) + (2 * oy - 1) * td;
1045 if (ox == 0 && oy == 0)
1046 draw_rect(fe, cx, cy, 2*td+1, 2*td+1, COL_DIAG);
1047 else {
1048 draw_line(fe, cx, cy, cx+2*td, cy, COL_DIAG);
1049 draw_line(fe, cx, cy+2*td, cx+2*td, cy+2*td, COL_DIAG);
1050 draw_line(fe, cx, cy, cx, cy+2*td, COL_DIAG);
1051 draw_line(fe, cx+2*td, cy, cx+2*td, cy+2*td, COL_DIAG);
1052 }
1053 }
1054
79cb09e9 1055 /*
5f6050b4 1056 * Draw a hint rectangle if required.
79cb09e9 1057 */
1058 if (tile & 2) {
5f6050b4 1059 int x1 = bx + TILE_SIZE / 20, x2 = bx + TILE_SIZE - TILE_SIZE / 20;
1060 int y1 = by + TILE_SIZE / 20, y2 = by + TILE_SIZE - TILE_SIZE / 20;
1061 int i = 3;
1062 while (i--) {
1063 draw_line(fe, x1, y1, x2, y1, COL_HINT);
1064 draw_line(fe, x1, y2, x2, y2, COL_HINT);
1065 draw_line(fe, x1, y1, x1, y2, COL_HINT);
1066 draw_line(fe, x2, y1, x2, y2, COL_HINT);
1067 x1++, y1++, x2--, y2--;
1068 }
79cb09e9 1069 }
1070
f4afe206 1071 unclip(fe);
1072
1073 draw_update(fe, bx+1, by+1, TILE_SIZE-1, TILE_SIZE-1);
1074}
1075
1076static void game_redraw(frontend *fe, game_drawstate *ds, game_state *oldstate,
1077 game_state *state, int dir, game_ui *ui,
1078 float animtime, float flashtime)
1079{
1080 int w = ds->w, h = ds->h, wh = w * h;
1081 int i, flashframe;
1082
1083 if (!ds->started) {
1084 draw_rect(fe, 0, 0, TILE_SIZE * w + 2 * BORDER,
1085 TILE_SIZE * h + 2 * BORDER, COL_BACKGROUND);
1086
1087 /*
1088 * Draw the grid lines.
1089 */
1090 for (i = 0; i <= w; i++)
1091 draw_line(fe, i * TILE_SIZE + BORDER, BORDER,
1092 i * TILE_SIZE + BORDER, h * TILE_SIZE + BORDER,
1093 COL_GRID);
1094 for (i = 0; i <= h; i++)
1095 draw_line(fe, BORDER, i * TILE_SIZE + BORDER,
1096 w * TILE_SIZE + BORDER, i * TILE_SIZE + BORDER,
1097 COL_GRID);
1098
1099 draw_update(fe, 0, 0, TILE_SIZE * w + 2 * BORDER,
1100 TILE_SIZE * h + 2 * BORDER);
1101
1102 ds->started = TRUE;
1103 }
1104
1105 if (flashtime)
1106 flashframe = flashtime / FLASH_FRAME;
1107 else
1108 flashframe = -1;
1109
d1044751 1110 animtime /= ANIM_TIME; /* scale it so it goes from 0 to 1 */
1111
f4afe206 1112 for (i = 0; i < wh; i++) {
1113 int x = i % w, y = i / w;
1114 int fx, fy, fd;
1115 int v = state->grid[i];
d1044751 1116 int vv;
f4afe206 1117
1118 if (flashframe >= 0) {
1119 fx = (w+1)/2 - min(x+1, w-x);
1120 fy = (h+1)/2 - min(y+1, h-y);
1121 fd = max(fx, fy);
1122 if (fd == flashframe)
1123 v |= 1;
1124 else if (fd == flashframe - 1)
1125 v &= ~1;
1126 }
d1044751 1127
79cb09e9 1128 if (!state->hints_active)
1129 v &= ~2;
1130
d1044751 1131 if (oldstate && state->grid[i] != oldstate->grid[i])
1132 vv = 255; /* means `animated' */
1133 else
1134 vv = v;
1135
1136 if (ds->tiles[i] == 255 || vv == 255 || ds->tiles[i] != vv) {
1137 draw_tile(fe, ds, state, x, y, v, vv == 255, animtime);
1138 ds->tiles[i] = vv;
f4afe206 1139 }
1140 }
1141
1142 {
1143 char buf[256];
1144
79cb09e9 1145 sprintf(buf, "%sMoves: %d",
1146 (state->completed ?
1147 (state->cheated ? "Auto-solved. " : "COMPLETED! ") :
1148 (state->cheated ? "Auto-solver used. " : "")),
f4afe206 1149 state->moves);
1150
1151 status_bar(fe, buf);
1152 }
1153}
1154
1155static float game_anim_length(game_state *oldstate, game_state *newstate,
1156 int dir, game_ui *ui)
1157{
d1044751 1158 return ANIM_TIME;
f4afe206 1159}
1160
1161static float game_flash_length(game_state *oldstate, game_state *newstate,
1162 int dir, game_ui *ui)
1163{
1164 if (!oldstate->completed && newstate->completed)
1165 return FLASH_FRAME * (max((newstate->w+1)/2, (newstate->h+1)/2)+1);
1166
1167 return 0.0F;
1168}
1169
1170static int game_wants_statusbar(void)
1171{
1172 return TRUE;
1173}
1174
1175static int game_timing_state(game_state *state)
1176{
1177 return TRUE;
1178}
1179
1180#ifdef COMBINED
1181#define thegame flip
1182#endif
1183
1184const struct game thegame = {
1185 "Flip", NULL,
1186 default_params,
1187 game_fetch_preset,
1188 decode_params,
1189 encode_params,
1190 free_params,
1191 dup_params,
1192 TRUE, game_configure, custom_params,
1193 validate_params,
1194 new_game_desc,
1195 game_free_aux_info,
1196 validate_desc,
1197 new_game,
1198 dup_game,
1199 free_game,
79cb09e9 1200 TRUE, solve_game,
f4afe206 1201 FALSE, game_text_format,
1202 new_ui,
1203 free_ui,
1204 game_changed_state,
1205 make_move,
1206 game_size,
1207 game_colours,
1208 game_new_drawstate,
1209 game_free_drawstate,
1210 game_redraw,
1211 game_anim_length,
1212 game_flash_length,
1213 game_wants_statusbar,
1214 FALSE, game_timing_state,
1215 0, /* mouse_priorities */
1216};