James H has implemented a new `Tricky' difficulty level in Light Up:
[sgt/puzzles] / pattern.c
1 /*
2 * pattern.c: the pattern-reconstruction game known as `nonograms'.
3 */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <string.h>
8 #include <assert.h>
9 #include <ctype.h>
10 #include <math.h>
11
12 #include "puzzles.h"
13
14 enum {
15 COL_BACKGROUND,
16 COL_EMPTY,
17 COL_FULL,
18 COL_TEXT,
19 COL_UNKNOWN,
20 COL_GRID,
21 NCOLOURS
22 };
23
24 #define PREFERRED_TILE_SIZE 24
25 #define TILE_SIZE (ds->tilesize)
26 #define BORDER (3 * TILE_SIZE / 4)
27 #define TLBORDER(d) ( (d) / 5 + 2 )
28 #define GUTTER (TILE_SIZE / 2)
29
30 #define FROMCOORD(d, x) \
31 ( ((x) - (BORDER + GUTTER + TILE_SIZE * TLBORDER(d))) / TILE_SIZE )
32
33 #define SIZE(d) (2*BORDER + GUTTER + TILE_SIZE * (TLBORDER(d) + (d)))
34 #define GETTILESIZE(d, w) ((double)w / (2.0 + (double)TLBORDER(d) + (double)(d)))
35
36 #define TOCOORD(d, x) (BORDER + GUTTER + TILE_SIZE * (TLBORDER(d) + (x)))
37
38 struct game_params {
39 int w, h;
40 };
41
42 #define GRID_UNKNOWN 2
43 #define GRID_FULL 1
44 #define GRID_EMPTY 0
45
46 struct game_state {
47 int w, h;
48 unsigned char *grid;
49 int rowsize;
50 int *rowdata, *rowlen;
51 int completed, cheated;
52 };
53
54 #define FLASH_TIME 0.13F
55
56 static game_params *default_params(void)
57 {
58 game_params *ret = snew(game_params);
59
60 ret->w = ret->h = 15;
61
62 return ret;
63 }
64
65 static const struct game_params pattern_presets[] = {
66 {10, 10},
67 {15, 15},
68 {20, 20},
69 #ifndef SLOW_SYSTEM
70 {25, 25},
71 {30, 30},
72 #endif
73 };
74
75 static int game_fetch_preset(int i, char **name, game_params **params)
76 {
77 game_params *ret;
78 char str[80];
79
80 if (i < 0 || i >= lenof(pattern_presets))
81 return FALSE;
82
83 ret = snew(game_params);
84 *ret = pattern_presets[i];
85
86 sprintf(str, "%dx%d", ret->w, ret->h);
87
88 *name = dupstr(str);
89 *params = ret;
90 return TRUE;
91 }
92
93 static void free_params(game_params *params)
94 {
95 sfree(params);
96 }
97
98 static game_params *dup_params(game_params *params)
99 {
100 game_params *ret = snew(game_params);
101 *ret = *params; /* structure copy */
102 return ret;
103 }
104
105 static void decode_params(game_params *ret, char const *string)
106 {
107 char const *p = string;
108
109 ret->w = atoi(p);
110 while (*p && isdigit((unsigned char)*p)) p++;
111 if (*p == 'x') {
112 p++;
113 ret->h = atoi(p);
114 while (*p && isdigit((unsigned char)*p)) p++;
115 } else {
116 ret->h = ret->w;
117 }
118 }
119
120 static char *encode_params(game_params *params, int full)
121 {
122 char ret[400];
123 int len;
124
125 len = sprintf(ret, "%dx%d", params->w, params->h);
126 assert(len < lenof(ret));
127 ret[len] = '\0';
128
129 return dupstr(ret);
130 }
131
132 static config_item *game_configure(game_params *params)
133 {
134 config_item *ret;
135 char buf[80];
136
137 ret = snewn(3, config_item);
138
139 ret[0].name = "Width";
140 ret[0].type = C_STRING;
141 sprintf(buf, "%d", params->w);
142 ret[0].sval = dupstr(buf);
143 ret[0].ival = 0;
144
145 ret[1].name = "Height";
146 ret[1].type = C_STRING;
147 sprintf(buf, "%d", params->h);
148 ret[1].sval = dupstr(buf);
149 ret[1].ival = 0;
150
151 ret[2].name = NULL;
152 ret[2].type = C_END;
153 ret[2].sval = NULL;
154 ret[2].ival = 0;
155
156 return ret;
157 }
158
159 static game_params *custom_params(config_item *cfg)
160 {
161 game_params *ret = snew(game_params);
162
163 ret->w = atoi(cfg[0].sval);
164 ret->h = atoi(cfg[1].sval);
165
166 return ret;
167 }
168
169 static char *validate_params(game_params *params, int full)
170 {
171 if (params->w <= 0 || params->h <= 0)
172 return "Width and height must both be greater than zero";
173 return NULL;
174 }
175
176 /* ----------------------------------------------------------------------
177 * Puzzle generation code.
178 *
179 * For this particular puzzle, it seemed important to me to ensure
180 * a unique solution. I do this the brute-force way, by having a
181 * solver algorithm alongside the generator, and repeatedly
182 * generating a random grid until I find one whose solution is
183 * unique. It turns out that this isn't too onerous on a modern PC
184 * provided you keep grid size below around 30. Any offers of
185 * better algorithms, however, will be very gratefully received.
186 *
187 * Another annoyance of this approach is that it limits the
188 * available puzzles to those solvable by the algorithm I've used.
189 * My algorithm only ever considers a single row or column at any
190 * one time, which means it's incapable of solving the following
191 * difficult example (found by Bella Image around 1995/6, when she
192 * and I were both doing maths degrees):
193 *
194 * 2 1 2 1
195 *
196 * +--+--+--+--+
197 * 1 1 | | | | |
198 * +--+--+--+--+
199 * 2 | | | | |
200 * +--+--+--+--+
201 * 1 | | | | |
202 * +--+--+--+--+
203 * 1 | | | | |
204 * +--+--+--+--+
205 *
206 * Obviously this cannot be solved by a one-row-or-column-at-a-time
207 * algorithm (it would require at least one row or column reading
208 * `2 1', `1 2', `3' or `4' to get started). However, it can be
209 * proved to have a unique solution: if the top left square were
210 * empty, then the only option for the top row would be to fill the
211 * two squares in the 1 columns, which would imply the squares
212 * below those were empty, leaving no place for the 2 in the second
213 * row. Contradiction. Hence the top left square is full, and the
214 * unique solution follows easily from that starting point.
215 *
216 * (The game ID for this puzzle is 4x4:2/1/2/1/1.1/2/1/1 , in case
217 * it's useful to anyone.)
218 */
219
220 static int float_compare(const void *av, const void *bv)
221 {
222 const float *a = (const float *)av;
223 const float *b = (const float *)bv;
224 if (*a < *b)
225 return -1;
226 else if (*a > *b)
227 return +1;
228 else
229 return 0;
230 }
231
232 static void generate(random_state *rs, int w, int h, unsigned char *retgrid)
233 {
234 float *fgrid;
235 float *fgrid2;
236 int step, i, j;
237 float threshold;
238
239 fgrid = snewn(w*h, float);
240
241 for (i = 0; i < h; i++) {
242 for (j = 0; j < w; j++) {
243 fgrid[i*w+j] = random_upto(rs, 100000000UL) / 100000000.F;
244 }
245 }
246
247 /*
248 * The above gives a completely random splattering of black and
249 * white cells. We want to gently bias this in favour of _some_
250 * reasonably thick areas of white and black, while retaining
251 * some randomness and fine detail.
252 *
253 * So we evolve the starting grid using a cellular automaton.
254 * Currently, I'm doing something very simple indeed, which is
255 * to set each square to the average of the surrounding nine
256 * cells (or the average of fewer, if we're on a corner).
257 */
258 for (step = 0; step < 1; step++) {
259 fgrid2 = snewn(w*h, float);
260
261 for (i = 0; i < h; i++) {
262 for (j = 0; j < w; j++) {
263 float sx, xbar;
264 int n, p, q;
265
266 /*
267 * Compute the average of the surrounding cells.
268 */
269 n = 0;
270 sx = 0.F;
271 for (p = -1; p <= +1; p++) {
272 for (q = -1; q <= +1; q++) {
273 if (i+p < 0 || i+p >= h || j+q < 0 || j+q >= w)
274 continue;
275 /*
276 * An additional special case not mentioned
277 * above: if a grid dimension is 2xn then
278 * we do not average across that dimension
279 * at all. Otherwise a 2x2 grid would
280 * contain four identical squares.
281 */
282 if ((h==2 && p!=0) || (w==2 && q!=0))
283 continue;
284 n++;
285 sx += fgrid[(i+p)*w+(j+q)];
286 }
287 }
288 xbar = sx / n;
289
290 fgrid2[i*w+j] = xbar;
291 }
292 }
293
294 sfree(fgrid);
295 fgrid = fgrid2;
296 }
297
298 fgrid2 = snewn(w*h, float);
299 memcpy(fgrid2, fgrid, w*h*sizeof(float));
300 qsort(fgrid2, w*h, sizeof(float), float_compare);
301 threshold = fgrid2[w*h/2];
302 sfree(fgrid2);
303
304 for (i = 0; i < h; i++) {
305 for (j = 0; j < w; j++) {
306 retgrid[i*w+j] = (fgrid[i*w+j] >= threshold ? GRID_FULL :
307 GRID_EMPTY);
308 }
309 }
310
311 sfree(fgrid);
312 }
313
314 static int compute_rowdata(int *ret, unsigned char *start, int len, int step)
315 {
316 int i, n;
317
318 n = 0;
319
320 for (i = 0; i < len; i++) {
321 if (start[i*step] == GRID_FULL) {
322 int runlen = 1;
323 while (i+runlen < len && start[(i+runlen)*step] == GRID_FULL)
324 runlen++;
325 ret[n++] = runlen;
326 i += runlen;
327 }
328
329 if (i < len && start[i*step] == GRID_UNKNOWN)
330 return -1;
331 }
332
333 return n;
334 }
335
336 #define UNKNOWN 0
337 #define BLOCK 1
338 #define DOT 2
339 #define STILL_UNKNOWN 3
340
341 static void do_recurse(unsigned char *known, unsigned char *deduced,
342 unsigned char *row, int *data, int len,
343 int freespace, int ndone, int lowest)
344 {
345 int i, j, k;
346
347 if (data[ndone]) {
348 for (i=0; i<=freespace; i++) {
349 j = lowest;
350 for (k=0; k<i; k++) row[j++] = DOT;
351 for (k=0; k<data[ndone]; k++) row[j++] = BLOCK;
352 if (j < len) row[j++] = DOT;
353 do_recurse(known, deduced, row, data, len,
354 freespace-i, ndone+1, j);
355 }
356 } else {
357 for (i=lowest; i<len; i++)
358 row[i] = DOT;
359 for (i=0; i<len; i++)
360 if (known[i] && known[i] != row[i])
361 return;
362 for (i=0; i<len; i++)
363 deduced[i] |= row[i];
364 }
365 }
366
367 static int do_row(unsigned char *known, unsigned char *deduced,
368 unsigned char *row,
369 unsigned char *start, int len, int step, int *data)
370 {
371 int rowlen, i, freespace, done_any;
372
373 freespace = len+1;
374 for (rowlen = 0; data[rowlen]; rowlen++)
375 freespace -= data[rowlen]+1;
376
377 for (i = 0; i < len; i++) {
378 known[i] = start[i*step];
379 deduced[i] = 0;
380 }
381
382 do_recurse(known, deduced, row, data, len, freespace, 0, 0);
383 done_any = FALSE;
384 for (i=0; i<len; i++)
385 if (deduced[i] && deduced[i] != STILL_UNKNOWN && !known[i]) {
386 start[i*step] = deduced[i];
387 done_any = TRUE;
388 }
389 return done_any;
390 }
391
392 static unsigned char *generate_soluble(random_state *rs, int w, int h)
393 {
394 int i, j, done_any, ok, ntries, max;
395 unsigned char *grid, *matrix, *workspace;
396 int *rowdata;
397
398 grid = snewn(w*h, unsigned char);
399 matrix = snewn(w*h, unsigned char);
400 max = max(w, h);
401 workspace = snewn(max*3, unsigned char);
402 rowdata = snewn(max+1, int);
403
404 ntries = 0;
405
406 do {
407 ntries++;
408
409 generate(rs, w, h, grid);
410
411 /*
412 * The game is a bit too easy if any row or column is
413 * completely black or completely white. An exception is
414 * made for rows/columns that are under 3 squares,
415 * otherwise nothing will ever be successfully generated.
416 */
417 ok = TRUE;
418 if (w > 2) {
419 for (i = 0; i < h; i++) {
420 int colours = 0;
421 for (j = 0; j < w; j++)
422 colours |= (grid[i*w+j] == GRID_FULL ? 2 : 1);
423 if (colours != 3)
424 ok = FALSE;
425 }
426 }
427 if (h > 2) {
428 for (j = 0; j < w; j++) {
429 int colours = 0;
430 for (i = 0; i < h; i++)
431 colours |= (grid[i*w+j] == GRID_FULL ? 2 : 1);
432 if (colours != 3)
433 ok = FALSE;
434 }
435 }
436 if (!ok)
437 continue;
438
439 memset(matrix, 0, w*h);
440
441 do {
442 done_any = 0;
443 for (i=0; i<h; i++) {
444 rowdata[compute_rowdata(rowdata, grid+i*w, w, 1)] = 0;
445 done_any |= do_row(workspace, workspace+max, workspace+2*max,
446 matrix+i*w, w, 1, rowdata);
447 }
448 for (i=0; i<w; i++) {
449 rowdata[compute_rowdata(rowdata, grid+i, h, w)] = 0;
450 done_any |= do_row(workspace, workspace+max, workspace+2*max,
451 matrix+i, h, w, rowdata);
452 }
453 } while (done_any);
454
455 ok = TRUE;
456 for (i=0; i<h; i++) {
457 for (j=0; j<w; j++) {
458 if (matrix[i*w+j] == UNKNOWN)
459 ok = FALSE;
460 }
461 }
462 } while (!ok);
463
464 sfree(matrix);
465 sfree(workspace);
466 sfree(rowdata);
467 return grid;
468 }
469
470 static char *new_game_desc(game_params *params, random_state *rs,
471 char **aux, int interactive)
472 {
473 unsigned char *grid;
474 int i, j, max, rowlen, *rowdata;
475 char intbuf[80], *desc;
476 int desclen, descpos;
477
478 grid = generate_soluble(rs, params->w, params->h);
479 max = max(params->w, params->h);
480 rowdata = snewn(max, int);
481
482 /*
483 * Save the solved game in aux.
484 */
485 {
486 char *ai = snewn(params->w * params->h + 2, char);
487
488 /*
489 * String format is exactly the same as a solve move, so we
490 * can just dupstr this in solve_game().
491 */
492
493 ai[0] = 'S';
494
495 for (i = 0; i < params->w * params->h; i++)
496 ai[i+1] = grid[i] ? '1' : '0';
497
498 ai[params->w * params->h + 1] = '\0';
499
500 *aux = ai;
501 }
502
503 /*
504 * Seed is a slash-separated list of row contents; each row
505 * contents section is a dot-separated list of integers. Row
506 * contents are listed in the order (columns left to right,
507 * then rows top to bottom).
508 *
509 * Simplest way to handle memory allocation is to make two
510 * passes, first computing the seed size and then writing it
511 * out.
512 */
513 desclen = 0;
514 for (i = 0; i < params->w + params->h; i++) {
515 if (i < params->w)
516 rowlen = compute_rowdata(rowdata, grid+i, params->h, params->w);
517 else
518 rowlen = compute_rowdata(rowdata, grid+(i-params->w)*params->w,
519 params->w, 1);
520 if (rowlen > 0) {
521 for (j = 0; j < rowlen; j++) {
522 desclen += 1 + sprintf(intbuf, "%d", rowdata[j]);
523 }
524 } else {
525 desclen++;
526 }
527 }
528 desc = snewn(desclen, char);
529 descpos = 0;
530 for (i = 0; i < params->w + params->h; i++) {
531 if (i < params->w)
532 rowlen = compute_rowdata(rowdata, grid+i, params->h, params->w);
533 else
534 rowlen = compute_rowdata(rowdata, grid+(i-params->w)*params->w,
535 params->w, 1);
536 if (rowlen > 0) {
537 for (j = 0; j < rowlen; j++) {
538 int len = sprintf(desc+descpos, "%d", rowdata[j]);
539 if (j+1 < rowlen)
540 desc[descpos + len] = '.';
541 else
542 desc[descpos + len] = '/';
543 descpos += len+1;
544 }
545 } else {
546 desc[descpos++] = '/';
547 }
548 }
549 assert(descpos == desclen);
550 assert(desc[desclen-1] == '/');
551 desc[desclen-1] = '\0';
552 sfree(rowdata);
553 sfree(grid);
554 return desc;
555 }
556
557 static char *validate_desc(game_params *params, char *desc)
558 {
559 int i, n, rowspace;
560 char *p;
561
562 for (i = 0; i < params->w + params->h; i++) {
563 if (i < params->w)
564 rowspace = params->h + 1;
565 else
566 rowspace = params->w + 1;
567
568 if (*desc && isdigit((unsigned char)*desc)) {
569 do {
570 p = desc;
571 while (desc && isdigit((unsigned char)*desc)) desc++;
572 n = atoi(p);
573 rowspace -= n+1;
574
575 if (rowspace < 0) {
576 if (i < params->w)
577 return "at least one column contains more numbers than will fit";
578 else
579 return "at least one row contains more numbers than will fit";
580 }
581 } while (*desc++ == '.');
582 } else {
583 desc++; /* expect a slash immediately */
584 }
585
586 if (desc[-1] == '/') {
587 if (i+1 == params->w + params->h)
588 return "too many row/column specifications";
589 } else if (desc[-1] == '\0') {
590 if (i+1 < params->w + params->h)
591 return "too few row/column specifications";
592 } else
593 return "unrecognised character in game specification";
594 }
595
596 return NULL;
597 }
598
599 static game_state *new_game(midend *me, game_params *params, char *desc)
600 {
601 int i;
602 char *p;
603 game_state *state = snew(game_state);
604
605 state->w = params->w;
606 state->h = params->h;
607
608 state->grid = snewn(state->w * state->h, unsigned char);
609 memset(state->grid, GRID_UNKNOWN, state->w * state->h);
610
611 state->rowsize = max(state->w, state->h);
612 state->rowdata = snewn(state->rowsize * (state->w + state->h), int);
613 state->rowlen = snewn(state->w + state->h, int);
614
615 state->completed = state->cheated = FALSE;
616
617 for (i = 0; i < params->w + params->h; i++) {
618 state->rowlen[i] = 0;
619 if (*desc && isdigit((unsigned char)*desc)) {
620 do {
621 p = desc;
622 while (desc && isdigit((unsigned char)*desc)) desc++;
623 state->rowdata[state->rowsize * i + state->rowlen[i]++] =
624 atoi(p);
625 } while (*desc++ == '.');
626 } else {
627 desc++; /* expect a slash immediately */
628 }
629 }
630
631 return state;
632 }
633
634 static game_state *dup_game(game_state *state)
635 {
636 game_state *ret = snew(game_state);
637
638 ret->w = state->w;
639 ret->h = state->h;
640
641 ret->grid = snewn(ret->w * ret->h, unsigned char);
642 memcpy(ret->grid, state->grid, ret->w * ret->h);
643
644 ret->rowsize = state->rowsize;
645 ret->rowdata = snewn(ret->rowsize * (ret->w + ret->h), int);
646 ret->rowlen = snewn(ret->w + ret->h, int);
647 memcpy(ret->rowdata, state->rowdata,
648 ret->rowsize * (ret->w + ret->h) * sizeof(int));
649 memcpy(ret->rowlen, state->rowlen,
650 (ret->w + ret->h) * sizeof(int));
651
652 ret->completed = state->completed;
653 ret->cheated = state->cheated;
654
655 return ret;
656 }
657
658 static void free_game(game_state *state)
659 {
660 sfree(state->rowdata);
661 sfree(state->rowlen);
662 sfree(state->grid);
663 sfree(state);
664 }
665
666 static char *solve_game(game_state *state, game_state *currstate,
667 char *ai, char **error)
668 {
669 unsigned char *matrix;
670 int w = state->w, h = state->h;
671 int i;
672 char *ret;
673 int done_any, max;
674 unsigned char *workspace;
675 int *rowdata;
676
677 /*
678 * If we already have the solved state in ai, copy it out.
679 */
680 if (ai)
681 return dupstr(ai);
682
683 matrix = snewn(w*h, unsigned char);
684 max = max(w, h);
685 workspace = snewn(max*3, unsigned char);
686 rowdata = snewn(max+1, int);
687
688 memset(matrix, 0, w*h);
689
690 do {
691 done_any = 0;
692 for (i=0; i<h; i++) {
693 memcpy(rowdata, state->rowdata + state->rowsize*(w+i),
694 max*sizeof(int));
695 rowdata[state->rowlen[w+i]] = 0;
696 done_any |= do_row(workspace, workspace+max, workspace+2*max,
697 matrix+i*w, w, 1, rowdata);
698 }
699 for (i=0; i<w; i++) {
700 memcpy(rowdata, state->rowdata + state->rowsize*i, max*sizeof(int));
701 rowdata[state->rowlen[i]] = 0;
702 done_any |= do_row(workspace, workspace+max, workspace+2*max,
703 matrix+i, h, w, rowdata);
704 }
705 } while (done_any);
706
707 sfree(workspace);
708 sfree(rowdata);
709
710 for (i = 0; i < w*h; i++) {
711 if (matrix[i] != BLOCK && matrix[i] != DOT) {
712 sfree(matrix);
713 *error = "Solving algorithm cannot complete this puzzle";
714 return NULL;
715 }
716 }
717
718 ret = snewn(w*h+2, char);
719 ret[0] = 'S';
720 for (i = 0; i < w*h; i++) {
721 assert(matrix[i] == BLOCK || matrix[i] == DOT);
722 ret[i+1] = (matrix[i] == BLOCK ? '1' : '0');
723 }
724 ret[w*h+1] = '\0';
725
726 sfree(matrix);
727
728 return ret;
729 }
730
731 static char *game_text_format(game_state *state)
732 {
733 return NULL;
734 }
735
736 struct game_ui {
737 int dragging;
738 int drag_start_x;
739 int drag_start_y;
740 int drag_end_x;
741 int drag_end_y;
742 int drag, release, state;
743 };
744
745 static game_ui *new_ui(game_state *state)
746 {
747 game_ui *ret;
748
749 ret = snew(game_ui);
750 ret->dragging = FALSE;
751
752 return ret;
753 }
754
755 static void free_ui(game_ui *ui)
756 {
757 sfree(ui);
758 }
759
760 static char *encode_ui(game_ui *ui)
761 {
762 return NULL;
763 }
764
765 static void decode_ui(game_ui *ui, char *encoding)
766 {
767 }
768
769 static void game_changed_state(game_ui *ui, game_state *oldstate,
770 game_state *newstate)
771 {
772 }
773
774 struct game_drawstate {
775 int started;
776 int w, h;
777 int tilesize;
778 unsigned char *visible;
779 };
780
781 static char *interpret_move(game_state *state, game_ui *ui, game_drawstate *ds,
782 int x, int y, int button)
783 {
784 button &= ~MOD_MASK;
785
786 x = FROMCOORD(state->w, x);
787 y = FROMCOORD(state->h, y);
788
789 if (x >= 0 && x < state->w && y >= 0 && y < state->h &&
790 (button == LEFT_BUTTON || button == RIGHT_BUTTON ||
791 button == MIDDLE_BUTTON)) {
792
793 ui->dragging = TRUE;
794
795 if (button == LEFT_BUTTON) {
796 ui->drag = LEFT_DRAG;
797 ui->release = LEFT_RELEASE;
798 ui->state = GRID_FULL;
799 } else if (button == RIGHT_BUTTON) {
800 ui->drag = RIGHT_DRAG;
801 ui->release = RIGHT_RELEASE;
802 ui->state = GRID_EMPTY;
803 } else /* if (button == MIDDLE_BUTTON) */ {
804 ui->drag = MIDDLE_DRAG;
805 ui->release = MIDDLE_RELEASE;
806 ui->state = GRID_UNKNOWN;
807 }
808
809 ui->drag_start_x = ui->drag_end_x = x;
810 ui->drag_start_y = ui->drag_end_y = y;
811
812 return ""; /* UI activity occurred */
813 }
814
815 if (ui->dragging && button == ui->drag) {
816 /*
817 * There doesn't seem much point in allowing a rectangle
818 * drag; people will generally only want to drag a single
819 * horizontal or vertical line, so we make that easy by
820 * snapping to it.
821 *
822 * Exception: if we're _middle_-button dragging to tag
823 * things as UNKNOWN, we may well want to trash an entire
824 * area and start over!
825 */
826 if (ui->state != GRID_UNKNOWN) {
827 if (abs(x - ui->drag_start_x) > abs(y - ui->drag_start_y))
828 y = ui->drag_start_y;
829 else
830 x = ui->drag_start_x;
831 }
832
833 if (x < 0) x = 0;
834 if (y < 0) y = 0;
835 if (x >= state->w) x = state->w - 1;
836 if (y >= state->h) y = state->h - 1;
837
838 ui->drag_end_x = x;
839 ui->drag_end_y = y;
840
841 return ""; /* UI activity occurred */
842 }
843
844 if (ui->dragging && button == ui->release) {
845 int x1, x2, y1, y2, xx, yy;
846 int move_needed = FALSE;
847
848 x1 = min(ui->drag_start_x, ui->drag_end_x);
849 x2 = max(ui->drag_start_x, ui->drag_end_x);
850 y1 = min(ui->drag_start_y, ui->drag_end_y);
851 y2 = max(ui->drag_start_y, ui->drag_end_y);
852
853 for (yy = y1; yy <= y2; yy++)
854 for (xx = x1; xx <= x2; xx++)
855 if (state->grid[yy * state->w + xx] != ui->state)
856 move_needed = TRUE;
857
858 ui->dragging = FALSE;
859
860 if (move_needed) {
861 char buf[80];
862 sprintf(buf, "%c%d,%d,%d,%d",
863 (char)(ui->state == GRID_FULL ? 'F' :
864 ui->state == GRID_EMPTY ? 'E' : 'U'),
865 x1, y1, x2-x1+1, y2-y1+1);
866 return dupstr(buf);
867 } else
868 return ""; /* UI activity occurred */
869 }
870
871 return NULL;
872 }
873
874 static game_state *execute_move(game_state *from, char *move)
875 {
876 game_state *ret;
877 int x1, x2, y1, y2, xx, yy;
878 int val;
879
880 if (move[0] == 'S' && strlen(move) == from->w * from->h + 1) {
881 int i;
882
883 ret = dup_game(from);
884
885 for (i = 0; i < ret->w * ret->h; i++)
886 ret->grid[i] = (move[i+1] == '1' ? GRID_FULL : GRID_EMPTY);
887
888 ret->completed = ret->cheated = TRUE;
889
890 return ret;
891 } else if ((move[0] == 'F' || move[0] == 'E' || move[0] == 'U') &&
892 sscanf(move+1, "%d,%d,%d,%d", &x1, &y1, &x2, &y2) == 4 &&
893 x1 >= 0 && x2 >= 0 && x1+x2 <= from->w &&
894 y1 >= 0 && y2 >= 0 && y1+y2 <= from->h) {
895
896 x2 += x1;
897 y2 += y1;
898 val = (move[0] == 'F' ? GRID_FULL :
899 move[0] == 'E' ? GRID_EMPTY : GRID_UNKNOWN);
900
901 ret = dup_game(from);
902 for (yy = y1; yy < y2; yy++)
903 for (xx = x1; xx < x2; xx++)
904 ret->grid[yy * ret->w + xx] = val;
905
906 /*
907 * An actual change, so check to see if we've completed the
908 * game.
909 */
910 if (!ret->completed) {
911 int *rowdata = snewn(ret->rowsize, int);
912 int i, len;
913
914 ret->completed = TRUE;
915
916 for (i=0; i<ret->w; i++) {
917 len = compute_rowdata(rowdata,
918 ret->grid+i, ret->h, ret->w);
919 if (len != ret->rowlen[i] ||
920 memcmp(ret->rowdata+i*ret->rowsize, rowdata,
921 len * sizeof(int))) {
922 ret->completed = FALSE;
923 break;
924 }
925 }
926 for (i=0; i<ret->h; i++) {
927 len = compute_rowdata(rowdata,
928 ret->grid+i*ret->w, ret->w, 1);
929 if (len != ret->rowlen[i+ret->w] ||
930 memcmp(ret->rowdata+(i+ret->w)*ret->rowsize, rowdata,
931 len * sizeof(int))) {
932 ret->completed = FALSE;
933 break;
934 }
935 }
936
937 sfree(rowdata);
938 }
939
940 return ret;
941 } else
942 return NULL;
943 }
944
945 /* ----------------------------------------------------------------------
946 * Drawing routines.
947 */
948
949 static void game_compute_size(game_params *params, int tilesize,
950 int *x, int *y)
951 {
952 /* Ick: fake up `ds->tilesize' for macro expansion purposes */
953 struct { int tilesize; } ads, *ds = &ads;
954 ads.tilesize = tilesize;
955
956 *x = SIZE(params->w);
957 *y = SIZE(params->h);
958 }
959
960 static void game_set_size(drawing *dr, game_drawstate *ds,
961 game_params *params, int tilesize)
962 {
963 ds->tilesize = tilesize;
964 }
965
966 static float *game_colours(frontend *fe, game_state *state, int *ncolours)
967 {
968 float *ret = snewn(3 * NCOLOURS, float);
969
970 frontend_default_colour(fe, &ret[COL_BACKGROUND * 3]);
971
972 ret[COL_GRID * 3 + 0] = 0.3F;
973 ret[COL_GRID * 3 + 1] = 0.3F;
974 ret[COL_GRID * 3 + 2] = 0.3F;
975
976 ret[COL_UNKNOWN * 3 + 0] = 0.5F;
977 ret[COL_UNKNOWN * 3 + 1] = 0.5F;
978 ret[COL_UNKNOWN * 3 + 2] = 0.5F;
979
980 ret[COL_TEXT * 3 + 0] = 0.0F;
981 ret[COL_TEXT * 3 + 1] = 0.0F;
982 ret[COL_TEXT * 3 + 2] = 0.0F;
983
984 ret[COL_FULL * 3 + 0] = 0.0F;
985 ret[COL_FULL * 3 + 1] = 0.0F;
986 ret[COL_FULL * 3 + 2] = 0.0F;
987
988 ret[COL_EMPTY * 3 + 0] = 1.0F;
989 ret[COL_EMPTY * 3 + 1] = 1.0F;
990 ret[COL_EMPTY * 3 + 2] = 1.0F;
991
992 *ncolours = NCOLOURS;
993 return ret;
994 }
995
996 static game_drawstate *game_new_drawstate(drawing *dr, game_state *state)
997 {
998 struct game_drawstate *ds = snew(struct game_drawstate);
999
1000 ds->started = FALSE;
1001 ds->w = state->w;
1002 ds->h = state->h;
1003 ds->visible = snewn(ds->w * ds->h, unsigned char);
1004 ds->tilesize = 0; /* not decided yet */
1005 memset(ds->visible, 255, ds->w * ds->h);
1006
1007 return ds;
1008 }
1009
1010 static void game_free_drawstate(drawing *dr, game_drawstate *ds)
1011 {
1012 sfree(ds->visible);
1013 sfree(ds);
1014 }
1015
1016 static void grid_square(drawing *dr, game_drawstate *ds,
1017 int y, int x, int state)
1018 {
1019 int xl, xr, yt, yb;
1020
1021 draw_rect(dr, TOCOORD(ds->w, x), TOCOORD(ds->h, y),
1022 TILE_SIZE, TILE_SIZE, COL_GRID);
1023
1024 xl = (x % 5 == 0 ? 1 : 0);
1025 yt = (y % 5 == 0 ? 1 : 0);
1026 xr = (x % 5 == 4 || x == ds->w-1 ? 1 : 0);
1027 yb = (y % 5 == 4 || y == ds->h-1 ? 1 : 0);
1028
1029 draw_rect(dr, TOCOORD(ds->w, x) + 1 + xl, TOCOORD(ds->h, y) + 1 + yt,
1030 TILE_SIZE - xl - xr - 1, TILE_SIZE - yt - yb - 1,
1031 (state == GRID_FULL ? COL_FULL :
1032 state == GRID_EMPTY ? COL_EMPTY : COL_UNKNOWN));
1033
1034 draw_update(dr, TOCOORD(ds->w, x), TOCOORD(ds->h, y),
1035 TILE_SIZE, TILE_SIZE);
1036 }
1037
1038 static void draw_numbers(drawing *dr, game_drawstate *ds, game_state *state,
1039 int colour)
1040 {
1041 int i, j;
1042
1043 /*
1044 * Draw the numbers.
1045 */
1046 for (i = 0; i < state->w + state->h; i++) {
1047 int rowlen = state->rowlen[i];
1048 int *rowdata = state->rowdata + state->rowsize * i;
1049 int nfit;
1050
1051 /*
1052 * Normally I space the numbers out by the same
1053 * distance as the tile size. However, if there are
1054 * more numbers than available spaces, I have to squash
1055 * them up a bit.
1056 */
1057 nfit = max(rowlen, TLBORDER(state->h))-1;
1058 assert(nfit > 0);
1059
1060 for (j = 0; j < rowlen; j++) {
1061 int x, y;
1062 char str[80];
1063
1064 if (i < state->w) {
1065 x = TOCOORD(state->w, i);
1066 y = BORDER + TILE_SIZE * (TLBORDER(state->h)-1);
1067 y -= ((rowlen-j-1)*TILE_SIZE) * (TLBORDER(state->h)-1) / nfit;
1068 } else {
1069 y = TOCOORD(state->h, i - state->w);
1070 x = BORDER + TILE_SIZE * (TLBORDER(state->w)-1);
1071 x -= ((rowlen-j-1)*TILE_SIZE) * (TLBORDER(state->h)-1) / nfit;
1072 }
1073
1074 sprintf(str, "%d", rowdata[j]);
1075 draw_text(dr, x+TILE_SIZE/2, y+TILE_SIZE/2, FONT_VARIABLE,
1076 TILE_SIZE/2, ALIGN_HCENTRE | ALIGN_VCENTRE, colour, str);
1077 }
1078 }
1079 }
1080
1081 static void game_redraw(drawing *dr, game_drawstate *ds, game_state *oldstate,
1082 game_state *state, int dir, game_ui *ui,
1083 float animtime, float flashtime)
1084 {
1085 int i, j;
1086 int x1, x2, y1, y2;
1087
1088 if (!ds->started) {
1089 /*
1090 * The initial contents of the window are not guaranteed
1091 * and can vary with front ends. To be on the safe side,
1092 * all games should start by drawing a big background-
1093 * colour rectangle covering the whole window.
1094 */
1095 draw_rect(dr, 0, 0, SIZE(ds->w), SIZE(ds->h), COL_BACKGROUND);
1096
1097 /*
1098 * Draw the numbers.
1099 */
1100 draw_numbers(dr, ds, state, COL_TEXT);
1101
1102 /*
1103 * Draw the grid outline.
1104 */
1105 draw_rect(dr, TOCOORD(ds->w, 0) - 1, TOCOORD(ds->h, 0) - 1,
1106 ds->w * TILE_SIZE + 3, ds->h * TILE_SIZE + 3,
1107 COL_GRID);
1108
1109 ds->started = TRUE;
1110
1111 draw_update(dr, 0, 0, SIZE(ds->w), SIZE(ds->h));
1112 }
1113
1114 if (ui->dragging) {
1115 x1 = min(ui->drag_start_x, ui->drag_end_x);
1116 x2 = max(ui->drag_start_x, ui->drag_end_x);
1117 y1 = min(ui->drag_start_y, ui->drag_end_y);
1118 y2 = max(ui->drag_start_y, ui->drag_end_y);
1119 } else {
1120 x1 = x2 = y1 = y2 = -1; /* placate gcc warnings */
1121 }
1122
1123 /*
1124 * Now draw any grid squares which have changed since last
1125 * redraw.
1126 */
1127 for (i = 0; i < ds->h; i++) {
1128 for (j = 0; j < ds->w; j++) {
1129 int val;
1130
1131 /*
1132 * Work out what state this square should be drawn in,
1133 * taking any current drag operation into account.
1134 */
1135 if (ui->dragging && x1 <= j && j <= x2 && y1 <= i && i <= y2)
1136 val = ui->state;
1137 else
1138 val = state->grid[i * state->w + j];
1139
1140 /*
1141 * Briefly invert everything twice during a completion
1142 * flash.
1143 */
1144 if (flashtime > 0 &&
1145 (flashtime <= FLASH_TIME/3 || flashtime >= FLASH_TIME*2/3) &&
1146 val != GRID_UNKNOWN)
1147 val = (GRID_FULL ^ GRID_EMPTY) ^ val;
1148
1149 if (ds->visible[i * ds->w + j] != val) {
1150 grid_square(dr, ds, i, j, val);
1151 ds->visible[i * ds->w + j] = val;
1152 }
1153 }
1154 }
1155 }
1156
1157 static float game_anim_length(game_state *oldstate,
1158 game_state *newstate, int dir, game_ui *ui)
1159 {
1160 return 0.0F;
1161 }
1162
1163 static float game_flash_length(game_state *oldstate,
1164 game_state *newstate, int dir, game_ui *ui)
1165 {
1166 if (!oldstate->completed && newstate->completed &&
1167 !oldstate->cheated && !newstate->cheated)
1168 return FLASH_TIME;
1169 return 0.0F;
1170 }
1171
1172 static int game_wants_statusbar(void)
1173 {
1174 return FALSE;
1175 }
1176
1177 static int game_timing_state(game_state *state, game_ui *ui)
1178 {
1179 return TRUE;
1180 }
1181
1182 static void game_print_size(game_params *params, float *x, float *y)
1183 {
1184 int pw, ph;
1185
1186 /*
1187 * I'll use 5mm squares by default.
1188 */
1189 game_compute_size(params, 500, &pw, &ph);
1190 *x = pw / 100.0;
1191 *y = ph / 100.0;
1192 }
1193
1194 static void game_print(drawing *dr, game_state *state, int tilesize)
1195 {
1196 int w = state->w, h = state->h;
1197 int ink = print_mono_colour(dr, 0);
1198 int x, y;
1199
1200 /* Ick: fake up `ds->tilesize' for macro expansion purposes */
1201 game_drawstate ads, *ds = &ads;
1202 ads.tilesize = tilesize;
1203
1204 /*
1205 * Border.
1206 */
1207 print_line_width(dr, TILE_SIZE / 16);
1208 draw_rect_outline(dr, TOCOORD(w, 0), TOCOORD(h, 0),
1209 w*TILE_SIZE, h*TILE_SIZE, ink);
1210
1211 /*
1212 * Grid.
1213 */
1214 for (x = 1; x < w; x++) {
1215 print_line_width(dr, TILE_SIZE / (x % 5 ? 128 : 24));
1216 draw_line(dr, TOCOORD(w, x), TOCOORD(h, 0),
1217 TOCOORD(w, x), TOCOORD(h, h), ink);
1218 }
1219 for (y = 1; y < h; y++) {
1220 print_line_width(dr, TILE_SIZE / (y % 5 ? 128 : 24));
1221 draw_line(dr, TOCOORD(w, 0), TOCOORD(h, y),
1222 TOCOORD(w, w), TOCOORD(h, y), ink);
1223 }
1224
1225 /*
1226 * Clues.
1227 */
1228 draw_numbers(dr, ds, state, ink);
1229
1230 /*
1231 * Solution.
1232 */
1233 print_line_width(dr, TILE_SIZE / 128);
1234 for (y = 0; y < h; y++)
1235 for (x = 0; x < w; x++) {
1236 if (state->grid[y*w+x] == GRID_FULL)
1237 draw_rect(dr, TOCOORD(w, x), TOCOORD(h, y),
1238 TILE_SIZE, TILE_SIZE, ink);
1239 else if (state->grid[y*w+x] == GRID_EMPTY)
1240 draw_circle(dr, TOCOORD(w, x) + TILE_SIZE/2,
1241 TOCOORD(h, y) + TILE_SIZE/2,
1242 TILE_SIZE/12, ink, ink);
1243 }
1244 }
1245
1246 #ifdef COMBINED
1247 #define thegame pattern
1248 #endif
1249
1250 const struct game thegame = {
1251 "Pattern", "games.pattern",
1252 default_params,
1253 game_fetch_preset,
1254 decode_params,
1255 encode_params,
1256 free_params,
1257 dup_params,
1258 TRUE, game_configure, custom_params,
1259 validate_params,
1260 new_game_desc,
1261 validate_desc,
1262 new_game,
1263 dup_game,
1264 free_game,
1265 TRUE, solve_game,
1266 FALSE, game_text_format,
1267 new_ui,
1268 free_ui,
1269 encode_ui,
1270 decode_ui,
1271 game_changed_state,
1272 interpret_move,
1273 execute_move,
1274 PREFERRED_TILE_SIZE, game_compute_size, game_set_size,
1275 game_colours,
1276 game_new_drawstate,
1277 game_free_drawstate,
1278 game_redraw,
1279 game_anim_length,
1280 game_flash_length,
1281 TRUE, FALSE, game_print_size, game_print,
1282 game_wants_statusbar,
1283 FALSE, game_timing_state,
1284 0, /* mouse_priorities */
1285 };
1286
1287 #ifdef STANDALONE_SOLVER
1288
1289 int main(int argc, char **argv)
1290 {
1291 game_params *p;
1292 game_state *s;
1293 char *id = NULL, *desc, *err;
1294
1295 while (--argc > 0) {
1296 char *p = *++argv;
1297 if (*p == '-') {
1298 fprintf(stderr, "%s: unrecognised option `%s'\n", argv[0], p);
1299 return 1;
1300 } else {
1301 id = p;
1302 }
1303 }
1304
1305 if (!id) {
1306 fprintf(stderr, "usage: %s <game_id>\n", argv[0]);
1307 return 1;
1308 }
1309
1310 desc = strchr(id, ':');
1311 if (!desc) {
1312 fprintf(stderr, "%s: game id expects a colon in it\n", argv[0]);
1313 return 1;
1314 }
1315 *desc++ = '\0';
1316
1317 p = default_params();
1318 decode_params(p, id);
1319 err = validate_desc(p, desc);
1320 if (err) {
1321 fprintf(stderr, "%s: %s\n", argv[0], err);
1322 return 1;
1323 }
1324 s = new_game(NULL, p, desc);
1325
1326 {
1327 int w = p->w, h = p->h, i, j, done_any, max;
1328 unsigned char *matrix, *workspace;
1329 int *rowdata;
1330
1331 matrix = snewn(w*h, unsigned char);
1332 max = max(w, h);
1333 workspace = snewn(max*3, unsigned char);
1334 rowdata = snewn(max+1, int);
1335
1336 memset(matrix, 0, w*h);
1337
1338 do {
1339 done_any = 0;
1340 for (i=0; i<h; i++) {
1341 memcpy(rowdata, s->rowdata + s->rowsize*(w+i),
1342 max*sizeof(int));
1343 rowdata[s->rowlen[w+i]] = 0;
1344 done_any |= do_row(workspace, workspace+max, workspace+2*max,
1345 matrix+i*w, w, 1, rowdata);
1346 }
1347 for (i=0; i<w; i++) {
1348 memcpy(rowdata, s->rowdata + s->rowsize*i, max*sizeof(int));
1349 rowdata[s->rowlen[i]] = 0;
1350 done_any |= do_row(workspace, workspace+max, workspace+2*max,
1351 matrix+i, h, w, rowdata);
1352 }
1353 } while (done_any);
1354
1355 for (i = 0; i < h; i++) {
1356 for (j = 0; j < w; j++) {
1357 int c = (matrix[i*w+j] == UNKNOWN ? '?' :
1358 matrix[i*w+j] == BLOCK ? '#' :
1359 matrix[i*w+j] == DOT ? '.' :
1360 '!');
1361 putchar(c);
1362 }
1363 printf("\n");
1364 }
1365 }
1366
1367 return 0;
1368 }
1369
1370 #endif