Another thing to watch out for when adding new puzzles.
[sgt/puzzles] / puzzles.h
CommitLineData
720a8fb7 1/*
2 * puzzles.h: header file for my puzzle collection
3 */
4
5#ifndef PUZZLES_PUZZLES_H
6#define PUZZLES_PUZZLES_H
7
dafd6cf6 8#include <stdio.h> /* for FILE */
ab53eb64 9#include <stdlib.h> /* for size_t */
10
720a8fb7 11#ifndef TRUE
12#define TRUE 1
13#endif
14#ifndef FALSE
15#define FALSE 0
16#endif
17
b2a646f1 18#define PI 3.141592653589793238462643383279502884197169399
19
720a8fb7 20#define lenof(array) ( sizeof(array) / sizeof(*(array)) )
21
1d8e8ad8 22#define STR_INT(x) #x
23#define STR(x) STR_INT(x)
24
ab53eb64 25/* NB not perfect because they evaluate arguments multiple times. */
41184c24 26#ifndef max
ab53eb64 27#define max(x,y) ( (x)>(y) ? (x) : (y) )
41184c24 28#endif /* max */
29#ifndef min
ab53eb64 30#define min(x,y) ( (x)<(y) ? (x) : (y) )
41184c24 31#endif /* min */
ab53eb64 32
720a8fb7 33enum {
ab53eb64 34 LEFT_BUTTON = 0x0200,
720a8fb7 35 MIDDLE_BUTTON,
1482ee76 36 RIGHT_BUTTON,
74a4e547 37 LEFT_DRAG,
38 MIDDLE_DRAG,
39 RIGHT_DRAG,
40 LEFT_RELEASE,
41 MIDDLE_RELEASE,
42 RIGHT_RELEASE,
1482ee76 43 CURSOR_UP,
44 CURSOR_DOWN,
45 CURSOR_LEFT,
c71454c0 46 CURSOR_RIGHT,
4cd25760 47 CURSOR_SELECT,
3c833d45 48
ab53eb64 49 /* made smaller because of 'limited range of datatype' errors. */
50 MOD_CTRL = 0x1000,
51 MOD_SHFT = 0x2000,
52 MOD_NUM_KEYPAD = 0x4000,
53 MOD_MASK = 0x7000 /* mask for all modifiers */
720a8fb7 54};
55
6776a950 56#define IS_MOUSE_DOWN(m) ( (unsigned)((m) - LEFT_BUTTON) <= \
57 (unsigned)(RIGHT_BUTTON - LEFT_BUTTON))
58#define IS_MOUSE_DRAG(m) ( (unsigned)((m) - LEFT_DRAG) <= \
59 (unsigned)(RIGHT_DRAG - LEFT_DRAG))
60#define IS_MOUSE_RELEASE(m) ( (unsigned)((m) - LEFT_RELEASE) <= \
61 (unsigned)(RIGHT_RELEASE - LEFT_RELEASE))
62
2705d374 63/*
64 * Flags in the back end's `flags' word.
65 */
93b1da3d 66/* Bit flags indicating mouse button priorities */
67#define BUTTON_BEATS(x,y) ( 1 << (((x)-LEFT_BUTTON)*3+(y)-LEFT_BUTTON) )
2705d374 68/* Flag indicating that Solve operations should be animated */
9d6c3859 69#define SOLVE_ANIMATES ( 1 << 9 )
cb0c7d4a 70/* Pocket PC: Game requires right mouse button emulation */
71#define REQUIRE_RBUTTON ( 1 << 10 )
72/* Pocket PC: Game requires numeric input */
73#define REQUIRE_NUMPAD ( 1 << 11 )
2705d374 74/* end of `flags' word definitions */
9d6c3859 75
cb0c7d4a 76#ifdef _WIN32_WCE
77 /* Pocket PC devices have small, portrait screen that requires more vivid colours */
78 #define SMALL_SCREEN
79 #define PORTRAIT_SCREEN
80 #define VIVID_COLOURS
81#endif
82
4e7ef6e6 83#define IGNOREARG(x) ( (x) = (x) )
7f77ea24 84
2ef96bd6 85typedef struct frontend frontend;
c8230524 86typedef struct config_item config_item;
dafd6cf6 87typedef struct midend midend;
7f77ea24 88typedef struct random_state random_state;
89typedef struct game_params game_params;
90typedef struct game_state game_state;
74a4e547 91typedef struct game_ui game_ui;
2ef96bd6 92typedef struct game_drawstate game_drawstate;
be8d5aa1 93typedef struct game game;
3161048d 94typedef struct blitter blitter;
dafd6cf6 95typedef struct document document;
96typedef struct drawing_api drawing_api;
97typedef struct drawing drawing;
98typedef struct psdata psdata;
7f77ea24 99
4efb3868 100#define ALIGN_VNORMAL 0x000
101#define ALIGN_VCENTRE 0x100
102
103#define ALIGN_HLEFT 0x000
104#define ALIGN_HCENTRE 0x001
105#define ALIGN_HRIGHT 0x002
106
107#define FONT_FIXED 0
108#define FONT_VARIABLE 1
109
dafd6cf6 110/* For printing colours */
111#define HATCH_SOLID 0
112#define HATCH_CLEAR 1
113#define HATCH_SLASH 2
114#define HATCH_BACKSLASH 3
115#define HATCH_HORIZ 4
116#define HATCH_VERT 5
117#define HATCH_PLUS 6
118#define HATCH_X 7
119
720a8fb7 120/*
c8230524 121 * Structure used to pass configuration data between frontend and
122 * game
123 */
95709966 124enum { C_STRING, C_CHOICES, C_BOOLEAN, C_END };
c8230524 125struct config_item {
126 /*
127 * `name' is never dynamically allocated.
128 */
129 char *name;
130 /*
131 * `type' contains one of the above values.
132 */
133 int type;
134 /*
95709966 135 * For C_STRING, `sval' is always dynamically allocated and
136 * non-NULL. For C_BOOLEAN and C_END, `sval' is always NULL.
137 * For C_CHOICES, `sval' is non-NULL, _not_ dynamically
138 * allocated, and contains a set of option strings separated by
139 * a delimiter. The delimeter is also the first character in
140 * the string, so for example ":Foo:Bar:Baz" gives three
141 * options `Foo', `Bar' and `Baz'.
c8230524 142 */
143 char *sval;
144 /*
95709966 145 * For C_BOOLEAN, this is TRUE or FALSE. For C_CHOICES, it
c8230524 146 * indicates the chosen index from the `sval' list. In the
147 * above example, 0==Foo, 1==Bar and 2==Baz.
148 */
149 int ival;
150};
151
152/*
720a8fb7 153 * Platform routines
154 */
ab53eb64 155
7b010604 156/* We can't use #ifdef DEBUG, because Cygwin defines it by default. */
157#ifdef DEBUGGING
ab53eb64 158#define debug(x) (debug_printf x)
159void debug_printf(char *fmt, ...);
160#else
161#define debug(x)
162#endif
163
720a8fb7 164void fatal(char *fmt, ...);
2ef96bd6 165void frontend_default_colour(frontend *fe, float *output);
2ef96bd6 166void deactivate_timer(frontend *fe);
167void activate_timer(frontend *fe);
cbb5549e 168void get_random_seed(void **randseed, int *randseedsize);
720a8fb7 169
dafd6cf6 170/*
171 * drawing.c
172 */
83c0438f 173drawing *drawing_new(const drawing_api *api, midend *me, void *handle);
dafd6cf6 174void drawing_free(drawing *dr);
175void draw_text(drawing *dr, int x, int y, int fonttype, int fontsize,
176 int align, int colour, char *text);
177void draw_rect(drawing *dr, int x, int y, int w, int h, int colour);
178void draw_line(drawing *dr, int x1, int y1, int x2, int y2, int colour);
179void draw_polygon(drawing *dr, int *coords, int npoints,
180 int fillcolour, int outlinecolour);
181void draw_circle(drawing *dr, int cx, int cy, int radius,
182 int fillcolour, int outlinecolour);
183void clip(drawing *dr, int x, int y, int w, int h);
184void unclip(drawing *dr);
185void start_draw(drawing *dr);
186void draw_update(drawing *dr, int x, int y, int w, int h);
187void end_draw(drawing *dr);
188void status_bar(drawing *dr, char *text);
189blitter *blitter_new(drawing *dr, int w, int h);
190void blitter_free(drawing *dr, blitter *bl);
3161048d 191/* save puts the portion of the current display with top-left corner
192 * (x,y) to the blitter. load puts it back again to the specified
193 * coords, or else wherever it was saved from
194 * (if x = y = BLITTER_FROMSAVED). */
dafd6cf6 195void blitter_save(drawing *dr, blitter *bl, int x, int y);
3161048d 196#define BLITTER_FROMSAVED (-1)
dafd6cf6 197void blitter_load(drawing *dr, blitter *bl, int x, int y);
198void print_begin_doc(drawing *dr, int pages);
199void print_begin_page(drawing *dr, int number);
200void print_begin_puzzle(drawing *dr, float xm, float xc,
201 float ym, float yc, int pw, int ph, float wmm,
202 float scale);
203void print_end_puzzle(drawing *dr);
204void print_end_page(drawing *dr, int number);
205void print_end_doc(drawing *dr);
206void print_get_colour(drawing *dr, int colour, int *hatch,
207 float *r, float *g, float *b);
208int print_mono_colour(drawing *dr, int grey); /* 0==black, 1==white */
209int print_grey_colour(drawing *dr, int hatch, float grey);
210int print_rgb_colour(drawing *dr, int hatch, float r, float g, float b);
211void print_line_width(drawing *dr, int width);
3161048d 212
720a8fb7 213/*
7f77ea24 214 * midend.c
215 */
dafd6cf6 216midend *midend_new(frontend *fe, const game *ourgame,
217 const drawing_api *drapi, void *drhandle);
218void midend_free(midend *me);
219void midend_set_params(midend *me, game_params *params);
821ab2c6 220game_params *midend_get_params(midend *me);
dafd6cf6 221void midend_size(midend *me, int *x, int *y, int expand);
222void midend_new_game(midend *me);
223void midend_restart_game(midend *me);
224void midend_stop_anim(midend *me);
225int midend_process_key(midend *me, int x, int y, int button);
226void midend_force_redraw(midend *me);
227void midend_redraw(midend *me);
228float *midend_colours(midend *me, int *ncolours);
afc306fc 229void midend_freeze_timer(midend *me, float tprop);
dafd6cf6 230void midend_timer(midend *me, float tplus);
231int midend_num_presets(midend *me);
232void midend_fetch_preset(midend *me, int n,
eb2ad6f1 233 char **name, game_params **params);
dafd6cf6 234int midend_wants_statusbar(midend *me);
821ab2c6 235enum { CFG_SETTINGS, CFG_SEED, CFG_DESC, CFG_FRONTEND_SPECIFIC };
dafd6cf6 236config_item *midend_get_config(midend *me, int which, char **wintitle);
237char *midend_set_config(midend *me, int which, config_item *cfg);
238char *midend_game_id(midend *me, char *id);
239char *midend_get_game_id(midend *me);
240char *midend_text_format(midend *me);
241char *midend_solve(midend *me);
242void midend_supersede_game_desc(midend *me, char *desc, char *privdesc);
243char *midend_rewrite_statusbar(midend *me, char *text);
244void midend_serialise(midend *me,
a4393230 245 void (*write)(void *ctx, void *buf, int len),
246 void *wctx);
dafd6cf6 247char *midend_deserialise(midend *me,
a4393230 248 int (*read)(void *ctx, void *buf, int len),
249 void *rctx);
dafd6cf6 250/* Printing functions supplied by the mid-end */
251char *midend_print_puzzle(midend *me, document *doc, int with_soln);
7f77ea24 252
253/*
720a8fb7 254 * malloc.c
255 */
ab53eb64 256void *smalloc(size_t size);
257void *srealloc(void *p, size_t size);
720a8fb7 258void sfree(void *p);
ab30d7be 259char *dupstr(const char *s);
720a8fb7 260#define snew(type) \
261 ( (type *) smalloc (sizeof (type)) )
262#define snewn(number, type) \
263 ( (type *) smalloc ((number) * sizeof (type)) )
264#define sresize(array, number, type) \
7f77ea24 265 ( (type *) srealloc ((array), (number) * sizeof (type)) )
720a8fb7 266
267/*
4efb3868 268 * misc.c
269 */
077f3cbe 270void free_cfg(config_item *cfg);
74476385 271void obfuscate_bitmap(unsigned char *bmp, int bits, int decode);
272
273/* allocates output each time. len is always in bytes of binary data.
274 * May assert (or just go wrong) if lengths are unchecked. */
275char *bin2hex(const unsigned char *in, int inlen);
276unsigned char *hex2bin(const char *in, int outlen);
277
937a9eff 278/* Sets (and possibly dims) background from frontend default colour,
279 * and auto-generates highlight and lowlight colours too. */
280void game_mkhighlight(frontend *fe, float *ret,
281 int background, int highlight, int lowlight);
4efb3868 282
c8305fa8 283/* Randomly shuffles an array of items. */
284void shuffle(void *array, int nelts, int eltsize, random_state *rs);
285
dafd6cf6 286/* Draw a rectangle outline, using the drawing API's draw_line. */
287void draw_rect_outline(drawing *dr, int x, int y, int w, int h,
bf7ebf5a 288 int colour);
289
4efb3868 290/*
f1010613 291 * dsf.c
292 */
121aae4b 293int *snew_dsf(int size);
294
295void print_dsf(int *dsf, int size);
296
297/* Return the canonical element of the equivalence class containing element
298 * val. If 'inverse' is non-NULL, this function will put into it a flag
299 * indicating whether the canonical element is inverse to val. */
300int edsf_canonify(int *dsf, int val, int *inverse);
f1010613 301int dsf_canonify(int *dsf, int val);
8b3b3223 302int dsf_size(int *dsf, int val);
121aae4b 303
304/* Allow the caller to specify that two elements should be in the same
305 * equivalence class. If 'inverse' is TRUE, the elements are actually opposite
306 * to one another in some sense. This function will fail an assertion if the
307 * caller gives it self-contradictory data, ie if two elements are claimed to
308 * be both opposite and non-opposite. */
309void edsf_merge(int *dsf, int v1, int v2, int inverse);
f1010613 310void dsf_merge(int *dsf, int v1, int v2);
66a74a18 311void dsf_init(int *dsf, int len);
f1010613 312
313/*
97098757 314 * version.c
315 */
316extern char ver[];
317
318/*
720a8fb7 319 * random.c
320 */
1fbb0680 321random_state *random_new(char *seed, int len);
e9f8a17f 322random_state *random_copy(random_state *tocopy);
48d70ca9 323unsigned long random_bits(random_state *state, int bits);
720a8fb7 324unsigned long random_upto(random_state *state, unsigned long limit);
325void random_free(random_state *state);
c380832d 326char *random_state_encode(random_state *state);
327random_state *random_state_decode(char *input);
7959b517 328/* random.c also exports SHA, which occasionally comes in useful. */
329typedef unsigned long uint32;
330typedef struct {
331 uint32 h[5];
332 unsigned char block[64];
333 int blkused;
334 uint32 lenhi, lenlo;
335} SHA_State;
336void SHA_Init(SHA_State *s);
337void SHA_Bytes(SHA_State *s, void *p, int len);
338void SHA_Final(SHA_State *s, unsigned char *output);
339void SHA_Simple(void *p, int len, unsigned char *output);
720a8fb7 340
341/*
dafd6cf6 342 * printing.c
343 */
344document *document_new(int pw, int ph, float userscale);
345void document_free(document *doc);
346void document_add_puzzle(document *doc, const game *game, game_params *par,
347 game_state *st, game_state *st2);
348void document_print(document *doc, drawing *dr);
349
350/*
351 * ps.c
352 */
353psdata *ps_init(FILE *outfile, int colour);
354void ps_free(psdata *ps);
355drawing *ps_drawing_api(psdata *ps);
356
357/*
9b265feb 358 * combi.c: provides a structure and functions for iterating over
359 * combinations (i.e. choosing r things out of n).
360 */
361typedef struct _combi_ctx {
362 int r, n, nleft, total;
363 int *a;
364} combi_ctx;
365
366combi_ctx *new_combi(int r, int n);
367void reset_combi(combi_ctx *combi);
368combi_ctx *next_combi(combi_ctx *combi); /* returns NULL for end */
369void free_combi(combi_ctx *combi);
370
371/*
be8d5aa1 372 * Data structure containing the function calls and data specific
373 * to a particular game. This is enclosed in a data structure so
374 * that a particular platform can choose, if it wishes, to compile
375 * all the games into a single combined executable rather than
376 * having lots of little ones.
720a8fb7 377 */
be8d5aa1 378struct game {
379 const char *name;
750037d7 380 const char *winhelp_topic, *htmlhelp_topic;
be8d5aa1 381 game_params *(*default_params)(void);
382 int (*fetch_preset)(int i, char **name, game_params **params);
1185e3c5 383 void (*decode_params)(game_params *, char const *string);
384 char *(*encode_params)(game_params *, int full);
be8d5aa1 385 void (*free_params)(game_params *params);
386 game_params *(*dup_params)(game_params *params);
1d228b10 387 int can_configure;
be8d5aa1 388 config_item *(*configure)(game_params *params);
389 game_params *(*custom_params)(config_item *cfg);
3ff276f2 390 char *(*validate_params)(game_params *params, int full);
1185e3c5 391 char *(*new_desc)(game_params *params, random_state *rs,
c566778e 392 char **aux, int interactive);
1185e3c5 393 char *(*validate_desc)(game_params *params, char *desc);
dafd6cf6 394 game_state *(*new_game)(midend *me, game_params *params, char *desc);
be8d5aa1 395 game_state *(*dup_game)(game_state *state);
396 void (*free_game)(game_state *state);
2ac6d24e 397 int can_solve;
df11cd4e 398 char *(*solve)(game_state *orig, game_state *curr,
c566778e 399 char *aux, char **error);
9b4b03d3 400 int can_format_as_text;
401 char *(*text_format)(game_state *state);
be8d5aa1 402 game_ui *(*new_ui)(game_state *state);
403 void (*free_ui)(game_ui *ui);
ae8290c6 404 char *(*encode_ui)(game_ui *ui);
405 void (*decode_ui)(game_ui *ui, char *encoding);
07dfb697 406 void (*changed_state)(game_ui *ui, game_state *oldstate,
407 game_state *newstate);
df11cd4e 408 char *(*interpret_move)(game_state *state, game_ui *ui, game_drawstate *ds,
409 int x, int y, int button);
410 game_state *(*execute_move)(game_state *state, char *move);
1f3ee4ee 411 int preferred_tilesize;
412 void (*compute_size)(game_params *params, int tilesize, int *x, int *y);
dafd6cf6 413 void (*set_size)(drawing *dr, game_drawstate *ds,
414 game_params *params, int tilesize);
8266f3fc 415 float *(*colours)(frontend *fe, int *ncolours);
dafd6cf6 416 game_drawstate *(*new_drawstate)(drawing *dr, game_state *state);
417 void (*free_drawstate)(drawing *dr, game_drawstate *ds);
418 void (*redraw)(drawing *dr, game_drawstate *ds, game_state *oldstate,
be8d5aa1 419 game_state *newstate, int dir, game_ui *ui, float anim_time,
420 float flash_time);
e3f21163 421 float (*anim_length)(game_state *oldstate, game_state *newstate, int dir,
422 game_ui *ui);
423 float (*flash_length)(game_state *oldstate, game_state *newstate, int dir,
424 game_ui *ui);
dafd6cf6 425 int can_print, can_print_in_colour;
426 void (*print_size)(game_params *params, float *x, float *y);
427 void (*print)(drawing *dr, game_state *state, int tilesize);
ac9f41c4 428 int wants_statusbar;
48dcdd62 429 int is_timed;
4d08de49 430 int (*timing_state)(game_state *state, game_ui *ui);
2705d374 431 int flags;
be8d5aa1 432};
433
434/*
dafd6cf6 435 * Data structure containing the drawing API implemented by the
436 * front end and also by cross-platform printing modules such as
437 * PostScript.
438 */
439struct drawing_api {
440 void (*draw_text)(void *handle, int x, int y, int fonttype, int fontsize,
441 int align, int colour, char *text);
442 void (*draw_rect)(void *handle, int x, int y, int w, int h, int colour);
443 void (*draw_line)(void *handle, int x1, int y1, int x2, int y2,
444 int colour);
445 void (*draw_polygon)(void *handle, int *coords, int npoints,
446 int fillcolour, int outlinecolour);
447 void (*draw_circle)(void *handle, int cx, int cy, int radius,
448 int fillcolour, int outlinecolour);
449 void (*draw_update)(void *handle, int x, int y, int w, int h);
450 void (*clip)(void *handle, int x, int y, int w, int h);
451 void (*unclip)(void *handle);
452 void (*start_draw)(void *handle);
453 void (*end_draw)(void *handle);
454 void (*status_bar)(void *handle, char *text);
455 blitter *(*blitter_new)(void *handle, int w, int h);
456 void (*blitter_free)(void *handle, blitter *bl);
457 void (*blitter_save)(void *handle, blitter *bl, int x, int y);
458 void (*blitter_load)(void *handle, blitter *bl, int x, int y);
459 void (*begin_doc)(void *handle, int pages);
460 void (*begin_page)(void *handle, int number);
461 void (*begin_puzzle)(void *handle, float xm, float xc,
462 float ym, float yc, int pw, int ph, float wmm);
463 void (*end_puzzle)(void *handle);
464 void (*end_page)(void *handle, int number);
465 void (*end_doc)(void *handle);
466 void (*line_width)(void *handle, float width);
467};
468
469/*
be8d5aa1 470 * For one-game-at-a-time platforms, there's a single structure
19ef4855 471 * like the above, under a fixed name. For all-at-once platforms,
472 * there's a list of all available puzzles in array form.
be8d5aa1 473 */
19ef4855 474#ifdef COMBINED
475extern const game *gamelist[];
476extern const int gamecount;
477#else
be8d5aa1 478extern const game thegame;
479#endif
720a8fb7 480
481#endif /* PUZZLES_PUZZLES_H */