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