Prepare to release sgt-puzzles (20170606.272beef-1).
[sgt-puzzles.git] / nestedvm.c
blob79b797116f6d7bd8384b366e7ba40fed5c221d99
1 /*
2 * nestedvm.c: NestedVM front end for my puzzle collection.
3 */
5 #include <stdio.h>
6 #include <assert.h>
7 #include <stdlib.h>
8 #include <time.h>
9 #include <stdarg.h>
10 #include <string.h>
11 #include <errno.h>
13 #include <sys/time.h>
15 #include "puzzles.h"
17 extern void _pause();
18 extern int _call_java(int cmd, int arg1, int arg2, int arg3);
20 void fatal(char *fmt, ...)
22 va_list ap;
23 fprintf(stderr, "fatal error: ");
24 va_start(ap, fmt);
25 vfprintf(stderr, fmt, ap);
26 va_end(ap);
27 fprintf(stderr, "\n");
28 exit(1);
31 struct frontend {
32 // TODO kill unneeded members!
33 midend *me;
34 int timer_active;
35 struct timeval last_time;
36 config_item *cfg;
37 int cfg_which, cfgret;
38 int ox, oy, w, h;
41 static frontend *_fe;
43 void get_random_seed(void **randseed, int *randseedsize)
45 struct timeval *tvp = snew(struct timeval);
46 gettimeofday(tvp, NULL);
47 *randseed = (void *)tvp;
48 *randseedsize = sizeof(struct timeval);
51 void frontend_default_colour(frontend *fe, float *output)
53 output[0] = output[1]= output[2] = 0.8f;
56 void nestedvm_status_bar(void *handle, char *text)
58 _call_java(4,0,(int)text,0);
61 void nestedvm_start_draw(void *handle)
63 frontend *fe = (frontend *)handle;
64 _call_java(5, 0, fe->w, fe->h);
65 _call_java(4, 1, fe->ox, fe->oy);
68 void nestedvm_clip(void *handle, int x, int y, int w, int h)
70 frontend *fe = (frontend *)handle;
71 _call_java(5, w, h, 0);
72 _call_java(4, 3, x + fe->ox, y + fe->oy);
75 void nestedvm_unclip(void *handle)
77 frontend *fe = (frontend *)handle;
78 _call_java(4, 4, fe->ox, fe->oy);
81 void nestedvm_draw_text(void *handle, int x, int y, int fonttype, int fontsize,
82 int align, int colour, char *text)
84 frontend *fe = (frontend *)handle;
85 _call_java(5, x + fe->ox, y + fe->oy,
86 (fonttype == FONT_FIXED ? 0x10 : 0x0) | align);
87 _call_java(7, fontsize, colour, (int)text);
90 void nestedvm_draw_rect(void *handle, int x, int y, int w, int h, int colour)
92 frontend *fe = (frontend *)handle;
93 _call_java(5, w, h, colour);
94 _call_java(4, 5, x + fe->ox, y + fe->oy);
97 void nestedvm_draw_line(void *handle, int x1, int y1, int x2, int y2,
98 int colour)
100 frontend *fe = (frontend *)handle;
101 _call_java(5, x2 + fe->ox, y2 + fe->oy, colour);
102 _call_java(4, 6, x1 + fe->ox, y1 + fe->oy);
105 void nestedvm_draw_poly(void *handle, int *coords, int npoints,
106 int fillcolour, int outlinecolour)
108 frontend *fe = (frontend *)handle;
109 int i;
110 _call_java(4, 7, npoints, 0);
111 for (i = 0; i < npoints; i++) {
112 _call_java(6, i, coords[i*2] + fe->ox, coords[i*2+1] + fe->oy);
114 _call_java(4, 8, outlinecolour, fillcolour);
117 void nestedvm_draw_circle(void *handle, int cx, int cy, int radius,
118 int fillcolour, int outlinecolour)
120 frontend *fe = (frontend *)handle;
121 _call_java(5, cx+fe->ox, cy+fe->oy, radius);
122 _call_java(4, 9, outlinecolour, fillcolour);
125 struct blitter {
126 int handle, w, h, x, y;
129 blitter *nestedvm_blitter_new(void *handle, int w, int h)
131 blitter *bl = snew(blitter);
132 bl->handle = -1;
133 bl->w = w;
134 bl->h = h;
135 return bl;
138 void nestedvm_blitter_free(void *handle, blitter *bl)
140 if (bl->handle != -1)
141 _call_java(4, 11, bl->handle, 0);
142 sfree(bl);
145 void nestedvm_blitter_save(void *handle, blitter *bl, int x, int y)
147 frontend *fe = (frontend *)handle;
148 if (bl->handle == -1)
149 bl->handle = _call_java(4,10,bl->w, bl->h);
150 bl->x = x;
151 bl->y = y;
152 _call_java(8, bl->handle, x + fe->ox, y + fe->oy);
155 void nestedvm_blitter_load(void *handle, blitter *bl, int x, int y)
157 frontend *fe = (frontend *)handle;
158 assert(bl->handle != -1);
159 if (x == BLITTER_FROMSAVED && y == BLITTER_FROMSAVED) {
160 x = bl->x;
161 y = bl->y;
163 _call_java(9, bl->handle, x + fe->ox, y + fe->oy);
166 void nestedvm_end_draw(void *handle)
168 _call_java(4,2,0,0);
171 char *nestedvm_text_fallback(void *handle, const char *const *strings,
172 int nstrings)
175 * We assume Java can cope with any UTF-8 likely to be emitted
176 * by a puzzle.
178 return dupstr(strings[0]);
181 const struct drawing_api nestedvm_drawing = {
182 nestedvm_draw_text,
183 nestedvm_draw_rect,
184 nestedvm_draw_line,
185 nestedvm_draw_poly,
186 nestedvm_draw_circle,
187 NULL, // draw_update,
188 nestedvm_clip,
189 nestedvm_unclip,
190 nestedvm_start_draw,
191 nestedvm_end_draw,
192 nestedvm_status_bar,
193 nestedvm_blitter_new,
194 nestedvm_blitter_free,
195 nestedvm_blitter_save,
196 nestedvm_blitter_load,
197 NULL, NULL, NULL, NULL, NULL, NULL, /* {begin,end}_{doc,page,puzzle} */
198 NULL, NULL, /* line_width, line_dotted */
199 nestedvm_text_fallback,
202 int jcallback_key_event(int x, int y, int keyval)
204 frontend *fe = (frontend *)_fe;
205 if (fe->ox == -1)
206 return 1;
207 if (keyval >= 0 &&
208 !midend_process_key(fe->me, x - fe->ox, y - fe->oy, keyval))
209 return 42;
210 return 1;
213 int jcallback_resize(int width, int height)
215 frontend *fe = (frontend *)_fe;
216 int x, y;
217 x = width;
218 y = height;
219 midend_size(fe->me, &x, &y, TRUE);
220 fe->ox = (width - x) / 2;
221 fe->oy = (height - y) / 2;
222 fe->w = x;
223 fe->h = y;
224 midend_force_redraw(fe->me);
225 return 0;
228 int jcallback_timer_func()
230 frontend *fe = (frontend *)_fe;
231 if (fe->timer_active) {
232 struct timeval now;
233 float elapsed;
234 gettimeofday(&now, NULL);
235 elapsed = ((now.tv_usec - fe->last_time.tv_usec) * 0.000001F +
236 (now.tv_sec - fe->last_time.tv_sec));
237 midend_timer(fe->me, elapsed); /* may clear timer_active */
238 fe->last_time = now;
240 return fe->timer_active;
243 void deactivate_timer(frontend *fe)
245 if (fe->timer_active)
246 _call_java(4, 13, 0, 0);
247 fe->timer_active = FALSE;
250 void activate_timer(frontend *fe)
252 if (!fe->timer_active) {
253 _call_java(4, 12, 0, 0);
254 gettimeofday(&fe->last_time, NULL);
256 fe->timer_active = TRUE;
259 void jcallback_config_ok()
261 frontend *fe = (frontend *)_fe;
262 char *err;
264 err = midend_set_config(fe->me, fe->cfg_which, fe->cfg);
266 if (err)
267 _call_java(2, (int) "Error", (int)err, 1);
268 else {
269 fe->cfgret = TRUE;
273 void jcallback_config_set_string(int item_ptr, int char_ptr) {
274 config_item *i = (config_item *)item_ptr;
275 char* newval = (char*) char_ptr;
276 sfree(i->sval);
277 i->sval = dupstr(newval);
278 free(newval);
281 void jcallback_config_set_boolean(int item_ptr, int selected) {
282 config_item *i = (config_item *)item_ptr;
283 i->ival = selected != 0 ? TRUE : FALSE;
286 void jcallback_config_set_choice(int item_ptr, int selected) {
287 config_item *i = (config_item *)item_ptr;
288 i->ival = selected;
291 static int get_config(frontend *fe, int which)
293 char *title;
294 config_item *i;
295 fe->cfg = midend_get_config(fe->me, which, &title);
296 fe->cfg_which = which;
297 fe->cfgret = FALSE;
298 _call_java(10, (int)title, 0, 0);
299 for (i = fe->cfg; i->type != C_END; i++) {
300 _call_java(5, (int)i, i->type, (int)i->name);
301 _call_java(11, (int)i->sval, i->ival, 0);
303 _call_java(12,0,0,0);
304 free_cfg(fe->cfg);
305 return fe->cfgret;
308 int jcallback_menu_key_event(int key)
310 frontend *fe = (frontend *)_fe;
311 if (!midend_process_key(fe->me, 0, 0, key))
312 return 42;
313 return 0;
316 static void resize_fe(frontend *fe)
318 int x, y;
320 x = INT_MAX;
321 y = INT_MAX;
322 midend_size(fe->me, &x, &y, FALSE);
323 _call_java(3, x, y, 0);
326 int jcallback_preset_event(int ptr_game_params)
328 frontend *fe = (frontend *)_fe;
329 game_params *params =
330 (game_params *)ptr_game_params;
332 midend_set_params(fe->me, params);
333 midend_new_game(fe->me);
334 resize_fe(fe);
335 _call_java(13, midend_which_preset(fe->me), 0, 0);
336 return 0;
339 int jcallback_solve_event()
341 frontend *fe = (frontend *)_fe;
342 char *msg;
344 msg = midend_solve(fe->me);
346 if (msg)
347 _call_java(2, (int) "Error", (int)msg, 1);
348 return 0;
351 int jcallback_restart_event()
353 frontend *fe = (frontend *)_fe;
355 midend_restart_game(fe->me);
356 return 0;
359 int jcallback_config_event(int which)
361 frontend *fe = (frontend *)_fe;
362 _call_java(13, midend_which_preset(fe->me), 0, 0);
363 if (!get_config(fe, which))
364 return 0;
365 midend_new_game(fe->me);
366 resize_fe(fe);
367 _call_java(13, midend_which_preset(fe->me), 0, 0);
368 return 0;
371 int jcallback_about_event()
373 char titlebuf[256];
374 char textbuf[1024];
376 sprintf(titlebuf, "About %.200s", thegame.name);
377 sprintf(textbuf,
378 "%.200s\n\n"
379 "from Simon Tatham's Portable Puzzle Collection\n\n"
380 "%.500s", thegame.name, ver);
381 _call_java(2, (int)&titlebuf, (int)&textbuf, 0);
382 return 0;
385 void preset_menu_populate(struct preset_menu *menu, int menuid)
387 int i;
389 for (i = 0; i < menu->n_entries; i++) {
390 struct preset_menu_entry *entry = &menu->entries[i];
391 if (entry->params) {
392 _call_java(5, (int)entry->params, 0, 0);
393 _call_java(1, (int)entry->title, menuid, entry->id);
394 } else {
395 _call_java(5, 0, 0, 0);
396 _call_java(1, (int)entry->title, menuid, entry->id);
397 preset_menu_populate(entry->submenu, entry->id);
402 int main(int argc, char **argv)
404 int i, n;
405 float* colours;
407 _fe = snew(frontend);
408 _fe->timer_active = FALSE;
409 _fe->me = midend_new(_fe, &thegame, &nestedvm_drawing, _fe);
410 if (argc > 1)
411 midend_game_id(_fe->me, argv[1]); /* ignore failure */
412 midend_new_game(_fe->me);
415 struct preset_menu *menu;
416 int nids, topmenu;
417 menu = midend_get_presets(_fe->me, &nids);
418 topmenu = _call_java(1, 0, nids, 0);
419 preset_menu_populate(menu, topmenu);
422 colours = midend_colours(_fe->me, &n);
423 _fe->ox = -1;
425 _call_java(0, (int)thegame.name,
426 (thegame.can_configure ? 1 : 0) |
427 (midend_wants_statusbar(_fe->me) ? 2 : 0) |
428 (thegame.can_solve ? 4 : 0), n);
429 for (i = 0; i < n; i++) {
430 _call_java(1024+ i,
431 (int)(colours[i*3] * 0xFF),
432 (int)(colours[i*3+1] * 0xFF),
433 (int)(colours[i*3+2] * 0xFF));
435 resize_fe(_fe);
437 _call_java(13, midend_which_preset(_fe->me), 0, 0);
439 // Now pause the vm. The VM will be call()ed when
440 // an input event occurs.
441 _pause();
443 // shut down when the VM is resumed.
444 deactivate_timer(_fe);
445 midend_free(_fe->me);
446 return 0;