Since the lack of this has caused portability issues in the past:
[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 */
bd2b3071 10#include <limits.h> /* for UINT_MAX */
ab53eb64 11
720a8fb7 12#ifndef TRUE
13#define TRUE 1
14#endif
15#ifndef FALSE
16#define FALSE 0
17#endif
18
b2a646f1 19#define PI 3.141592653589793238462643383279502884197169399
20
720a8fb7 21#define lenof(array) ( sizeof(array) / sizeof(*(array)) )
22
1d8e8ad8 23#define STR_INT(x) #x
24#define STR(x) STR_INT(x)
25
ab53eb64 26/* NB not perfect because they evaluate arguments multiple times. */
41184c24 27#ifndef max
ab53eb64 28#define max(x,y) ( (x)>(y) ? (x) : (y) )
41184c24 29#endif /* max */
30#ifndef min
ab53eb64 31#define min(x,y) ( (x)<(y) ? (x) : (y) )
41184c24 32#endif /* min */
ab53eb64 33
720a8fb7 34enum {
ab53eb64 35 LEFT_BUTTON = 0x0200,
720a8fb7 36 MIDDLE_BUTTON,
1482ee76 37 RIGHT_BUTTON,
74a4e547 38 LEFT_DRAG,
39 MIDDLE_DRAG,
40 RIGHT_DRAG,
41 LEFT_RELEASE,
42 MIDDLE_RELEASE,
43 RIGHT_RELEASE,
1482ee76 44 CURSOR_UP,
45 CURSOR_DOWN,
46 CURSOR_LEFT,
c71454c0 47 CURSOR_RIGHT,
4cd25760 48 CURSOR_SELECT,
3c833d45 49
ab53eb64 50 /* made smaller because of 'limited range of datatype' errors. */
51 MOD_CTRL = 0x1000,
52 MOD_SHFT = 0x2000,
53 MOD_NUM_KEYPAD = 0x4000,
54 MOD_MASK = 0x7000 /* mask for all modifiers */
720a8fb7 55};
56
6776a950 57#define IS_MOUSE_DOWN(m) ( (unsigned)((m) - LEFT_BUTTON) <= \
58 (unsigned)(RIGHT_BUTTON - LEFT_BUTTON))
59#define IS_MOUSE_DRAG(m) ( (unsigned)((m) - LEFT_DRAG) <= \
60 (unsigned)(RIGHT_DRAG - LEFT_DRAG))
61#define IS_MOUSE_RELEASE(m) ( (unsigned)((m) - LEFT_RELEASE) <= \
62 (unsigned)(RIGHT_RELEASE - LEFT_RELEASE))
63
2705d374 64/*
65 * Flags in the back end's `flags' word.
66 */
93b1da3d 67/* Bit flags indicating mouse button priorities */
68#define BUTTON_BEATS(x,y) ( 1 << (((x)-LEFT_BUTTON)*3+(y)-LEFT_BUTTON) )
2705d374 69/* Flag indicating that Solve operations should be animated */
9d6c3859 70#define SOLVE_ANIMATES ( 1 << 9 )
cb0c7d4a 71/* Pocket PC: Game requires right mouse button emulation */
72#define REQUIRE_RBUTTON ( 1 << 10 )
73/* Pocket PC: Game requires numeric input */
74#define REQUIRE_NUMPAD ( 1 << 11 )
2705d374 75/* end of `flags' word definitions */
9d6c3859 76
cb0c7d4a 77#ifdef _WIN32_WCE
78 /* Pocket PC devices have small, portrait screen that requires more vivid colours */
79 #define SMALL_SCREEN
80 #define PORTRAIT_SCREEN
81 #define VIVID_COLOURS
b1aca07f 82 #define STYLUS_BASED
cb0c7d4a 83#endif
84
4e7ef6e6 85#define IGNOREARG(x) ( (x) = (x) )
7f77ea24 86
2ef96bd6 87typedef struct frontend frontend;
c8230524 88typedef struct config_item config_item;
dafd6cf6 89typedef struct midend midend;
7f77ea24 90typedef struct random_state random_state;
91typedef struct game_params game_params;
92typedef struct game_state game_state;
74a4e547 93typedef struct game_ui game_ui;
2ef96bd6 94typedef struct game_drawstate game_drawstate;
be8d5aa1 95typedef struct game game;
3161048d 96typedef struct blitter blitter;
dafd6cf6 97typedef struct document document;
98typedef struct drawing_api drawing_api;
99typedef struct drawing drawing;
100typedef struct psdata psdata;
7f77ea24 101
4efb3868 102#define ALIGN_VNORMAL 0x000
103#define ALIGN_VCENTRE 0x100
104
105#define ALIGN_HLEFT 0x000
106#define ALIGN_HCENTRE 0x001
107#define ALIGN_HRIGHT 0x002
108
109#define FONT_FIXED 0
110#define FONT_VARIABLE 1
111
dafd6cf6 112/* For printing colours */
60aa1c74 113#define HATCH_SLASH 1
114#define HATCH_BACKSLASH 2
115#define HATCH_HORIZ 3
116#define HATCH_VERT 4
117#define HATCH_PLUS 5
118#define HATCH_X 6
dafd6cf6 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);
60aa1c74 206void print_get_colour(drawing *dr, int colour, int printing_in_colour,
207 int *hatch, float *r, float *g, float *b);
dafd6cf6 208int print_mono_colour(drawing *dr, int grey); /* 0==black, 1==white */
60aa1c74 209int print_grey_colour(drawing *dr, float grey);
210int print_hatched_colour(drawing *dr, int hatch);
b0ad2ded 211int print_rgb_mono_colour(drawing *dr, float r, float g, float b, int mono);
60aa1c74 212int print_rgb_grey_colour(drawing *dr, float r, float g, float b, float grey);
213int print_rgb_hatched_colour(drawing *dr, float r, float g, float b,
214 int hatch);
dafd6cf6 215void print_line_width(drawing *dr, int width);
3161048d 216
720a8fb7 217/*
7f77ea24 218 * midend.c
219 */
dafd6cf6 220midend *midend_new(frontend *fe, const game *ourgame,
221 const drawing_api *drapi, void *drhandle);
222void midend_free(midend *me);
223void midend_set_params(midend *me, game_params *params);
821ab2c6 224game_params *midend_get_params(midend *me);
8c4ea6f0 225void midend_size(midend *me, int *x, int *y, int user_size);
dafd6cf6 226void midend_new_game(midend *me);
227void midend_restart_game(midend *me);
228void midend_stop_anim(midend *me);
229int midend_process_key(midend *me, int x, int y, int button);
230void midend_force_redraw(midend *me);
231void midend_redraw(midend *me);
232float *midend_colours(midend *me, int *ncolours);
afc306fc 233void midend_freeze_timer(midend *me, float tprop);
dafd6cf6 234void midend_timer(midend *me, float tplus);
235int midend_num_presets(midend *me);
236void midend_fetch_preset(midend *me, int n,
eb2ad6f1 237 char **name, game_params **params);
f92acd1a 238int midend_which_preset(midend *me);
dafd6cf6 239int midend_wants_statusbar(midend *me);
821ab2c6 240enum { CFG_SETTINGS, CFG_SEED, CFG_DESC, CFG_FRONTEND_SPECIFIC };
dafd6cf6 241config_item *midend_get_config(midend *me, int which, char **wintitle);
242char *midend_set_config(midend *me, int which, config_item *cfg);
243char *midend_game_id(midend *me, char *id);
244char *midend_get_game_id(midend *me);
fa3abef5 245int midend_can_format_as_text_now(midend *me);
dafd6cf6 246char *midend_text_format(midend *me);
247char *midend_solve(midend *me);
248void midend_supersede_game_desc(midend *me, char *desc, char *privdesc);
249char *midend_rewrite_statusbar(midend *me, char *text);
250void midend_serialise(midend *me,
a4393230 251 void (*write)(void *ctx, void *buf, int len),
252 void *wctx);
dafd6cf6 253char *midend_deserialise(midend *me,
a4393230 254 int (*read)(void *ctx, void *buf, int len),
255 void *rctx);
dafd6cf6 256/* Printing functions supplied by the mid-end */
257char *midend_print_puzzle(midend *me, document *doc, int with_soln);
7f77ea24 258
259/*
720a8fb7 260 * malloc.c
261 */
ab53eb64 262void *smalloc(size_t size);
263void *srealloc(void *p, size_t size);
720a8fb7 264void sfree(void *p);
ab30d7be 265char *dupstr(const char *s);
720a8fb7 266#define snew(type) \
267 ( (type *) smalloc (sizeof (type)) )
268#define snewn(number, type) \
269 ( (type *) smalloc ((number) * sizeof (type)) )
270#define sresize(array, number, type) \
7f77ea24 271 ( (type *) srealloc ((array), (number) * sizeof (type)) )
720a8fb7 272
273/*
4efb3868 274 * misc.c
275 */
077f3cbe 276void free_cfg(config_item *cfg);
74476385 277void obfuscate_bitmap(unsigned char *bmp, int bits, int decode);
278
279/* allocates output each time. len is always in bytes of binary data.
280 * May assert (or just go wrong) if lengths are unchecked. */
281char *bin2hex(const unsigned char *in, int inlen);
282unsigned char *hex2bin(const char *in, int outlen);
283
937a9eff 284/* Sets (and possibly dims) background from frontend default colour,
285 * and auto-generates highlight and lowlight colours too. */
286void game_mkhighlight(frontend *fe, float *ret,
287 int background, int highlight, int lowlight);
de344430 288/* As above, but starts from a provided background colour rather
289 * than the frontend default. */
290void game_mkhighlight_specific(frontend *fe, float *ret,
291 int background, int highlight, int lowlight);
4efb3868 292
c8305fa8 293/* Randomly shuffles an array of items. */
294void shuffle(void *array, int nelts, int eltsize, random_state *rs);
295
dafd6cf6 296/* Draw a rectangle outline, using the drawing API's draw_line. */
297void draw_rect_outline(drawing *dr, int x, int y, int w, int h,
bf7ebf5a 298 int colour);
299
4efb3868 300/*
f1010613 301 * dsf.c
302 */
121aae4b 303int *snew_dsf(int size);
304
305void print_dsf(int *dsf, int size);
306
307/* Return the canonical element of the equivalence class containing element
308 * val. If 'inverse' is non-NULL, this function will put into it a flag
309 * indicating whether the canonical element is inverse to val. */
310int edsf_canonify(int *dsf, int val, int *inverse);
f1010613 311int dsf_canonify(int *dsf, int val);
8b3b3223 312int dsf_size(int *dsf, int val);
121aae4b 313
314/* Allow the caller to specify that two elements should be in the same
315 * equivalence class. If 'inverse' is TRUE, the elements are actually opposite
316 * to one another in some sense. This function will fail an assertion if the
317 * caller gives it self-contradictory data, ie if two elements are claimed to
318 * be both opposite and non-opposite. */
319void edsf_merge(int *dsf, int v1, int v2, int inverse);
f1010613 320void dsf_merge(int *dsf, int v1, int v2);
66a74a18 321void dsf_init(int *dsf, int len);
f1010613 322
323/*
97098757 324 * version.c
325 */
326extern char ver[];
327
328/*
720a8fb7 329 * random.c
330 */
1fbb0680 331random_state *random_new(char *seed, int len);
e9f8a17f 332random_state *random_copy(random_state *tocopy);
48d70ca9 333unsigned long random_bits(random_state *state, int bits);
720a8fb7 334unsigned long random_upto(random_state *state, unsigned long limit);
335void random_free(random_state *state);
c380832d 336char *random_state_encode(random_state *state);
337random_state *random_state_decode(char *input);
7959b517 338/* random.c also exports SHA, which occasionally comes in useful. */
bd2b3071 339#if __STDC_VERSION__ >= 199901L
340#include <stdint.h>
341typedef uint32_t uint32;
342#elif UINT_MAX >= 4294967295L
343typedef unsigned int uint32;
344#else
7959b517 345typedef unsigned long uint32;
bd2b3071 346#endif
7959b517 347typedef struct {
348 uint32 h[5];
349 unsigned char block[64];
350 int blkused;
351 uint32 lenhi, lenlo;
352} SHA_State;
353void SHA_Init(SHA_State *s);
354void SHA_Bytes(SHA_State *s, void *p, int len);
355void SHA_Final(SHA_State *s, unsigned char *output);
356void SHA_Simple(void *p, int len, unsigned char *output);
720a8fb7 357
358/*
dafd6cf6 359 * printing.c
360 */
361document *document_new(int pw, int ph, float userscale);
362void document_free(document *doc);
363void document_add_puzzle(document *doc, const game *game, game_params *par,
364 game_state *st, game_state *st2);
365void document_print(document *doc, drawing *dr);
366
367/*
368 * ps.c
369 */
370psdata *ps_init(FILE *outfile, int colour);
371void ps_free(psdata *ps);
372drawing *ps_drawing_api(psdata *ps);
373
374/*
9b265feb 375 * combi.c: provides a structure and functions for iterating over
376 * combinations (i.e. choosing r things out of n).
377 */
378typedef struct _combi_ctx {
379 int r, n, nleft, total;
380 int *a;
381} combi_ctx;
382
383combi_ctx *new_combi(int r, int n);
384void reset_combi(combi_ctx *combi);
385combi_ctx *next_combi(combi_ctx *combi); /* returns NULL for end */
386void free_combi(combi_ctx *combi);
387
388/*
fbd0fc79 389 * divvy.c
390 */
391/* divides w*h rectangle into pieces of size k. Returns w*h dsf. */
392int *divvy_rectangle(int w, int h, int k, random_state *rs);
393
394/*
be8d5aa1 395 * Data structure containing the function calls and data specific
396 * to a particular game. This is enclosed in a data structure so
397 * that a particular platform can choose, if it wishes, to compile
398 * all the games into a single combined executable rather than
399 * having lots of little ones.
720a8fb7 400 */
be8d5aa1 401struct game {
402 const char *name;
750037d7 403 const char *winhelp_topic, *htmlhelp_topic;
be8d5aa1 404 game_params *(*default_params)(void);
405 int (*fetch_preset)(int i, char **name, game_params **params);
1185e3c5 406 void (*decode_params)(game_params *, char const *string);
407 char *(*encode_params)(game_params *, int full);
be8d5aa1 408 void (*free_params)(game_params *params);
409 game_params *(*dup_params)(game_params *params);
1d228b10 410 int can_configure;
be8d5aa1 411 config_item *(*configure)(game_params *params);
412 game_params *(*custom_params)(config_item *cfg);
3ff276f2 413 char *(*validate_params)(game_params *params, int full);
1185e3c5 414 char *(*new_desc)(game_params *params, random_state *rs,
c566778e 415 char **aux, int interactive);
1185e3c5 416 char *(*validate_desc)(game_params *params, char *desc);
dafd6cf6 417 game_state *(*new_game)(midend *me, game_params *params, char *desc);
be8d5aa1 418 game_state *(*dup_game)(game_state *state);
419 void (*free_game)(game_state *state);
2ac6d24e 420 int can_solve;
df11cd4e 421 char *(*solve)(game_state *orig, game_state *curr,
c566778e 422 char *aux, char **error);
fa3abef5 423 int can_format_as_text_ever;
424 int (*can_format_as_text_now)(game_params *params);
9b4b03d3 425 char *(*text_format)(game_state *state);
be8d5aa1 426 game_ui *(*new_ui)(game_state *state);
427 void (*free_ui)(game_ui *ui);
ae8290c6 428 char *(*encode_ui)(game_ui *ui);
429 void (*decode_ui)(game_ui *ui, char *encoding);
07dfb697 430 void (*changed_state)(game_ui *ui, game_state *oldstate,
431 game_state *newstate);
df11cd4e 432 char *(*interpret_move)(game_state *state, game_ui *ui, game_drawstate *ds,
433 int x, int y, int button);
434 game_state *(*execute_move)(game_state *state, char *move);
1f3ee4ee 435 int preferred_tilesize;
436 void (*compute_size)(game_params *params, int tilesize, int *x, int *y);
dafd6cf6 437 void (*set_size)(drawing *dr, game_drawstate *ds,
438 game_params *params, int tilesize);
8266f3fc 439 float *(*colours)(frontend *fe, int *ncolours);
dafd6cf6 440 game_drawstate *(*new_drawstate)(drawing *dr, game_state *state);
441 void (*free_drawstate)(drawing *dr, game_drawstate *ds);
442 void (*redraw)(drawing *dr, game_drawstate *ds, game_state *oldstate,
be8d5aa1 443 game_state *newstate, int dir, game_ui *ui, float anim_time,
444 float flash_time);
e3f21163 445 float (*anim_length)(game_state *oldstate, game_state *newstate, int dir,
446 game_ui *ui);
447 float (*flash_length)(game_state *oldstate, game_state *newstate, int dir,
448 game_ui *ui);
dafd6cf6 449 int can_print, can_print_in_colour;
450 void (*print_size)(game_params *params, float *x, float *y);
451 void (*print)(drawing *dr, game_state *state, int tilesize);
ac9f41c4 452 int wants_statusbar;
48dcdd62 453 int is_timed;
4d08de49 454 int (*timing_state)(game_state *state, game_ui *ui);
2705d374 455 int flags;
be8d5aa1 456};
457
458/*
dafd6cf6 459 * Data structure containing the drawing API implemented by the
460 * front end and also by cross-platform printing modules such as
461 * PostScript.
462 */
463struct drawing_api {
464 void (*draw_text)(void *handle, int x, int y, int fonttype, int fontsize,
465 int align, int colour, char *text);
466 void (*draw_rect)(void *handle, int x, int y, int w, int h, int colour);
467 void (*draw_line)(void *handle, int x1, int y1, int x2, int y2,
468 int colour);
469 void (*draw_polygon)(void *handle, int *coords, int npoints,
470 int fillcolour, int outlinecolour);
471 void (*draw_circle)(void *handle, int cx, int cy, int radius,
472 int fillcolour, int outlinecolour);
473 void (*draw_update)(void *handle, int x, int y, int w, int h);
474 void (*clip)(void *handle, int x, int y, int w, int h);
475 void (*unclip)(void *handle);
476 void (*start_draw)(void *handle);
477 void (*end_draw)(void *handle);
478 void (*status_bar)(void *handle, char *text);
479 blitter *(*blitter_new)(void *handle, int w, int h);
480 void (*blitter_free)(void *handle, blitter *bl);
481 void (*blitter_save)(void *handle, blitter *bl, int x, int y);
482 void (*blitter_load)(void *handle, blitter *bl, int x, int y);
483 void (*begin_doc)(void *handle, int pages);
484 void (*begin_page)(void *handle, int number);
485 void (*begin_puzzle)(void *handle, float xm, float xc,
486 float ym, float yc, int pw, int ph, float wmm);
487 void (*end_puzzle)(void *handle);
488 void (*end_page)(void *handle, int number);
489 void (*end_doc)(void *handle);
490 void (*line_width)(void *handle, float width);
491};
492
493/*
be8d5aa1 494 * For one-game-at-a-time platforms, there's a single structure
19ef4855 495 * like the above, under a fixed name. For all-at-once platforms,
496 * there's a list of all available puzzles in array form.
be8d5aa1 497 */
19ef4855 498#ifdef COMBINED
499extern const game *gamelist[];
500extern const int gamecount;
501#else
be8d5aa1 502extern const game thegame;
503#endif
720a8fb7 504
505#endif /* PUZZLES_PUZZLES_H */