Small UI bug: LEFT_RELEASEs were being thrown away completely if
[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
ab53eb64 8#include <stdlib.h> /* for size_t */
9
720a8fb7 10#ifndef TRUE
11#define TRUE 1
12#endif
13#ifndef FALSE
14#define FALSE 0
15#endif
16
b2a646f1 17#define PI 3.141592653589793238462643383279502884197169399
18
720a8fb7 19#define lenof(array) ( sizeof(array) / sizeof(*(array)) )
20
1d8e8ad8 21#define STR_INT(x) #x
22#define STR(x) STR_INT(x)
23
ab53eb64 24/* NB not perfect because they evaluate arguments multiple times. */
41184c24 25#ifndef max
ab53eb64 26#define max(x,y) ( (x)>(y) ? (x) : (y) )
41184c24 27#endif /* max */
28#ifndef min
ab53eb64 29#define min(x,y) ( (x)<(y) ? (x) : (y) )
41184c24 30#endif /* min */
ab53eb64 31
720a8fb7 32enum {
ab53eb64 33 LEFT_BUTTON = 0x0200,
720a8fb7 34 MIDDLE_BUTTON,
1482ee76 35 RIGHT_BUTTON,
74a4e547 36 LEFT_DRAG,
37 MIDDLE_DRAG,
38 RIGHT_DRAG,
39 LEFT_RELEASE,
40 MIDDLE_RELEASE,
41 RIGHT_RELEASE,
1482ee76 42 CURSOR_UP,
43 CURSOR_DOWN,
44 CURSOR_LEFT,
c71454c0 45 CURSOR_RIGHT,
3c833d45 46
ab53eb64 47 /* made smaller because of 'limited range of datatype' errors. */
48 MOD_CTRL = 0x1000,
49 MOD_SHFT = 0x2000,
50 MOD_NUM_KEYPAD = 0x4000,
51 MOD_MASK = 0x7000 /* mask for all modifiers */
720a8fb7 52};
53
6776a950 54#define IS_MOUSE_DOWN(m) ( (unsigned)((m) - LEFT_BUTTON) <= \
55 (unsigned)(RIGHT_BUTTON - LEFT_BUTTON))
56#define IS_MOUSE_DRAG(m) ( (unsigned)((m) - LEFT_DRAG) <= \
57 (unsigned)(RIGHT_DRAG - LEFT_DRAG))
58#define IS_MOUSE_RELEASE(m) ( (unsigned)((m) - LEFT_RELEASE) <= \
59 (unsigned)(RIGHT_RELEASE - LEFT_RELEASE))
60
93b1da3d 61/* Bit flags indicating mouse button priorities */
62#define BUTTON_BEATS(x,y) ( 1 << (((x)-LEFT_BUTTON)*3+(y)-LEFT_BUTTON) )
63
4e7ef6e6 64#define IGNOREARG(x) ( (x) = (x) )
7f77ea24 65
2ef96bd6 66typedef struct frontend frontend;
c8230524 67typedef struct config_item config_item;
7f77ea24 68typedef struct midend_data midend_data;
69typedef struct random_state random_state;
70typedef struct game_params game_params;
71typedef struct game_state game_state;
6f2d8d7c 72typedef struct game_aux_info game_aux_info;
74a4e547 73typedef struct game_ui game_ui;
2ef96bd6 74typedef struct game_drawstate game_drawstate;
be8d5aa1 75typedef struct game game;
7f77ea24 76
4efb3868 77#define ALIGN_VNORMAL 0x000
78#define ALIGN_VCENTRE 0x100
79
80#define ALIGN_HLEFT 0x000
81#define ALIGN_HCENTRE 0x001
82#define ALIGN_HRIGHT 0x002
83
84#define FONT_FIXED 0
85#define FONT_VARIABLE 1
86
720a8fb7 87/*
c8230524 88 * Structure used to pass configuration data between frontend and
89 * game
90 */
95709966 91enum { C_STRING, C_CHOICES, C_BOOLEAN, C_END };
c8230524 92struct config_item {
93 /*
94 * `name' is never dynamically allocated.
95 */
96 char *name;
97 /*
98 * `type' contains one of the above values.
99 */
100 int type;
101 /*
95709966 102 * For C_STRING, `sval' is always dynamically allocated and
103 * non-NULL. For C_BOOLEAN and C_END, `sval' is always NULL.
104 * For C_CHOICES, `sval' is non-NULL, _not_ dynamically
105 * allocated, and contains a set of option strings separated by
106 * a delimiter. The delimeter is also the first character in
107 * the string, so for example ":Foo:Bar:Baz" gives three
108 * options `Foo', `Bar' and `Baz'.
c8230524 109 */
110 char *sval;
111 /*
95709966 112 * For C_BOOLEAN, this is TRUE or FALSE. For C_CHOICES, it
c8230524 113 * indicates the chosen index from the `sval' list. In the
114 * above example, 0==Foo, 1==Bar and 2==Baz.
115 */
116 int ival;
117};
118
119/*
720a8fb7 120 * Platform routines
121 */
ab53eb64 122
123#ifdef DEBUG
124#define debug(x) (debug_printf x)
125void debug_printf(char *fmt, ...);
126#else
127#define debug(x)
128#endif
129
720a8fb7 130void fatal(char *fmt, ...);
2ef96bd6 131void frontend_default_colour(frontend *fe, float *output);
4efb3868 132void draw_text(frontend *fe, int x, int y, int fonttype, int fontsize,
133 int align, int colour, char *text);
2ef96bd6 134void draw_rect(frontend *fe, int x, int y, int w, int h, int colour);
135void draw_line(frontend *fe, int x1, int y1, int x2, int y2, int colour);
136void draw_polygon(frontend *fe, int *coords, int npoints,
137 int fill, int colour);
4efb3868 138void clip(frontend *fe, int x, int y, int w, int h);
139void unclip(frontend *fe);
2ef96bd6 140void start_draw(frontend *fe);
141void draw_update(frontend *fe, int x, int y, int w, int h);
142void end_draw(frontend *fe);
143void deactivate_timer(frontend *fe);
144void activate_timer(frontend *fe);
fd1a1a2b 145void status_bar(frontend *fe, char *text);
cbb5549e 146void get_random_seed(void **randseed, int *randseedsize);
720a8fb7 147
148/*
7f77ea24 149 * midend.c
150 */
be8d5aa1 151midend_data *midend_new(frontend *fe, const game *ourgame);
7f77ea24 152void midend_free(midend_data *me);
153void midend_set_params(midend_data *me, game_params *params);
154void midend_size(midend_data *me, int *x, int *y);
5928817c 155void midend_new_game(midend_data *me);
7f77ea24 156void midend_restart_game(midend_data *me);
ab53eb64 157void midend_stop_anim(midend_data *me);
7f77ea24 158int midend_process_key(midend_data *me, int x, int y, int button);
008b4378 159void midend_force_redraw(midend_data *me);
2ef96bd6 160void midend_redraw(midend_data *me);
161float *midend_colours(midend_data *me, int *ncolours);
162void midend_timer(midend_data *me, float tplus);
eb2ad6f1 163int midend_num_presets(midend_data *me);
164void midend_fetch_preset(midend_data *me, int n,
165 char **name, game_params **params);
fd1a1a2b 166int midend_wants_statusbar(midend_data *me);
1185e3c5 167enum { CFG_SETTINGS, CFG_SEED, CFG_DESC };
5928817c 168config_item *midend_get_config(midend_data *me, int which, char **wintitle);
169char *midend_set_config(midend_data *me, int which, config_item *cfg);
1185e3c5 170char *midend_game_id(midend_data *me, char *id);
9b4b03d3 171char *midend_text_format(midend_data *me);
2ac6d24e 172char *midend_solve(midend_data *me);
c380832d 173void midend_supersede_game_desc(midend_data *me, char *desc);
48dcdd62 174char *midend_rewrite_statusbar(midend_data *me, char *text);
7f77ea24 175
176/*
720a8fb7 177 * malloc.c
178 */
ab53eb64 179void *smalloc(size_t size);
180void *srealloc(void *p, size_t size);
720a8fb7 181void sfree(void *p);
ab30d7be 182char *dupstr(const char *s);
720a8fb7 183#define snew(type) \
184 ( (type *) smalloc (sizeof (type)) )
185#define snewn(number, type) \
186 ( (type *) smalloc ((number) * sizeof (type)) )
187#define sresize(array, number, type) \
7f77ea24 188 ( (type *) srealloc ((array), (number) * sizeof (type)) )
720a8fb7 189
190/*
4efb3868 191 * misc.c
192 */
077f3cbe 193void free_cfg(config_item *cfg);
4efb3868 194
195/*
97098757 196 * version.c
197 */
198extern char ver[];
199
200/*
720a8fb7 201 * random.c
202 */
720a8fb7 203random_state *random_init(char *seed, int len);
48d70ca9 204unsigned long random_bits(random_state *state, int bits);
720a8fb7 205unsigned long random_upto(random_state *state, unsigned long limit);
206void random_free(random_state *state);
c380832d 207char *random_state_encode(random_state *state);
208random_state *random_state_decode(char *input);
7959b517 209/* random.c also exports SHA, which occasionally comes in useful. */
210typedef unsigned long uint32;
211typedef struct {
212 uint32 h[5];
213 unsigned char block[64];
214 int blkused;
215 uint32 lenhi, lenlo;
216} SHA_State;
217void SHA_Init(SHA_State *s);
218void SHA_Bytes(SHA_State *s, void *p, int len);
219void SHA_Final(SHA_State *s, unsigned char *output);
220void SHA_Simple(void *p, int len, unsigned char *output);
720a8fb7 221
222/*
be8d5aa1 223 * Data structure containing the function calls and data specific
224 * to a particular game. This is enclosed in a data structure so
225 * that a particular platform can choose, if it wishes, to compile
226 * all the games into a single combined executable rather than
227 * having lots of little ones.
720a8fb7 228 */
be8d5aa1 229struct game {
230 const char *name;
231 const char *winhelp_topic;
be8d5aa1 232 game_params *(*default_params)(void);
233 int (*fetch_preset)(int i, char **name, game_params **params);
1185e3c5 234 void (*decode_params)(game_params *, char const *string);
235 char *(*encode_params)(game_params *, int full);
be8d5aa1 236 void (*free_params)(game_params *params);
237 game_params *(*dup_params)(game_params *params);
1d228b10 238 int can_configure;
be8d5aa1 239 config_item *(*configure)(game_params *params);
240 game_params *(*custom_params)(config_item *cfg);
241 char *(*validate_params)(game_params *params);
1185e3c5 242 char *(*new_desc)(game_params *params, random_state *rs,
6aa6af4c 243 game_aux_info **aux, int interactive);
6f2d8d7c 244 void (*free_aux_info)(game_aux_info *aux);
1185e3c5 245 char *(*validate_desc)(game_params *params, char *desc);
c380832d 246 game_state *(*new_game)(midend_data *me, game_params *params, char *desc);
be8d5aa1 247 game_state *(*dup_game)(game_state *state);
248 void (*free_game)(game_state *state);
2ac6d24e 249 int can_solve;
250 game_state *(*solve)(game_state *state, game_aux_info *aux, char **error);
9b4b03d3 251 int can_format_as_text;
252 char *(*text_format)(game_state *state);
be8d5aa1 253 game_ui *(*new_ui)(game_state *state);
254 void (*free_ui)(game_ui *ui);
c0361acd 255 game_state *(*make_move)(game_state *from, game_ui *ui, game_drawstate *ds,
256 int x, int y, int button);
be8d5aa1 257 void (*size)(game_params *params, int *x, int *y);
258 float *(*colours)(frontend *fe, game_state *state, int *ncolours);
259 game_drawstate *(*new_drawstate)(game_state *state);
260 void (*free_drawstate)(game_drawstate *ds);
261 void (*redraw)(frontend *fe, game_drawstate *ds, game_state *oldstate,
262 game_state *newstate, int dir, game_ui *ui, float anim_time,
263 float flash_time);
e3f21163 264 float (*anim_length)(game_state *oldstate, game_state *newstate, int dir,
265 game_ui *ui);
266 float (*flash_length)(game_state *oldstate, game_state *newstate, int dir,
267 game_ui *ui);
be8d5aa1 268 int (*wants_statusbar)(void);
48dcdd62 269 int is_timed;
270 int (*timing_state)(game_state *state);
93b1da3d 271 int mouse_priorities;
be8d5aa1 272};
273
274/*
275 * For one-game-at-a-time platforms, there's a single structure
19ef4855 276 * like the above, under a fixed name. For all-at-once platforms,
277 * there's a list of all available puzzles in array form.
be8d5aa1 278 */
19ef4855 279#ifdef COMBINED
280extern const game *gamelist[];
281extern const int gamecount;
282#else
be8d5aa1 283extern const game thegame;
284#endif
720a8fb7 285
286#endif /* PUZZLES_PUZZLES_H */