chiark / gitweb /
1d987faaef9793239487399e142cdea0d4dde757
[sgt-puzzles.git] / tents.c
1 /*
2  * tents.c: Puzzle involving placing tents next to trees subject to
3  * some confusing conditions.
4  * 
5  * TODO:
6  *
7  *  - it might be nice to make setter-provided tent/nontent clues
8  *    inviolable?
9  *     * on the other hand, this would introduce considerable extra
10  *       complexity and size into the game state; also inviolable
11  *       clues would have to be marked as such somehow, in an
12  *       intrusive and annoying manner. Since they're never
13  *       generated by _my_ generator, I'm currently more inclined
14  *       not to bother.
15  * 
16  *  - more difficult levels at the top end?
17  *     * for example, sometimes we can deduce that two BLANKs in
18  *       the same row are each adjacent to the same unattached tree
19  *       and to nothing else, implying that they can't both be
20  *       tents; this enables us to rule out some extra combinations
21  *       in the row-based deduction loop, and hence deduce more
22  *       from the number in that row than we could otherwise do.
23  *     * that by itself doesn't seem worth implementing a new
24  *       difficulty level for, but if I can find a few more things
25  *       like that then it might become worthwhile.
26  *     * I wonder if there's a sensible heuristic for where to
27  *       guess which would make a recursive solver viable?
28  */
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <assert.h>
34 #include <ctype.h>
35 #include <math.h>
36
37 #include "puzzles.h"
38 #include "maxflow.h"
39
40 /*
41  * Design discussion
42  * -----------------
43  * 
44  * The rules of this puzzle as available on the WWW are poorly
45  * specified. The bits about tents having to be orthogonally
46  * adjacent to trees, tents not being even diagonally adjacent to
47  * one another, and the number of tents in each row and column
48  * being given are simple enough; the difficult bit is the
49  * tent-to-tree matching.
50  * 
51  * Some sources use simplistic wordings such as `each tree is
52  * exactly connected to only one tent', which is extremely unclear:
53  * it's easy to read erroneously as `each tree is _orthogonally
54  * adjacent_ to exactly one tent', which is definitely incorrect.
55  * Even the most coherent sources I've found don't do a much better
56  * job of stating the rule.
57  * 
58  * A more precise statement of the rule is that it must be possible
59  * to find a bijection f between tents and trees such that each
60  * tree T is orthogonally adjacent to the tent f(T), but that a
61  * tent is permitted to be adjacent to other trees in addition to
62  * its own. This slightly non-obvious criterion is what gives this
63  * puzzle most of its subtlety.
64  * 
65  * However, there's a particularly subtle ambiguity left over. Is
66  * the bijection between tents and trees required to be _unique_?
67  * In other words, is that bijection conceptually something the
68  * player should be able to exhibit as part of the solution (even
69  * if they aren't actually required to do so)? Or is it sufficient
70  * to have a unique _placement_ of the tents which gives rise to at
71  * least one suitable bijection?
72  * 
73  * The puzzle shown to the right of this       .T. 2      *T* 2
74  * paragraph illustrates the problem. There    T.T 0  ->  T-T 0
75  * are two distinct bijections available.      .T. 2      *T* 2
76  * The answer to the above question will
77  * determine whether it's a valid puzzle.      202        202
78  * 
79  * This is an important question, because it affects both the
80  * player and the generator. Eventually I found all the instances
81  * of this puzzle I could Google up, solved them all by hand, and
82  * verified that in all cases the tree/tent matching was uniquely
83  * determined given the tree and tent positions. Therefore, the
84  * puzzle as implemented in this source file takes the following
85  * policy:
86  * 
87  *  - When checking a user-supplied solution for correctness, only
88  *    verify that there exists _at least_ one matching.
89  *  - When generating a puzzle, enforce that there must be
90  *    _exactly_ one.
91  * 
92  * Algorithmic implications
93  * ------------------------
94  * 
95  * Another way of phrasing the tree/tent matching criterion is to
96  * say that the bipartite adjacency graph between trees and tents
97  * has a perfect matching. That is, if you construct a graph which
98  * has a vertex per tree and a vertex per tent, and an edge between
99  * any tree and tent which are orthogonally adjacent, it is
100  * possible to find a set of N edges of that graph (where N is the
101  * number of trees and also the number of tents) which between them
102  * connect every tree to every tent.
103  * 
104  * The most efficient known algorithms for finding such a matching
105  * given a graph, as far as I'm aware, are the Munkres assignment
106  * algorithm (also known as the Hungarian algorithm) and the
107  * Ford-Fulkerson algorithm (for finding optimal flows in
108  * networks). Each of these takes O(N^3) running time; so we're
109  * talking O(N^3) time to verify any candidate solution to this
110  * puzzle. That's just about OK if you're doing it once per mouse
111  * click (and in fact not even that, since the sensible thing to do
112  * is check all the _other_ puzzle criteria and only wade into this
113  * quagmire if none are violated); but if the solver had to keep
114  * doing N^3 work internally, then it would probably end up with
115  * more like N^5 or N^6 running time, and grid generation would
116  * become very clunky.
117  * 
118  * Fortunately, I've been able to prove a very useful property of
119  * _unique_ perfect matchings, by adapting the proof of Hall's
120  * Marriage Theorem. For those unaware of Hall's Theorem, I'll
121  * recap it and its proof: it states that a bipartite graph
122  * contains a perfect matching iff every set of vertices on the
123  * left side of the graph have a neighbourhood _at least_ as big on
124  * the right.
125  * 
126  * This condition is obviously satisfied if a perfect matching does
127  * exist; each left-side node has a distinct right-side node which
128  * is the one assigned to it by the matching, and thus any set of n
129  * left vertices must have a combined neighbourhood containing at
130  * least the n corresponding right vertices, and possibly others
131  * too. Alternatively, imagine if you had (say) three left-side
132  * nodes all of which were connected to only two right-side nodes
133  * between them: any perfect matching would have to assign one of
134  * those two right nodes to each of the three left nodes, and still
135  * give the three left nodes a different right node each. This is
136  * of course impossible.
137  *
138  * To prove the converse (that if every subset of left vertices
139  * satisfies the Hall condition then a perfect matching exists),
140  * consider trying to find a proper subset of the left vertices
141  * which _exactly_ satisfies the Hall condition: that is, its right
142  * neighbourhood is precisely the same size as it. If we can find
143  * such a subset, then we can split the bipartite graph into two
144  * smaller ones: one consisting of the left subset and its right
145  * neighbourhood, the other consisting of everything else. Edges
146  * from the left side of the former graph to the right side of the
147  * latter do not exist, by construction; edges from the right side
148  * of the former to the left of the latter cannot be part of any
149  * perfect matching because otherwise the left subset would not be
150  * left with enough distinct right vertices to connect to (this is
151  * exactly the same deduction used in Solo's set analysis). You can
152  * then prove (left as an exercise) that both these smaller graphs
153  * still satisfy the Hall condition, and therefore the proof will
154  * follow by induction.
155  * 
156  * There's one other possibility, which is the case where _no_
157  * proper subset of the left vertices has a right neighbourhood of
158  * exactly the same size. That is, every left subset has a strictly
159  * _larger_ right neighbourhood. In this situation, we can simply
160  * remove an _arbitrary_ edge from the graph. This cannot reduce
161  * the size of any left subset's right neighbourhood by more than
162  * one, so if all neighbourhoods were strictly bigger than they
163  * needed to be initially, they must now still be _at least as big_
164  * as they need to be. So we can keep throwing out arbitrary edges
165  * until we find a set which exactly satisfies the Hall condition,
166  * and then proceed as above. []
167  * 
168  * That's Hall's theorem. I now build on this by examining the
169  * circumstances in which a bipartite graph can have a _unique_
170  * perfect matching. It is clear that in the second case, where no
171  * left subset exactly satisfies the Hall condition and so we can
172  * remove an arbitrary edge, there cannot be a unique perfect
173  * matching: given one perfect matching, we choose our arbitrary
174  * removed edge to be one of those contained in it, and then we can
175  * still find a perfect matching in the remaining graph, which will
176  * be a distinct perfect matching in the original.
177  * 
178  * So it is a necessary condition for a unique perfect matching
179  * that there must be at least one proper left subset which
180  * _exactly_ satisfies the Hall condition. But now consider the
181  * smaller graph constructed by taking that left subset and its
182  * neighbourhood: if the graph as a whole had a unique perfect
183  * matching, then so must this smaller one, which means we can find
184  * a proper left subset _again_, and so on. Repeating this process
185  * must eventually reduce us to a graph with only one left-side
186  * vertex (so there are no proper subsets at all); this vertex must
187  * be connected to only one right-side vertex, and hence must be so
188  * in the original graph as well (by construction). So we can
189  * discard this vertex pair from the graph, and any other edges
190  * that involved it (which will by construction be from other left
191  * vertices only), and the resulting smaller graph still has a
192  * unique perfect matching which means we can do the same thing
193  * again.
194  * 
195  * In other words, given any bipartite graph with a unique perfect
196  * matching, we can find that matching by the following extremely
197  * simple algorithm:
198  * 
199  *  - Find a left-side vertex which is only connected to one
200  *    right-side vertex.
201  *  - Assign those vertices to one another, and therefore discard
202  *    any other edges connecting to that right vertex.
203  *  - Repeat until all vertices have been matched.
204  * 
205  * This algorithm can be run in O(V+E) time (where V is the number
206  * of vertices and E is the number of edges in the graph), and the
207  * only way it can fail is if there is not a unique perfect
208  * matching (either because there is no matching at all, or because
209  * it isn't unique; but it can't distinguish those cases).
210  * 
211  * Thus, the internal solver in this source file can be confident
212  * that if the tree/tent matching is uniquely determined by the
213  * tree and tent positions, it can find it using only this kind of
214  * obvious and simple operation: assign a tree to a tent if it
215  * cannot possibly belong to any other tent, and vice versa. If the
216  * solver were _only_ trying to determine the matching, even that
217  * `vice versa' wouldn't be required; but it can come in handy when
218  * not all the tents have been placed yet. I can therefore be
219  * reasonably confident that as long as my solver doesn't need to
220  * cope with grids that have a non-unique matching, it will also
221  * not need to do anything complicated like set analysis between
222  * trees and tents.
223  */
224
225 /*
226  * In standalone solver mode, `verbose' is a variable which can be
227  * set by command-line option; in debugging mode it's simply always
228  * true.
229  */
230 #if defined STANDALONE_SOLVER
231 #define SOLVER_DIAGNOSTICS
232 int verbose = FALSE;
233 #elif defined SOLVER_DIAGNOSTICS
234 #define verbose TRUE
235 #endif
236
237 /*
238  * Difficulty levels. I do some macro ickery here to ensure that my
239  * enum and the various forms of my name list always match up.
240  */
241 #define DIFFLIST(A) \
242     A(EASY,Easy,e) \
243     A(TRICKY,Tricky,t)
244 #define ENUM(upper,title,lower) DIFF_ ## upper,
245 #define TITLE(upper,title,lower) #title,
246 #define ENCODE(upper,title,lower) #lower
247 #define CONFIG(upper,title,lower) ":" #title
248 enum { DIFFLIST(ENUM) DIFFCOUNT };
249 static char const *const tents_diffnames[] = { DIFFLIST(TITLE) };
250 static char const tents_diffchars[] = DIFFLIST(ENCODE);
251 #define DIFFCONFIG DIFFLIST(CONFIG)
252
253 enum {
254     COL_BACKGROUND,
255     COL_GRID,
256     COL_GRASS,
257     COL_TREETRUNK,
258     COL_TREELEAF,
259     COL_TENT,
260     COL_ERROR,
261     COL_ERRTEXT,
262     COL_ERRTRUNK,
263     NCOLOURS
264 };
265
266 enum { BLANK, TREE, TENT, NONTENT, MAGIC };
267
268 struct game_params {
269     int w, h;
270     int diff;
271 };
272
273 struct numbers {
274     int refcount;
275     int *numbers;
276 };
277
278 struct game_state {
279     game_params p;
280     char *grid;
281     struct numbers *numbers;
282     int completed, used_solve;
283 };
284
285 static game_params *default_params(void)
286 {
287     game_params *ret = snew(game_params);
288
289     ret->w = ret->h = 8;
290     ret->diff = DIFF_EASY;
291
292     return ret;
293 }
294
295 static const struct game_params tents_presets[] = {
296     {8, 8, DIFF_EASY},
297     {8, 8, DIFF_TRICKY},
298     {10, 10, DIFF_EASY},
299     {10, 10, DIFF_TRICKY},
300     {15, 15, DIFF_EASY},
301     {15, 15, DIFF_TRICKY},
302 };
303
304 static int game_fetch_preset(int i, char **name, game_params **params)
305 {
306     game_params *ret;
307     char str[80];
308
309     if (i < 0 || i >= lenof(tents_presets))
310         return FALSE;
311
312     ret = snew(game_params);
313     *ret = tents_presets[i];
314
315     sprintf(str, "%dx%d %s", ret->w, ret->h, tents_diffnames[ret->diff]);
316
317     *name = dupstr(str);
318     *params = ret;
319     return TRUE;
320 }
321
322 static void free_params(game_params *params)
323 {
324     sfree(params);
325 }
326
327 static game_params *dup_params(const game_params *params)
328 {
329     game_params *ret = snew(game_params);
330     *ret = *params;                    /* structure copy */
331     return ret;
332 }
333
334 static void decode_params(game_params *params, char const *string)
335 {
336     params->w = params->h = atoi(string);
337     while (*string && isdigit((unsigned char)*string)) string++;
338     if (*string == 'x') {
339         string++;
340         params->h = atoi(string);
341         while (*string && isdigit((unsigned char)*string)) string++;
342     }
343     if (*string == 'd') {
344         int i;
345         string++;
346         for (i = 0; i < DIFFCOUNT; i++)
347             if (*string == tents_diffchars[i])
348                 params->diff = i;
349         if (*string) string++;
350     }
351 }
352
353 static char *encode_params(const game_params *params, int full)
354 {
355     char buf[120];
356
357     sprintf(buf, "%dx%d", params->w, params->h);
358     if (full)
359         sprintf(buf + strlen(buf), "d%c",
360                 tents_diffchars[params->diff]);
361     return dupstr(buf);
362 }
363
364 static config_item *game_configure(const game_params *params)
365 {
366     config_item *ret;
367     char buf[80];
368
369     ret = snewn(4, config_item);
370
371     ret[0].name = "Width";
372     ret[0].type = C_STRING;
373     sprintf(buf, "%d", params->w);
374     ret[0].u.string.sval = dupstr(buf);
375
376     ret[1].name = "Height";
377     ret[1].type = C_STRING;
378     sprintf(buf, "%d", params->h);
379     ret[1].u.string.sval = dupstr(buf);
380
381     ret[2].name = "Difficulty";
382     ret[2].type = C_CHOICES;
383     ret[2].u.choices.choicenames = DIFFCONFIG;
384     ret[2].u.choices.selected = params->diff;
385
386     ret[3].name = NULL;
387     ret[3].type = C_END;
388
389     return ret;
390 }
391
392 static game_params *custom_params(const config_item *cfg)
393 {
394     game_params *ret = snew(game_params);
395
396     ret->w = atoi(cfg[0].u.string.sval);
397     ret->h = atoi(cfg[1].u.string.sval);
398     ret->diff = cfg[2].u.choices.selected;
399
400     return ret;
401 }
402
403 static char *validate_params(const game_params *params, int full)
404 {
405     /*
406      * Generating anything under 4x4 runs into trouble of one kind
407      * or another.
408      */
409     if (params->w < 4 || params->h < 4)
410         return "Width and height must both be at least four";
411     return NULL;
412 }
413
414 /*
415  * Scratch space for solver.
416  */
417 enum { N, U, L, R, D, MAXDIR };        /* link directions */
418 #define dx(d) ( ((d)==R) - ((d)==L) )
419 #define dy(d) ( ((d)==D) - ((d)==U) )
420 #define F(d) ( U + D - (d) )
421 struct solver_scratch {
422     char *links;                       /* mapping between trees and tents */
423     int *locs;
424     char *place, *mrows, *trows;
425 };
426
427 static struct solver_scratch *new_scratch(int w, int h)
428 {
429     struct solver_scratch *ret = snew(struct solver_scratch);
430
431     ret->links = snewn(w*h, char);
432     ret->locs = snewn(max(w, h), int);
433     ret->place = snewn(max(w, h), char);
434     ret->mrows = snewn(3 * max(w, h), char);
435     ret->trows = snewn(3 * max(w, h), char);
436
437     return ret;
438 }
439
440 static void free_scratch(struct solver_scratch *sc)
441 {
442     sfree(sc->trows);
443     sfree(sc->mrows);
444     sfree(sc->place);
445     sfree(sc->locs);
446     sfree(sc->links);
447     sfree(sc);
448 }
449
450 /*
451  * Solver. Returns 0 for impossibility, 1 for success, 2 for
452  * ambiguity or failure to converge.
453  */
454 static int tents_solve(int w, int h, const char *grid, int *numbers,
455                        char *soln, struct solver_scratch *sc, int diff)
456 {
457     int x, y, d, i, j;
458     char *mrow, *trow, *trow1, *trow2;
459
460     /*
461      * Set up solver data.
462      */
463     memset(sc->links, N, w*h);
464
465     /*
466      * Set up solution array.
467      */
468     memcpy(soln, grid, w*h);
469
470     /*
471      * Main solver loop.
472      */
473     while (1) {
474         int done_something = FALSE;
475
476         /*
477          * Any tent which has only one unattached tree adjacent to
478          * it can be tied to that tree.
479          */
480         for (y = 0; y < h; y++)
481             for (x = 0; x < w; x++)
482                 if (soln[y*w+x] == TENT && !sc->links[y*w+x]) {
483                     int linkd = 0;
484
485                     for (d = 1; d < MAXDIR; d++) {
486                         int x2 = x + dx(d), y2 = y + dy(d);
487                         if (x2 >= 0 && x2 < w && y2 >= 0 && y2 < h &&
488                             soln[y2*w+x2] == TREE &&
489                             !sc->links[y2*w+x2]) {
490                             if (linkd)
491                                 break; /* found more than one */
492                             else
493                                 linkd = d;
494                         }
495                     }
496
497                     if (d == MAXDIR && linkd == 0) {
498 #ifdef SOLVER_DIAGNOSTICS
499                         if (verbose)
500                             printf("tent at %d,%d cannot link to anything\n",
501                                    x, y);
502 #endif
503                         return 0;      /* no solution exists */
504                     } else if (d == MAXDIR) {
505                         int x2 = x + dx(linkd), y2 = y + dy(linkd);
506
507 #ifdef SOLVER_DIAGNOSTICS
508                         if (verbose)
509                             printf("tent at %d,%d can only link to tree at"
510                                    " %d,%d\n", x, y, x2, y2);
511 #endif
512
513                         sc->links[y*w+x] = linkd;
514                         sc->links[y2*w+x2] = F(linkd);
515                         done_something = TRUE;
516                     }
517                 }
518
519         if (done_something)
520             continue;
521         if (diff < 0)
522             break;                     /* don't do anything else! */
523
524         /*
525          * Mark a blank square as NONTENT if it is not orthogonally
526          * adjacent to any unmatched tree.
527          */
528         for (y = 0; y < h; y++)
529             for (x = 0; x < w; x++)
530                 if (soln[y*w+x] == BLANK) {
531                     int can_be_tent = FALSE;
532
533                     for (d = 1; d < MAXDIR; d++) {
534                         int x2 = x + dx(d), y2 = y + dy(d);
535                         if (x2 >= 0 && x2 < w && y2 >= 0 && y2 < h &&
536                             soln[y2*w+x2] == TREE &&
537                             !sc->links[y2*w+x2])
538                             can_be_tent = TRUE;
539                     }
540
541                     if (!can_be_tent) {
542 #ifdef SOLVER_DIAGNOSTICS
543                         if (verbose)
544                             printf("%d,%d cannot be a tent (no adjacent"
545                                    " unmatched tree)\n", x, y);
546 #endif
547                         soln[y*w+x] = NONTENT;
548                         done_something = TRUE;
549                     }
550                 }
551
552         if (done_something)
553             continue;
554
555         /*
556          * Mark a blank square as NONTENT if it is (perhaps
557          * diagonally) adjacent to any other tent.
558          */
559         for (y = 0; y < h; y++)
560             for (x = 0; x < w; x++)
561                 if (soln[y*w+x] == BLANK) {
562                     int dx, dy, imposs = FALSE;
563
564                     for (dy = -1; dy <= +1; dy++)
565                         for (dx = -1; dx <= +1; dx++)
566                             if (dy || dx) {
567                                 int x2 = x + dx, y2 = y + dy;
568                                 if (x2 >= 0 && x2 < w && y2 >= 0 && y2 < h &&
569                                     soln[y2*w+x2] == TENT)
570                                     imposs = TRUE;
571                             }
572
573                     if (imposs) {
574 #ifdef SOLVER_DIAGNOSTICS
575                         if (verbose)
576                             printf("%d,%d cannot be a tent (adjacent tent)\n",
577                                    x, y);
578 #endif
579                         soln[y*w+x] = NONTENT;
580                         done_something = TRUE;
581                     }
582                 }
583
584         if (done_something)
585             continue;
586
587         /*
588          * Any tree which has exactly one {unattached tent, BLANK}
589          * adjacent to it must have its tent in that square.
590          */
591         for (y = 0; y < h; y++)
592             for (x = 0; x < w; x++)
593                 if (soln[y*w+x] == TREE && !sc->links[y*w+x]) {
594                     int linkd = 0, linkd2 = 0, nd = 0;
595
596                     for (d = 1; d < MAXDIR; d++) {
597                         int x2 = x + dx(d), y2 = y + dy(d);
598                         if (!(x2 >= 0 && x2 < w && y2 >= 0 && y2 < h))
599                             continue;
600                         if (soln[y2*w+x2] == BLANK ||
601                             (soln[y2*w+x2] == TENT && !sc->links[y2*w+x2])) {
602                             if (linkd)
603                                 linkd2 = d;
604                             else
605                                 linkd = d;
606                             nd++;
607                         }
608                     }
609
610                     if (nd == 0) {
611 #ifdef SOLVER_DIAGNOSTICS
612                         if (verbose)
613                             printf("tree at %d,%d cannot link to anything\n",
614                                    x, y);
615 #endif
616                         return 0;      /* no solution exists */
617                     } else if (nd == 1) {
618                         int x2 = x + dx(linkd), y2 = y + dy(linkd);
619
620 #ifdef SOLVER_DIAGNOSTICS
621                         if (verbose)
622                             printf("tree at %d,%d can only link to tent at"
623                                    " %d,%d\n", x, y, x2, y2);
624 #endif
625                         soln[y2*w+x2] = TENT;
626                         sc->links[y*w+x] = linkd;
627                         sc->links[y2*w+x2] = F(linkd);
628                         done_something = TRUE;
629                     } else if (nd == 2 && (!dx(linkd) != !dx(linkd2)) &&
630                                diff >= DIFF_TRICKY) {
631                         /*
632                          * If there are two possible places where
633                          * this tree's tent can go, and they are
634                          * diagonally separated rather than being
635                          * on opposite sides of the tree, then the
636                          * square (other than the tree square)
637                          * which is adjacent to both of them must
638                          * be a non-tent.
639                          */
640                         int x2 = x + dx(linkd) + dx(linkd2);
641                         int y2 = y + dy(linkd) + dy(linkd2);
642                         assert(x2 >= 0 && x2 < w && y2 >= 0 && y2 < h);
643                         if (soln[y2*w+x2] == BLANK) {
644 #ifdef SOLVER_DIAGNOSTICS
645                             if (verbose)
646                                 printf("possible tent locations for tree at"
647                                        " %d,%d rule out tent at %d,%d\n",
648                                        x, y, x2, y2);
649 #endif
650                             soln[y2*w+x2] = NONTENT;
651                             done_something = TRUE;
652                         }
653                     }
654                 }
655
656         if (done_something)
657             continue;
658
659         /*
660          * If localised deductions about the trees and tents
661          * themselves haven't helped us, it's time to resort to the
662          * numbers round the grid edge. For each row and column, we
663          * go through all possible combinations of locations for
664          * the unplaced tents, rule out any which have adjacent
665          * tents, and spot any square which is given the same state
666          * by all remaining combinations.
667          */
668         for (i = 0; i < w+h; i++) {
669             int start, step, len, start1, start2, n, k;
670
671             if (i < w) {
672                 /*
673                  * This is the number for a column.
674                  */
675                 start = i;
676                 step = w;
677                 len = h;
678                 if (i > 0)
679                     start1 = start - 1;
680                 else
681                     start1 = -1;
682                 if (i+1 < w)
683                     start2 = start + 1;
684                 else
685                     start2 = -1;
686             } else {
687                 /*
688                  * This is the number for a row.
689                  */
690                 start = (i-w)*w;
691                 step = 1;
692                 len = w;
693                 if (i > w)
694                     start1 = start - w;
695                 else
696                     start1 = -1;
697                 if (i+1 < w+h)
698                     start2 = start + w;
699                 else
700                     start2 = -1;
701             }
702
703             if (diff < DIFF_TRICKY) {
704                 /*
705                  * In Easy mode, we don't look at the effect of one
706                  * row on the next (i.e. ruling out a square if all
707                  * possibilities for an adjacent row place a tent
708                  * next to it).
709                  */
710                 start1 = start2 = -1;
711             }
712
713             k = numbers[i];
714
715             /*
716              * Count and store the locations of the free squares,
717              * and also count the number of tents already placed.
718              */
719             n = 0;
720             for (j = 0; j < len; j++) {
721                 if (soln[start+j*step] == TENT)
722                     k--;               /* one fewer tent to place */
723                 else if (soln[start+j*step] == BLANK)
724                     sc->locs[n++] = j;
725             }
726
727             if (n == 0)
728                 continue;              /* nothing left to do here */
729
730             /*
731              * Now we know we're placing k tents in n squares. Set
732              * up the first possibility.
733              */
734             for (j = 0; j < n; j++)
735                 sc->place[j] = (j < k ? TENT : NONTENT);
736
737             /*
738              * We're aiming to find squares in this row which are
739              * invariant over all valid possibilities. Thus, we
740              * maintain the current state of that invariance. We
741              * start everything off at MAGIC to indicate that it
742              * hasn't been set up yet.
743              */
744             mrow = sc->mrows;
745             trow = sc->trows;
746             trow1 = sc->trows + len;
747             trow2 = sc->trows + 2*len;
748             memset(mrow, MAGIC, 3*len);
749
750             /*
751              * And iterate over all possibilities.
752              */
753             while (1) {
754                 int p, valid;
755
756                 /*
757                  * See if this possibility is valid. The only way
758                  * it can fail to be valid is if it contains two
759                  * adjacent tents. (Other forms of invalidity, such
760                  * as containing a tent adjacent to one already
761                  * placed, will have been dealt with already by
762                  * other parts of the solver.)
763                  */
764                 valid = TRUE;
765                 for (j = 0; j+1 < n; j++)
766                     if (sc->place[j] == TENT &&
767                         sc->place[j+1] == TENT &&
768                         sc->locs[j+1] == sc->locs[j]+1) {
769                         valid = FALSE;
770                         break;
771                     }
772
773                 if (valid) {
774                     /*
775                      * Merge this valid combination into mrow.
776                      */
777                     memset(trow, MAGIC, len);
778                     memset(trow+len, BLANK, 2*len);
779                     for (j = 0; j < n; j++) {
780                         trow[sc->locs[j]] = sc->place[j];
781                         if (sc->place[j] == TENT) {
782                             int jj;
783                             for (jj = sc->locs[j]-1; jj <= sc->locs[j]+1; jj++)
784                                 if (jj >= 0 && jj < len)
785                                     trow1[jj] = trow2[jj] = NONTENT;
786                         }
787                     }
788
789                     for (j = 0; j < 3*len; j++) {
790                         if (trow[j] == MAGIC)
791                             continue;
792                         if (mrow[j] == MAGIC || mrow[j] == trow[j]) {
793                             /*
794                              * Either this is the first valid
795                              * placement we've found at all, or
796                              * this square's contents are
797                              * consistent with every previous valid
798                              * combination.
799                              */
800                             mrow[j] = trow[j];
801                         } else {
802                             /*
803                              * This square's contents fail to match
804                              * what they were in a different
805                              * combination, so we cannot deduce
806                              * anything about this square.
807                              */
808                             mrow[j] = BLANK;
809                         }
810                     }
811                 }
812
813                 /*
814                  * Find the next combination of k choices from n.
815                  * We do this by finding the rightmost tent which
816                  * can be moved one place right, doing so, and
817                  * shunting all tents to the right of that as far
818                  * left as they can go.
819                  */
820                 p = 0;
821                 for (j = n-1; j > 0; j--) {
822                     if (sc->place[j] == TENT)
823                         p++;
824                     if (sc->place[j] == NONTENT && sc->place[j-1] == TENT) {
825                         sc->place[j-1] = NONTENT;
826                         sc->place[j] = TENT;
827                         while (p--)
828                             sc->place[++j] = TENT;
829                         while (++j < n)
830                             sc->place[j] = NONTENT;
831                         break;
832                     }
833                 }
834                 if (j <= 0)
835                     break;             /* we've finished */
836             }
837
838             /*
839              * It's just possible that _no_ placement was valid, in
840              * which case we have an internally inconsistent
841              * puzzle.
842              */
843             if (mrow[sc->locs[0]] == MAGIC)
844                 return 0;              /* inconsistent */
845
846             /*
847              * Now go through mrow and see if there's anything
848              * we've deduced which wasn't already mentioned in soln.
849              */
850             for (j = 0; j < len; j++) {
851                 int whichrow;
852
853                 for (whichrow = 0; whichrow < 3; whichrow++) {
854                     char *mthis = mrow + whichrow * len;
855                     int tstart = (whichrow == 0 ? start :
856                                   whichrow == 1 ? start1 : start2);
857                     if (tstart >= 0 &&
858                         mthis[j] != MAGIC && mthis[j] != BLANK &&
859                         soln[tstart+j*step] == BLANK) {
860                         int pos = tstart+j*step;
861
862 #ifdef SOLVER_DIAGNOSTICS
863                         if (verbose)
864                             printf("%s %d forces %s at %d,%d\n",
865                                    step==1 ? "row" : "column",
866                                    step==1 ? start/w : start,
867                                    mthis[j] == TENT ? "tent" : "non-tent",
868                                    pos % w, pos / w);
869 #endif
870                         soln[pos] = mthis[j];
871                         done_something = TRUE;
872                     }
873                 }
874             }
875         }
876
877         if (done_something)
878             continue;
879
880         if (!done_something)
881             break;
882     }
883
884     /*
885      * The solver has nothing further it can do. Return 1 if both
886      * soln and sc->links are completely filled in, or 2 otherwise.
887      */
888     for (y = 0; y < h; y++)
889         for (x = 0; x < w; x++) {
890             if (soln[y*w+x] == BLANK)
891                 return 2;
892             if (soln[y*w+x] != NONTENT && sc->links[y*w+x] == 0)
893                 return 2;
894         }
895
896     return 1;
897 }
898
899 static char *new_game_desc(const game_params *params_in, random_state *rs,
900                            char **aux, int interactive)
901 {
902     game_params params_copy = *params_in; /* structure copy */
903     game_params *params = &params_copy;
904     int w = params->w, h = params->h;
905     int ntrees = w * h / 5;
906     char *grid = snewn(w*h, char);
907     char *puzzle = snewn(w*h, char);
908     int *numbers = snewn(w+h, int);
909     char *soln = snewn(w*h, char);
910     int *temp = snewn(2*w*h, int);
911     int maxedges = ntrees*4 + w*h;
912     int *edges = snewn(2*maxedges, int);
913     int *capacity = snewn(maxedges, int);
914     int *flow = snewn(maxedges, int);
915     struct solver_scratch *sc = new_scratch(w, h);
916     char *ret, *p;
917     int i, j, nedges;
918
919     /*
920      * Since this puzzle has many global deductions and doesn't
921      * permit limited clue sets, generating grids for this puzzle
922      * is hard enough that I see no better option than to simply
923      * generate a solution and see if it's unique and has the
924      * required difficulty. This turns out to be computationally
925      * plausible as well.
926      * 
927      * We chose our tree count (hence also tent count) by dividing
928      * the total grid area by five above. Why five? Well, w*h/4 is
929      * the maximum number of tents you can _possibly_ fit into the
930      * grid without violating the separation criterion, and to
931      * achieve that you are constrained to a very small set of
932      * possible layouts (the obvious one with a tent at every
933      * (even,even) coordinate, and trivial variations thereon). So
934      * if we reduce the tent count a bit more, we enable more
935      * random-looking placement; 5 turns out to be a plausible
936      * figure which yields sensible puzzles. Increasing the tent
937      * count would give puzzles whose solutions were too regimented
938      * and could be solved by the use of that knowledge (and would
939      * also take longer to find a viable placement); decreasing it
940      * would make the grids emptier and more boring.
941      * 
942      * Actually generating a grid is a matter of first placing the
943      * tents, and then placing the trees by the use of maxflow
944      * (finding a distinct square adjacent to every tent). We do it
945      * this way round because otherwise satisfying the tent
946      * separation condition would become onerous: most randomly
947      * chosen tent layouts do not satisfy this condition, so we'd
948      * have gone to a lot of work before finding that a candidate
949      * layout was unusable. Instead, we place the tents first and
950      * ensure they meet the separation criterion _before_ doing
951      * lots of computation; this works much better.
952      * 
953      * The maxflow algorithm is not randomised, so employed naively
954      * it would give rise to grids with clear structure and
955      * directional bias. Hence, I assign the network nodes as seen
956      * by maxflow to be a _random_ permutation of the squares of
957      * the grid, so that any bias shown by maxflow towards
958      * low-numbered nodes is turned into a random bias.
959      * 
960      * This generation strategy can fail at many points, including
961      * as early as tent placement (if you get a bad random order in
962      * which to greedily try the grid squares, you won't even
963      * manage to find enough mutually non-adjacent squares to put
964      * the tents in). Then it can fail if maxflow doesn't manage to
965      * find a good enough matching (i.e. the tent placements don't
966      * admit any adequate tree placements); and finally it can fail
967      * if the solver finds that the problem has the wrong
968      * difficulty (including being actually non-unique). All of
969      * these, however, are insufficiently frequent to cause
970      * trouble.
971      */
972
973     if (params->diff > DIFF_EASY && params->w <= 4 && params->h <= 4)
974         params->diff = DIFF_EASY;      /* downgrade to prevent tight loop */
975
976     while (1) {
977         /*
978          * Arrange the grid squares into a random order.
979          */
980         for (i = 0; i < w*h; i++)
981             temp[i] = i;
982         shuffle(temp, w*h, sizeof(*temp), rs);
983
984         /*
985          * The first `ntrees' entries in temp which we can get
986          * without making two tents adjacent will be the tent
987          * locations.
988          */
989         memset(grid, BLANK, w*h);
990         j = ntrees;
991         for (i = 0; i < w*h && j > 0; i++) {
992             int x = temp[i] % w, y = temp[i] / w;
993             int dy, dx, ok = TRUE;
994
995             for (dy = -1; dy <= +1; dy++)
996                 for (dx = -1; dx <= +1; dx++)
997                     if (x+dx >= 0 && x+dx < w &&
998                         y+dy >= 0 && y+dy < h &&
999                         grid[(y+dy)*w+(x+dx)] == TENT)
1000                         ok = FALSE;
1001
1002             if (ok) {
1003                 grid[temp[i]] = TENT;
1004                 j--;
1005             }
1006         }
1007         if (j > 0)
1008             continue;                  /* couldn't place all the tents */
1009
1010         /*
1011          * Now we build up the list of graph edges.
1012          */
1013         nedges = 0;
1014         for (i = 0; i < w*h; i++) {
1015             if (grid[temp[i]] == TENT) {
1016                 for (j = 0; j < w*h; j++) {
1017                     if (grid[temp[j]] != TENT) {
1018                         int xi = temp[i] % w, yi = temp[i] / w;
1019                         int xj = temp[j] % w, yj = temp[j] / w;
1020                         if (abs(xi-xj) + abs(yi-yj) == 1) {
1021                             edges[nedges*2] = i;
1022                             edges[nedges*2+1] = j;
1023                             capacity[nedges] = 1;
1024                             nedges++;
1025                         }
1026                     }
1027                 }
1028             } else {
1029                 /*
1030                  * Special node w*h is the sink node; any non-tent node
1031                  * has an edge going to it.
1032                  */
1033                 edges[nedges*2] = i;
1034                 edges[nedges*2+1] = w*h;
1035                 capacity[nedges] = 1;
1036                 nedges++;
1037             }
1038         }
1039
1040         /*
1041          * Special node w*h+1 is the source node, with an edge going to
1042          * every tent.
1043          */
1044         for (i = 0; i < w*h; i++) {
1045             if (grid[temp[i]] == TENT) {
1046                 edges[nedges*2] = w*h+1;
1047                 edges[nedges*2+1] = i;
1048                 capacity[nedges] = 1;
1049                 nedges++;
1050             }
1051         }
1052
1053         assert(nedges <= maxedges);
1054
1055         /*
1056          * Now we're ready to call the maxflow algorithm to place the
1057          * trees.
1058          */
1059         j = maxflow(w*h+2, w*h+1, w*h, nedges, edges, capacity, flow, NULL);
1060
1061         if (j < ntrees)
1062             continue;                  /* couldn't place all the trees */
1063
1064         /*
1065          * We've placed the trees. Now we need to work out _where_
1066          * we've placed them, which is a matter of reading back out
1067          * from the `flow' array.
1068          */
1069         for (i = 0; i < nedges; i++) {
1070             if (edges[2*i] < w*h && edges[2*i+1] < w*h && flow[i] > 0)
1071                 grid[temp[edges[2*i+1]]] = TREE;
1072         }
1073
1074         /*
1075          * I think it looks ugly if there isn't at least one of
1076          * _something_ (tent or tree) in each row and each column
1077          * of the grid. This doesn't give any information away
1078          * since a completely empty row/column is instantly obvious
1079          * from the clues (it has no trees and a zero).
1080          */
1081         for (i = 0; i < w; i++) {
1082             for (j = 0; j < h; j++) {
1083                 if (grid[j*w+i] != BLANK)
1084                     break;             /* found something in this column */
1085             }
1086             if (j == h)
1087                 break;                 /* found empty column */
1088         }
1089         if (i < w)
1090             continue;                  /* a column was empty */
1091
1092         for (j = 0; j < h; j++) {
1093             for (i = 0; i < w; i++) {
1094                 if (grid[j*w+i] != BLANK)
1095                     break;             /* found something in this row */
1096             }
1097             if (i == w)
1098                 break;                 /* found empty row */
1099         }
1100         if (j < h)
1101             continue;                  /* a row was empty */
1102
1103         /*
1104          * Now set up the numbers round the edge.
1105          */
1106         for (i = 0; i < w; i++) {
1107             int n = 0;
1108             for (j = 0; j < h; j++)
1109                 if (grid[j*w+i] == TENT)
1110                     n++;
1111             numbers[i] = n;
1112         }
1113         for (i = 0; i < h; i++) {
1114             int n = 0;
1115             for (j = 0; j < w; j++)
1116                 if (grid[i*w+j] == TENT)
1117                     n++;
1118             numbers[w+i] = n;
1119         }
1120
1121         /*
1122          * And now actually solve the puzzle, to see whether it's
1123          * unique and has the required difficulty.
1124          */
1125         for (i = 0; i < w*h; i++)
1126             puzzle[i] = grid[i] == TREE ? TREE : BLANK;
1127         i = tents_solve(w, h, puzzle, numbers, soln, sc, params->diff-1);
1128         j = tents_solve(w, h, puzzle, numbers, soln, sc, params->diff);
1129
1130         /*
1131          * We expect solving with difficulty params->diff to have
1132          * succeeded (otherwise the problem is too hard), and
1133          * solving with diff-1 to have failed (otherwise it's too
1134          * easy).
1135          */
1136         if (i == 2 && j == 1)
1137             break;
1138     }
1139
1140     /*
1141      * That's it. Encode as a game ID.
1142      */
1143     ret = snewn((w+h)*40 + ntrees + (w*h)/26 + 1, char);
1144     p = ret;
1145     j = 0;
1146     for (i = 0; i <= w*h; i++) {
1147         int c = (i < w*h ? grid[i] == TREE : 1);
1148         if (c) {
1149             *p++ = (j == 0 ? '_' : j-1 + 'a');
1150             j = 0;
1151         } else {
1152             j++;
1153             while (j > 25) {
1154                 *p++ = 'z';
1155                 j -= 25;
1156             }
1157         }
1158     }
1159     for (i = 0; i < w+h; i++)
1160         p += sprintf(p, ",%d", numbers[i]);
1161     *p++ = '\0';
1162     ret = sresize(ret, p - ret, char);
1163
1164     /*
1165      * And encode the solution as an aux_info.
1166      */
1167     *aux = snewn(ntrees * 40, char);
1168     p = *aux;
1169     *p++ = 'S';
1170     for (i = 0; i < w*h; i++)
1171         if (grid[i] == TENT)
1172             p += sprintf(p, ";T%d,%d", i%w, i/w);
1173     *p++ = '\0';
1174     *aux = sresize(*aux, p - *aux, char);
1175
1176     free_scratch(sc);
1177     sfree(flow);
1178     sfree(capacity);
1179     sfree(edges);
1180     sfree(temp);
1181     sfree(soln);
1182     sfree(numbers);
1183     sfree(puzzle);
1184     sfree(grid);
1185
1186     return ret;
1187 }
1188
1189 static char *validate_desc(const game_params *params, const char *desc)
1190 {
1191     int w = params->w, h = params->h;
1192     int area, i;
1193
1194     area = 0;
1195     while (*desc && *desc != ',') {
1196         if (*desc == '_')
1197             area++;
1198         else if (*desc >= 'a' && *desc < 'z')
1199             area += *desc - 'a' + 2;
1200         else if (*desc == 'z')
1201             area += 25;
1202         else if (*desc == '!' || *desc == '-')
1203             /* do nothing */;
1204         else
1205             return "Invalid character in grid specification";
1206
1207         desc++;
1208     }
1209     if (area < w * h + 1)
1210         return "Not enough data to fill grid";
1211     else if (area > w * h + 1)
1212         return "Too much data to fill grid";
1213
1214     for (i = 0; i < w+h; i++) {
1215         if (!*desc)
1216             return "Not enough numbers given after grid specification";
1217         else if (*desc != ',')
1218             return "Invalid character in number list";
1219         desc++;
1220         while (*desc && isdigit((unsigned char)*desc)) desc++;
1221     }
1222
1223     if (*desc)
1224         return "Unexpected additional data at end of game description";
1225     return NULL;
1226 }
1227
1228 static game_state *new_game(midend *me, const game_params *params,
1229                             const char *desc)
1230 {
1231     int w = params->w, h = params->h;
1232     game_state *state = snew(game_state);
1233     int i;
1234
1235     state->p = *params;                /* structure copy */
1236     state->grid = snewn(w*h, char);
1237     state->numbers = snew(struct numbers);
1238     state->numbers->refcount = 1;
1239     state->numbers->numbers = snewn(w+h, int);
1240     state->completed = state->used_solve = FALSE;
1241
1242     i = 0;
1243     memset(state->grid, BLANK, w*h);
1244
1245     while (*desc) {
1246         int run, type;
1247
1248         type = TREE;
1249
1250         if (*desc == '_')
1251             run = 0;
1252         else if (*desc >= 'a' && *desc < 'z')
1253             run = *desc - ('a'-1);
1254         else if (*desc == 'z') {
1255             run = 25;
1256             type = BLANK;
1257         } else {
1258             assert(*desc == '!' || *desc == '-');
1259             run = -1;
1260             type = (*desc == '!' ? TENT : NONTENT);
1261         }
1262
1263         desc++;
1264
1265         i += run;
1266         assert(i >= 0 && i <= w*h);
1267         if (i == w*h) {
1268             assert(type == TREE);
1269             break;
1270         } else {
1271             if (type != BLANK)
1272                 state->grid[i++] = type;
1273         }
1274     }
1275
1276     for (i = 0; i < w+h; i++) {
1277         assert(*desc == ',');
1278         desc++;
1279         state->numbers->numbers[i] = atoi(desc);
1280         while (*desc && isdigit((unsigned char)*desc)) desc++;
1281     }
1282
1283     assert(!*desc);
1284
1285     return state;
1286 }
1287
1288 static game_state *dup_game(const game_state *state)
1289 {
1290     int w = state->p.w, h = state->p.h;
1291     game_state *ret = snew(game_state);
1292
1293     ret->p = state->p;                 /* structure copy */
1294     ret->grid = snewn(w*h, char);
1295     memcpy(ret->grid, state->grid, w*h);
1296     ret->numbers = state->numbers;
1297     state->numbers->refcount++;
1298     ret->completed = state->completed;
1299     ret->used_solve = state->used_solve;
1300
1301     return ret;
1302 }
1303
1304 static void free_game(game_state *state)
1305 {
1306     if (--state->numbers->refcount <= 0) {
1307         sfree(state->numbers->numbers);
1308         sfree(state->numbers);
1309     }
1310     sfree(state->grid);
1311     sfree(state);
1312 }
1313
1314 static char *solve_game(const game_state *state, const game_state *currstate,
1315                         const char *aux, char **error)
1316 {
1317     int w = state->p.w, h = state->p.h;
1318
1319     if (aux) {
1320         /*
1321          * If we already have the solution, save ourselves some
1322          * time.
1323          */
1324         return dupstr(aux);
1325     } else {
1326         struct solver_scratch *sc = new_scratch(w, h);
1327         char *soln;
1328         int ret;
1329         char *move, *p;
1330         int i;
1331
1332         soln = snewn(w*h, char);
1333         ret = tents_solve(w, h, state->grid, state->numbers->numbers,
1334                           soln, sc, DIFFCOUNT-1);
1335         free_scratch(sc);
1336         if (ret != 1) {
1337             sfree(soln);
1338             if (ret == 0)
1339                 *error = "This puzzle is not self-consistent";
1340             else
1341                 *error = "Unable to find a unique solution for this puzzle";
1342             return NULL;
1343         }
1344
1345         /*
1346          * Construct a move string which turns the current state
1347          * into the solved state.
1348          */
1349         move = snewn(w*h * 40, char);
1350         p = move;
1351         *p++ = 'S';
1352         for (i = 0; i < w*h; i++)
1353             if (soln[i] == TENT)
1354                 p += sprintf(p, ";T%d,%d", i%w, i/w);
1355         *p++ = '\0';
1356         move = sresize(move, p - move, char);
1357
1358         sfree(soln);
1359
1360         return move;
1361     }
1362 }
1363
1364 static int game_can_format_as_text_now(const game_params *params)
1365 {
1366     return params->w <= 1998 && params->h <= 1998; /* 999 tents */
1367 }
1368
1369 static char *game_text_format(const game_state *state)
1370 {
1371     int w = state->p.w, h = state->p.h, r, c;
1372     int cw = 4, ch = 2, gw = (w+1)*cw + 2, gh = (h+1)*ch + 1, len = gw * gh;
1373     char *board = snewn(len + 1, char);
1374
1375     sprintf(board, "%*s\n", len - 2, "");
1376     for (r = 0; r <= h; ++r) {
1377         for (c = 0; c <= w; ++c) {
1378             int cell = r*ch*gw + cw*c, center = cell + gw*ch/2 + cw/2;
1379             int i = r*w + c, n = 1000;
1380
1381             if (r == h && c == w) /* NOP */;
1382             else if (c == w) n = state->numbers->numbers[w + r];
1383             else if (r == h) n = state->numbers->numbers[c];
1384             else switch (state->grid[i]) {
1385                 case BLANK: board[center] = '.'; break;
1386                 case TREE: board[center] = 'T'; break;
1387                 case TENT: memcpy(board + center - 1, "//\\", 3); break;
1388                 case NONTENT: break;
1389                 default: memcpy(board + center - 1, "wtf", 3);
1390                 }
1391
1392             if (n < 100) {
1393                 board[center] = '0' + n % 10;
1394                 if (n >= 10) board[center - 1] = '0' + n / 10;
1395             } else if (n < 1000) {
1396                 board[center + 1] = '0' + n % 10;
1397                 board[center] = '0' + n / 10 % 10;
1398                 board[center - 1] = '0' + n / 100;
1399             }
1400
1401             board[cell] = '+';
1402             memset(board + cell + 1, '-', cw - 1);
1403             for (i = 1; i < ch; ++i) board[cell + i*gw] = '|';
1404         }
1405
1406         for (c = 0; c < ch; ++c) {
1407             board[(r*ch+c)*gw + gw - 2] =
1408                 c == 0 ? '+' : r < h ? '|' : ' ';
1409             board[(r*ch+c)*gw + gw - 1] = '\n';
1410         }
1411     }
1412
1413     memset(board + len - gw, '-', gw - 2 - cw);
1414     for (c = 0; c <= w; ++c) board[len - gw + cw*c] = '+';
1415
1416     return board;
1417 }
1418
1419 struct game_ui {
1420     int dsx, dsy;                      /* coords of drag start */
1421     int dex, dey;                      /* coords of drag end */
1422     int drag_button;                   /* -1 for none, or a button code */
1423     int drag_ok;                       /* dragged off the window, to cancel */
1424
1425     int cx, cy, cdisp;                 /* cursor position, and ?display. */
1426 };
1427
1428 static game_ui *new_ui(const game_state *state)
1429 {
1430     game_ui *ui = snew(game_ui);
1431     ui->dsx = ui->dsy = -1;
1432     ui->dex = ui->dey = -1;
1433     ui->drag_button = -1;
1434     ui->drag_ok = FALSE;
1435     ui->cx = ui->cy = ui->cdisp = 0;
1436     return ui;
1437 }
1438
1439 static void free_ui(game_ui *ui)
1440 {
1441     sfree(ui);
1442 }
1443
1444 static char *encode_ui(const game_ui *ui)
1445 {
1446     return NULL;
1447 }
1448
1449 static void decode_ui(game_ui *ui, const char *encoding)
1450 {
1451 }
1452
1453 static void game_changed_state(game_ui *ui, const game_state *oldstate,
1454                                const game_state *newstate)
1455 {
1456 }
1457
1458 struct game_drawstate {
1459     int tilesize;
1460     int started;
1461     game_params p;
1462     int *drawn, *numbersdrawn;
1463     int cx, cy;         /* last-drawn cursor pos, or (-1,-1) if absent. */
1464 };
1465
1466 #define PREFERRED_TILESIZE 32
1467 #define TILESIZE (ds->tilesize)
1468 #define TLBORDER (TILESIZE/2)
1469 #define BRBORDER (TILESIZE*3/2)
1470 #define COORD(x)  ( (x) * TILESIZE + TLBORDER )
1471 #define FROMCOORD(x)  ( ((x) - TLBORDER + TILESIZE) / TILESIZE - 1 )
1472
1473 #define FLASH_TIME 0.30F
1474
1475 static int drag_xform(const game_ui *ui, int x, int y, int v)
1476 {
1477     int xmin, ymin, xmax, ymax;
1478
1479     xmin = min(ui->dsx, ui->dex);
1480     xmax = max(ui->dsx, ui->dex);
1481     ymin = min(ui->dsy, ui->dey);
1482     ymax = max(ui->dsy, ui->dey);
1483
1484 #ifndef STYLUS_BASED
1485     /*
1486      * Left-dragging has no effect, so we treat a left-drag as a
1487      * single click on dsx,dsy.
1488      */
1489     if (ui->drag_button == LEFT_BUTTON) {
1490         xmin = xmax = ui->dsx;
1491         ymin = ymax = ui->dsy;
1492     }
1493 #endif
1494
1495     if (x < xmin || x > xmax || y < ymin || y > ymax)
1496         return v;                      /* no change outside drag area */
1497
1498     if (v == TREE)
1499         return v;                      /* trees are inviolate always */
1500
1501     if (xmin == xmax && ymin == ymax) {
1502         /*
1503          * Results of a simple click. Left button sets blanks to
1504          * tents; right button sets blanks to non-tents; either
1505          * button clears a non-blank square.
1506          * If stylus-based however, it loops instead.
1507          */
1508         if (ui->drag_button == LEFT_BUTTON)
1509 #ifdef STYLUS_BASED
1510             v = (v == BLANK ? TENT : (v == TENT ? NONTENT : BLANK));
1511         else
1512             v = (v == BLANK ? NONTENT : (v == NONTENT ? TENT : BLANK));
1513 #else
1514             v = (v == BLANK ? TENT : BLANK);
1515         else
1516             v = (v == BLANK ? NONTENT : BLANK);
1517 #endif
1518     } else {
1519         /*
1520          * Results of a drag. Left-dragging has no effect.
1521          * Right-dragging sets all blank squares to non-tents and
1522          * has no effect on anything else.
1523          */
1524         if (ui->drag_button == RIGHT_BUTTON)
1525             v = (v == BLANK ? NONTENT : v);
1526         else
1527 #ifdef STYLUS_BASED
1528             v = (v == BLANK ? NONTENT : v);
1529 #else
1530             /* do nothing */;
1531 #endif
1532     }
1533
1534     return v;
1535 }
1536
1537 static char *interpret_move(const game_state *state, game_ui *ui,
1538                             const game_drawstate *ds,
1539                             int x, int y, int button)
1540 {
1541     int w = state->p.w, h = state->p.h;
1542     char tmpbuf[80];
1543     int shift = button & MOD_SHFT, control = button & MOD_CTRL;
1544
1545     button &= ~MOD_MASK;
1546
1547     if (button == LEFT_BUTTON || button == RIGHT_BUTTON) {
1548         x = FROMCOORD(x);
1549         y = FROMCOORD(y);
1550         if (x < 0 || y < 0 || x >= w || y >= h)
1551             return NULL;
1552
1553         ui->drag_button = button;
1554         ui->dsx = ui->dex = x;
1555         ui->dsy = ui->dey = y;
1556         ui->drag_ok = TRUE;
1557         ui->cdisp = 0;
1558         return UI_UPDATE;
1559     }
1560
1561     if ((IS_MOUSE_DRAG(button) || IS_MOUSE_RELEASE(button)) &&
1562         ui->drag_button > 0) {
1563         int xmin, ymin, xmax, ymax;
1564         char *buf, *sep;
1565         int buflen, bufsize, tmplen;
1566
1567         x = FROMCOORD(x);
1568         y = FROMCOORD(y);
1569         if (x < 0 || y < 0 || x >= w || y >= h) {
1570             ui->drag_ok = FALSE;
1571         } else {
1572             /*
1573              * Drags are limited to one row or column. Hence, we
1574              * work out which coordinate is closer to the drag
1575              * start, and move it _to_ the drag start.
1576              */
1577             if (abs(x - ui->dsx) < abs(y - ui->dsy))
1578                 x = ui->dsx;
1579             else
1580                 y = ui->dsy;
1581
1582             ui->dex = x;
1583             ui->dey = y;
1584
1585             ui->drag_ok = TRUE;
1586         }
1587
1588         if (IS_MOUSE_DRAG(button))
1589             return UI_UPDATE;
1590
1591         /*
1592          * The drag has been released. Enact it.
1593          */
1594         if (!ui->drag_ok) {
1595             ui->drag_button = -1;
1596             return UI_UPDATE;          /* drag was just cancelled */
1597         }
1598
1599         xmin = min(ui->dsx, ui->dex);
1600         xmax = max(ui->dsx, ui->dex);
1601         ymin = min(ui->dsy, ui->dey);
1602         ymax = max(ui->dsy, ui->dey);
1603         assert(0 <= xmin && xmin <= xmax && xmax < w);
1604         assert(0 <= ymin && ymin <= ymax && ymax < h);
1605
1606         buflen = 0;
1607         bufsize = 256;
1608         buf = snewn(bufsize, char);
1609         sep = "";
1610         for (y = ymin; y <= ymax; y++)
1611             for (x = xmin; x <= xmax; x++) {
1612                 int v = drag_xform(ui, x, y, state->grid[y*w+x]);
1613                 if (state->grid[y*w+x] != v) {
1614                     tmplen = sprintf(tmpbuf, "%s%c%d,%d", sep,
1615                                      (int)(v == BLANK ? 'B' :
1616                                            v == TENT ? 'T' : 'N'),
1617                                      x, y);
1618                     sep = ";";
1619
1620                     if (buflen + tmplen >= bufsize) {
1621                         bufsize = buflen + tmplen + 256;
1622                         buf = sresize(buf, bufsize, char);
1623                     }
1624
1625                     strcpy(buf+buflen, tmpbuf);
1626                     buflen += tmplen;
1627                 }
1628             }
1629
1630         ui->drag_button = -1;          /* drag is terminated */
1631
1632         if (buflen == 0) {
1633             sfree(buf);
1634             return UI_UPDATE;          /* drag was terminated */
1635         } else {
1636             buf[buflen] = '\0';
1637             return buf;
1638         }
1639     }
1640
1641     if (IS_CURSOR_MOVE(button)) {
1642         ui->cdisp = 1;
1643         if (shift || control) {
1644             int len = 0, i, indices[2];
1645             indices[0] = ui->cx + w * ui->cy;
1646             move_cursor(button, &ui->cx, &ui->cy, w, h, 0);
1647             indices[1] = ui->cx + w * ui->cy;
1648
1649             /* NONTENTify all unique traversed eligible squares */
1650             for (i = 0; i <= (indices[0] != indices[1]); ++i)
1651                 if (state->grid[indices[i]] == BLANK ||
1652                     (control && state->grid[indices[i]] == TENT)) {
1653                     len += sprintf(tmpbuf + len, "%sN%d,%d", len ? ";" : "",
1654                                    indices[i] % w, indices[i] / w);
1655                     assert(len < lenof(tmpbuf));
1656                 }
1657
1658             tmpbuf[len] = '\0';
1659             if (len) return dupstr(tmpbuf);
1660         } else
1661             move_cursor(button, &ui->cx, &ui->cy, w, h, 0);
1662         return UI_UPDATE;
1663     }
1664     if (ui->cdisp) {
1665         char rep = 0;
1666         int v = state->grid[ui->cy*w+ui->cx];
1667
1668         if (v != TREE) {
1669 #ifdef SINGLE_CURSOR_SELECT
1670             if (button == CURSOR_SELECT)
1671                 /* SELECT cycles T, N, B */
1672                 rep = v == BLANK ? 'T' : v == TENT ? 'N' : 'B';
1673 #else
1674             if (button == CURSOR_SELECT)
1675                 rep = v == BLANK ? 'T' : 'B';
1676             else if (button == CURSOR_SELECT2)
1677                 rep = v == BLANK ? 'N' : 'B';
1678             else if (button == 'T' || button == 'N' || button == 'B')
1679                 rep = (char)button;
1680 #endif
1681         }
1682
1683         if (rep) {
1684             sprintf(tmpbuf, "%c%d,%d", (int)rep, ui->cx, ui->cy);
1685             return dupstr(tmpbuf);
1686         }
1687     } else if (IS_CURSOR_SELECT(button)) {
1688         ui->cdisp = 1;
1689         return UI_UPDATE;
1690     }
1691
1692     return NULL;
1693 }
1694
1695 static game_state *execute_move(const game_state *state, const char *move)
1696 {
1697     int w = state->p.w, h = state->p.h;
1698     char c;
1699     int x, y, m, n, i, j;
1700     game_state *ret = dup_game(state);
1701
1702     while (*move) {
1703         c = *move;
1704         if (c == 'S') {
1705             int i;
1706             ret->used_solve = TRUE;
1707             /*
1708              * Set all non-tree squares to NONTENT. The rest of the
1709              * solve move will fill the tents in over the top.
1710              */
1711             for (i = 0; i < w*h; i++)
1712                 if (ret->grid[i] != TREE)
1713                     ret->grid[i] = NONTENT;
1714             move++;
1715         } else if (c == 'B' || c == 'T' || c == 'N') {
1716             move++;
1717             if (sscanf(move, "%d,%d%n", &x, &y, &n) != 2 ||
1718                 x < 0 || y < 0 || x >= w || y >= h) {
1719                 free_game(ret);
1720                 return NULL;
1721             }
1722             if (ret->grid[y*w+x] == TREE) {
1723                 free_game(ret);
1724                 return NULL;
1725             }
1726             ret->grid[y*w+x] = (c == 'B' ? BLANK : c == 'T' ? TENT : NONTENT);
1727             move += n;
1728         } else {
1729             free_game(ret);
1730             return NULL;
1731         }
1732         if (*move == ';')
1733             move++;
1734         else if (*move) {
1735             free_game(ret);
1736             return NULL;
1737         }
1738     }
1739
1740     /*
1741      * Check for completion.
1742      */
1743     for (i = n = m = 0; i < w*h; i++) {
1744         if (ret->grid[i] == TENT)
1745             n++;
1746         else if (ret->grid[i] == TREE)
1747             m++;
1748     }
1749     if (n == m) {
1750         int nedges, maxedges, *edges, *capacity, *flow;
1751
1752         /*
1753          * We have the right number of tents, which is a
1754          * precondition for the game being complete. Now check that
1755          * the numbers add up.
1756          */
1757         for (i = 0; i < w; i++) {
1758             n = 0;
1759             for (j = 0; j < h; j++)
1760                 if (ret->grid[j*w+i] == TENT)
1761                     n++;
1762             if (ret->numbers->numbers[i] != n)
1763                 goto completion_check_done;
1764         }
1765         for (i = 0; i < h; i++) {
1766             n = 0;
1767             for (j = 0; j < w; j++)
1768                 if (ret->grid[i*w+j] == TENT)
1769                     n++;
1770             if (ret->numbers->numbers[w+i] != n)
1771                 goto completion_check_done;
1772         }
1773         /*
1774          * Also, check that no two tents are adjacent.
1775          */
1776         for (y = 0; y < h; y++)
1777             for (x = 0; x < w; x++) {
1778                 if (x+1 < w &&
1779                     ret->grid[y*w+x] == TENT && ret->grid[y*w+x+1] == TENT)
1780                     goto completion_check_done;
1781                 if (y+1 < h &&
1782                     ret->grid[y*w+x] == TENT && ret->grid[(y+1)*w+x] == TENT)
1783                     goto completion_check_done;
1784                 if (x+1 < w && y+1 < h) {
1785                     if (ret->grid[y*w+x] == TENT &&
1786                         ret->grid[(y+1)*w+(x+1)] == TENT)
1787                         goto completion_check_done;
1788                     if (ret->grid[(y+1)*w+x] == TENT &&
1789                         ret->grid[y*w+(x+1)] == TENT)
1790                         goto completion_check_done;
1791                 }
1792             }
1793
1794         /*
1795          * OK; we have the right number of tents, they match the
1796          * numeric clues, and they satisfy the non-adjacency
1797          * criterion. Finally, we need to verify that they can be
1798          * placed in a one-to-one matching with the trees such that
1799          * every tent is orthogonally adjacent to its tree.
1800          * 
1801          * This bit is where the hard work comes in: we have to do
1802          * it by finding such a matching using maxflow.
1803          * 
1804          * So we construct a network with one special source node,
1805          * one special sink node, one node per tent, and one node
1806          * per tree.
1807          */
1808         maxedges = 6 * m;
1809         edges = snewn(2 * maxedges, int);
1810         capacity = snewn(maxedges, int);
1811         flow = snewn(maxedges, int);
1812         nedges = 0;
1813         /*
1814          * Node numbering:
1815          * 
1816          * 0..w*h   trees/tents
1817          * w*h      source
1818          * w*h+1    sink
1819          */
1820         for (y = 0; y < h; y++)
1821             for (x = 0; x < w; x++)
1822                 if (ret->grid[y*w+x] == TREE) {
1823                     int d;
1824
1825                     /*
1826                      * Here we use the direction enum declared for
1827                      * the solver. We make use of the fact that the
1828                      * directions are declared in the order
1829                      * U,L,R,D, meaning that we go through the four
1830                      * neighbours of any square in numerically
1831                      * increasing order.
1832                      */
1833                     for (d = 1; d < MAXDIR; d++) {
1834                         int x2 = x + dx(d), y2 = y + dy(d);
1835                         if (x2 >= 0 && x2 < w && y2 >= 0 && y2 < h &&
1836                             ret->grid[y2*w+x2] == TENT) {
1837                             assert(nedges < maxedges);
1838                             edges[nedges*2] = y*w+x;
1839                             edges[nedges*2+1] = y2*w+x2;
1840                             capacity[nedges] = 1;
1841                             nedges++;
1842                         }
1843                     }
1844                 } else if (ret->grid[y*w+x] == TENT) {
1845                     assert(nedges < maxedges);
1846                     edges[nedges*2] = y*w+x;
1847                     edges[nedges*2+1] = w*h+1;   /* edge going to sink */
1848                     capacity[nedges] = 1;
1849                     nedges++;
1850                 }
1851         for (y = 0; y < h; y++)
1852             for (x = 0; x < w; x++)
1853                 if (ret->grid[y*w+x] == TREE) {
1854                     assert(nedges < maxedges);
1855                     edges[nedges*2] = w*h;   /* edge coming from source */
1856                     edges[nedges*2+1] = y*w+x;
1857                     capacity[nedges] = 1;
1858                     nedges++;
1859                 }
1860         n = maxflow(w*h+2, w*h, w*h+1, nedges, edges, capacity, flow, NULL);
1861
1862         sfree(flow);
1863         sfree(capacity);
1864         sfree(edges);
1865
1866         if (n != m)
1867             goto completion_check_done;
1868
1869         /*
1870          * We haven't managed to fault the grid on any count. Score!
1871          */
1872         ret->completed = TRUE;
1873     }
1874     completion_check_done:
1875
1876     return ret;
1877 }
1878
1879 /* ----------------------------------------------------------------------
1880  * Drawing routines.
1881  */
1882
1883 static void game_compute_size(const game_params *params, int tilesize,
1884                               int *x, int *y)
1885 {
1886     /* fool the macros */
1887     struct dummy { int tilesize; } dummy, *ds = &dummy;
1888     dummy.tilesize = tilesize;
1889
1890     *x = TLBORDER + BRBORDER + TILESIZE * params->w;
1891     *y = TLBORDER + BRBORDER + TILESIZE * params->h;
1892 }
1893
1894 static void game_set_size(drawing *dr, game_drawstate *ds,
1895                           const game_params *params, int tilesize)
1896 {
1897     ds->tilesize = tilesize;
1898 }
1899
1900 static float *game_colours(frontend *fe, int *ncolours)
1901 {
1902     float *ret = snewn(3 * NCOLOURS, float);
1903
1904     frontend_default_colour(fe, &ret[COL_BACKGROUND * 3]);
1905
1906     ret[COL_GRID * 3 + 0] = 0.0F;
1907     ret[COL_GRID * 3 + 1] = 0.0F;
1908     ret[COL_GRID * 3 + 2] = 0.0F;
1909
1910     ret[COL_GRASS * 3 + 0] = 0.7F;
1911     ret[COL_GRASS * 3 + 1] = 1.0F;
1912     ret[COL_GRASS * 3 + 2] = 0.5F;
1913
1914     ret[COL_TREETRUNK * 3 + 0] = 0.6F;
1915     ret[COL_TREETRUNK * 3 + 1] = 0.4F;
1916     ret[COL_TREETRUNK * 3 + 2] = 0.0F;
1917
1918     ret[COL_TREELEAF * 3 + 0] = 0.0F;
1919     ret[COL_TREELEAF * 3 + 1] = 0.7F;
1920     ret[COL_TREELEAF * 3 + 2] = 0.0F;
1921
1922     ret[COL_TENT * 3 + 0] = 0.8F;
1923     ret[COL_TENT * 3 + 1] = 0.7F;
1924     ret[COL_TENT * 3 + 2] = 0.0F;
1925
1926     ret[COL_ERROR * 3 + 0] = 1.0F;
1927     ret[COL_ERROR * 3 + 1] = 0.0F;
1928     ret[COL_ERROR * 3 + 2] = 0.0F;
1929
1930     ret[COL_ERRTEXT * 3 + 0] = 1.0F;
1931     ret[COL_ERRTEXT * 3 + 1] = 1.0F;
1932     ret[COL_ERRTEXT * 3 + 2] = 1.0F;
1933
1934     ret[COL_ERRTRUNK * 3 + 0] = 0.6F;
1935     ret[COL_ERRTRUNK * 3 + 1] = 0.0F;
1936     ret[COL_ERRTRUNK * 3 + 2] = 0.0F;
1937
1938     *ncolours = NCOLOURS;
1939     return ret;
1940 }
1941
1942 static game_drawstate *game_new_drawstate(drawing *dr, const game_state *state)
1943 {
1944     int w = state->p.w, h = state->p.h;
1945     struct game_drawstate *ds = snew(struct game_drawstate);
1946     int i;
1947
1948     ds->tilesize = 0;
1949     ds->started = FALSE;
1950     ds->p = state->p;                  /* structure copy */
1951     ds->drawn = snewn(w*h, int);
1952     for (i = 0; i < w*h; i++)
1953         ds->drawn[i] = MAGIC;
1954     ds->numbersdrawn = snewn(w+h, int);
1955     for (i = 0; i < w+h; i++)
1956         ds->numbersdrawn[i] = 2;
1957     ds->cx = ds->cy = -1;
1958
1959     return ds;
1960 }
1961
1962 static void game_free_drawstate(drawing *dr, game_drawstate *ds)
1963 {
1964     sfree(ds->drawn);
1965     sfree(ds->numbersdrawn);
1966     sfree(ds);
1967 }
1968
1969 enum {
1970     ERR_ADJ_TOPLEFT = 4,
1971     ERR_ADJ_TOP,
1972     ERR_ADJ_TOPRIGHT,
1973     ERR_ADJ_LEFT,
1974     ERR_ADJ_RIGHT,
1975     ERR_ADJ_BOTLEFT,
1976     ERR_ADJ_BOT,
1977     ERR_ADJ_BOTRIGHT,
1978     ERR_OVERCOMMITTED
1979 };
1980
1981 static int *find_errors(const game_state *state, char *grid)
1982 {
1983     int w = state->p.w, h = state->p.h;
1984     int *ret = snewn(w*h + w + h, int);
1985     int *tmp = snewn(w*h*2, int), *dsf = tmp + w*h;
1986     int x, y;
1987
1988     /*
1989      * This function goes through a grid and works out where to
1990      * highlight play errors in red. The aim is that it should
1991      * produce at least one error highlight for any complete grid
1992      * (or complete piece of grid) violating a puzzle constraint, so
1993      * that a grid containing no BLANK squares is either a win or is
1994      * marked up in some way that indicates why not.
1995      *
1996      * So it's easy enough to highlight errors in the numeric clues
1997      * - just light up any row or column number which is not
1998      * fulfilled - and it's just as easy to highlight adjacent
1999      * tents. The difficult bit is highlighting failures in the
2000      * tent/tree matching criterion.
2001      *
2002      * A natural approach would seem to be to apply the maxflow
2003      * algorithm to find the tent/tree matching; if this fails, it
2004      * must necessarily terminate with a min-cut which can be
2005      * reinterpreted as some set of trees which have too few tents
2006      * between them (or vice versa). However, it's bad for
2007      * localising errors, because it's not easy to make the
2008      * algorithm narrow down to the _smallest_ such set of trees: if
2009      * trees A and B have only one tent between them, for instance,
2010      * it might perfectly well highlight not only A and B but also
2011      * trees C and D which are correctly matched on the far side of
2012      * the grid, on the grounds that those four trees between them
2013      * have only three tents.
2014      *
2015      * Also, that approach fares badly when you introduce the
2016      * additional requirement that incomplete grids should have
2017      * errors highlighted only when they can be proved to be errors
2018      * - so that trees should not be marked as having too few tents
2019      * if there are enough BLANK squares remaining around them that
2020      * could be turned into the missing tents (to do so would be
2021      * patronising, since the overwhelming likelihood is not that
2022      * the player has forgotten to put a tree there but that they
2023      * have merely not put one there _yet_). However, tents with too
2024      * few trees can be marked immediately, since those are
2025      * definitely player error.
2026      *
2027      * So I adopt an alternative approach, which is to consider the
2028      * bipartite adjacency graph between trees and tents
2029      * ('bipartite' in the sense that for these purposes I
2030      * deliberately ignore two adjacent trees or two adjacent
2031      * tents), divide that graph up into its connected components
2032      * using a dsf, and look for components which contain different
2033      * numbers of trees and tents. This allows me to highlight
2034      * groups of tents with too few trees between them immediately,
2035      * and then in order to find groups of trees with too few tents
2036      * I redo the same process but counting BLANKs as potential
2037      * tents (so that the only trees highlighted are those
2038      * surrounded by enough NONTENTs to make it impossible to give
2039      * them enough tents).
2040      *
2041      * However, this technique is incomplete: it is not a sufficient
2042      * condition for the existence of a perfect matching that every
2043      * connected component of the graph has the same number of tents
2044      * and trees. An example of a graph which satisfies the latter
2045      * condition but still has no perfect matching is
2046      * 
2047      *     A    B    C
2048      *     |   /   ,/|
2049      *     |  /  ,'/ |
2050      *     | / ,' /  |
2051      *     |/,'  /   |
2052      *     1    2    3
2053      *
2054      * which can be realised in Tents as
2055      * 
2056      *       B
2057      *     A 1 C 2
2058      *         3
2059      *
2060      * The matching-error highlighter described above will not mark
2061      * this construction as erroneous. However, something else will:
2062      * the three tents in the above diagram (let us suppose A,B,C
2063      * are the tents, though it doesn't matter which) contain two
2064      * diagonally adjacent pairs. So there will be _an_ error
2065      * highlighted for the above layout, even though not all types
2066      * of error will be highlighted.
2067      *
2068      * And in fact we can prove that this will always be the case:
2069      * that the shortcomings of the matching-error highlighter will
2070      * always be made up for by the easy tent adjacency highlighter.
2071      *
2072      * Lemma: Let G be a bipartite graph between n trees and n
2073      * tents, which is connected, and in which no tree has degree
2074      * more than two (but a tent may). Then G has a perfect matching.
2075      * 
2076      * (Note: in the statement and proof of the Lemma I will
2077      * consistently use 'tree' to indicate a type of graph vertex as
2078      * opposed to a tent, and not to indicate a tree in the graph-
2079      * theoretic sense.)
2080      *
2081      * Proof:
2082      * 
2083      * If we can find a tent of degree 1 joined to a tree of degree
2084      * 2, then any perfect matching must pair that tent with that
2085      * tree. Hence, we can remove both, leaving a smaller graph G'
2086      * which still satisfies all the conditions of the Lemma, and
2087      * which has a perfect matching iff G does.
2088      *
2089      * So, wlog, we may assume G contains no tent of degree 1 joined
2090      * to a tree of degree 2; if it does, we can reduce it as above.
2091      *
2092      * If G has no tent of degree 1 at all, then every tent has
2093      * degree at least two, so there are at least 2n edges in the
2094      * graph. But every tree has degree at most two, so there are at
2095      * most 2n edges. Hence there must be exactly 2n edges, so every
2096      * tree and every tent must have degree exactly two, which means
2097      * that the whole graph consists of a single loop (by
2098      * connectedness), and therefore certainly has a perfect
2099      * matching.
2100      *
2101      * Alternatively, if G does have a tent of degree 1 but it is
2102      * not connected to a tree of degree 2, then the tree it is
2103      * connected to must have degree 1 - and, by connectedness, that
2104      * must mean that that tent and that tree between them form the
2105      * entire graph. This trivial graph has a trivial perfect
2106      * matching. []
2107      *
2108      * That proves the lemma. Hence, in any case where the matching-
2109      * error highlighter fails to highlight an erroneous component
2110      * (because it has the same number of tents as trees, but they
2111      * cannot be matched up), the above lemma tells us that there
2112      * must be a tree with degree more than 2, i.e. a tree
2113      * orthogonally adjacent to at least three tents. But in that
2114      * case, there must be some pair of those three tents which are
2115      * diagonally adjacent to each other, so the tent-adjacency
2116      * highlighter will necessarily show an error. So any filled
2117      * layout in Tents which is not a correct solution to the puzzle
2118      * must have _some_ error highlighted by the subroutine below.
2119      *
2120      * (Of course it would be nicer if we could highlight all
2121      * errors: in the above example layout, we would like to
2122      * highlight tents A,B as having too few trees between them, and
2123      * trees 2,3 as having too few tents, in addition to marking the
2124      * adjacency problems. But I can't immediately think of any way
2125      * to find the smallest sets of such tents and trees without an
2126      * O(2^N) loop over all subsets of a given component.)
2127      */
2128
2129     /*
2130      * ret[0] through to ret[w*h-1] give error markers for the grid
2131      * squares. After that, ret[w*h] to ret[w*h+w-1] give error
2132      * markers for the column numbers, and ret[w*h+w] to
2133      * ret[w*h+w+h-1] for the row numbers.
2134      */
2135
2136     /*
2137      * Spot tent-adjacency violations.
2138      */
2139     for (x = 0; x < w*h; x++)
2140         ret[x] = 0;
2141     for (y = 0; y < h; y++) {
2142         for (x = 0; x < w; x++) {
2143             if (y+1 < h && x+1 < w &&
2144                 ((grid[y*w+x] == TENT &&
2145                   grid[(y+1)*w+(x+1)] == TENT) ||
2146                  (grid[(y+1)*w+x] == TENT &&
2147                   grid[y*w+(x+1)] == TENT))) {
2148                 ret[y*w+x] |= 1 << ERR_ADJ_BOTRIGHT;
2149                 ret[(y+1)*w+x] |= 1 << ERR_ADJ_TOPRIGHT;
2150                 ret[y*w+(x+1)] |= 1 << ERR_ADJ_BOTLEFT;
2151                 ret[(y+1)*w+(x+1)] |= 1 << ERR_ADJ_TOPLEFT;
2152             }
2153             if (y+1 < h &&
2154                 grid[y*w+x] == TENT &&
2155                 grid[(y+1)*w+x] == TENT) {
2156                 ret[y*w+x] |= 1 << ERR_ADJ_BOT;
2157                 ret[(y+1)*w+x] |= 1 << ERR_ADJ_TOP;
2158             }
2159             if (x+1 < w &&
2160                 grid[y*w+x] == TENT &&
2161                 grid[y*w+(x+1)] == TENT) {
2162                 ret[y*w+x] |= 1 << ERR_ADJ_RIGHT;
2163                 ret[y*w+(x+1)] |= 1 << ERR_ADJ_LEFT;
2164             }
2165         }
2166     }
2167
2168     /*
2169      * Spot numeric clue violations.
2170      */
2171     for (x = 0; x < w; x++) {
2172         int tents = 0, maybetents = 0;
2173         for (y = 0; y < h; y++) {
2174             if (grid[y*w+x] == TENT)
2175                 tents++;
2176             else if (grid[y*w+x] == BLANK)
2177                 maybetents++;
2178         }
2179         ret[w*h+x] = (tents > state->numbers->numbers[x] ||
2180                       tents + maybetents < state->numbers->numbers[x]);
2181     }
2182     for (y = 0; y < h; y++) {
2183         int tents = 0, maybetents = 0;
2184         for (x = 0; x < w; x++) {
2185             if (grid[y*w+x] == TENT)
2186                 tents++;
2187             else if (grid[y*w+x] == BLANK)
2188                 maybetents++;
2189         }
2190         ret[w*h+w+y] = (tents > state->numbers->numbers[w+y] ||
2191                         tents + maybetents < state->numbers->numbers[w+y]);
2192     }
2193
2194     /*
2195      * Identify groups of tents with too few trees between them,
2196      * which we do by constructing the connected components of the
2197      * bipartite adjacency graph between tents and trees
2198      * ('bipartite' in the sense that we deliberately ignore
2199      * adjacency between tents or between trees), and highlighting
2200      * all the tents in any component which has a smaller tree
2201      * count.
2202      */
2203     dsf_init(dsf, w*h);
2204     /* Construct the equivalence classes. */
2205     for (y = 0; y < h; y++) {
2206         for (x = 0; x < w-1; x++) {
2207             if ((grid[y*w+x] == TREE && grid[y*w+x+1] == TENT) ||
2208                 (grid[y*w+x] == TENT && grid[y*w+x+1] == TREE))
2209                 dsf_merge(dsf, y*w+x, y*w+x+1);
2210         }
2211     }
2212     for (y = 0; y < h-1; y++) {
2213         for (x = 0; x < w; x++) {
2214             if ((grid[y*w+x] == TREE && grid[(y+1)*w+x] == TENT) ||
2215                 (grid[y*w+x] == TENT && grid[(y+1)*w+x] == TREE))
2216                 dsf_merge(dsf, y*w+x, (y+1)*w+x);
2217         }
2218     }
2219     /* Count up the tent/tree difference in each one. */
2220     for (x = 0; x < w*h; x++)
2221         tmp[x] = 0;
2222     for (x = 0; x < w*h; x++) {
2223         y = dsf_canonify(dsf, x);
2224         if (grid[x] == TREE)
2225             tmp[y]++;
2226         else if (grid[x] == TENT)
2227             tmp[y]--;
2228     }
2229     /* And highlight any tent belonging to an equivalence class with
2230      * a score less than zero. */
2231     for (x = 0; x < w*h; x++) {
2232         y = dsf_canonify(dsf, x);
2233         if (grid[x] == TENT && tmp[y] < 0)
2234             ret[x] |= 1 << ERR_OVERCOMMITTED;
2235     }
2236
2237     /*
2238      * Identify groups of trees with too few tents between them.
2239      * This is done similarly, except that we now count BLANK as
2240      * equivalent to TENT, i.e. we only highlight such trees when
2241      * the user hasn't even left _room_ to provide tents for them
2242      * all. (Otherwise, we'd highlight all trees red right at the
2243      * start of the game, before the user had done anything wrong!)
2244      */
2245 #define TENT(x) ((x)==TENT || (x)==BLANK)
2246     dsf_init(dsf, w*h);
2247     /* Construct the equivalence classes. */
2248     for (y = 0; y < h; y++) {
2249         for (x = 0; x < w-1; x++) {
2250             if ((grid[y*w+x] == TREE && TENT(grid[y*w+x+1])) ||
2251                 (TENT(grid[y*w+x]) && grid[y*w+x+1] == TREE))
2252                 dsf_merge(dsf, y*w+x, y*w+x+1);
2253         }
2254     }
2255     for (y = 0; y < h-1; y++) {
2256         for (x = 0; x < w; x++) {
2257             if ((grid[y*w+x] == TREE && TENT(grid[(y+1)*w+x])) ||
2258                 (TENT(grid[y*w+x]) && grid[(y+1)*w+x] == TREE))
2259                 dsf_merge(dsf, y*w+x, (y+1)*w+x);
2260         }
2261     }
2262     /* Count up the tent/tree difference in each one. */
2263     for (x = 0; x < w*h; x++)
2264         tmp[x] = 0;
2265     for (x = 0; x < w*h; x++) {
2266         y = dsf_canonify(dsf, x);
2267         if (grid[x] == TREE)
2268             tmp[y]++;
2269         else if (TENT(grid[x]))
2270             tmp[y]--;
2271     }
2272     /* And highlight any tree belonging to an equivalence class with
2273      * a score more than zero. */
2274     for (x = 0; x < w*h; x++) {
2275         y = dsf_canonify(dsf, x);
2276         if (grid[x] == TREE && tmp[y] > 0)
2277             ret[x] |= 1 << ERR_OVERCOMMITTED;
2278     }
2279 #undef TENT
2280
2281     sfree(tmp);
2282     return ret;
2283 }
2284
2285 static void draw_err_adj(drawing *dr, game_drawstate *ds, int x, int y)
2286 {
2287     int coords[8];
2288     int yext, xext;
2289
2290     /*
2291      * Draw a diamond.
2292      */
2293     coords[0] = x - TILESIZE*2/5;
2294     coords[1] = y;
2295     coords[2] = x;
2296     coords[3] = y - TILESIZE*2/5;
2297     coords[4] = x + TILESIZE*2/5;
2298     coords[5] = y;
2299     coords[6] = x;
2300     coords[7] = y + TILESIZE*2/5;
2301     draw_polygon(dr, coords, 4, COL_ERROR, COL_GRID);
2302
2303     /*
2304      * Draw an exclamation mark in the diamond. This turns out to
2305      * look unpleasantly off-centre if done via draw_text, so I do
2306      * it by hand on the basis that exclamation marks aren't that
2307      * difficult to draw...
2308      */
2309     xext = TILESIZE/16;
2310     yext = TILESIZE*2/5 - (xext*2+2);
2311     draw_rect(dr, x-xext, y-yext, xext*2+1, yext*2+1 - (xext*3),
2312               COL_ERRTEXT);
2313     draw_rect(dr, x-xext, y+yext-xext*2+1, xext*2+1, xext*2, COL_ERRTEXT);
2314 }
2315
2316 static void draw_tile(drawing *dr, game_drawstate *ds,
2317                       int x, int y, int v, int cur, int printing)
2318 {
2319     int err;
2320     int tx = COORD(x), ty = COORD(y);
2321     int cx = tx + TILESIZE/2, cy = ty + TILESIZE/2;
2322
2323     err = v & ~15;
2324     v &= 15;
2325
2326     clip(dr, tx, ty, TILESIZE, TILESIZE);
2327
2328     if (!printing) {
2329         draw_rect(dr, tx, ty, TILESIZE, TILESIZE, COL_GRID);
2330         draw_rect(dr, tx+1, ty+1, TILESIZE-1, TILESIZE-1,
2331                   (v == BLANK ? COL_BACKGROUND : COL_GRASS));
2332     }
2333
2334     if (v == TREE) {
2335         int i;
2336
2337         (printing ? draw_rect_outline : draw_rect)
2338         (dr, cx-TILESIZE/15, ty+TILESIZE*3/10,
2339          2*(TILESIZE/15)+1, (TILESIZE*9/10 - TILESIZE*3/10),
2340          (err & (1<<ERR_OVERCOMMITTED) ? COL_ERRTRUNK : COL_TREETRUNK));
2341
2342         for (i = 0; i < (printing ? 2 : 1); i++) {
2343             int col = (i == 1 ? COL_BACKGROUND :
2344                        (err & (1<<ERR_OVERCOMMITTED) ? COL_ERROR : 
2345                         COL_TREELEAF));
2346             int sub = i * (TILESIZE/32);
2347             draw_circle(dr, cx, ty+TILESIZE*4/10, TILESIZE/4 - sub,
2348                         col, col);
2349             draw_circle(dr, cx+TILESIZE/5, ty+TILESIZE/4, TILESIZE/8 - sub,
2350                         col, col);
2351             draw_circle(dr, cx-TILESIZE/5, ty+TILESIZE/4, TILESIZE/8 - sub,
2352                         col, col);
2353             draw_circle(dr, cx+TILESIZE/4, ty+TILESIZE*6/13, TILESIZE/8 - sub,
2354                         col, col);
2355             draw_circle(dr, cx-TILESIZE/4, ty+TILESIZE*6/13, TILESIZE/8 - sub,
2356                         col, col);
2357         }
2358     } else if (v == TENT) {
2359         int coords[6];
2360         int col;
2361         coords[0] = cx - TILESIZE/3;
2362         coords[1] = cy + TILESIZE/3;
2363         coords[2] = cx + TILESIZE/3;
2364         coords[3] = cy + TILESIZE/3;
2365         coords[4] = cx;
2366         coords[5] = cy - TILESIZE/3;
2367         col = (err & (1<<ERR_OVERCOMMITTED) ? COL_ERROR : COL_TENT);
2368         draw_polygon(dr, coords, 3, (printing ? -1 : col), col);
2369     }
2370
2371     if (err & (1 << ERR_ADJ_TOPLEFT))
2372         draw_err_adj(dr, ds, tx, ty);
2373     if (err & (1 << ERR_ADJ_TOP))
2374         draw_err_adj(dr, ds, tx+TILESIZE/2, ty);
2375     if (err & (1 << ERR_ADJ_TOPRIGHT))
2376         draw_err_adj(dr, ds, tx+TILESIZE, ty);
2377     if (err & (1 << ERR_ADJ_LEFT))
2378         draw_err_adj(dr, ds, tx, ty+TILESIZE/2);
2379     if (err & (1 << ERR_ADJ_RIGHT))
2380         draw_err_adj(dr, ds, tx+TILESIZE, ty+TILESIZE/2);
2381     if (err & (1 << ERR_ADJ_BOTLEFT))
2382         draw_err_adj(dr, ds, tx, ty+TILESIZE);
2383     if (err & (1 << ERR_ADJ_BOT))
2384         draw_err_adj(dr, ds, tx+TILESIZE/2, ty+TILESIZE);
2385     if (err & (1 << ERR_ADJ_BOTRIGHT))
2386         draw_err_adj(dr, ds, tx+TILESIZE, ty+TILESIZE);
2387
2388     if (cur) {
2389       int coff = TILESIZE/8;
2390       draw_rect_outline(dr, tx + coff, ty + coff,
2391                         TILESIZE - coff*2 + 1, TILESIZE - coff*2 + 1,
2392                         COL_GRID);
2393     }
2394
2395     unclip(dr);
2396     draw_update(dr, tx+1, ty+1, TILESIZE-1, TILESIZE-1);
2397 }
2398
2399 /*
2400  * Internal redraw function, used for printing as well as drawing.
2401  */
2402 static void int_redraw(drawing *dr, game_drawstate *ds,
2403                        const game_state *oldstate, const game_state *state,
2404                        int dir, const game_ui *ui,
2405                        float animtime, float flashtime, int printing)
2406 {
2407     int w = state->p.w, h = state->p.h;
2408     int x, y, flashing;
2409     int cx = -1, cy = -1;
2410     int cmoved = 0;
2411     char *tmpgrid;
2412     int *errors;
2413
2414     if (ui) {
2415       if (ui->cdisp) { cx = ui->cx; cy = ui->cy; }
2416       if (cx != ds->cx || cy != ds->cy) cmoved = 1;
2417     }
2418
2419     if (printing || !ds->started) {
2420         if (!printing) {
2421             int ww, wh;
2422             game_compute_size(&state->p, TILESIZE, &ww, &wh);
2423             draw_rect(dr, 0, 0, ww, wh, COL_BACKGROUND);
2424             draw_update(dr, 0, 0, ww, wh);
2425             ds->started = TRUE;
2426         }
2427
2428         if (printing)
2429             print_line_width(dr, TILESIZE/64);
2430
2431         /*
2432          * Draw the grid.
2433          */
2434         for (y = 0; y <= h; y++)
2435             draw_line(dr, COORD(0), COORD(y), COORD(w), COORD(y), COL_GRID);
2436         for (x = 0; x <= w; x++)
2437             draw_line(dr, COORD(x), COORD(0), COORD(x), COORD(h), COL_GRID);
2438     }
2439
2440     if (flashtime > 0)
2441         flashing = (int)(flashtime * 3 / FLASH_TIME) != 1;
2442     else
2443         flashing = FALSE;
2444
2445     /*
2446      * Find errors. For this we use _part_ of the information from a
2447      * currently active drag: we transform dsx,dsy but not anything
2448      * else. (This seems to strike a good compromise between having
2449      * the error highlights respond instantly to single clicks, but
2450      * not giving constant feedback during a right-drag.)
2451      */
2452     if (ui && ui->drag_button >= 0) {
2453         tmpgrid = snewn(w*h, char);
2454         memcpy(tmpgrid, state->grid, w*h);
2455         tmpgrid[ui->dsy * w + ui->dsx] =
2456             drag_xform(ui, ui->dsx, ui->dsy, tmpgrid[ui->dsy * w + ui->dsx]);
2457         errors = find_errors(state, tmpgrid);
2458         sfree(tmpgrid);
2459     } else {
2460         errors = find_errors(state, state->grid);
2461     }
2462
2463     /*
2464      * Draw the grid.
2465      */
2466     for (y = 0; y < h; y++) {
2467         for (x = 0; x < w; x++) {
2468             int v = state->grid[y*w+x];
2469             int credraw = 0;
2470
2471             /*
2472              * We deliberately do not take drag_ok into account
2473              * here, because user feedback suggests that it's
2474              * marginally nicer not to have the drag effects
2475              * flickering on and off disconcertingly.
2476              */
2477             if (ui && ui->drag_button >= 0)
2478                 v = drag_xform(ui, x, y, v);
2479
2480             if (flashing && (v == TREE || v == TENT))
2481                 v = NONTENT;
2482
2483             if (cmoved) {
2484               if ((x == cx && y == cy) ||
2485                   (x == ds->cx && y == ds->cy)) credraw = 1;
2486             }
2487
2488             v |= errors[y*w+x];
2489
2490             if (printing || ds->drawn[y*w+x] != v || credraw) {
2491                 draw_tile(dr, ds, x, y, v, (x == cx && y == cy), printing);
2492                 if (!printing)
2493                     ds->drawn[y*w+x] = v;
2494             }
2495         }
2496     }
2497
2498     /*
2499      * Draw (or redraw, if their error-highlighted state has
2500      * changed) the numbers.
2501      */
2502     for (x = 0; x < w; x++) {
2503         if (printing || ds->numbersdrawn[x] != errors[w*h+x]) {
2504             char buf[80];
2505             draw_rect(dr, COORD(x), COORD(h)+1, TILESIZE, BRBORDER-1,
2506                       COL_BACKGROUND);
2507             sprintf(buf, "%d", state->numbers->numbers[x]);
2508             draw_text(dr, COORD(x) + TILESIZE/2, COORD(h+1),
2509                       FONT_VARIABLE, TILESIZE/2, ALIGN_HCENTRE|ALIGN_VNORMAL,
2510                       (errors[w*h+x] ? COL_ERROR : COL_GRID), buf);
2511             draw_update(dr, COORD(x), COORD(h)+1, TILESIZE, BRBORDER-1);
2512             if (!printing)
2513                 ds->numbersdrawn[x] = errors[w*h+x];
2514         }
2515     }
2516     for (y = 0; y < h; y++) {
2517         if (printing || ds->numbersdrawn[w+y] != errors[w*h+w+y]) {
2518             char buf[80];
2519             draw_rect(dr, COORD(w)+1, COORD(y), BRBORDER-1, TILESIZE,
2520                       COL_BACKGROUND);
2521             sprintf(buf, "%d", state->numbers->numbers[w+y]);
2522             draw_text(dr, COORD(w+1), COORD(y) + TILESIZE/2,
2523                       FONT_VARIABLE, TILESIZE/2, ALIGN_HRIGHT|ALIGN_VCENTRE,
2524                       (errors[w*h+w+y] ? COL_ERROR : COL_GRID), buf);
2525             draw_update(dr, COORD(w)+1, COORD(y), BRBORDER-1, TILESIZE);
2526             if (!printing)
2527                 ds->numbersdrawn[w+y] = errors[w*h+w+y];
2528         }
2529     }
2530
2531     if (cmoved) {
2532         ds->cx = cx;
2533         ds->cy = cy;
2534     }
2535
2536     sfree(errors);
2537 }
2538
2539 static void game_redraw(drawing *dr, game_drawstate *ds,
2540                         const game_state *oldstate, const game_state *state,
2541                         int dir, const game_ui *ui,
2542                         float animtime, float flashtime)
2543 {
2544     int_redraw(dr, ds, oldstate, state, dir, ui, animtime, flashtime, FALSE);
2545 }
2546
2547 static float game_anim_length(const game_state *oldstate,
2548                               const game_state *newstate, int dir, game_ui *ui)
2549 {
2550     return 0.0F;
2551 }
2552
2553 static float game_flash_length(const game_state *oldstate,
2554                                const game_state *newstate, int dir, game_ui *ui)
2555 {
2556     if (!oldstate->completed && newstate->completed &&
2557         !oldstate->used_solve && !newstate->used_solve)
2558         return FLASH_TIME;
2559
2560     return 0.0F;
2561 }
2562
2563 static int game_status(const game_state *state)
2564 {
2565     return state->completed ? +1 : 0;
2566 }
2567
2568 static int game_timing_state(const game_state *state, game_ui *ui)
2569 {
2570     return TRUE;
2571 }
2572
2573 static void game_print_size(const game_params *params, float *x, float *y)
2574 {
2575     int pw, ph;
2576
2577     /*
2578      * I'll use 6mm squares by default.
2579      */
2580     game_compute_size(params, 600, &pw, &ph);
2581     *x = pw / 100.0F;
2582     *y = ph / 100.0F;
2583 }
2584
2585 static void game_print(drawing *dr, const game_state *state, int tilesize)
2586 {
2587     int c;
2588
2589     /* Ick: fake up `ds->tilesize' for macro expansion purposes */
2590     game_drawstate ads, *ds = &ads;
2591     game_set_size(dr, ds, NULL, tilesize);
2592
2593     c = print_mono_colour(dr, 1); assert(c == COL_BACKGROUND);
2594     c = print_mono_colour(dr, 0); assert(c == COL_GRID);
2595     c = print_mono_colour(dr, 1); assert(c == COL_GRASS);
2596     c = print_mono_colour(dr, 0); assert(c == COL_TREETRUNK);
2597     c = print_mono_colour(dr, 0); assert(c == COL_TREELEAF);
2598     c = print_mono_colour(dr, 0); assert(c == COL_TENT);
2599
2600     int_redraw(dr, ds, NULL, state, +1, NULL, 0.0F, 0.0F, TRUE);
2601 }
2602
2603 #ifdef COMBINED
2604 #define thegame tents
2605 #endif
2606
2607 const struct game thegame = {
2608     "Tents", "games.tents", "tents",
2609     default_params,
2610     game_fetch_preset, NULL,
2611     decode_params,
2612     encode_params,
2613     free_params,
2614     dup_params,
2615     TRUE, game_configure, custom_params,
2616     validate_params,
2617     new_game_desc,
2618     validate_desc,
2619     new_game,
2620     dup_game,
2621     free_game,
2622     TRUE, solve_game,
2623     TRUE, game_can_format_as_text_now, game_text_format,
2624     new_ui,
2625     free_ui,
2626     encode_ui,
2627     decode_ui,
2628     game_changed_state,
2629     interpret_move,
2630     execute_move,
2631     PREFERRED_TILESIZE, game_compute_size, game_set_size,
2632     game_colours,
2633     game_new_drawstate,
2634     game_free_drawstate,
2635     game_redraw,
2636     game_anim_length,
2637     game_flash_length,
2638     game_status,
2639     TRUE, FALSE, game_print_size, game_print,
2640     FALSE,                             /* wants_statusbar */
2641     FALSE, game_timing_state,
2642     REQUIRE_RBUTTON,                   /* flags */
2643 };
2644
2645 #ifdef STANDALONE_SOLVER
2646
2647 #include <stdarg.h>
2648
2649 int main(int argc, char **argv)
2650 {
2651     game_params *p;
2652     game_state *s, *s2;
2653     char *id = NULL, *desc, *err;
2654     int grade = FALSE;
2655     int ret, diff, really_verbose = FALSE;
2656     struct solver_scratch *sc;
2657
2658     while (--argc > 0) {
2659         char *p = *++argv;
2660         if (!strcmp(p, "-v")) {
2661             really_verbose = TRUE;
2662         } else if (!strcmp(p, "-g")) {
2663             grade = TRUE;
2664         } else if (*p == '-') {
2665             fprintf(stderr, "%s: unrecognised option `%s'\n", argv[0], p);
2666             return 1;
2667         } else {
2668             id = p;
2669         }
2670     }
2671
2672     if (!id) {
2673         fprintf(stderr, "usage: %s [-g | -v] <game_id>\n", argv[0]);
2674         return 1;
2675     }
2676
2677     desc = strchr(id, ':');
2678     if (!desc) {
2679         fprintf(stderr, "%s: game id expects a colon in it\n", argv[0]);
2680         return 1;
2681     }
2682     *desc++ = '\0';
2683
2684     p = default_params();
2685     decode_params(p, id);
2686     err = validate_desc(p, desc);
2687     if (err) {
2688         fprintf(stderr, "%s: %s\n", argv[0], err);
2689         return 1;
2690     }
2691     s = new_game(NULL, p, desc);
2692     s2 = new_game(NULL, p, desc);
2693
2694     sc = new_scratch(p->w, p->h);
2695
2696     /*
2697      * When solving an Easy puzzle, we don't want to bother the
2698      * user with Hard-level deductions. For this reason, we grade
2699      * the puzzle internally before doing anything else.
2700      */
2701     ret = -1;                          /* placate optimiser */
2702     for (diff = 0; diff < DIFFCOUNT; diff++) {
2703         ret = tents_solve(p->w, p->h, s->grid, s->numbers->numbers,
2704                           s2->grid, sc, diff);
2705         if (ret < 2)
2706             break;
2707     }
2708
2709     if (diff == DIFFCOUNT) {
2710         if (grade)
2711             printf("Difficulty rating: too hard to solve internally\n");
2712         else
2713             printf("Unable to find a unique solution\n");
2714     } else {
2715         if (grade) {
2716             if (ret == 0)
2717                 printf("Difficulty rating: impossible (no solution exists)\n");
2718             else if (ret == 1)
2719                 printf("Difficulty rating: %s\n", tents_diffnames[diff]);
2720         } else {
2721             verbose = really_verbose;
2722             ret = tents_solve(p->w, p->h, s->grid, s->numbers->numbers,
2723                               s2->grid, sc, diff);
2724             if (ret == 0)
2725                 printf("Puzzle is inconsistent\n");
2726             else
2727                 fputs(game_text_format(s2), stdout);
2728         }
2729     }
2730
2731     return 0;
2732 }
2733
2734 #endif
2735
2736 /* vim: set shiftwidth=4 tabstop=8: */