chiark / gitweb /
a6402c9a912f4754e8790391fc4d07376415ccfa
[sgt-puzzles.git] / fifteen.c
1 /*
2  * fifteen.c: standard 15-puzzle.
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 #define TILE_SIZE 48
15 #define BORDER    (TILE_SIZE / 2)
16 #define HIGHLIGHT_WIDTH (TILE_SIZE / 20)
17 #define COORD(x)  ( (x) * TILE_SIZE + BORDER )
18 #define FROMCOORD(x)  ( ((x) - BORDER + TILE_SIZE) / TILE_SIZE - 1 )
19
20 #define ANIM_TIME 0.13F
21 #define FLASH_FRAME 0.13F
22
23 #define X(state, i) ( (i) % (state)->w )
24 #define Y(state, i) ( (i) / (state)->w )
25 #define C(state, x, y) ( (y) * (state)->w + (x) )
26
27 enum {
28     COL_BACKGROUND,
29     COL_TEXT,
30     COL_HIGHLIGHT,
31     COL_LOWLIGHT,
32     NCOLOURS
33 };
34
35 struct game_params {
36     int w, h;
37 };
38
39 struct game_state {
40     int w, h, n;
41     int *tiles;
42     int gap_pos;
43     int completed;
44     int just_used_solve;               /* used to suppress undo animation */
45     int used_solve;                    /* used to suppress completion flash */
46     int movecount;
47 };
48
49 static game_params *default_params(void)
50 {
51     game_params *ret = snew(game_params);
52
53     ret->w = ret->h = 4;
54
55     return ret;
56 }
57
58 static int game_fetch_preset(int i, char **name, game_params **params)
59 {
60     return FALSE;
61 }
62
63 static void free_params(game_params *params)
64 {
65     sfree(params);
66 }
67
68 static game_params *dup_params(game_params *params)
69 {
70     game_params *ret = snew(game_params);
71     *ret = *params;                    /* structure copy */
72     return ret;
73 }
74
75 static void decode_params(game_params *ret, char const *string)
76 {
77     ret->w = ret->h = atoi(string);
78     while (*string && isdigit(*string)) string++;
79     if (*string == 'x') {
80         string++;
81         ret->h = atoi(string);
82     }
83 }
84
85 static char *encode_params(game_params *params, int full)
86 {
87     char data[256];
88
89     sprintf(data, "%dx%d", params->w, params->h);
90
91     return dupstr(data);
92 }
93
94 static config_item *game_configure(game_params *params)
95 {
96     config_item *ret;
97     char buf[80];
98
99     ret = snewn(3, config_item);
100
101     ret[0].name = "Width";
102     ret[0].type = C_STRING;
103     sprintf(buf, "%d", params->w);
104     ret[0].sval = dupstr(buf);
105     ret[0].ival = 0;
106
107     ret[1].name = "Height";
108     ret[1].type = C_STRING;
109     sprintf(buf, "%d", params->h);
110     ret[1].sval = dupstr(buf);
111     ret[1].ival = 0;
112
113     ret[2].name = NULL;
114     ret[2].type = C_END;
115     ret[2].sval = NULL;
116     ret[2].ival = 0;
117
118     return ret;
119 }
120
121 static game_params *custom_params(config_item *cfg)
122 {
123     game_params *ret = snew(game_params);
124
125     ret->w = atoi(cfg[0].sval);
126     ret->h = atoi(cfg[1].sval);
127
128     return ret;
129 }
130
131 static char *validate_params(game_params *params)
132 {
133     if (params->w < 2 || params->h < 2)
134         return "Width and height must both be at least two";
135
136     return NULL;
137 }
138
139 static int perm_parity(int *perm, int n)
140 {
141     int i, j, ret;
142
143     ret = 0;
144
145     for (i = 0; i < n-1; i++)
146         for (j = i+1; j < n; j++)
147             if (perm[i] > perm[j])
148                 ret = !ret;
149
150     return ret;
151 }
152
153 static char *new_game_desc(game_params *params, random_state *rs,
154                            game_aux_info **aux, int interactive)
155 {
156     int gap, n, i, x;
157     int x1, x2, p1, p2, parity;
158     int *tiles, *used;
159     char *ret;
160     int retlen;
161
162     n = params->w * params->h;
163
164     tiles = snewn(n, int);
165     used = snewn(n, int);
166
167     for (i = 0; i < n; i++) {
168         tiles[i] = -1;
169         used[i] = FALSE;
170     }
171
172     gap = random_upto(rs, n);
173     tiles[gap] = 0;
174     used[0] = TRUE;
175
176     /*
177      * Place everything else except the last two tiles.
178      */
179     for (x = 0, i = n-1; i > 2; i--) {
180         int k = random_upto(rs, i);
181         int j;
182
183         for (j = 0; j < n; j++)
184             if (!used[j] && (k-- == 0))
185                 break;
186
187         assert(j < n && !used[j]);
188         used[j] = TRUE;
189
190         while (tiles[x] >= 0)
191             x++;
192         assert(x < n);
193         tiles[x] = j;
194     }
195
196     /*
197      * Find the last two locations, and the last two pieces.
198      */
199     while (tiles[x] >= 0)
200         x++;
201     assert(x < n);
202     x1 = x;
203     x++;
204     while (tiles[x] >= 0)
205         x++;
206     assert(x < n);
207     x2 = x;
208
209     for (i = 0; i < n; i++)
210         if (!used[i])
211             break;
212     p1 = i;
213     for (i = p1+1; i < n; i++)
214         if (!used[i])
215             break;
216     p2 = i;
217
218     /*
219      * Determine the required parity of the overall permutation.
220      * This is the XOR of:
221      * 
222      *  - The chessboard parity ((x^y)&1) of the gap square. The
223      *    bottom right counts as even.
224      * 
225      *  - The parity of n. (The target permutation is 1,...,n-1,0
226      *    rather than 0,...,n-1; this is a cyclic permutation of
227      *    the starting point and hence is odd iff n is even.)
228      */
229     parity = ((X(params, gap) - (params->w-1)) ^
230               (Y(params, gap) - (params->h-1)) ^
231               (n+1)) & 1;
232
233     /*
234      * Try the last two tiles one way round. If that fails, swap
235      * them.
236      */
237     tiles[x1] = p1;
238     tiles[x2] = p2;
239     if (perm_parity(tiles, n) != parity) {
240         tiles[x1] = p2;
241         tiles[x2] = p1;
242         assert(perm_parity(tiles, n) == parity);
243     }
244
245     /*
246      * Now construct the game description, by describing the tile
247      * array as a simple sequence of comma-separated integers.
248      */
249     ret = NULL;
250     retlen = 0;
251     for (i = 0; i < n; i++) {
252         char buf[80];
253         int k;
254
255         k = sprintf(buf, "%d,", tiles[i]);
256
257         ret = sresize(ret, retlen + k + 1, char);
258         strcpy(ret + retlen, buf);
259         retlen += k;
260     }
261     ret[retlen-1] = '\0';              /* delete last comma */
262
263     sfree(tiles);
264     sfree(used);
265
266     return ret;
267 }
268
269 static void game_free_aux_info(game_aux_info *aux)
270 {
271     assert(!"Shouldn't happen");
272 }
273
274 static char *validate_desc(game_params *params, char *desc)
275 {
276     char *p, *err;
277     int i, area;
278     int *used;
279
280     area = params->w * params->h;
281     p = desc;
282     err = NULL;
283
284     used = snewn(area, int);
285     for (i = 0; i < area; i++)
286         used[i] = FALSE;
287
288     for (i = 0; i < area; i++) {
289         char *q = p;
290         int n;
291
292         if (*p < '0' || *p > '9') {
293             err = "Not enough numbers in string";
294             goto leave;
295         }
296         while (*p >= '0' && *p <= '9')
297             p++;
298         if (i < area-1 && *p != ',') {
299             err = "Expected comma after number";
300             goto leave;
301         }
302         else if (i == area-1 && *p) {
303             err = "Excess junk at end of string";
304             goto leave;
305         }
306         n = atoi(q);
307         if (n < 0 || n >= area) {
308             err = "Number out of range";
309             goto leave;
310         }
311         if (used[n]) {
312             err = "Number used twice";
313             goto leave;
314         }
315         used[n] = TRUE;
316
317         if (*p) p++;                   /* eat comma */
318     }
319
320     leave:
321     sfree(used);
322     return err;
323 }
324
325 static game_state *new_game(midend_data *me, game_params *params, char *desc)
326 {
327     game_state *state = snew(game_state);
328     int i;
329     char *p;
330
331     state->w = params->w;
332     state->h = params->h;
333     state->n = params->w * params->h;
334     state->tiles = snewn(state->n, int);
335
336     state->gap_pos = 0;
337     p = desc;
338     i = 0;
339     for (i = 0; i < state->n; i++) {
340         assert(*p);
341         state->tiles[i] = atoi(p);
342         if (state->tiles[i] == 0)
343             state->gap_pos = i;
344         while (*p && *p != ',')
345             p++;
346         if (*p) p++;                   /* eat comma */
347     }
348     assert(!*p);
349     assert(state->tiles[state->gap_pos] == 0);
350
351     state->completed = state->movecount = 0;
352     state->used_solve = state->just_used_solve = FALSE;
353
354     return state;
355 }
356
357 static game_state *dup_game(game_state *state)
358 {
359     game_state *ret = snew(game_state);
360
361     ret->w = state->w;
362     ret->h = state->h;
363     ret->n = state->n;
364     ret->tiles = snewn(state->w * state->h, int);
365     memcpy(ret->tiles, state->tiles, state->w * state->h * sizeof(int));
366     ret->gap_pos = state->gap_pos;
367     ret->completed = state->completed;
368     ret->movecount = state->movecount;
369     ret->used_solve = state->used_solve;
370     ret->just_used_solve = state->just_used_solve;
371
372     return ret;
373 }
374
375 static void free_game(game_state *state)
376 {
377     sfree(state->tiles);
378     sfree(state);
379 }
380
381 static game_state *solve_game(game_state *state, game_aux_info *aux,
382                               char **error)
383 {
384     game_state *ret = dup_game(state);
385     int i;
386
387     /*
388      * Simply replace the grid with a solved one. For this game,
389      * this isn't a useful operation for actually telling the user
390      * what they should have done, but it is useful for
391      * conveniently being able to get hold of a clean state from
392      * which to practise manoeuvres.
393      */
394     for (i = 0; i < ret->n; i++)
395         ret->tiles[i] = (i+1) % ret->n;
396     ret->gap_pos = ret->n-1;
397     ret->used_solve = ret->just_used_solve = TRUE;
398     ret->completed = ret->movecount = 1;
399
400     return ret;
401 }
402
403 static char *game_text_format(game_state *state)
404 {
405     char *ret, *p, buf[80];
406     int x, y, col, maxlen;
407
408     /*
409      * First work out how many characters we need to display each
410      * number.
411      */
412     col = sprintf(buf, "%d", state->n-1);
413
414     /*
415      * Now we know the exact total size of the grid we're going to
416      * produce: it's got h rows, each containing w lots of col, w-1
417      * spaces and a trailing newline.
418      */
419     maxlen = state->h * state->w * (col+1);
420
421     ret = snewn(maxlen+1, char);
422     p = ret;
423
424     for (y = 0; y < state->h; y++) {
425         for (x = 0; x < state->w; x++) {
426             int v = state->tiles[state->w*y+x];
427             if (v == 0)
428                 sprintf(buf, "%*s", col, "");
429             else
430                 sprintf(buf, "%*d", col, v);
431             memcpy(p, buf, col);
432             p += col;
433             if (x+1 == state->w)
434                 *p++ = '\n';
435             else
436                 *p++ = ' ';
437         }
438     }
439
440     assert(p - ret == maxlen);
441     *p = '\0';
442     return ret;
443 }
444
445 static game_ui *new_ui(game_state *state)
446 {
447     return NULL;
448 }
449
450 static void free_ui(game_ui *ui)
451 {
452 }
453
454 static void game_changed_state(game_ui *ui, game_state *oldstate,
455                                game_state *newstate)
456 {
457 }
458
459 static game_state *make_move(game_state *from, game_ui *ui, game_drawstate *ds,
460                              int x, int y, int button) {
461     int gx, gy, dx, dy, ux, uy, up, p;
462     game_state *ret;
463
464     button &= ~MOD_MASK;
465
466     gx = X(from, from->gap_pos);
467     gy = Y(from, from->gap_pos);
468
469     if (button == CURSOR_RIGHT && gx > 0)
470         dx = gx - 1, dy = gy;
471     else if (button == CURSOR_LEFT && gx < from->w-1)
472         dx = gx + 1, dy = gy;
473     else if (button == CURSOR_DOWN && gy > 0)
474         dy = gy - 1, dx = gx;
475     else if (button == CURSOR_UP && gy < from->h-1)
476         dy = gy + 1, dx = gx;
477     else if (button == LEFT_BUTTON) {
478         dx = FROMCOORD(x);
479         dy = FROMCOORD(y);
480         if (dx < 0 || dx >= from->w || dy < 0 || dy >= from->h)
481             return NULL;               /* out of bounds */
482         /*
483          * Any click location should be equal to the gap location
484          * in _precisely_ one coordinate.
485          */
486         if ((dx == gx && dy == gy) || (dx != gx && dy != gy))
487             return NULL;
488     } else
489         return NULL;                   /* no move */
490
491     /*
492      * Find the unit displacement from the original gap
493      * position towards this one.
494      */
495     ux = (dx < gx ? -1 : dx > gx ? +1 : 0);
496     uy = (dy < gy ? -1 : dy > gy ? +1 : 0);
497     up = C(from, ux, uy);
498
499     ret = dup_game(from);
500     ret->just_used_solve = FALSE;      /* zero this in a hurry */
501
502     ret->gap_pos = C(from, dx, dy);
503     assert(ret->gap_pos >= 0 && ret->gap_pos < ret->n);
504
505     ret->tiles[ret->gap_pos] = 0;
506
507     for (p = from->gap_pos; p != ret->gap_pos; p += up) {
508         assert(p >= 0 && p < from->n);
509         ret->tiles[p] = from->tiles[p + up];
510         ret->movecount++;
511     }
512
513     /*
514      * See if the game has been completed.
515      */
516     if (!ret->completed) {
517         ret->completed = ret->movecount;
518         for (p = 0; p < ret->n; p++)
519             if (ret->tiles[p] != (p < ret->n-1 ? p+1 : 0))
520                 ret->completed = 0;
521     }
522
523     return ret;
524 }
525
526 /* ----------------------------------------------------------------------
527  * Drawing routines.
528  */
529
530 struct game_drawstate {
531     int started;
532     int w, h, bgcolour;
533     int *tiles;
534 };
535
536 static void game_size(game_params *params, int *x, int *y)
537 {
538     *x = TILE_SIZE * params->w + 2 * BORDER;
539     *y = TILE_SIZE * params->h + 2 * BORDER;
540 }
541
542 static float *game_colours(frontend *fe, game_state *state, int *ncolours)
543 {
544     float *ret = snewn(3 * NCOLOURS, float);
545     int i;
546     float max;
547
548     frontend_default_colour(fe, &ret[COL_BACKGROUND * 3]);
549
550     /*
551      * Drop the background colour so that the highlight is
552      * noticeably brighter than it while still being under 1.
553      */
554     max = ret[COL_BACKGROUND*3];
555     for (i = 1; i < 3; i++)
556         if (ret[COL_BACKGROUND*3+i] > max)
557             max = ret[COL_BACKGROUND*3+i];
558     if (max * 1.2F > 1.0F) {
559         for (i = 0; i < 3; i++)
560             ret[COL_BACKGROUND*3+i] /= (max * 1.2F);
561     }
562
563     for (i = 0; i < 3; i++) {
564         ret[COL_HIGHLIGHT * 3 + i] = ret[COL_BACKGROUND * 3 + i] * 1.2F;
565         ret[COL_LOWLIGHT * 3 + i] = ret[COL_BACKGROUND * 3 + i] * 0.8F;
566         ret[COL_TEXT * 3 + i] = 0.0;
567     }
568
569     *ncolours = NCOLOURS;
570     return ret;
571 }
572
573 static game_drawstate *game_new_drawstate(game_state *state)
574 {
575     struct game_drawstate *ds = snew(struct game_drawstate);
576     int i;
577
578     ds->started = FALSE;
579     ds->w = state->w;
580     ds->h = state->h;
581     ds->bgcolour = COL_BACKGROUND;
582     ds->tiles = snewn(ds->w*ds->h, int);
583     for (i = 0; i < ds->w*ds->h; i++)
584         ds->tiles[i] = -1;
585
586     return ds;
587 }
588
589 static void game_free_drawstate(game_drawstate *ds)
590 {
591     sfree(ds->tiles);
592     sfree(ds);
593 }
594
595 static void draw_tile(frontend *fe, game_state *state, int x, int y,
596                       int tile, int flash_colour)
597 {
598     if (tile == 0) {
599         draw_rect(fe, x, y, TILE_SIZE, TILE_SIZE,
600                   flash_colour);
601     } else {
602         int coords[6];
603         char str[40];
604
605         coords[0] = x + TILE_SIZE - 1;
606         coords[1] = y + TILE_SIZE - 1;
607         coords[2] = x + TILE_SIZE - 1;
608         coords[3] = y;
609         coords[4] = x;
610         coords[5] = y + TILE_SIZE - 1;
611         draw_polygon(fe, coords, 3, TRUE, COL_LOWLIGHT);
612         draw_polygon(fe, coords, 3, FALSE, COL_LOWLIGHT);
613
614         coords[0] = x;
615         coords[1] = y;
616         draw_polygon(fe, coords, 3, TRUE, COL_HIGHLIGHT);
617         draw_polygon(fe, coords, 3, FALSE, COL_HIGHLIGHT);
618
619         draw_rect(fe, x + HIGHLIGHT_WIDTH, y + HIGHLIGHT_WIDTH,
620                   TILE_SIZE - 2*HIGHLIGHT_WIDTH, TILE_SIZE - 2*HIGHLIGHT_WIDTH,
621                   flash_colour);
622
623         sprintf(str, "%d", tile);
624         draw_text(fe, x + TILE_SIZE/2, y + TILE_SIZE/2,
625                   FONT_VARIABLE, TILE_SIZE/3, ALIGN_VCENTRE | ALIGN_HCENTRE,
626                   COL_TEXT, str);
627     }
628     draw_update(fe, x, y, TILE_SIZE, TILE_SIZE);
629 }
630
631 static void game_redraw(frontend *fe, game_drawstate *ds, game_state *oldstate,
632                  game_state *state, int dir, game_ui *ui,
633                  float animtime, float flashtime)
634 {
635     int i, pass, bgcolour;
636
637     if (flashtime > 0) {
638         int frame = (int)(flashtime / FLASH_FRAME);
639         bgcolour = (frame % 2 ? COL_LOWLIGHT : COL_HIGHLIGHT);
640     } else
641         bgcolour = COL_BACKGROUND;
642
643     if (!ds->started) {
644         int coords[10];
645
646         draw_rect(fe, 0, 0,
647                   TILE_SIZE * state->w + 2 * BORDER,
648                   TILE_SIZE * state->h + 2 * BORDER, COL_BACKGROUND);
649         draw_update(fe, 0, 0,
650                     TILE_SIZE * state->w + 2 * BORDER,
651                     TILE_SIZE * state->h + 2 * BORDER);
652
653         /*
654          * Recessed area containing the whole puzzle.
655          */
656         coords[0] = COORD(state->w) + HIGHLIGHT_WIDTH - 1;
657         coords[1] = COORD(state->h) + HIGHLIGHT_WIDTH - 1;
658         coords[2] = COORD(state->w) + HIGHLIGHT_WIDTH - 1;
659         coords[3] = COORD(0) - HIGHLIGHT_WIDTH;
660         coords[4] = coords[2] - TILE_SIZE;
661         coords[5] = coords[3] + TILE_SIZE;
662         coords[8] = COORD(0) - HIGHLIGHT_WIDTH;
663         coords[9] = COORD(state->h) + HIGHLIGHT_WIDTH - 1;
664         coords[6] = coords[8] + TILE_SIZE;
665         coords[7] = coords[9] - TILE_SIZE;
666         draw_polygon(fe, coords, 5, TRUE, COL_HIGHLIGHT);
667         draw_polygon(fe, coords, 5, FALSE, COL_HIGHLIGHT);
668
669         coords[1] = COORD(0) - HIGHLIGHT_WIDTH;
670         coords[0] = COORD(0) - HIGHLIGHT_WIDTH;
671         draw_polygon(fe, coords, 5, TRUE, COL_LOWLIGHT);
672         draw_polygon(fe, coords, 5, FALSE, COL_LOWLIGHT);
673
674         ds->started = TRUE;
675     }
676
677     /*
678      * Now draw each tile. We do this in two passes to make
679      * animation easy.
680      */
681     for (pass = 0; pass < 2; pass++) {
682         for (i = 0; i < state->n; i++) {
683             int t, t0;
684             /*
685              * Figure out what should be displayed at this
686              * location. It's either a simple tile, or it's a
687              * transition between two tiles (in which case we say
688              * -1 because it must always be drawn).
689              */
690
691             if (oldstate && oldstate->tiles[i] != state->tiles[i])
692                 t = -1;
693             else
694                 t = state->tiles[i];
695
696             t0 = t;
697
698             if (ds->bgcolour != bgcolour ||   /* always redraw when flashing */
699                 ds->tiles[i] != t || ds->tiles[i] == -1 || t == -1) {
700                 int x, y;
701
702                 /*
703                  * Figure out what to _actually_ draw, and where to
704                  * draw it.
705                  */
706                 if (t == -1) {
707                     int x0, y0, x1, y1;
708                     int j;
709
710                     /*
711                      * On the first pass, just blank the tile.
712                      */
713                     if (pass == 0) {
714                         x = COORD(X(state, i));
715                         y = COORD(Y(state, i));
716                         t = 0;
717                     } else {
718                         float c;
719
720                         t = state->tiles[i];
721
722                         /*
723                          * Don't bother moving the gap; just don't
724                          * draw it.
725                          */
726                         if (t == 0)
727                             continue;
728
729                         /*
730                          * Find the coordinates of this tile in the old and
731                          * new states.
732                          */
733                         x1 = COORD(X(state, i));
734                         y1 = COORD(Y(state, i));
735                         for (j = 0; j < oldstate->n; j++)
736                             if (oldstate->tiles[j] == state->tiles[i])
737                                 break;
738                         assert(j < oldstate->n);
739                         x0 = COORD(X(state, j));
740                         y0 = COORD(Y(state, j));
741
742                         c = (animtime / ANIM_TIME);
743                         if (c < 0.0F) c = 0.0F;
744                         if (c > 1.0F) c = 1.0F;
745
746                         x = x0 + (int)(c * (x1 - x0));
747                         y = y0 + (int)(c * (y1 - y0));
748                     }
749
750                 } else {
751                     if (pass == 0)
752                         continue;
753                     x = COORD(X(state, i));
754                     y = COORD(Y(state, i));
755                 }
756
757                 draw_tile(fe, state, x, y, t, bgcolour);
758             }
759             ds->tiles[i] = t0;
760         }
761     }
762     ds->bgcolour = bgcolour;
763
764     /*
765      * Update the status bar.
766      */
767     {
768         char statusbuf[256];
769
770         /*
771          * Don't show the new status until we're also showing the
772          * new _state_ - after the game animation is complete.
773          */
774         if (oldstate)
775             state = oldstate;
776
777         if (state->used_solve)
778             sprintf(statusbuf, "Moves since auto-solve: %d",
779                     state->movecount - state->completed);
780         else
781             sprintf(statusbuf, "%sMoves: %d",
782                     (state->completed ? "COMPLETED! " : ""),
783                     (state->completed ? state->completed : state->movecount));
784
785         status_bar(fe, statusbuf);
786     }
787 }
788
789 static float game_anim_length(game_state *oldstate,
790                               game_state *newstate, int dir, game_ui *ui)
791 {
792     if ((dir > 0 && newstate->just_used_solve) ||
793         (dir < 0 && oldstate->just_used_solve))
794         return 0.0F;
795     else
796         return ANIM_TIME;
797 }
798
799 static float game_flash_length(game_state *oldstate,
800                                game_state *newstate, int dir, game_ui *ui)
801 {
802     if (!oldstate->completed && newstate->completed &&
803         !oldstate->used_solve && !newstate->used_solve)
804         return 2 * FLASH_FRAME;
805     else
806         return 0.0F;
807 }
808
809 static int game_wants_statusbar(void)
810 {
811     return TRUE;
812 }
813
814 static int game_timing_state(game_state *state)
815 {
816     return TRUE;
817 }
818
819 #ifdef COMBINED
820 #define thegame fifteen
821 #endif
822
823 const struct game thegame = {
824     "Fifteen", "games.fifteen",
825     default_params,
826     game_fetch_preset,
827     decode_params,
828     encode_params,
829     free_params,
830     dup_params,
831     TRUE, game_configure, custom_params,
832     validate_params,
833     new_game_desc,
834     game_free_aux_info,
835     validate_desc,
836     new_game,
837     dup_game,
838     free_game,
839     TRUE, solve_game,
840     TRUE, game_text_format,
841     new_ui,
842     free_ui,
843     game_changed_state,
844     make_move,
845     game_size,
846     game_colours,
847     game_new_drawstate,
848     game_free_drawstate,
849     game_redraw,
850     game_anim_length,
851     game_flash_length,
852     game_wants_statusbar,
853     FALSE, game_timing_state,
854     0,                                 /* mouse_priorities */
855 };