Add missing call to gtk_selection_clear_targets(), without which the
[sgt/puzzles] / gtk.c
1 /*
2 * gtk.c: GTK front end for my puzzle collection.
3 */
4
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>
12
13 #include <sys/time.h>
14
15 #include <gtk/gtk.h>
16 #include <gdk/gdkkeysyms.h>
17
18 #include <gdk-pixbuf/gdk-pixbuf.h>
19
20 #include <gdk/gdkx.h>
21 #include <X11/Xlib.h>
22 #include <X11/Xutil.h>
23 #include <X11/Xatom.h>
24
25 #include "puzzles.h"
26
27 #if GTK_CHECK_VERSION(2,0,0)
28 #define USE_PANGO
29 #endif
30
31 #ifdef DEBUGGING
32 static FILE *debug_fp = NULL;
33
34 void dputs(char *buf)
35 {
36 if (!debug_fp) {
37 debug_fp = fopen("debug.log", "w");
38 }
39
40 fputs(buf, stderr);
41
42 if (debug_fp) {
43 fputs(buf, debug_fp);
44 fflush(debug_fp);
45 }
46 }
47
48 void debug_printf(char *fmt, ...)
49 {
50 char buf[4096];
51 va_list ap;
52
53 va_start(ap, fmt);
54 vsprintf(buf, fmt, ap);
55 dputs(buf);
56 va_end(ap);
57 }
58 #endif
59
60 /* ----------------------------------------------------------------------
61 * Error reporting functions used elsewhere.
62 */
63
64 void fatal(char *fmt, ...)
65 {
66 va_list ap;
67
68 fprintf(stderr, "fatal error: ");
69
70 va_start(ap, fmt);
71 vfprintf(stderr, fmt, ap);
72 va_end(ap);
73
74 fprintf(stderr, "\n");
75 exit(1);
76 }
77
78 /* ----------------------------------------------------------------------
79 * GTK front end to puzzles.
80 */
81
82 static void changed_preset(frontend *fe);
83
84 struct font {
85 #ifdef USE_PANGO
86 PangoFontDescription *desc;
87 #else
88 GdkFont *font;
89 #endif
90 int type;
91 int size;
92 };
93
94 /*
95 * This structure holds all the data relevant to a single window.
96 * In principle this would allow us to open multiple independent
97 * puzzle windows, although I can't currently see any real point in
98 * doing so. I'm just coding cleanly because there's no
99 * particularly good reason not to.
100 */
101 struct frontend {
102 GtkWidget *window;
103 GtkAccelGroup *accelgroup;
104 GtkWidget *area;
105 GtkWidget *statusbar;
106 guint statusctx;
107 GdkPixmap *pixmap;
108 GdkColor *colours;
109 int ncolours;
110 GdkColormap *colmap;
111 int w, h;
112 midend *me;
113 GdkGC *gc;
114 int bbox_l, bbox_r, bbox_u, bbox_d;
115 int timer_active, timer_id;
116 struct timeval last_time;
117 struct font *fonts;
118 int nfonts, fontsize;
119 config_item *cfg;
120 int cfg_which, cfgret;
121 GtkWidget *cfgbox;
122 void *paste_data;
123 int paste_data_len;
124 int pw, ph; /* pixmap size (w, h are area size) */
125 int ox, oy; /* offset of pixmap in drawing area */
126 char *filesel_name;
127 int npresets;
128 GtkWidget **preset_bullets;
129 GtkWidget *preset_custom_bullet;
130 GtkWidget *copy_menu_item;
131 };
132
133 void get_random_seed(void **randseed, int *randseedsize)
134 {
135 struct timeval *tvp = snew(struct timeval);
136 gettimeofday(tvp, NULL);
137 *randseed = (void *)tvp;
138 *randseedsize = sizeof(struct timeval);
139 }
140
141 void frontend_default_colour(frontend *fe, float *output)
142 {
143 GdkColor col = fe->window->style->bg[GTK_STATE_NORMAL];
144 output[0] = col.red / 65535.0;
145 output[1] = col.green / 65535.0;
146 output[2] = col.blue / 65535.0;
147 }
148
149 void gtk_status_bar(void *handle, char *text)
150 {
151 frontend *fe = (frontend *)handle;
152
153 assert(fe->statusbar);
154
155 gtk_statusbar_pop(GTK_STATUSBAR(fe->statusbar), fe->statusctx);
156 gtk_statusbar_push(GTK_STATUSBAR(fe->statusbar), fe->statusctx, text);
157 }
158
159 void gtk_start_draw(void *handle)
160 {
161 frontend *fe = (frontend *)handle;
162 fe->gc = gdk_gc_new(fe->area->window);
163 fe->bbox_l = fe->w;
164 fe->bbox_r = 0;
165 fe->bbox_u = fe->h;
166 fe->bbox_d = 0;
167 }
168
169 void gtk_clip(void *handle, int x, int y, int w, int h)
170 {
171 frontend *fe = (frontend *)handle;
172 GdkRectangle rect;
173
174 rect.x = x;
175 rect.y = y;
176 rect.width = w;
177 rect.height = h;
178
179 gdk_gc_set_clip_rectangle(fe->gc, &rect);
180 }
181
182 void gtk_unclip(void *handle)
183 {
184 frontend *fe = (frontend *)handle;
185 GdkRectangle rect;
186
187 rect.x = 0;
188 rect.y = 0;
189 rect.width = fe->w;
190 rect.height = fe->h;
191
192 gdk_gc_set_clip_rectangle(fe->gc, &rect);
193 }
194
195 void gtk_draw_text(void *handle, int x, int y, int fonttype, int fontsize,
196 int align, int colour, char *text)
197 {
198 frontend *fe = (frontend *)handle;
199 int i;
200
201 /*
202 * Find or create the font.
203 */
204 for (i = 0; i < fe->nfonts; i++)
205 if (fe->fonts[i].type == fonttype && fe->fonts[i].size == fontsize)
206 break;
207
208 if (i == fe->nfonts) {
209 if (fe->fontsize <= fe->nfonts) {
210 fe->fontsize = fe->nfonts + 10;
211 fe->fonts = sresize(fe->fonts, fe->fontsize, struct font);
212 }
213
214 fe->nfonts++;
215
216 fe->fonts[i].type = fonttype;
217 fe->fonts[i].size = fontsize;
218
219 #ifdef USE_PANGO
220 /*
221 * Use Pango to find the closest match to the requested
222 * font.
223 */
224 {
225 PangoFontDescription *fd;
226
227 fd = pango_font_description_new();
228 /* `Monospace' and `Sans' are meta-families guaranteed to exist */
229 pango_font_description_set_family(fd, fonttype == FONT_FIXED ?
230 "Monospace" : "Sans");
231 pango_font_description_set_weight(fd, PANGO_WEIGHT_BOLD);
232 /*
233 * I found some online Pango documentation which
234 * described a function called
235 * pango_font_description_set_absolute_size(), which is
236 * _exactly_ what I want here. Unfortunately, none of
237 * my local Pango installations have it (presumably
238 * they're too old), so I'm going to have to hack round
239 * it by figuring out the point size myself. This
240 * limits me to X and probably also breaks in later
241 * Pango installations, so ideally I should add another
242 * CHECK_VERSION type ifdef and use set_absolute_size
243 * where available. All very annoying.
244 */
245 #ifdef HAVE_SENSIBLE_ABSOLUTE_SIZE_FUNCTION
246 pango_font_description_set_absolute_size(fd, PANGO_SCALE*fontsize);
247 #else
248 {
249 Display *d = GDK_DISPLAY();
250 int s = DefaultScreen(d);
251 double resolution =
252 (PANGO_SCALE * 72.27 / 25.4) *
253 ((double) DisplayWidthMM(d, s) / DisplayWidth (d, s));
254 pango_font_description_set_size(fd, resolution * fontsize);
255 }
256 #endif
257 fe->fonts[i].desc = fd;
258 }
259
260 #else
261 /*
262 * In GTK 1.2, I don't know of any plausible way to
263 * pick a suitable font, so I'm just going to be
264 * tedious.
265 */
266 fe->fonts[i].font = gdk_font_load(fonttype == FONT_FIXED ?
267 "fixed" : "variable");
268 #endif
269
270 }
271
272 /*
273 * Set the colour.
274 */
275 gdk_gc_set_foreground(fe->gc, &fe->colours[colour]);
276
277 #ifdef USE_PANGO
278
279 {
280 PangoLayout *layout;
281 PangoRectangle rect;
282
283 /*
284 * Create a layout.
285 */
286 layout = pango_layout_new(gtk_widget_get_pango_context(fe->area));
287 pango_layout_set_font_description(layout, fe->fonts[i].desc);
288 pango_layout_set_text(layout, text, strlen(text));
289 pango_layout_get_pixel_extents(layout, NULL, &rect);
290
291 if (align & ALIGN_VCENTRE)
292 rect.y -= rect.height / 2;
293 else
294 rect.y -= rect.height;
295
296 if (align & ALIGN_HCENTRE)
297 rect.x -= rect.width / 2;
298 else if (align & ALIGN_HRIGHT)
299 rect.x -= rect.width;
300
301 gdk_draw_layout(fe->pixmap, fe->gc, rect.x + x, rect.y + y, layout);
302
303 g_object_unref(layout);
304 }
305
306 #else
307 /*
308 * Find string dimensions and process alignment.
309 */
310 {
311 int lb, rb, wid, asc, desc;
312
313 /*
314 * Measure vertical string extents with respect to the same
315 * string always...
316 */
317 gdk_string_extents(fe->fonts[i].font,
318 "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
319 &lb, &rb, &wid, &asc, &desc);
320 if (align & ALIGN_VCENTRE)
321 y += asc - (asc+desc)/2;
322 else
323 y += asc;
324
325 /*
326 * ... but horizontal extents with respect to the provided
327 * string. This means that multiple pieces of text centred
328 * on the same y-coordinate don't have different baselines.
329 */
330 gdk_string_extents(fe->fonts[i].font, text,
331 &lb, &rb, &wid, &asc, &desc);
332
333 if (align & ALIGN_HCENTRE)
334 x -= wid / 2;
335 else if (align & ALIGN_HRIGHT)
336 x -= wid;
337
338 }
339
340 /*
341 * Actually draw the text.
342 */
343 gdk_draw_string(fe->pixmap, fe->fonts[i].font, fe->gc, x, y, text);
344 #endif
345
346 }
347
348 void gtk_draw_rect(void *handle, int x, int y, int w, int h, int colour)
349 {
350 frontend *fe = (frontend *)handle;
351 gdk_gc_set_foreground(fe->gc, &fe->colours[colour]);
352 gdk_draw_rectangle(fe->pixmap, fe->gc, 1, x, y, w, h);
353 }
354
355 void gtk_draw_line(void *handle, int x1, int y1, int x2, int y2, int colour)
356 {
357 frontend *fe = (frontend *)handle;
358 gdk_gc_set_foreground(fe->gc, &fe->colours[colour]);
359 gdk_draw_line(fe->pixmap, fe->gc, x1, y1, x2, y2);
360 }
361
362 void gtk_draw_poly(void *handle, int *coords, int npoints,
363 int fillcolour, int outlinecolour)
364 {
365 frontend *fe = (frontend *)handle;
366 GdkPoint *points = snewn(npoints, GdkPoint);
367 int i;
368
369 for (i = 0; i < npoints; i++) {
370 points[i].x = coords[i*2];
371 points[i].y = coords[i*2+1];
372 }
373
374 if (fillcolour >= 0) {
375 gdk_gc_set_foreground(fe->gc, &fe->colours[fillcolour]);
376 gdk_draw_polygon(fe->pixmap, fe->gc, TRUE, points, npoints);
377 }
378 assert(outlinecolour >= 0);
379 gdk_gc_set_foreground(fe->gc, &fe->colours[outlinecolour]);
380
381 /*
382 * In principle we ought to be able to use gdk_draw_polygon for
383 * the outline as well. In fact, it turns out to interact badly
384 * with a clipping region, for no terribly obvious reason, so I
385 * draw the outline as a sequence of lines instead.
386 */
387 for (i = 0; i < npoints; i++)
388 gdk_draw_line(fe->pixmap, fe->gc,
389 points[i].x, points[i].y,
390 points[(i+1)%npoints].x, points[(i+1)%npoints].y);
391
392 sfree(points);
393 }
394
395 void gtk_draw_circle(void *handle, int cx, int cy, int radius,
396 int fillcolour, int outlinecolour)
397 {
398 frontend *fe = (frontend *)handle;
399 if (fillcolour >= 0) {
400 gdk_gc_set_foreground(fe->gc, &fe->colours[fillcolour]);
401 gdk_draw_arc(fe->pixmap, fe->gc, TRUE,
402 cx - radius, cy - radius,
403 2 * radius, 2 * radius, 0, 360 * 64);
404 }
405
406 assert(outlinecolour >= 0);
407 gdk_gc_set_foreground(fe->gc, &fe->colours[outlinecolour]);
408 gdk_draw_arc(fe->pixmap, fe->gc, FALSE,
409 cx - radius, cy - radius,
410 2 * radius, 2 * radius, 0, 360 * 64);
411 }
412
413 struct blitter {
414 GdkPixmap *pixmap;
415 int w, h, x, y;
416 };
417
418 blitter *gtk_blitter_new(void *handle, int w, int h)
419 {
420 /*
421 * We can't create the pixmap right now, because fe->window
422 * might not yet exist. So we just cache w and h and create it
423 * during the firs call to blitter_save.
424 */
425 blitter *bl = snew(blitter);
426 bl->pixmap = NULL;
427 bl->w = w;
428 bl->h = h;
429 return bl;
430 }
431
432 void gtk_blitter_free(void *handle, blitter *bl)
433 {
434 if (bl->pixmap)
435 gdk_pixmap_unref(bl->pixmap);
436 sfree(bl);
437 }
438
439 void gtk_blitter_save(void *handle, blitter *bl, int x, int y)
440 {
441 frontend *fe = (frontend *)handle;
442 if (!bl->pixmap)
443 bl->pixmap = gdk_pixmap_new(fe->area->window, bl->w, bl->h, -1);
444 bl->x = x;
445 bl->y = y;
446 gdk_draw_pixmap(bl->pixmap,
447 fe->area->style->fg_gc[GTK_WIDGET_STATE(fe->area)],
448 fe->pixmap,
449 x, y, 0, 0, bl->w, bl->h);
450 }
451
452 void gtk_blitter_load(void *handle, blitter *bl, int x, int y)
453 {
454 frontend *fe = (frontend *)handle;
455 assert(bl->pixmap);
456 if (x == BLITTER_FROMSAVED && y == BLITTER_FROMSAVED) {
457 x = bl->x;
458 y = bl->y;
459 }
460 gdk_draw_pixmap(fe->pixmap,
461 fe->area->style->fg_gc[GTK_WIDGET_STATE(fe->area)],
462 bl->pixmap,
463 0, 0, x, y, bl->w, bl->h);
464 }
465
466 void gtk_draw_update(void *handle, int x, int y, int w, int h)
467 {
468 frontend *fe = (frontend *)handle;
469 if (fe->bbox_l > x ) fe->bbox_l = x ;
470 if (fe->bbox_r < x+w) fe->bbox_r = x+w;
471 if (fe->bbox_u > y ) fe->bbox_u = y ;
472 if (fe->bbox_d < y+h) fe->bbox_d = y+h;
473 }
474
475 void gtk_end_draw(void *handle)
476 {
477 frontend *fe = (frontend *)handle;
478 gdk_gc_unref(fe->gc);
479 fe->gc = NULL;
480
481 if (fe->bbox_l < fe->bbox_r && fe->bbox_u < fe->bbox_d) {
482 gdk_draw_pixmap(fe->area->window,
483 fe->area->style->fg_gc[GTK_WIDGET_STATE(fe->area)],
484 fe->pixmap,
485 fe->bbox_l, fe->bbox_u,
486 fe->ox + fe->bbox_l, fe->oy + fe->bbox_u,
487 fe->bbox_r - fe->bbox_l, fe->bbox_d - fe->bbox_u);
488 }
489 }
490
491 const struct drawing_api gtk_drawing = {
492 gtk_draw_text,
493 gtk_draw_rect,
494 gtk_draw_line,
495 gtk_draw_poly,
496 gtk_draw_circle,
497 gtk_draw_update,
498 gtk_clip,
499 gtk_unclip,
500 gtk_start_draw,
501 gtk_end_draw,
502 gtk_status_bar,
503 gtk_blitter_new,
504 gtk_blitter_free,
505 gtk_blitter_save,
506 gtk_blitter_load,
507 NULL, NULL, NULL, NULL, NULL, NULL, /* {begin,end}_{doc,page,puzzle} */
508 NULL, /* line_width */
509 };
510
511 static void destroy(GtkWidget *widget, gpointer data)
512 {
513 frontend *fe = (frontend *)data;
514 deactivate_timer(fe);
515 midend_free(fe->me);
516 gtk_main_quit();
517 }
518
519 static gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
520 {
521 frontend *fe = (frontend *)data;
522 int keyval;
523 int shift = (event->state & GDK_SHIFT_MASK) ? MOD_SHFT : 0;
524 int ctrl = (event->state & GDK_CONTROL_MASK) ? MOD_CTRL : 0;
525
526 if (!fe->pixmap)
527 return TRUE;
528
529 #if !GTK_CHECK_VERSION(2,0,0)
530 /* Gtk 1.2 passes a key event to this function even if it's also
531 * defined as an accelerator.
532 * Gtk 2 doesn't do this, and this function appears not to exist there. */
533 if (fe->accelgroup &&
534 gtk_accel_group_get_entry(fe->accelgroup,
535 event->keyval, event->state))
536 return TRUE;
537 #endif
538
539 if (event->keyval == GDK_Up)
540 keyval = shift | ctrl | CURSOR_UP;
541 else if (event->keyval == GDK_KP_Up || event->keyval == GDK_KP_8)
542 keyval = MOD_NUM_KEYPAD | '8';
543 else if (event->keyval == GDK_Down)
544 keyval = shift | ctrl | CURSOR_DOWN;
545 else if (event->keyval == GDK_KP_Down || event->keyval == GDK_KP_2)
546 keyval = MOD_NUM_KEYPAD | '2';
547 else if (event->keyval == GDK_Left)
548 keyval = shift | ctrl | CURSOR_LEFT;
549 else if (event->keyval == GDK_KP_Left || event->keyval == GDK_KP_4)
550 keyval = MOD_NUM_KEYPAD | '4';
551 else if (event->keyval == GDK_Right)
552 keyval = shift | ctrl | CURSOR_RIGHT;
553 else if (event->keyval == GDK_KP_Right || event->keyval == GDK_KP_6)
554 keyval = MOD_NUM_KEYPAD | '6';
555 else if (event->keyval == GDK_KP_Home || event->keyval == GDK_KP_7)
556 keyval = MOD_NUM_KEYPAD | '7';
557 else if (event->keyval == GDK_KP_End || event->keyval == GDK_KP_1)
558 keyval = MOD_NUM_KEYPAD | '1';
559 else if (event->keyval == GDK_KP_Page_Up || event->keyval == GDK_KP_9)
560 keyval = MOD_NUM_KEYPAD | '9';
561 else if (event->keyval == GDK_KP_Page_Down || event->keyval == GDK_KP_3)
562 keyval = MOD_NUM_KEYPAD | '3';
563 else if (event->keyval == GDK_KP_Insert || event->keyval == GDK_KP_0)
564 keyval = MOD_NUM_KEYPAD | '0';
565 else if (event->keyval == GDK_KP_Begin || event->keyval == GDK_KP_5)
566 keyval = MOD_NUM_KEYPAD | '5';
567 else if (event->keyval == GDK_BackSpace ||
568 event->keyval == GDK_Delete ||
569 event->keyval == GDK_KP_Delete)
570 keyval = '\177';
571 else if (event->string[0] && !event->string[1])
572 keyval = (unsigned char)event->string[0];
573 else
574 keyval = -1;
575
576 if (keyval >= 0 &&
577 !midend_process_key(fe->me, 0, 0, keyval))
578 gtk_widget_destroy(fe->window);
579
580 return TRUE;
581 }
582
583 static gint button_event(GtkWidget *widget, GdkEventButton *event,
584 gpointer data)
585 {
586 frontend *fe = (frontend *)data;
587 int button;
588
589 if (!fe->pixmap)
590 return TRUE;
591
592 if (event->type != GDK_BUTTON_PRESS && event->type != GDK_BUTTON_RELEASE)
593 return TRUE;
594
595 if (event->button == 2 || (event->state & GDK_SHIFT_MASK))
596 button = MIDDLE_BUTTON;
597 else if (event->button == 3 || (event->state & GDK_MOD1_MASK))
598 button = RIGHT_BUTTON;
599 else if (event->button == 1)
600 button = LEFT_BUTTON;
601 else
602 return FALSE; /* don't even know what button! */
603
604 if (event->type == GDK_BUTTON_RELEASE)
605 button += LEFT_RELEASE - LEFT_BUTTON;
606
607 if (!midend_process_key(fe->me, event->x - fe->ox,
608 event->y - fe->oy, button))
609 gtk_widget_destroy(fe->window);
610
611 return TRUE;
612 }
613
614 static gint motion_event(GtkWidget *widget, GdkEventMotion *event,
615 gpointer data)
616 {
617 frontend *fe = (frontend *)data;
618 int button;
619
620 if (!fe->pixmap)
621 return TRUE;
622
623 if (event->state & (GDK_BUTTON2_MASK | GDK_SHIFT_MASK))
624 button = MIDDLE_DRAG;
625 else if (event->state & GDK_BUTTON1_MASK)
626 button = LEFT_DRAG;
627 else if (event->state & GDK_BUTTON3_MASK)
628 button = RIGHT_DRAG;
629 else
630 return FALSE; /* don't even know what button! */
631
632 if (!midend_process_key(fe->me, event->x - fe->ox,
633 event->y - fe->oy, button))
634 gtk_widget_destroy(fe->window);
635
636 return TRUE;
637 }
638
639 static gint expose_area(GtkWidget *widget, GdkEventExpose *event,
640 gpointer data)
641 {
642 frontend *fe = (frontend *)data;
643
644 if (fe->pixmap) {
645 gdk_draw_pixmap(widget->window,
646 widget->style->fg_gc[GTK_WIDGET_STATE(widget)],
647 fe->pixmap,
648 event->area.x - fe->ox, event->area.y - fe->oy,
649 event->area.x, event->area.y,
650 event->area.width, event->area.height);
651 }
652 return TRUE;
653 }
654
655 static gint map_window(GtkWidget *widget, GdkEvent *event,
656 gpointer data)
657 {
658 frontend *fe = (frontend *)data;
659
660 /*
661 * Apparently we need to do this because otherwise the status
662 * bar will fail to update immediately. Annoying, but there we
663 * go.
664 */
665 gtk_widget_queue_draw(fe->window);
666
667 return TRUE;
668 }
669
670 static gint configure_area(GtkWidget *widget,
671 GdkEventConfigure *event, gpointer data)
672 {
673 frontend *fe = (frontend *)data;
674 GdkGC *gc;
675 int x, y;
676
677 if (fe->pixmap)
678 gdk_pixmap_unref(fe->pixmap);
679
680 x = fe->w = event->width;
681 y = fe->h = event->height;
682 midend_size(fe->me, &x, &y, TRUE);
683 fe->pw = x;
684 fe->ph = y;
685 fe->ox = (fe->w - fe->pw) / 2;
686 fe->oy = (fe->h - fe->ph) / 2;
687
688 fe->pixmap = gdk_pixmap_new(widget->window, fe->pw, fe->ph, -1);
689
690 gc = gdk_gc_new(fe->area->window);
691 gdk_gc_set_foreground(gc, &fe->colours[0]);
692 gdk_draw_rectangle(fe->pixmap, gc, 1, 0, 0, fe->pw, fe->ph);
693 gdk_draw_rectangle(widget->window, gc, 1, 0, 0,
694 event->width, event->height);
695 gdk_gc_unref(gc);
696
697 midend_force_redraw(fe->me);
698
699 return TRUE;
700 }
701
702 static gint timer_func(gpointer data)
703 {
704 frontend *fe = (frontend *)data;
705
706 if (fe->timer_active) {
707 struct timeval now;
708 float elapsed;
709 gettimeofday(&now, NULL);
710 elapsed = ((now.tv_usec - fe->last_time.tv_usec) * 0.000001F +
711 (now.tv_sec - fe->last_time.tv_sec));
712 midend_timer(fe->me, elapsed); /* may clear timer_active */
713 fe->last_time = now;
714 }
715
716 return fe->timer_active;
717 }
718
719 void deactivate_timer(frontend *fe)
720 {
721 if (!fe)
722 return; /* can happen due to --generate */
723 if (fe->timer_active)
724 gtk_timeout_remove(fe->timer_id);
725 fe->timer_active = FALSE;
726 }
727
728 void activate_timer(frontend *fe)
729 {
730 if (!fe)
731 return; /* can happen due to --generate */
732 if (!fe->timer_active) {
733 fe->timer_id = gtk_timeout_add(20, timer_func, fe);
734 gettimeofday(&fe->last_time, NULL);
735 }
736 fe->timer_active = TRUE;
737 }
738
739 static void window_destroy(GtkWidget *widget, gpointer data)
740 {
741 gtk_main_quit();
742 }
743
744 static void msgbox_button_clicked(GtkButton *button, gpointer data)
745 {
746 GtkWidget *window = GTK_WIDGET(data);
747 int v, *ip;
748
749 ip = (int *)gtk_object_get_data(GTK_OBJECT(window), "user-data");
750 v = GPOINTER_TO_INT(gtk_object_get_data(GTK_OBJECT(button), "user-data"));
751 *ip = v;
752
753 gtk_widget_destroy(GTK_WIDGET(data));
754 }
755
756 static int win_key_press(GtkWidget *widget, GdkEventKey *event, gpointer data)
757 {
758 GtkObject *cancelbutton = GTK_OBJECT(data);
759
760 /*
761 * `Escape' effectively clicks the cancel button
762 */
763 if (event->keyval == GDK_Escape) {
764 gtk_signal_emit_by_name(GTK_OBJECT(cancelbutton), "clicked");
765 return TRUE;
766 }
767
768 return FALSE;
769 }
770
771 enum { MB_OK, MB_YESNO };
772
773 int message_box(GtkWidget *parent, char *title, char *msg, int centre,
774 int type)
775 {
776 GtkWidget *window, *hbox, *text, *button;
777 char *titles;
778 int i, def, cancel;
779
780 window = gtk_dialog_new();
781 text = gtk_label_new(msg);
782 gtk_misc_set_alignment(GTK_MISC(text), 0.0, 0.0);
783 hbox = gtk_hbox_new(FALSE, 0);
784 gtk_box_pack_start(GTK_BOX(hbox), text, FALSE, FALSE, 20);
785 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
786 hbox, FALSE, FALSE, 20);
787 gtk_widget_show(text);
788 gtk_widget_show(hbox);
789 gtk_window_set_title(GTK_WINDOW(window), title);
790 gtk_label_set_line_wrap(GTK_LABEL(text), TRUE);
791
792 if (type == MB_OK) {
793 titles = "OK\0";
794 def = cancel = 0;
795 } else {
796 assert(type == MB_YESNO);
797 titles = "Yes\0No\0";
798 def = 0;
799 cancel = 1;
800 }
801 i = 0;
802
803 while (*titles) {
804 button = gtk_button_new_with_label(titles);
805 gtk_box_pack_end(GTK_BOX(GTK_DIALOG(window)->action_area),
806 button, FALSE, FALSE, 0);
807 gtk_widget_show(button);
808 if (i == def) {
809 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
810 gtk_window_set_default(GTK_WINDOW(window), button);
811 }
812 if (i == cancel) {
813 gtk_signal_connect(GTK_OBJECT(window), "key_press_event",
814 GTK_SIGNAL_FUNC(win_key_press), button);
815 }
816 gtk_signal_connect(GTK_OBJECT(button), "clicked",
817 GTK_SIGNAL_FUNC(msgbox_button_clicked), window);
818 gtk_object_set_data(GTK_OBJECT(button), "user-data",
819 GINT_TO_POINTER(i));
820 titles += strlen(titles)+1;
821 i++;
822 }
823 gtk_object_set_data(GTK_OBJECT(window), "user-data",
824 GINT_TO_POINTER(&i));
825 gtk_signal_connect(GTK_OBJECT(window), "destroy",
826 GTK_SIGNAL_FUNC(window_destroy), NULL);
827 gtk_window_set_modal(GTK_WINDOW(window), TRUE);
828 gtk_window_set_transient_for(GTK_WINDOW(window), GTK_WINDOW(parent));
829 /* set_transient_window_pos(parent, window); */
830 gtk_widget_show(window);
831 i = -1;
832 gtk_main();
833 return (type == MB_YESNO ? i == 0 : TRUE);
834 }
835
836 void error_box(GtkWidget *parent, char *msg)
837 {
838 message_box(parent, "Error", msg, FALSE, MB_OK);
839 }
840
841 static void config_ok_button_clicked(GtkButton *button, gpointer data)
842 {
843 frontend *fe = (frontend *)data;
844 char *err;
845
846 err = midend_set_config(fe->me, fe->cfg_which, fe->cfg);
847
848 if (err)
849 error_box(fe->cfgbox, err);
850 else {
851 fe->cfgret = TRUE;
852 gtk_widget_destroy(fe->cfgbox);
853 changed_preset(fe);
854 }
855 }
856
857 static void config_cancel_button_clicked(GtkButton *button, gpointer data)
858 {
859 frontend *fe = (frontend *)data;
860
861 gtk_widget_destroy(fe->cfgbox);
862 }
863
864 static int editbox_key(GtkWidget *widget, GdkEventKey *event, gpointer data)
865 {
866 /*
867 * GtkEntry has a nasty habit of eating the Return key, which
868 * is unhelpful since it doesn't actually _do_ anything with it
869 * (it calls gtk_widget_activate, but our edit boxes never need
870 * activating). So I catch Return before GtkEntry sees it, and
871 * pass it straight on to the parent widget. Effect: hitting
872 * Return in an edit box will now activate the default button
873 * in the dialog just like it will everywhere else.
874 */
875 if (event->keyval == GDK_Return && widget->parent != NULL) {
876 gint return_val;
877 gtk_signal_emit_stop_by_name(GTK_OBJECT(widget), "key_press_event");
878 gtk_signal_emit_by_name(GTK_OBJECT(widget->parent), "key_press_event",
879 event, &return_val);
880 return return_val;
881 }
882 return FALSE;
883 }
884
885 static void editbox_changed(GtkEditable *ed, gpointer data)
886 {
887 config_item *i = (config_item *)data;
888
889 sfree(i->sval);
890 i->sval = dupstr(gtk_entry_get_text(GTK_ENTRY(ed)));
891 }
892
893 static void button_toggled(GtkToggleButton *tb, gpointer data)
894 {
895 config_item *i = (config_item *)data;
896
897 i->ival = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(tb));
898 }
899
900 static void droplist_sel(GtkMenuItem *item, gpointer data)
901 {
902 config_item *i = (config_item *)data;
903
904 i->ival = GPOINTER_TO_INT(gtk_object_get_data(GTK_OBJECT(item),
905 "user-data"));
906 }
907
908 static int get_config(frontend *fe, int which)
909 {
910 GtkWidget *w, *table, *cancel;
911 char *title;
912 config_item *i;
913 int y;
914
915 fe->cfg = midend_get_config(fe->me, which, &title);
916 fe->cfg_which = which;
917 fe->cfgret = FALSE;
918
919 fe->cfgbox = gtk_dialog_new();
920 gtk_window_set_title(GTK_WINDOW(fe->cfgbox), title);
921 sfree(title);
922
923 w = gtk_button_new_with_label("OK");
924 gtk_box_pack_end(GTK_BOX(GTK_DIALOG(fe->cfgbox)->action_area),
925 w, FALSE, FALSE, 0);
926 gtk_widget_show(w);
927 GTK_WIDGET_SET_FLAGS(w, GTK_CAN_DEFAULT);
928 gtk_window_set_default(GTK_WINDOW(fe->cfgbox), w);
929 gtk_signal_connect(GTK_OBJECT(w), "clicked",
930 GTK_SIGNAL_FUNC(config_ok_button_clicked), fe);
931
932 w = gtk_button_new_with_label("Cancel");
933 gtk_box_pack_end(GTK_BOX(GTK_DIALOG(fe->cfgbox)->action_area),
934 w, FALSE, FALSE, 0);
935 gtk_widget_show(w);
936 gtk_signal_connect(GTK_OBJECT(w), "clicked",
937 GTK_SIGNAL_FUNC(config_cancel_button_clicked), fe);
938 cancel = w;
939
940 table = gtk_table_new(1, 2, FALSE);
941 y = 0;
942 gtk_box_pack_end(GTK_BOX(GTK_DIALOG(fe->cfgbox)->vbox),
943 table, FALSE, FALSE, 0);
944 gtk_widget_show(table);
945
946 for (i = fe->cfg; i->type != C_END; i++) {
947 gtk_table_resize(GTK_TABLE(table), y+1, 2);
948
949 switch (i->type) {
950 case C_STRING:
951 /*
952 * Edit box with a label beside it.
953 */
954
955 w = gtk_label_new(i->name);
956 gtk_misc_set_alignment(GTK_MISC(w), 0.0, 0.5);
957 gtk_table_attach(GTK_TABLE(table), w, 0, 1, y, y+1,
958 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
959 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
960 3, 3);
961 gtk_widget_show(w);
962
963 w = gtk_entry_new();
964 gtk_table_attach(GTK_TABLE(table), w, 1, 2, y, y+1,
965 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
966 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
967 3, 3);
968 gtk_entry_set_text(GTK_ENTRY(w), i->sval);
969 gtk_signal_connect(GTK_OBJECT(w), "changed",
970 GTK_SIGNAL_FUNC(editbox_changed), i);
971 gtk_signal_connect(GTK_OBJECT(w), "key_press_event",
972 GTK_SIGNAL_FUNC(editbox_key), NULL);
973 gtk_widget_show(w);
974
975 break;
976
977 case C_BOOLEAN:
978 /*
979 * Simple checkbox.
980 */
981 w = gtk_check_button_new_with_label(i->name);
982 gtk_signal_connect(GTK_OBJECT(w), "toggled",
983 GTK_SIGNAL_FUNC(button_toggled), i);
984 gtk_table_attach(GTK_TABLE(table), w, 0, 2, y, y+1,
985 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
986 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
987 3, 3);
988 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w), i->ival);
989 gtk_widget_show(w);
990 break;
991
992 case C_CHOICES:
993 /*
994 * Drop-down list (GtkOptionMenu).
995 */
996
997 w = gtk_label_new(i->name);
998 gtk_misc_set_alignment(GTK_MISC(w), 0.0, 0.5);
999 gtk_table_attach(GTK_TABLE(table), w, 0, 1, y, y+1,
1000 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
1001 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
1002 3, 3);
1003 gtk_widget_show(w);
1004
1005 w = gtk_option_menu_new();
1006 gtk_table_attach(GTK_TABLE(table), w, 1, 2, y, y+1,
1007 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
1008 GTK_EXPAND | GTK_SHRINK | GTK_FILL,
1009 3, 3);
1010 gtk_widget_show(w);
1011
1012 {
1013 int c, val;
1014 char *p, *q, *name;
1015 GtkWidget *menuitem;
1016 GtkWidget *menu = gtk_menu_new();
1017
1018 gtk_option_menu_set_menu(GTK_OPTION_MENU(w), menu);
1019
1020 c = *i->sval;
1021 p = i->sval+1;
1022 val = 0;
1023
1024 while (*p) {
1025 q = p;
1026 while (*q && *q != c)
1027 q++;
1028
1029 name = snewn(q-p+1, char);
1030 strncpy(name, p, q-p);
1031 name[q-p] = '\0';
1032
1033 if (*q) q++; /* eat delimiter */
1034
1035 menuitem = gtk_menu_item_new_with_label(name);
1036 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1037 gtk_object_set_data(GTK_OBJECT(menuitem), "user-data",
1038 GINT_TO_POINTER(val));
1039 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1040 GTK_SIGNAL_FUNC(droplist_sel), i);
1041 gtk_widget_show(menuitem);
1042
1043 val++;
1044
1045 p = q;
1046 }
1047
1048 gtk_option_menu_set_history(GTK_OPTION_MENU(w), i->ival);
1049 }
1050
1051 break;
1052 }
1053
1054 y++;
1055 }
1056
1057 gtk_signal_connect(GTK_OBJECT(fe->cfgbox), "destroy",
1058 GTK_SIGNAL_FUNC(window_destroy), NULL);
1059 gtk_signal_connect(GTK_OBJECT(fe->cfgbox), "key_press_event",
1060 GTK_SIGNAL_FUNC(win_key_press), cancel);
1061 gtk_window_set_modal(GTK_WINDOW(fe->cfgbox), TRUE);
1062 gtk_window_set_transient_for(GTK_WINDOW(fe->cfgbox),
1063 GTK_WINDOW(fe->window));
1064 /* set_transient_window_pos(fe->window, fe->cfgbox); */
1065 gtk_widget_show(fe->cfgbox);
1066 gtk_main();
1067
1068 free_cfg(fe->cfg);
1069
1070 return fe->cfgret;
1071 }
1072
1073 static void menu_key_event(GtkMenuItem *menuitem, gpointer data)
1074 {
1075 frontend *fe = (frontend *)data;
1076 int key = GPOINTER_TO_INT(gtk_object_get_data(GTK_OBJECT(menuitem),
1077 "user-data"));
1078 if (!midend_process_key(fe->me, 0, 0, key))
1079 gtk_widget_destroy(fe->window);
1080 }
1081
1082 static void get_size(frontend *fe, int *px, int *py)
1083 {
1084 int x, y;
1085
1086 /*
1087 * Currently I don't want to make the GTK port scale large
1088 * puzzles to fit on the screen. This is because X does permit
1089 * extremely large windows and many window managers provide a
1090 * means of navigating round them, and the users I consulted
1091 * before deciding said that they'd rather have enormous puzzle
1092 * windows spanning multiple screen pages than have them
1093 * shrunk. I could change my mind later or introduce
1094 * configurability; this would be the place to do so, by
1095 * replacing the initial values of x and y with the screen
1096 * dimensions.
1097 */
1098 x = INT_MAX;
1099 y = INT_MAX;
1100 midend_size(fe->me, &x, &y, FALSE);
1101 *px = x;
1102 *py = y;
1103 }
1104
1105 #if !GTK_CHECK_VERSION(2,0,0)
1106 #define gtk_window_resize(win, x, y) \
1107 gdk_window_resize(GTK_WIDGET(win)->window, x, y)
1108 #endif
1109
1110 static void update_menuitem_bullet(GtkWidget *label, int visible)
1111 {
1112 if (visible) {
1113 gtk_label_set_text(GTK_LABEL(label), "\xE2\x80\xA2");
1114 } else {
1115 gtk_label_set_text(GTK_LABEL(label), "");
1116 }
1117 }
1118
1119 /*
1120 * Called when any other code in this file has changed the
1121 * selected game parameters.
1122 */
1123 static void changed_preset(frontend *fe)
1124 {
1125 int n = midend_which_preset(fe->me);
1126 int i;
1127
1128 /*
1129 * Update the tick mark in the Type menu.
1130 */
1131 if (fe->preset_bullets) {
1132 for (i = 0; i < fe->npresets; i++)
1133 update_menuitem_bullet(fe->preset_bullets[i], n == i);
1134 }
1135 if (fe->preset_custom_bullet) {
1136 update_menuitem_bullet(fe->preset_custom_bullet, n < 0);
1137 }
1138
1139 /*
1140 * Update the greying on the Copy menu option.
1141 */
1142 if (fe->copy_menu_item) {
1143 int enabled = midend_can_format_as_text_now(fe->me);
1144 gtk_widget_set_sensitive(fe->copy_menu_item, enabled);
1145 }
1146 }
1147
1148 static void resize_fe(frontend *fe)
1149 {
1150 int x, y;
1151
1152 get_size(fe, &x, &y);
1153 fe->w = x;
1154 fe->h = y;
1155 gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), x, y);
1156 {
1157 GtkRequisition req;
1158 gtk_widget_size_request(GTK_WIDGET(fe->window), &req);
1159 gtk_window_resize(GTK_WINDOW(fe->window), req.width, req.height);
1160 }
1161 /*
1162 * Now that we've established the preferred size of the window,
1163 * reduce the drawing area's size request so the user can shrink
1164 * the window.
1165 */
1166 gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), 1, 1);
1167 }
1168
1169 static void menu_preset_event(GtkMenuItem *menuitem, gpointer data)
1170 {
1171 frontend *fe = (frontend *)data;
1172 game_params *params =
1173 (game_params *)gtk_object_get_data(GTK_OBJECT(menuitem), "user-data");
1174
1175 midend_set_params(fe->me, params);
1176 midend_new_game(fe->me);
1177 changed_preset(fe);
1178 resize_fe(fe);
1179 }
1180
1181 GdkAtom compound_text_atom, utf8_string_atom;
1182 int paste_initialised = FALSE;
1183
1184 void init_paste()
1185 {
1186 unsigned char empty[] = { 0 };
1187
1188 if (paste_initialised)
1189 return;
1190
1191 if (!compound_text_atom)
1192 compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
1193 if (!utf8_string_atom)
1194 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
1195
1196 /*
1197 * Ensure that all the cut buffers exist - according to the
1198 * ICCCM, we must do this before we start using cut buffers.
1199 */
1200 XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1201 XA_CUT_BUFFER0, XA_STRING, 8, PropModeAppend, empty, 0);
1202 XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1203 XA_CUT_BUFFER1, XA_STRING, 8, PropModeAppend, empty, 0);
1204 XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1205 XA_CUT_BUFFER2, XA_STRING, 8, PropModeAppend, empty, 0);
1206 XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1207 XA_CUT_BUFFER3, XA_STRING, 8, PropModeAppend, empty, 0);
1208 XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1209 XA_CUT_BUFFER4, XA_STRING, 8, PropModeAppend, empty, 0);
1210 XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1211 XA_CUT_BUFFER5, XA_STRING, 8, PropModeAppend, empty, 0);
1212 XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1213 XA_CUT_BUFFER6, XA_STRING, 8, PropModeAppend, empty, 0);
1214 XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1215 XA_CUT_BUFFER7, XA_STRING, 8, PropModeAppend, empty, 0);
1216 }
1217
1218 /* Store data in a cut-buffer. */
1219 void store_cutbuffer(char *ptr, int len)
1220 {
1221 /* ICCCM says we must rotate the buffers before storing to buffer 0. */
1222 XRotateBuffers(GDK_DISPLAY(), 1);
1223 XStoreBytes(GDK_DISPLAY(), ptr, len);
1224 }
1225
1226 void write_clip(frontend *fe, char *data)
1227 {
1228 init_paste();
1229
1230 if (fe->paste_data)
1231 sfree(fe->paste_data);
1232
1233 /*
1234 * For this simple application we can safely assume that the
1235 * data passed to this function is pure ASCII, which means we
1236 * can return precisely the same stuff for types STRING,
1237 * COMPOUND_TEXT or UTF8_STRING.
1238 */
1239
1240 fe->paste_data = data;
1241 fe->paste_data_len = strlen(data);
1242
1243 store_cutbuffer(fe->paste_data, fe->paste_data_len);
1244
1245 if (gtk_selection_owner_set(fe->area, GDK_SELECTION_PRIMARY,
1246 CurrentTime)) {
1247 gtk_selection_clear_targets(fe->area, GDK_SELECTION_PRIMARY);
1248 gtk_selection_add_target(fe->area, GDK_SELECTION_PRIMARY,
1249 GDK_SELECTION_TYPE_STRING, 1);
1250 gtk_selection_add_target(fe->area, GDK_SELECTION_PRIMARY,
1251 compound_text_atom, 1);
1252 gtk_selection_add_target(fe->area, GDK_SELECTION_PRIMARY,
1253 utf8_string_atom, 1);
1254 }
1255 }
1256
1257 void selection_get(GtkWidget *widget, GtkSelectionData *seldata,
1258 guint info, guint time_stamp, gpointer data)
1259 {
1260 frontend *fe = (frontend *)data;
1261 gtk_selection_data_set(seldata, seldata->target, 8,
1262 fe->paste_data, fe->paste_data_len);
1263 }
1264
1265 gint selection_clear(GtkWidget *widget, GdkEventSelection *seldata,
1266 gpointer data)
1267 {
1268 frontend *fe = (frontend *)data;
1269
1270 if (fe->paste_data)
1271 sfree(fe->paste_data);
1272 fe->paste_data = NULL;
1273 fe->paste_data_len = 0;
1274 return TRUE;
1275 }
1276
1277 static void menu_copy_event(GtkMenuItem *menuitem, gpointer data)
1278 {
1279 frontend *fe = (frontend *)data;
1280 char *text;
1281
1282 text = midend_text_format(fe->me);
1283
1284 if (text) {
1285 write_clip(fe, text);
1286 } else {
1287 gdk_beep();
1288 }
1289 }
1290
1291 static void filesel_ok(GtkButton *button, gpointer data)
1292 {
1293 frontend *fe = (frontend *)data;
1294
1295 gpointer filesel = gtk_object_get_data(GTK_OBJECT(button), "user-data");
1296
1297 const char *name =
1298 gtk_file_selection_get_filename(GTK_FILE_SELECTION(filesel));
1299
1300 fe->filesel_name = dupstr(name);
1301 }
1302
1303 static char *file_selector(frontend *fe, char *title, int save)
1304 {
1305 GtkWidget *filesel =
1306 gtk_file_selection_new(title);
1307
1308 fe->filesel_name = NULL;
1309
1310 gtk_window_set_modal(GTK_WINDOW(filesel), TRUE);
1311 gtk_object_set_data
1312 (GTK_OBJECT(GTK_FILE_SELECTION(filesel)->ok_button), "user-data",
1313 (gpointer)filesel);
1314 gtk_signal_connect
1315 (GTK_OBJECT(GTK_FILE_SELECTION(filesel)->ok_button), "clicked",
1316 GTK_SIGNAL_FUNC(filesel_ok), fe);
1317 gtk_signal_connect_object
1318 (GTK_OBJECT(GTK_FILE_SELECTION(filesel)->ok_button), "clicked",
1319 GTK_SIGNAL_FUNC(gtk_widget_destroy), (gpointer)filesel);
1320 gtk_signal_connect_object
1321 (GTK_OBJECT(GTK_FILE_SELECTION(filesel)->cancel_button), "clicked",
1322 GTK_SIGNAL_FUNC(gtk_widget_destroy), (gpointer)filesel);
1323 gtk_signal_connect(GTK_OBJECT(filesel), "destroy",
1324 GTK_SIGNAL_FUNC(window_destroy), NULL);
1325 gtk_widget_show(filesel);
1326 gtk_window_set_transient_for(GTK_WINDOW(filesel), GTK_WINDOW(fe->window));
1327 gtk_main();
1328
1329 return fe->filesel_name;
1330 }
1331
1332 struct savefile_write_ctx {
1333 FILE *fp;
1334 int error;
1335 };
1336
1337 static void savefile_write(void *wctx, void *buf, int len)
1338 {
1339 struct savefile_write_ctx *ctx = (struct savefile_write_ctx *)wctx;
1340 if (fwrite(buf, 1, len, ctx->fp) < len)
1341 ctx->error = errno;
1342 }
1343
1344 static int savefile_read(void *wctx, void *buf, int len)
1345 {
1346 FILE *fp = (FILE *)wctx;
1347 int ret;
1348
1349 ret = fread(buf, 1, len, fp);
1350 return (ret == len);
1351 }
1352
1353 static void menu_save_event(GtkMenuItem *menuitem, gpointer data)
1354 {
1355 frontend *fe = (frontend *)data;
1356 char *name;
1357
1358 name = file_selector(fe, "Enter name of game file to save", TRUE);
1359
1360 if (name) {
1361 FILE *fp;
1362
1363 if ((fp = fopen(name, "r")) != NULL) {
1364 char buf[256 + FILENAME_MAX];
1365 fclose(fp);
1366 /* file exists */
1367
1368 sprintf(buf, "Are you sure you want to overwrite the"
1369 " file \"%.*s\"?",
1370 FILENAME_MAX, name);
1371 if (!message_box(fe->window, "Question", buf, TRUE, MB_YESNO))
1372 return;
1373 }
1374
1375 fp = fopen(name, "w");
1376 sfree(name);
1377
1378 if (!fp) {
1379 error_box(fe->window, "Unable to open save file");
1380 return;
1381 }
1382
1383 {
1384 struct savefile_write_ctx ctx;
1385 ctx.fp = fp;
1386 ctx.error = 0;
1387 midend_serialise(fe->me, savefile_write, &ctx);
1388 fclose(fp);
1389 if (ctx.error) {
1390 char boxmsg[512];
1391 sprintf(boxmsg, "Error writing save file: %.400s",
1392 strerror(errno));
1393 error_box(fe->window, boxmsg);
1394 return;
1395 }
1396 }
1397
1398 }
1399 }
1400
1401 static void menu_load_event(GtkMenuItem *menuitem, gpointer data)
1402 {
1403 frontend *fe = (frontend *)data;
1404 char *name, *err;
1405
1406 name = file_selector(fe, "Enter name of saved game file to load", FALSE);
1407
1408 if (name) {
1409 FILE *fp = fopen(name, "r");
1410 sfree(name);
1411
1412 if (!fp) {
1413 error_box(fe->window, "Unable to open saved game file");
1414 return;
1415 }
1416
1417 err = midend_deserialise(fe->me, savefile_read, fp);
1418
1419 fclose(fp);
1420
1421 if (err) {
1422 error_box(fe->window, err);
1423 return;
1424 }
1425
1426 changed_preset(fe);
1427 resize_fe(fe);
1428 }
1429 }
1430
1431 static void menu_solve_event(GtkMenuItem *menuitem, gpointer data)
1432 {
1433 frontend *fe = (frontend *)data;
1434 char *msg;
1435
1436 msg = midend_solve(fe->me);
1437
1438 if (msg)
1439 error_box(fe->window, msg);
1440 }
1441
1442 static void menu_restart_event(GtkMenuItem *menuitem, gpointer data)
1443 {
1444 frontend *fe = (frontend *)data;
1445
1446 midend_restart_game(fe->me);
1447 }
1448
1449 static void menu_config_event(GtkMenuItem *menuitem, gpointer data)
1450 {
1451 frontend *fe = (frontend *)data;
1452 int which = GPOINTER_TO_INT(gtk_object_get_data(GTK_OBJECT(menuitem),
1453 "user-data"));
1454
1455 if (!get_config(fe, which))
1456 return;
1457
1458 midend_new_game(fe->me);
1459 resize_fe(fe);
1460 }
1461
1462 static void menu_about_event(GtkMenuItem *menuitem, gpointer data)
1463 {
1464 frontend *fe = (frontend *)data;
1465 char titlebuf[256];
1466 char textbuf[1024];
1467
1468 sprintf(titlebuf, "About %.200s", thegame.name);
1469 sprintf(textbuf,
1470 "%.200s\n\n"
1471 "from Simon Tatham's Portable Puzzle Collection\n\n"
1472 "%.500s", thegame.name, ver);
1473
1474 message_box(fe->window, titlebuf, textbuf, TRUE, MB_OK);
1475 }
1476
1477 static GtkWidget *add_menu_item_with_key(frontend *fe, GtkContainer *cont,
1478 char *text, int key)
1479 {
1480 GtkWidget *menuitem = gtk_menu_item_new_with_label(text);
1481 int keyqual;
1482 gtk_container_add(cont, menuitem);
1483 gtk_object_set_data(GTK_OBJECT(menuitem), "user-data",
1484 GINT_TO_POINTER(key));
1485 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1486 GTK_SIGNAL_FUNC(menu_key_event), fe);
1487 switch (key & ~0x1F) {
1488 case 0x00:
1489 key += 0x60;
1490 keyqual = GDK_CONTROL_MASK;
1491 break;
1492 case 0x40:
1493 key += 0x20;
1494 keyqual = GDK_SHIFT_MASK;
1495 break;
1496 default:
1497 keyqual = 0;
1498 break;
1499 }
1500 gtk_widget_add_accelerator(menuitem,
1501 "activate", fe->accelgroup,
1502 key, keyqual,
1503 GTK_ACCEL_VISIBLE);
1504 gtk_widget_show(menuitem);
1505 return menuitem;
1506 }
1507
1508 static void add_menu_separator(GtkContainer *cont)
1509 {
1510 GtkWidget *menuitem = gtk_menu_item_new();
1511 gtk_container_add(cont, menuitem);
1512 gtk_widget_show(menuitem);
1513 }
1514
1515 enum { ARG_EITHER, ARG_SAVE, ARG_ID }; /* for argtype */
1516
1517 static GtkWidget *make_preset_menuitem(GtkWidget **bulletlabel,
1518 const char *name)
1519 {
1520 GtkWidget *hbox, *lab1, *lab2, *menuitem;
1521 GtkRequisition req;
1522
1523 hbox = gtk_hbox_new(FALSE, 0);
1524 gtk_widget_show(hbox);
1525 lab1 = gtk_label_new("\xE2\x80\xA2 ");
1526 gtk_widget_show(lab1);
1527 gtk_box_pack_start(GTK_BOX(hbox), lab1, FALSE, FALSE, 0);
1528 gtk_misc_set_alignment(GTK_MISC(lab1), 0.0, 0.0);
1529 lab2 = gtk_label_new(name);
1530 gtk_widget_show(lab2);
1531 gtk_box_pack_start(GTK_BOX(hbox), lab2, TRUE, TRUE, 0);
1532 gtk_misc_set_alignment(GTK_MISC(lab2), 0.0, 0.0);
1533
1534 gtk_widget_size_request(lab1, &req);
1535 gtk_widget_set_usize(lab1, req.width, -1);
1536 gtk_label_set_text(GTK_LABEL(lab1), "");
1537
1538 menuitem = gtk_menu_item_new();
1539 gtk_container_add(GTK_CONTAINER(menuitem), hbox);
1540
1541 *bulletlabel = lab1;
1542 return menuitem;
1543 }
1544
1545 static frontend *new_window(char *arg, int argtype, char **error)
1546 {
1547 frontend *fe;
1548 GtkBox *vbox;
1549 GtkWidget *menubar, *menu, *menuitem;
1550 GdkPixmap *iconpm;
1551 GList *iconlist;
1552 int x, y, n;
1553 char errbuf[1024];
1554 extern char *const *const xpm_icons[];
1555 extern const int n_xpm_icons;
1556
1557 fe = snew(frontend);
1558
1559 fe->timer_active = FALSE;
1560 fe->timer_id = -1;
1561
1562 fe->me = midend_new(fe, &thegame, &gtk_drawing, fe);
1563
1564 if (arg) {
1565 char *err;
1566 FILE *fp;
1567
1568 errbuf[0] = '\0';
1569
1570 switch (argtype) {
1571 case ARG_ID:
1572 err = midend_game_id(fe->me, arg);
1573 if (!err)
1574 midend_new_game(fe->me);
1575 else
1576 sprintf(errbuf, "Invalid game ID: %.800s", err);
1577 break;
1578 case ARG_SAVE:
1579 fp = fopen(arg, "r");
1580 if (!fp) {
1581 sprintf(errbuf, "Error opening file: %.800s", strerror(errno));
1582 } else {
1583 err = midend_deserialise(fe->me, savefile_read, fp);
1584 if (err)
1585 sprintf(errbuf, "Invalid save file: %.800s", err);
1586 fclose(fp);
1587 }
1588 break;
1589 default /*case ARG_EITHER*/:
1590 /*
1591 * First try treating the argument as a game ID.
1592 */
1593 err = midend_game_id(fe->me, arg);
1594 if (!err) {
1595 /*
1596 * It's a valid game ID.
1597 */
1598 midend_new_game(fe->me);
1599 } else {
1600 FILE *fp = fopen(arg, "r");
1601 if (!fp) {
1602 sprintf(errbuf, "Supplied argument is neither a game ID (%.400s)"
1603 " nor a save file (%.400s)", err, strerror(errno));
1604 } else {
1605 err = midend_deserialise(fe->me, savefile_read, fp);
1606 if (err)
1607 sprintf(errbuf, "%.800s", err);
1608 fclose(fp);
1609 }
1610 }
1611 break;
1612 }
1613 if (*errbuf) {
1614 *error = dupstr(errbuf);
1615 midend_free(fe->me);
1616 sfree(fe);
1617 return NULL;
1618 }
1619
1620 } else {
1621 midend_new_game(fe->me);
1622 }
1623
1624 fe->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1625 gtk_window_set_title(GTK_WINDOW(fe->window), thegame.name);
1626
1627 vbox = GTK_BOX(gtk_vbox_new(FALSE, 0));
1628 gtk_container_add(GTK_CONTAINER(fe->window), GTK_WIDGET(vbox));
1629 gtk_widget_show(GTK_WIDGET(vbox));
1630
1631 fe->accelgroup = gtk_accel_group_new();
1632 gtk_window_add_accel_group(GTK_WINDOW(fe->window), fe->accelgroup);
1633
1634 menubar = gtk_menu_bar_new();
1635 gtk_box_pack_start(vbox, menubar, FALSE, FALSE, 0);
1636 gtk_widget_show(menubar);
1637
1638 menuitem = gtk_menu_item_new_with_label("Game");
1639 gtk_container_add(GTK_CONTAINER(menubar), menuitem);
1640 gtk_widget_show(menuitem);
1641
1642 menu = gtk_menu_new();
1643 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), menu);
1644
1645 add_menu_item_with_key(fe, GTK_CONTAINER(menu), "New", 'n');
1646
1647 menuitem = gtk_menu_item_new_with_label("Restart");
1648 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1649 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1650 GTK_SIGNAL_FUNC(menu_restart_event), fe);
1651 gtk_widget_show(menuitem);
1652
1653 menuitem = gtk_menu_item_new_with_label("Specific...");
1654 gtk_object_set_data(GTK_OBJECT(menuitem), "user-data",
1655 GINT_TO_POINTER(CFG_DESC));
1656 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1657 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1658 GTK_SIGNAL_FUNC(menu_config_event), fe);
1659 gtk_widget_show(menuitem);
1660
1661 menuitem = gtk_menu_item_new_with_label("Random Seed...");
1662 gtk_object_set_data(GTK_OBJECT(menuitem), "user-data",
1663 GINT_TO_POINTER(CFG_SEED));
1664 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1665 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1666 GTK_SIGNAL_FUNC(menu_config_event), fe);
1667 gtk_widget_show(menuitem);
1668
1669 if ((n = midend_num_presets(fe->me)) > 0 || thegame.can_configure) {
1670 GtkWidget *submenu;
1671 int i;
1672
1673 menuitem = gtk_menu_item_new_with_label("Type");
1674 gtk_container_add(GTK_CONTAINER(menubar), menuitem);
1675 gtk_widget_show(menuitem);
1676
1677 submenu = gtk_menu_new();
1678 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), submenu);
1679
1680 fe->npresets = n;
1681 fe->preset_bullets = snewn(n, GtkWidget *);
1682
1683 for (i = 0; i < n; i++) {
1684 char *name;
1685 game_params *params;
1686
1687 midend_fetch_preset(fe->me, i, &name, &params);
1688
1689 menuitem = make_preset_menuitem(&fe->preset_bullets[i], name);
1690
1691 gtk_container_add(GTK_CONTAINER(submenu), menuitem);
1692 gtk_object_set_data(GTK_OBJECT(menuitem), "user-data", params);
1693 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1694 GTK_SIGNAL_FUNC(menu_preset_event), fe);
1695 gtk_widget_show(menuitem);
1696 }
1697
1698 if (thegame.can_configure) {
1699 menuitem = make_preset_menuitem(&fe->preset_custom_bullet,
1700 "Custom...");
1701
1702 gtk_container_add(GTK_CONTAINER(submenu), menuitem);
1703 gtk_object_set_data(GTK_OBJECT(menuitem), "user-data",
1704 GPOINTER_TO_INT(CFG_SETTINGS));
1705 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1706 GTK_SIGNAL_FUNC(menu_config_event), fe);
1707 gtk_widget_show(menuitem);
1708 } else
1709 fe->preset_custom_bullet = NULL;
1710
1711 } else {
1712 fe->npresets = 0;
1713 fe->preset_bullets = NULL;
1714 fe->preset_custom_bullet = NULL;
1715 }
1716
1717 add_menu_separator(GTK_CONTAINER(menu));
1718 menuitem = gtk_menu_item_new_with_label("Load...");
1719 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1720 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1721 GTK_SIGNAL_FUNC(menu_load_event), fe);
1722 gtk_widget_show(menuitem);
1723 menuitem = gtk_menu_item_new_with_label("Save...");
1724 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1725 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1726 GTK_SIGNAL_FUNC(menu_save_event), fe);
1727 gtk_widget_show(menuitem);
1728 add_menu_separator(GTK_CONTAINER(menu));
1729 add_menu_item_with_key(fe, GTK_CONTAINER(menu), "Undo", 'u');
1730 add_menu_item_with_key(fe, GTK_CONTAINER(menu), "Redo", 'r');
1731 if (thegame.can_format_as_text_ever) {
1732 add_menu_separator(GTK_CONTAINER(menu));
1733 menuitem = gtk_menu_item_new_with_label("Copy");
1734 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1735 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1736 GTK_SIGNAL_FUNC(menu_copy_event), fe);
1737 gtk_widget_show(menuitem);
1738 fe->copy_menu_item = menuitem;
1739 } else {
1740 fe->copy_menu_item = NULL;
1741 }
1742 if (thegame.can_solve) {
1743 add_menu_separator(GTK_CONTAINER(menu));
1744 menuitem = gtk_menu_item_new_with_label("Solve");
1745 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1746 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1747 GTK_SIGNAL_FUNC(menu_solve_event), fe);
1748 gtk_widget_show(menuitem);
1749 }
1750 add_menu_separator(GTK_CONTAINER(menu));
1751 add_menu_item_with_key(fe, GTK_CONTAINER(menu), "Exit", 'q');
1752
1753 menuitem = gtk_menu_item_new_with_label("Help");
1754 gtk_container_add(GTK_CONTAINER(menubar), menuitem);
1755 gtk_widget_show(menuitem);
1756
1757 menu = gtk_menu_new();
1758 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), menu);
1759
1760 menuitem = gtk_menu_item_new_with_label("About");
1761 gtk_container_add(GTK_CONTAINER(menu), menuitem);
1762 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
1763 GTK_SIGNAL_FUNC(menu_about_event), fe);
1764 gtk_widget_show(menuitem);
1765
1766 changed_preset(fe);
1767
1768 {
1769 int i, ncolours;
1770 float *colours;
1771 gboolean *success;
1772
1773 fe->colmap = gdk_colormap_get_system();
1774 colours = midend_colours(fe->me, &ncolours);
1775 fe->ncolours = ncolours;
1776 fe->colours = snewn(ncolours, GdkColor);
1777 for (i = 0; i < ncolours; i++) {
1778 fe->colours[i].red = colours[i*3] * 0xFFFF;
1779 fe->colours[i].green = colours[i*3+1] * 0xFFFF;
1780 fe->colours[i].blue = colours[i*3+2] * 0xFFFF;
1781 }
1782 success = snewn(ncolours, gboolean);
1783 gdk_colormap_alloc_colors(fe->colmap, fe->colours, ncolours,
1784 FALSE, FALSE, success);
1785 for (i = 0; i < ncolours; i++) {
1786 if (!success[i]) {
1787 g_error("couldn't allocate colour %d (#%02x%02x%02x)\n",
1788 i, fe->colours[i].red >> 8,
1789 fe->colours[i].green >> 8,
1790 fe->colours[i].blue >> 8);
1791 }
1792 }
1793 }
1794
1795 if (midend_wants_statusbar(fe->me)) {
1796 GtkWidget *viewport;
1797 GtkRequisition req;
1798
1799 viewport = gtk_viewport_new(NULL, NULL);
1800 gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_NONE);
1801 fe->statusbar = gtk_statusbar_new();
1802 gtk_container_add(GTK_CONTAINER(viewport), fe->statusbar);
1803 gtk_widget_show(viewport);
1804 gtk_box_pack_end(vbox, viewport, FALSE, FALSE, 0);
1805 gtk_widget_show(fe->statusbar);
1806 fe->statusctx = gtk_statusbar_get_context_id
1807 (GTK_STATUSBAR(fe->statusbar), "game");
1808 gtk_statusbar_push(GTK_STATUSBAR(fe->statusbar), fe->statusctx,
1809 "test");
1810 gtk_widget_size_request(fe->statusbar, &req);
1811 #if 0
1812 /* For GTK 2.0, should we be using gtk_widget_set_size_request? */
1813 #endif
1814 gtk_widget_set_usize(viewport, -1, req.height);
1815 } else
1816 fe->statusbar = NULL;
1817
1818 fe->area = gtk_drawing_area_new();
1819 get_size(fe, &x, &y);
1820 gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), x, y);
1821 fe->w = x;
1822 fe->h = y;
1823
1824 gtk_box_pack_end(vbox, fe->area, TRUE, TRUE, 0);
1825
1826 fe->pixmap = NULL;
1827 fe->fonts = NULL;
1828 fe->nfonts = fe->fontsize = 0;
1829
1830 fe->paste_data = NULL;
1831 fe->paste_data_len = 0;
1832
1833 gtk_signal_connect(GTK_OBJECT(fe->window), "destroy",
1834 GTK_SIGNAL_FUNC(destroy), fe);
1835 gtk_signal_connect(GTK_OBJECT(fe->window), "key_press_event",
1836 GTK_SIGNAL_FUNC(key_event), fe);
1837 gtk_signal_connect(GTK_OBJECT(fe->area), "button_press_event",
1838 GTK_SIGNAL_FUNC(button_event), fe);
1839 gtk_signal_connect(GTK_OBJECT(fe->area), "button_release_event",
1840 GTK_SIGNAL_FUNC(button_event), fe);
1841 gtk_signal_connect(GTK_OBJECT(fe->area), "motion_notify_event",
1842 GTK_SIGNAL_FUNC(motion_event), fe);
1843 gtk_signal_connect(GTK_OBJECT(fe->area), "selection_get",
1844 GTK_SIGNAL_FUNC(selection_get), fe);
1845 gtk_signal_connect(GTK_OBJECT(fe->area), "selection_clear_event",
1846 GTK_SIGNAL_FUNC(selection_clear), fe);
1847 gtk_signal_connect(GTK_OBJECT(fe->area), "expose_event",
1848 GTK_SIGNAL_FUNC(expose_area), fe);
1849 gtk_signal_connect(GTK_OBJECT(fe->window), "map_event",
1850 GTK_SIGNAL_FUNC(map_window), fe);
1851 gtk_signal_connect(GTK_OBJECT(fe->area), "configure_event",
1852 GTK_SIGNAL_FUNC(configure_area), fe);
1853
1854 gtk_widget_add_events(GTK_WIDGET(fe->area),
1855 GDK_BUTTON_PRESS_MASK |
1856 GDK_BUTTON_RELEASE_MASK |
1857 GDK_BUTTON_MOTION_MASK);
1858
1859 if (n_xpm_icons) {
1860 gtk_widget_realize(fe->window);
1861 iconpm = gdk_pixmap_create_from_xpm_d(fe->window->window, NULL,
1862 NULL, (gchar **)xpm_icons[0]);
1863 gdk_window_set_icon(fe->window->window, NULL, iconpm, NULL);
1864 iconlist = NULL;
1865 for (n = 0; n < n_xpm_icons; n++) {
1866 iconlist =
1867 g_list_append(iconlist,
1868 gdk_pixbuf_new_from_xpm_data((const gchar **)
1869 xpm_icons[n]));
1870 }
1871 gdk_window_set_icon_list(fe->window->window, iconlist);
1872 }
1873
1874 gtk_widget_show(fe->area);
1875 gtk_widget_show(fe->window);
1876
1877 /*
1878 * Now that we've established the preferred size of the window,
1879 * reduce the drawing area's size request so the user can shrink
1880 * the window.
1881 */
1882 gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), 1, 1);
1883
1884 gdk_window_set_background(fe->area->window, &fe->colours[0]);
1885 gdk_window_set_background(fe->window->window, &fe->colours[0]);
1886
1887 return fe;
1888 }
1889
1890 char *fgetline(FILE *fp)
1891 {
1892 char *ret = snewn(512, char);
1893 int size = 512, len = 0;
1894 while (fgets(ret + len, size - len, fp)) {
1895 len += strlen(ret + len);
1896 if (ret[len-1] == '\n')
1897 break; /* got a newline, we're done */
1898 size = len + 512;
1899 ret = sresize(ret, size, char);
1900 }
1901 if (len == 0) { /* first fgets returned NULL */
1902 sfree(ret);
1903 return NULL;
1904 }
1905 ret[len] = '\0';
1906 return ret;
1907 }
1908
1909 int main(int argc, char **argv)
1910 {
1911 char *pname = argv[0];
1912 char *error;
1913 int ngenerate = 0, print = FALSE, px = 1, py = 1;
1914 int soln = FALSE, colour = FALSE;
1915 float scale = 1.0F;
1916 float redo_proportion = 0.0F;
1917 char *savefile = NULL, *savesuffix = NULL;
1918 char *arg = NULL;
1919 int argtype = ARG_EITHER;
1920 char *screenshot_file = NULL;
1921 int doing_opts = TRUE;
1922 int ac = argc;
1923 char **av = argv;
1924 char errbuf[500];
1925
1926 /*
1927 * Command line parsing in this function is rather fiddly,
1928 * because GTK wants to have a go at argc/argv _first_ - and
1929 * yet we can't let it, because gtk_init() will bomb out if it
1930 * can't open an X display, whereas in fact we want to permit
1931 * our --generate and --print modes to run without an X
1932 * display.
1933 *
1934 * So what we do is:
1935 * - we parse the command line ourselves, without modifying
1936 * argc/argv
1937 * - if we encounter an error which might plausibly be the
1938 * result of a GTK command line (i.e. not detailed errors in
1939 * particular options of ours) we store the error message
1940 * and terminate parsing.
1941 * - if we got enough out of the command line to know it
1942 * specifies a non-X mode of operation, we either display
1943 * the stored error and return failure, or if there is no
1944 * stored error we do the non-X operation and return
1945 * success.
1946 * - otherwise, we go straight to gtk_init().
1947 */
1948
1949 errbuf[0] = '\0';
1950 while (--ac > 0) {
1951 char *p = *++av;
1952 if (doing_opts && !strcmp(p, "--version")) {
1953 printf("%s, from Simon Tatham's Portable Puzzle Collection\n%s\n",
1954 thegame.name, ver);
1955 return 0;
1956 } else if (doing_opts && !strcmp(p, "--generate")) {
1957 if (--ac > 0) {
1958 ngenerate = atoi(*++av);
1959 if (!ngenerate) {
1960 fprintf(stderr, "%s: '--generate' expected a number\n",
1961 pname);
1962 return 1;
1963 }
1964 } else
1965 ngenerate = 1;
1966 } else if (doing_opts && !strcmp(p, "--save")) {
1967 if (--ac > 0) {
1968 savefile = *++av;
1969 } else {
1970 fprintf(stderr, "%s: '--save' expected a filename\n",
1971 pname);
1972 return 1;
1973 }
1974 } else if (doing_opts && (!strcmp(p, "--save-suffix") ||
1975 !strcmp(p, "--savesuffix"))) {
1976 if (--ac > 0) {
1977 savesuffix = *++av;
1978 } else {
1979 fprintf(stderr, "%s: '--save-suffix' expected a filename\n",
1980 pname);
1981 return 1;
1982 }
1983 } else if (doing_opts && !strcmp(p, "--print")) {
1984 if (!thegame.can_print) {
1985 fprintf(stderr, "%s: this game does not support printing\n",
1986 pname);
1987 return 1;
1988 }
1989 print = TRUE;
1990 if (--ac > 0) {
1991 char *dim = *++av;
1992 if (sscanf(dim, "%dx%d", &px, &py) != 2) {
1993 fprintf(stderr, "%s: unable to parse argument '%s' to "
1994 "'--print'\n", pname, dim);
1995 return 1;
1996 }
1997 } else {
1998 px = py = 1;
1999 }
2000 } else if (doing_opts && !strcmp(p, "--scale")) {
2001 if (--ac > 0) {
2002 scale = atof(*++av);
2003 } else {
2004 fprintf(stderr, "%s: no argument supplied to '--scale'\n",
2005 pname);
2006 return 1;
2007 }
2008 } else if (doing_opts && !strcmp(p, "--redo")) {
2009 /*
2010 * This is an internal option which I don't expect
2011 * users to have any particular use for. The effect of
2012 * --redo is that once the game has been loaded and
2013 * initialised, the next move in the redo chain is
2014 * replayed, and the game screen is redrawn part way
2015 * through the making of the move. This is only
2016 * meaningful if there _is_ a next move in the redo
2017 * chain, which means in turn that this option is only
2018 * useful if you're also passing a save file on the
2019 * command line.
2020 *
2021 * This option is used by the script which generates
2022 * the puzzle icons and website screenshots, and I
2023 * don't imagine it's useful for anything else.
2024 * (Unless, I suppose, users don't like my screenshots
2025 * and want to generate their own in the same way for
2026 * some repackaged version of the puzzles.)
2027 */
2028 if (--ac > 0) {
2029 redo_proportion = atof(*++av);
2030 } else {
2031 fprintf(stderr, "%s: no argument supplied to '--redo'\n",
2032 pname);
2033 return 1;
2034 }
2035 } else if (doing_opts && !strcmp(p, "--screenshot")) {
2036 /*
2037 * Another internal option for the icon building
2038 * script. This causes a screenshot of the central
2039 * drawing area (i.e. not including the menu bar or
2040 * status bar) to be saved to a PNG file once the
2041 * window has been drawn, and then the application
2042 * quits immediately.
2043 */
2044 if (--ac > 0) {
2045 screenshot_file = *++av;
2046 } else {
2047 fprintf(stderr, "%s: no argument supplied to '--screenshot'\n",
2048 pname);
2049 return 1;
2050 }
2051 } else if (doing_opts && (!strcmp(p, "--with-solutions") ||
2052 !strcmp(p, "--with-solution") ||
2053 !strcmp(p, "--with-solns") ||
2054 !strcmp(p, "--with-soln") ||
2055 !strcmp(p, "--solutions") ||
2056 !strcmp(p, "--solution") ||
2057 !strcmp(p, "--solns") ||
2058 !strcmp(p, "--soln"))) {
2059 soln = TRUE;
2060 } else if (doing_opts && !strcmp(p, "--colour")) {
2061 if (!thegame.can_print_in_colour) {
2062 fprintf(stderr, "%s: this game does not support colour"
2063 " printing\n", pname);
2064 return 1;
2065 }
2066 colour = TRUE;
2067 } else if (doing_opts && !strcmp(p, "--load")) {
2068 argtype = ARG_SAVE;
2069 } else if (doing_opts && !strcmp(p, "--game")) {
2070 argtype = ARG_ID;
2071 } else if (doing_opts && !strcmp(p, "--")) {
2072 doing_opts = FALSE;
2073 } else if (!doing_opts || p[0] != '-') {
2074 if (arg) {
2075 fprintf(stderr, "%s: more than one argument supplied\n",
2076 pname);
2077 return 1;
2078 }
2079 arg = p;
2080 } else {
2081 sprintf(errbuf, "%.100s: unrecognised option '%.100s'\n",
2082 pname, p);
2083 break;
2084 }
2085 }
2086
2087 if (*errbuf) {
2088 fputs(errbuf, stderr);
2089 return 1;
2090 }
2091
2092 /*
2093 * Special standalone mode for generating puzzle IDs on the
2094 * command line. Useful for generating puzzles to be printed
2095 * out and solved offline (for puzzles where that even makes
2096 * sense - Solo, for example, is a lot more pencil-and-paper
2097 * friendly than Twiddle!)
2098 *
2099 * Usage:
2100 *
2101 * <puzzle-name> --generate [<n> [<params>]]
2102 *
2103 * <n>, if present, is the number of puzzle IDs to generate.
2104 * <params>, if present, is the same type of parameter string
2105 * you would pass to the puzzle when running it in GUI mode,
2106 * including optional extras such as the expansion factor in
2107 * Rectangles and the difficulty level in Solo.
2108 *
2109 * If you specify <params>, you must also specify <n> (although
2110 * you may specify it to be 1). Sorry; that was the
2111 * simplest-to-parse command-line syntax I came up with.
2112 */
2113 if (ngenerate > 0 || print || savefile || savesuffix) {
2114 int i, n = 1;
2115 midend *me;
2116 char *id;
2117 document *doc = NULL;
2118
2119 n = ngenerate;
2120
2121 me = midend_new(NULL, &thegame, NULL, NULL);
2122 i = 0;
2123
2124 if (savefile && !savesuffix)
2125 savesuffix = "";
2126 if (!savefile && savesuffix)
2127 savefile = "";
2128
2129 if (print)
2130 doc = document_new(px, py, scale);
2131
2132 /*
2133 * In this loop, we either generate a game ID or read one
2134 * from stdin depending on whether we're in generate mode;
2135 * then we either write it to stdout or print it, depending
2136 * on whether we're in print mode. Thus, this loop handles
2137 * generate-to-stdout, print-from-stdin and generate-and-
2138 * immediately-print modes.
2139 *
2140 * (It could also handle a copy-stdin-to-stdout mode,
2141 * although there's currently no combination of options
2142 * which will cause this loop to be activated in that mode.
2143 * It wouldn't be _entirely_ pointless, though, because
2144 * stdin could contain bare params strings or random-seed
2145 * IDs, and stdout would contain nothing but fully
2146 * generated descriptive game IDs.)
2147 */
2148 while (ngenerate == 0 || i < n) {
2149 char *pstr, *err;
2150
2151 if (ngenerate == 0) {
2152 pstr = fgetline(stdin);
2153 if (!pstr)
2154 break;
2155 pstr[strcspn(pstr, "\r\n")] = '\0';
2156 } else {
2157 if (arg) {
2158 pstr = snewn(strlen(arg) + 40, char);
2159
2160 strcpy(pstr, arg);
2161 if (i > 0 && strchr(arg, '#'))
2162 sprintf(pstr + strlen(pstr), "-%d", i);
2163 } else
2164 pstr = NULL;
2165 }
2166
2167 if (pstr) {
2168 err = midend_game_id(me, pstr);
2169 if (err) {
2170 fprintf(stderr, "%s: error parsing '%s': %s\n",
2171 pname, pstr, err);
2172 return 1;
2173 }
2174 }
2175 sfree(pstr);
2176
2177 midend_new_game(me);
2178
2179 if (doc) {
2180 err = midend_print_puzzle(me, doc, soln);
2181 if (err) {
2182 fprintf(stderr, "%s: error in printing: %s\n", pname, err);
2183 return 1;
2184 }
2185 }
2186 if (savefile) {
2187 struct savefile_write_ctx ctx;
2188 char *realname = snewn(40 + strlen(savefile) +
2189 strlen(savesuffix), char);
2190 sprintf(realname, "%s%d%s", savefile, i, savesuffix);
2191 ctx.fp = fopen(realname, "w");
2192 if (!ctx.fp) {
2193 fprintf(stderr, "%s: open: %s\n", realname,
2194 strerror(errno));
2195 return 1;
2196 }
2197 sfree(realname);
2198 midend_serialise(me, savefile_write, &ctx);
2199 if (ctx.error) {
2200 fprintf(stderr, "%s: write: %s\n", realname,
2201 strerror(ctx.error));
2202 return 1;
2203 }
2204 if (fclose(ctx.fp)) {
2205 fprintf(stderr, "%s: close: %s\n", realname,
2206 strerror(errno));
2207 return 1;
2208 }
2209 }
2210 if (!doc && !savefile) {
2211 id = midend_get_game_id(me);
2212 puts(id);
2213 sfree(id);
2214 }
2215
2216 i++;
2217 }
2218
2219 if (doc) {
2220 psdata *ps = ps_init(stdout, colour);
2221 document_print(doc, ps_drawing_api(ps));
2222 document_free(doc);
2223 ps_free(ps);
2224 }
2225
2226 midend_free(me);
2227
2228 return 0;
2229 } else {
2230 frontend *fe;
2231
2232 gtk_init(&argc, &argv);
2233
2234 fe = new_window(arg, argtype, &error);
2235
2236 if (!fe) {
2237 fprintf(stderr, "%s: %s\n", pname, error);
2238 return 1;
2239 }
2240
2241 if (screenshot_file) {
2242 /*
2243 * Some puzzles will not redraw their entire area if
2244 * given a partially completed animation, which means
2245 * we must redraw now and _then_ redraw again after
2246 * freezing the move timer.
2247 */
2248 midend_force_redraw(fe->me);
2249 }
2250
2251 if (redo_proportion) {
2252 /* Start a redo. */
2253 midend_process_key(fe->me, 0, 0, 'r');
2254 /* And freeze the timer at the specified position. */
2255 midend_freeze_timer(fe->me, redo_proportion);
2256 }
2257
2258 if (screenshot_file) {
2259 GdkPixbuf *pb;
2260 GError *gerror = NULL;
2261
2262 midend_redraw(fe->me);
2263
2264 pb = gdk_pixbuf_get_from_drawable(NULL, fe->pixmap,
2265 NULL, 0, 0, 0, 0, -1, -1);
2266 gdk_pixbuf_save(pb, screenshot_file, "png", &gerror, NULL);
2267
2268 exit(0);
2269 }
2270
2271 gtk_main();
2272 }
2273
2274 return 0;
2275 }