Use init and clear for GMutex and GCond
[projects/chimara/chimara.git] / libchimara / chimara-glk.c
1 /* licensing and copyright information here */
2
3 #include <sys/types.h>
4 #include <sys/stat.h>
5 #include <fcntl.h>
6 #include <unistd.h>
7 #include <errno.h>
8 #include <math.h>
9 #include <gtk/gtk.h>
10 #include <config.h>
11 #include <glib/gi18n-lib.h>
12 #include <gmodule.h>
13 #include <pango/pango.h>
14 #include <gio/gio.h>
15 #include "chimara-glk.h"
16 #include "chimara-glk-private.h"
17 #include "chimara-marshallers.h"
18 #include "glk.h"
19 #include "abort.h"
20 #include "stream.h"
21 #include "window.h"
22 #include "glkstart.h"
23 #include "glkunix.h"
24 #include "init.h"
25 #include "magic.h"
26 #include "style.h"
27
28 #define CHIMARA_GLK_MIN_WIDTH 0
29 #define CHIMARA_GLK_MIN_HEIGHT 0
30
31 /**
32  * SECTION:chimara-glk
33  * @short_description: Widget which executes a Glk program
34  * @stability: Unstable
35  * 
36  * The #ChimaraGlk widget opens and runs a Glk program. The program must be
37  * compiled as a plugin module, with a function <function>glk_main()</function>
38  * that the Glk library can hook into.
39  *
40  * On Linux systems, this is a file with a name like 
41  * <filename>plugin.so</filename>. For portability, you can use libtool and 
42  * automake:
43  * |[
44  * pkglib_LTLIBRARIES = plugin.la
45  * plugin_la_SOURCES = plugin.c foo.c bar.c
46  * plugin_la_LDFLAGS = -module -shared -avoid-version -export-symbols-regex "^glk_main$$"
47  * ]|
48  * This will produce <filename>plugin.la</filename> which is a text file 
49  * containing the correct plugin file to open (see the relevant section of the
50  * <ulink 
51  * url="http://www.gnu.org/software/libtool/manual/html_node/Finding-the-dlname.html">
52  * Libtool manual</ulink>).
53  *
54  * You need to initialize multithreading in any program you use a #ChimaraGlk
55  * widget in. This means including the following incantation at the beginning
56  * of your program:
57  * |[
58  * if(!g_thread_supported())
59  *     g_thread_init(NULL);
60  * gdk_threads_init();
61  * ]|
62  * This initialization must take place <emphasis>before</emphasis> the call to
63  * gtk_init(). In addition to this, you must also protect your call to 
64  * gtk_main() by calling gdk_threads_enter() right before it, and 
65  * gdk_threads_leave() right after it.
66  *
67  * The following sample program shows how to initialize and construct a simple 
68  * GTK window that runs a Glk program:
69  * |[
70  * #include <glib.h>
71  * #include <gtk/gtk.h>
72  * #include <libchimara/chimara-glk.h>
73  *
74  * int
75  * main(int argc, char *argv[])
76  * {
77  *     GtkWidget *window, *glk;
78  *     GError *error = NULL;
79  *     gchar *plugin_argv[] = { "plugin.so", "-option" };
80  *
81  *     /<!---->* Initialize threads and GTK *<!---->/
82  *     if(!g_thread_supported())
83  *         g_thread_init(NULL);
84  *     gdk_threads_init();
85  *     gtk_init(&argc, &argv);
86  *     
87  *     /<!---->* Construct the window and its contents. We quit the GTK main loop
88  *      * when the window's close button is clicked. *<!---->/
89  *     window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
90  *     g_signal_connect(window, "delete-event", G_CALLBACK(gtk_main_quit), NULL);
91  *     glk = chimara_glk_new();
92  *     gtk_container_add(GTK_CONTAINER(window), glk);
93  *     gtk_widget_show_all(window);
94  *
95  *     /<!---->* Add a reference to the ChimaraGlk widget, since we want it to
96  *      * persist after the window's delete-event -- otherwise it will be destroyed
97  *      * with the window. *<!---->/
98  *     g_object_ref(glk);
99  *     
100  *     /<!---->* Start the Glk program in a separate thread *<!---->/
101  *     if(!chimara_glk_run(CHIMARA_GLK(glk), "./plugin.so", 2, plugin_argv, &error))
102  *         g_error("Error starting Glk library: %s\n", error->message);
103  *     
104  *     /<!---->* Start the GTK main loop *<!---->/
105  *     gdk_threads_enter();
106  *     gtk_main();
107  *     gdk_threads_leave();
108  *
109  *     /<!---->* After the GTK main loop exits, signal the Glk program to shut down if
110  *      * it is still running, and wait for it to exit. *<!---->/
111  *     chimara_glk_stop(CHIMARA_GLK(glk));
112  *     chimara_glk_wait(CHIMARA_GLK(glk));
113  *     g_object_unref(glk);
114  *
115  *     return 0;
116  * }
117  * ]|
118  */
119
120 typedef void (* glk_main_t) (void);
121 typedef int (* glkunix_startup_code_t) (glkunix_startup_t*);
122
123 enum {
124     PROP_0,
125     PROP_INTERACTIVE,
126     PROP_PROTECT,
127         PROP_SPACING,
128         PROP_PROGRAM_NAME,
129         PROP_PROGRAM_INFO,
130         PROP_STORY_NAME,
131         PROP_RUNNING
132 };
133
134 enum {
135         STOPPED,
136         STARTED,
137         WAITING,
138         CHAR_INPUT,
139         LINE_INPUT,
140         TEXT_BUFFER_OUTPUT,
141         ILIAD_SCREEN_UPDATE,
142
143         LAST_SIGNAL
144 };
145
146 static guint chimara_glk_signals[LAST_SIGNAL] = { 0 };
147
148 G_DEFINE_TYPE(ChimaraGlk, chimara_glk, GTK_TYPE_CONTAINER);
149
150 static void
151 chimara_glk_init(ChimaraGlk *self)
152 {
153         chimara_init(); /* This is a library entry point */
154
155     gtk_widget_set_has_window(GTK_WIDGET(self), FALSE);
156
157     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(self);
158     
159     priv->self = self;
160     priv->interactive = TRUE;
161         priv->styles = g_new0(StyleSet,1);
162         priv->glk_styles = g_new0(StyleSet,1);
163         priv->final_message = g_strdup("[ The game has finished ]");
164     priv->event_queue = g_queue_new();
165         priv->char_input_queue = g_async_queue_new();
166         priv->line_input_queue = g_async_queue_new();
167         /* FIXME Should be g_async_queue_new_full(g_free); but only in GTK >= 2.16 */
168
169         g_mutex_init(&priv->event_lock);
170         g_mutex_init(&priv->abort_lock);
171         g_mutex_init(&priv->shutdown_lock);
172         g_mutex_init(&priv->arrange_lock);
173         g_mutex_init(&priv->resource_lock);
174
175         g_cond_init(&priv->event_queue_not_empty);
176         g_cond_init(&priv->event_queue_not_full);
177         g_cond_init(&priv->shutdown_key_pressed);
178         g_cond_init(&priv->rearranged);
179         g_cond_init(&priv->resource_loaded);
180         g_cond_init(&priv->resource_info_available);
181
182         style_init(self);
183 }
184
185 static void
186 chimara_glk_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
187 {
188     ChimaraGlk *glk = CHIMARA_GLK(object);
189     
190     switch(prop_id) 
191     {
192         case PROP_INTERACTIVE:
193             chimara_glk_set_interactive( glk, g_value_get_boolean(value) );
194             break;
195         case PROP_PROTECT:
196             chimara_glk_set_protect( glk, g_value_get_boolean(value) );
197             break;
198                 case PROP_SPACING:
199                         chimara_glk_set_spacing( glk, g_value_get_uint(value) );
200                         break;
201         default:
202             G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
203     }
204 }
205
206 static void
207 chimara_glk_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
208 {
209     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(object);
210     
211     switch(prop_id)
212     {
213         case PROP_INTERACTIVE:
214             g_value_set_boolean(value, priv->interactive);
215             break;
216         case PROP_PROTECT:
217             g_value_set_boolean(value, priv->protect);
218             break;
219                 case PROP_SPACING:
220                         g_value_set_uint(value, priv->spacing);
221                         break;
222                 case PROP_PROGRAM_NAME:
223                         g_value_set_string(value, priv->program_name);
224                         break;
225                 case PROP_PROGRAM_INFO:
226                         g_value_set_string(value, priv->program_info);
227                         break;
228                 case PROP_STORY_NAME:
229                         g_value_set_string(value, priv->story_name);
230                         break;
231                 case PROP_RUNNING:
232                         g_value_set_boolean(value, priv->running);
233                         break;
234                 default:
235             G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
236     }
237 }
238
239 static void
240 chimara_glk_finalize(GObject *object)
241 {
242     ChimaraGlk *self = CHIMARA_GLK(object);
243         CHIMARA_GLK_USE_PRIVATE(self, priv);
244         priv->after_finalize = TRUE;
245
246         /* Free widget properties */
247         g_free(priv->final_message);
248         /* Free styles */
249         g_hash_table_destroy(priv->styles->text_buffer);
250         g_hash_table_destroy(priv->styles->text_grid);
251         g_hash_table_destroy(priv->glk_styles->text_buffer);
252         g_hash_table_destroy(priv->glk_styles->text_grid);
253
254     /* Free the event queue */
255     g_mutex_lock(&priv->event_lock);
256         g_queue_foreach(priv->event_queue, (GFunc)g_free, NULL);
257         g_queue_free(priv->event_queue);
258         g_cond_clear(&priv->event_queue_not_empty);
259         g_cond_clear(&priv->event_queue_not_full);
260         priv->event_queue = NULL;
261         g_mutex_unlock(&priv->event_lock);
262         g_mutex_clear(&priv->event_lock);
263
264     /* Free the abort signaling mechanism */
265         g_mutex_lock(&priv->abort_lock);
266         /* Make sure no other thread is busy with this */
267         g_mutex_unlock(&priv->abort_lock);
268         g_mutex_clear(&priv->abort_lock);
269
270         /* Free the shutdown keypress signaling mechanism */
271         g_mutex_lock(&priv->shutdown_lock);
272         g_cond_clear(&priv->shutdown_key_pressed);
273         g_mutex_unlock(&priv->shutdown_lock);
274         g_mutex_clear(&priv->shutdown_lock);
275
276         /* Free the window arrangement signaling */
277         g_mutex_lock(&priv->arrange_lock);
278         g_cond_clear(&priv->rearranged);
279         g_mutex_unlock(&priv->arrange_lock);
280         g_mutex_clear(&priv->arrange_lock);
281
282         g_mutex_lock(&priv->resource_lock);
283         g_cond_clear(&priv->resource_loaded);
284         g_cond_clear(&priv->resource_info_available);
285         g_mutex_unlock(&priv->resource_lock);
286         g_mutex_clear(&priv->resource_lock);
287         g_slist_foreach(priv->image_cache, (GFunc)clear_image_cache, NULL);
288         g_slist_free(priv->image_cache);
289         /* Unref input queues (this should destroy them since any Glk thread has stopped by now */
290         g_async_queue_unref(priv->char_input_queue);
291         g_async_queue_unref(priv->line_input_queue);
292         /* Destroy callback data if ownership retained */
293         if(priv->resource_load_callback_destroy_data)
294                 priv->resource_load_callback_destroy_data(priv->resource_load_callback_data);
295         
296         /* Free other stuff */
297         g_free(priv->current_dir);
298         g_free(priv->program_name);
299         g_free(priv->program_info);
300         g_free(priv->story_name);
301         g_free(priv->styles);
302         g_free(priv->glk_styles);
303
304         /* Chain up to parent */
305     G_OBJECT_CLASS(chimara_glk_parent_class)->finalize(object);
306 }
307
308 /* Implementation of get_request_mode(): Always request constant size */
309 static GtkSizeRequestMode
310 chimara_glk_get_request_mode(GtkWidget *widget)
311 {
312         return GTK_SIZE_REQUEST_CONSTANT_SIZE;
313 }
314
315 /* Minimal implementation of width request. Allocation in Glk is
316 strictly top-down, so we just request our current size by returning 1. */
317 static void
318 chimara_glk_get_preferred_width(GtkWidget *widget, int *minimal, int *natural)
319 {
320     g_return_if_fail(widget || CHIMARA_IS_GLK(widget));
321     g_return_if_fail(minimal);
322     g_return_if_fail(natural);
323
324     *minimal = *natural = 1;
325 }
326
327 /* Minimal implementation of height request. Allocation in Glk is
328 strictly top-down, so we just request our current size by returning 1. */
329 static void
330 chimara_glk_get_preferred_height(GtkWidget *widget, int *minimal, int *natural)
331 {
332     g_return_if_fail(widget || CHIMARA_IS_GLK(widget));
333     g_return_if_fail(minimal);
334     g_return_if_fail(natural);
335
336     *minimal = *natural = 1;
337 }
338
339 /* Recursively give the Glk windows their allocated space. Returns a window
340  containing all children of this window that must be redrawn, or NULL if there 
341  are no children that require redrawing. */
342 static winid_t
343 allocate_recurse(winid_t win, GtkAllocation *allocation, guint spacing)
344 {
345         if(win->type == wintype_Pair)
346         {
347                 glui32 division = win->split_method & winmethod_DivisionMask;
348                 glui32 direction = win->split_method & winmethod_DirMask;
349                 unsigned border = ((win->split_method & winmethod_BorderMask) == winmethod_NoBorder)? 0 : spacing;
350
351                 /* If the space gets too small to honor the spacing property, then just 
352                  ignore spacing in this window and below. */
353                 if( (border > allocation->width && (direction == winmethod_Left || direction == winmethod_Right))
354                    || (border > allocation->height && (direction == winmethod_Above || direction == winmethod_Below)) )
355                         border = 0;
356                 
357                 GtkAllocation child1, child2;
358                 child1.x = allocation->x;
359                 child1.y = allocation->y;
360                 
361                 if(division == winmethod_Fixed)
362                 {
363                         /* If the key window has been closed, then default to 0; otherwise
364                          use the key window to determine the size */
365                         switch(direction)
366                         {
367                                 case winmethod_Left:
368                                         child1.width = win->key_window? 
369                                                 CLAMP(win->constraint_size * win->key_window->unit_width, 0, allocation->width - border) 
370                                                 : 0;
371                                         break;
372                                 case winmethod_Right:
373                                         child2.width = win->key_window? 
374                                                 CLAMP(win->constraint_size * win->key_window->unit_width, 0, allocation->width - border)
375                                                 : 0;
376                                         break;
377                                 case winmethod_Above:
378                                         child1.height = win->key_window? 
379                                                 CLAMP(win->constraint_size * win->key_window->unit_height, 0, allocation->height - border)
380                                                 : 0;
381                                         break;
382                                 case winmethod_Below:
383                                         child2.height = win->key_window?
384                                                 CLAMP(win->constraint_size * win->key_window->unit_height, 0, allocation->height - border)
385                                                 : 0;
386                                         break;
387                         }
388                 }
389                 else /* proportional */
390                 {
391                         gdouble fraction = win->constraint_size / 100.0;
392                         switch(direction)
393                         {
394                                 case winmethod_Left:
395                                         child1.width = MAX(0, (gint)ceil(fraction * (allocation->width - border)) );
396                                         break;
397                                 case winmethod_Right:
398                                         child2.width = MAX(0, (gint)ceil(fraction * (allocation->width - border)) );
399                                         break;
400                                 case winmethod_Above:
401                                         child1.height = MAX(0, (gint)ceil(fraction * (allocation->height - border)) );
402                                         break;
403                                 case winmethod_Below:
404                                         child2.height = MAX(0, (gint)ceil(fraction * (allocation->height - border)) );
405                                         break;
406                         }
407                 }
408                 
409                 /* Fill in the rest of the size requisitions according to the child specified above */
410                 switch(direction)
411                 {
412                         case winmethod_Left:
413                                 child2.width = MAX(0, allocation->width - border - child1.width);
414                                 child2.x = child1.x + child1.width + border;
415                                 child2.y = child1.y;
416                                 child1.height = child2.height = allocation->height;
417                                 break;
418                         case winmethod_Right:
419                                 child1.width = MAX(0, allocation->width - border - child2.width);
420                                 child2.x = child1.x + child1.width + border;
421                                 child2.y = child1.y;
422                                 child1.height = child2.height = allocation->height;
423                                 break;
424                         case winmethod_Above:
425                                 child2.height = MAX(0, allocation->height - border - child1.height);
426                                 child2.x = child1.x;
427                                 child2.y = child1.y + child1.height + border;
428                                 child1.width = child2.width = allocation->width;
429                                 break;
430                         case winmethod_Below:
431                                 child1.height = MAX(0, allocation->height - border - child2.height);
432                                 child2.x = child1.x;
433                                 child2.y = child1.y + child1.height + border;
434                                 child1.width = child2.width = allocation->width;
435                                 break;
436                 }
437                 
438                 /* Recurse */
439                 winid_t arrange1 = allocate_recurse(win->window_node->children->data, &child1, spacing);
440                 winid_t arrange2 = allocate_recurse(win->window_node->children->next->data, &child2, spacing);
441                 if(arrange1 == NULL)
442                         return arrange2;
443                 if(arrange2 == NULL)
444                         return arrange1;
445                 return win;
446         }
447         
448         else if(win->type == wintype_TextGrid)
449         {
450                 /* Pass the size allocation on to the framing widget */
451                 gtk_widget_size_allocate(win->frame, allocation);
452                 /* It says in the spec that when a text grid window is resized smaller,
453                  the bottom or right area is thrown away; when it is resized larger, the
454                  bottom or right area is filled with blanks. */
455                 GtkAllocation widget_allocation;
456                 gtk_widget_get_allocation(win->widget, &widget_allocation);
457                 glui32 new_width = (glui32)(widget_allocation.width / win->unit_width);
458                 glui32 new_height = (glui32)(widget_allocation.height / win->unit_height);
459
460                 if(new_width != win->width || new_height != win->height)
461                 {
462                         // Window has changed size, trim or expand the textbuffer if necessary.
463                         GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
464                         GtkTextIter start, end;
465
466                         // Add or remove lines
467                         if(new_height == 0) {
468                                 gtk_text_buffer_get_start_iter(buffer, &start);
469                                 gtk_text_buffer_get_end_iter(buffer, &end);
470                                 gtk_text_buffer_delete(buffer, &start, &end);
471                         }
472                         else if(new_height < win->height)
473                         {
474                                 // Remove surplus lines
475                                 gtk_text_buffer_get_end_iter(buffer, &end);
476                                 gtk_text_buffer_get_iter_at_line(buffer, &start, new_height-1);
477                                 gtk_text_iter_forward_to_line_end(&start);
478                                 gtk_text_buffer_delete(buffer, &start, &end);
479
480                         }
481                         else if(new_height > win->height)
482                         {
483                                 // Add extra lines
484                                 gint lines_to_add = new_height - win->height;
485                                 gtk_text_buffer_get_end_iter(buffer, &end);
486                                 start = end;
487
488                                 gchar *blanks = g_strnfill(win->width, ' ');
489                                 gchar **blanklines = g_new0(gchar *, lines_to_add + 1);
490                                 int count;
491                                 for(count = 0; count < lines_to_add; count++)
492                                         blanklines[count] = blanks;
493                                 blanklines[lines_to_add] = NULL;
494                                 gchar *vertical_blanks = g_strjoinv("\n", blanklines);
495                                 g_free(blanklines); 
496                                 g_free(blanks);
497
498                                 if(win->height > 0) 
499                                         gtk_text_buffer_insert(buffer, &end, "\n", 1);
500
501                                 gtk_text_buffer_insert(buffer, &end, vertical_blanks, -1);
502                         }
503
504                         // Trim or expand lines
505                         if(new_width < win->width) {
506                                 gtk_text_buffer_get_start_iter(buffer, &start);
507                                 end = start;
508
509                                 gint line;
510                                 for(line = 0; line <= new_height; line++) {
511                                         // Trim the line
512                                         gtk_text_iter_forward_cursor_positions(&start, new_width);
513                                         gtk_text_iter_forward_to_line_end(&end);
514                                         gtk_text_buffer_delete(buffer, &start, &end);
515                                         gtk_text_iter_forward_line(&start);
516                                         end = start;
517                                 }
518                         } else if(new_width > win->width) {
519                                 gint chars_to_add = new_width - win->width;
520                                 gchar *horizontal_blanks = g_strnfill(chars_to_add, ' ');
521
522                                 gtk_text_buffer_get_start_iter(buffer, &start);
523                                 end = start;
524
525                                 gint line;
526                                 for(line = 0; line <= new_height; line++) {
527                                         gtk_text_iter_forward_to_line_end(&start);
528                                         end = start;
529                                         gint start_offset = gtk_text_iter_get_offset(&start);
530                                         gtk_text_buffer_insert(buffer, &end, horizontal_blanks, -1);
531                                         gtk_text_buffer_get_iter_at_offset(buffer, &start, start_offset);
532                                         gtk_text_iter_forward_line(&start);
533                                         end = start;
534                                 }
535
536                                 g_free(horizontal_blanks);
537                         }
538                 }
539         
540                 gboolean arrange = !(win->width == new_width && win->height == new_height);
541                 win->width = new_width;
542                 win->height = new_height;
543                 return arrange? win : NULL;
544         }
545         
546         /* For non-pair, non-text-grid windows, just give them the size */
547         gtk_widget_size_allocate(win->frame, allocation);
548         return NULL;
549 }
550
551 /* Overrides gtk_widget_size_allocate */
552 static void
553 chimara_glk_size_allocate(GtkWidget *widget, GtkAllocation *allocation)
554 {
555     g_return_if_fail(widget);
556     g_return_if_fail(allocation);
557     g_return_if_fail(CHIMARA_IS_GLK(widget));
558     
559     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(widget);
560     
561     gtk_widget_set_allocation(widget, allocation);
562
563     if(priv->root_window) {
564                 GtkAllocation child = *allocation;
565                 winid_t arrange = allocate_recurse(priv->root_window->data, &child, priv->spacing);
566
567                 /* arrange points to a window that contains all text grid and graphics
568                  windows which have been resized */
569                 g_mutex_lock(&priv->arrange_lock);
570                 if(!priv->ignore_next_arrange_event)
571                 {
572                         if(arrange)
573                                 event_throw(CHIMARA_GLK(widget), evtype_Arrange, arrange == priv->root_window->data? NULL : arrange, 0, 0);
574                 }
575                 else
576                         priv->ignore_next_arrange_event = FALSE;
577                 priv->needs_rearrange = FALSE;
578                 g_cond_signal(&priv->rearranged);
579                 g_mutex_unlock(&priv->arrange_lock);
580         }
581 }
582
583 /* Recursively invoke callback() on the GtkWidget of each non-pair window in the tree */
584 static void
585 forall_recurse(winid_t win, GtkCallback callback, gpointer callback_data)
586 {
587         if(win->type == wintype_Pair)
588         {
589                 forall_recurse(win->window_node->children->data, callback, callback_data);
590                 forall_recurse(win->window_node->children->next->data, callback, callback_data);
591         }
592         else
593                 (*callback)(win->frame, callback_data);
594 }
595
596 /* Overrides gtk_container_forall */
597 static void
598 chimara_glk_forall(GtkContainer *container, gboolean include_internals, GtkCallback callback, gpointer callback_data)
599 {
600     g_return_if_fail(container);
601     g_return_if_fail(CHIMARA_IS_GLK(container));
602     
603     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(container);
604     
605         /* All the children are "internal" */
606         if(!include_internals)
607                 return;
608         
609     if(priv->root_window)
610                 forall_recurse(priv->root_window->data, callback, callback_data);
611 }
612
613 static void
614 chimara_glk_stopped(ChimaraGlk *self)
615 {
616     CHIMARA_GLK_USE_PRIVATE(self, priv);
617     priv->running = FALSE;
618     priv->program_name = NULL;
619     g_object_notify(G_OBJECT(self), "program-name");
620     priv->program_info = NULL;
621     g_object_notify(G_OBJECT(self), "program-info");
622     priv->story_name = NULL;
623     g_object_notify(G_OBJECT(self), "story-name");
624 }
625
626 static void
627 chimara_glk_started(ChimaraGlk *self)
628 {
629         CHIMARA_GLK_USE_PRIVATE(self, priv);
630         priv->running = TRUE;
631 }
632
633 static void
634 chimara_glk_waiting(ChimaraGlk *self)
635 {
636         /* Default signal handler */
637 }
638
639 static void
640 chimara_glk_char_input(ChimaraGlk *self, guint window_rock, guint keysym)
641 {
642         /* Default signal handler */
643 }
644
645 static void
646 chimara_glk_line_input(ChimaraGlk *self, guint window_rock, gchar *text)
647 {
648         /* Default signal handler */
649 }
650
651 static void
652 chimara_glk_text_buffer_output(ChimaraGlk *self, guint window_rock, gchar *text)
653 {
654         /* Default signal handler */
655 }
656
657 static void
658 chimara_glk_iliad_screen_update(ChimaraGlk *self, gboolean typing)
659 {
660         /* Default signal handler */
661 }
662
663 static void
664 chimara_glk_class_init(ChimaraGlkClass *klass)
665 {
666     /* Override methods of parent classes */
667     GObjectClass *object_class = G_OBJECT_CLASS(klass);
668     object_class->set_property = chimara_glk_set_property;
669     object_class->get_property = chimara_glk_get_property;
670     object_class->finalize = chimara_glk_finalize;
671     
672     GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass);
673     widget_class->get_request_mode = chimara_glk_get_request_mode;
674     widget_class->get_preferred_width = chimara_glk_get_preferred_width;
675     widget_class->get_preferred_height = chimara_glk_get_preferred_height;
676     widget_class->size_allocate = chimara_glk_size_allocate;
677
678     GtkContainerClass *container_class = GTK_CONTAINER_CLASS(klass);
679     container_class->forall = chimara_glk_forall;
680     /* Automatically handle the GtkContainer:border-width property */
681     gtk_container_class_handle_border_width(container_class);
682
683     /* Signals */
684     klass->stopped = chimara_glk_stopped;
685     klass->started = chimara_glk_started;
686     klass->waiting = chimara_glk_waiting;
687     klass->char_input = chimara_glk_char_input;
688     klass->line_input = chimara_glk_line_input;
689     klass->text_buffer_output = chimara_glk_text_buffer_output;
690     klass->iliad_screen_update = chimara_glk_iliad_screen_update;
691
692     /**
693      * ChimaraGlk::stopped:
694      * @glk: The widget that received the signal
695      *
696      * Emitted when the a Glk program finishes executing in the widget, whether
697      * it ended normally, or was interrupted.
698      */ 
699     chimara_glk_signals[STOPPED] = g_signal_new("stopped", 
700         G_OBJECT_CLASS_TYPE(klass), G_SIGNAL_RUN_FIRST, 
701         /* FIXME: Should be G_SIGNAL_RUN_CLEANUP but that segfaults??! */
702         G_STRUCT_OFFSET(ChimaraGlkClass, stopped), NULL, NULL,
703                 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
704         /**
705          * ChimaraGlk::started:
706          * @glk: The widget that received the signal
707          *
708          * Emitted when a Glk program starts executing in the widget.
709          */
710         chimara_glk_signals[STARTED] = g_signal_new ("started",
711                 G_OBJECT_CLASS_TYPE(klass), G_SIGNAL_RUN_FIRST,
712                 G_STRUCT_OFFSET(ChimaraGlkClass, started), NULL, NULL,
713                 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
714         /**
715          * ChimaraGlk::waiting:
716          * @glk: The widget that received the signal
717          * 
718          * Emitted when glk_select() is called by the Glk program and the event
719          * queue is empty, which means that the widget is waiting for input.
720          */
721         chimara_glk_signals[WAITING] = g_signal_new("waiting",
722                 G_OBJECT_CLASS_TYPE(klass), 0,
723                 G_STRUCT_OFFSET(ChimaraGlkClass, waiting), NULL, NULL,
724                 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
725         /**
726          * ChimaraGlk::char-input:
727          * @glk: The widget that received the signal
728          * @window_rock: The rock value of the window that received character input
729          * (see <link linkend="chimara-Rocks">Rocks</link>)
730          * @keysym: The key that was typed, in the form of a key symbol from 
731          * <filename class="headerfile">gdk/gdkkeysyms.h</filename>
732          * 
733          * Emitted when a Glk window receives character input.
734          */
735         chimara_glk_signals[CHAR_INPUT] = g_signal_new("char-input",
736                 G_OBJECT_CLASS_TYPE(klass), 0,
737                 G_STRUCT_OFFSET(ChimaraGlkClass, char_input), NULL, NULL,
738                 _chimara_marshal_VOID__UINT_UINT,
739                 G_TYPE_NONE, 2, G_TYPE_UINT, G_TYPE_UINT);
740         /**
741          * ChimaraGlk::line-input:
742          * @glk: The widget that received the signal
743          * @window_rock: The rock value of the window that received line input (see
744          * <link linkend="chimara-Rocks">Rocks</link>)
745          * @text: The text that was typed
746          * 
747          * Emitted when a Glk window receives line input.
748          */
749         chimara_glk_signals[LINE_INPUT] = g_signal_new("line-input",
750                 G_OBJECT_CLASS_TYPE(klass), 0,
751                 G_STRUCT_OFFSET(ChimaraGlkClass, line_input), NULL, NULL,
752                 _chimara_marshal_VOID__UINT_STRING,
753                 G_TYPE_NONE, 2, G_TYPE_UINT, G_TYPE_STRING);
754         /**
755          * ChimaraGlk::text-buffer-output:
756          * @glk: The widget that received the signal
757          * @window_rock: The rock value of the window that was printed to (see <link
758          * linkend="chimara-Rocks">Rocks</link>)
759          * 
760          * Emitted when text is printed to a text buffer window.
761          */
762         chimara_glk_signals[TEXT_BUFFER_OUTPUT] = g_signal_new("text-buffer-output",
763                 G_OBJECT_CLASS_TYPE(klass), 0,
764                 G_STRUCT_OFFSET(ChimaraGlkClass, text_buffer_output), NULL, NULL,
765                 _chimara_marshal_VOID__UINT_STRING,
766                 G_TYPE_NONE, 2, G_TYPE_UINT, G_TYPE_STRING);
767         /**
768          * ChimaraGlk::iliad-screen-update:
769          * @self: The widget that received the signal
770          * @typing: Whether to perform a typing or full screen update
771          *
772          * Iliad specific signal which is emitted whenever the screen needs to be updated.
773          * Since iliad screen updates are very slow, updating should only be done when
774          * necessary.
775          */
776         chimara_glk_signals[ILIAD_SCREEN_UPDATE] = g_signal_new("iliad-screen-update",
777                 G_OBJECT_CLASS_TYPE(klass), 0,
778                 G_STRUCT_OFFSET(ChimaraGlkClass, iliad_screen_update), NULL, NULL,
779                 _chimara_marshal_VOID__BOOLEAN,
780                 G_TYPE_NONE, 1, G_TYPE_BOOLEAN);
781
782     /* Properties */
783     /**
784      * ChimaraGlk:interactive:
785      *
786      * Sets whether the widget is interactive. A Glk widget is normally 
787      * interactive, but in non-interactive mode, keyboard and mouse input are 
788      * ignored and the Glk program is controlled by 
789      * chimara_glk_feed_char_input() and chimara_glk_feed_line_input(). 
790      * <quote>More</quote> prompts when a lot of text is printed to a text 
791          * buffer are also disabled. This is typically used when you wish to control
792          * an interpreter program by feeding it a predefined list of commands.
793      */
794     g_object_class_install_property( object_class, PROP_INTERACTIVE, 
795                 g_param_spec_boolean("interactive", _("Interactive"),
796         _("Whether user input is expected in the Glk program"),
797         TRUE,
798         G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS) );
799
800         /**
801      * ChimaraGlk:protect:
802      *
803      * Sets whether the Glk program is allowed to do file operations. In protect
804      * mode, all file operations will fail.
805      */
806     g_object_class_install_property(object_class, PROP_PROTECT, 
807                 g_param_spec_boolean("protect", _("Protected"),
808         _("Whether the Glk program is barred from doing file operations"),
809         FALSE,
810         G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS) );
811
812         /**
813          * ChimaraGlk:spacing:
814          *
815          * The amount of space between the Glk windows. This space forms a visible
816          * border between windows; however, if you open a window using the
817          * %winmethod_NoBorder flag, there will be no spacing between it and its
818          * sibling window, no matter what the value of this property is.
819          */
820         g_object_class_install_property(object_class, PROP_SPACING,
821                 g_param_spec_uint("spacing", _("Spacing"),
822                 _("The amount of space between Glk windows"),
823                 0, G_MAXUINT, 0,
824                 G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS) );
825         
826         /**
827          * ChimaraGlk:program-name:
828          *
829          * The name of the currently running Glk program. You cannot set this 
830          * property yourself. It is set to the filename of the plugin when you call
831          * chimara_glk_run(), but the plugin can change it by calling 
832          * garglk_set_program_name(). To find out when this information changes,
833          * for example to put the program name in the title bar of a window, connect
834          * to the <code>::notify::program-name</code> signal.
835          */
836         g_object_class_install_property(object_class, PROP_PROGRAM_NAME,
837                 g_param_spec_string("program-name", _("Program name"),
838                 _("Name of the currently running program"),
839                 NULL,
840                 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS) );
841                 
842         /**
843          * ChimaraGlk:program-info:
844          *
845          * Information about the currently running Glk program. You cannot set this
846          * property yourself. The plugin can change it by calling
847          * garglk_set_program_info(). See also #ChimaraGlk:program-name.
848          */
849         g_object_class_install_property(object_class, PROP_PROGRAM_INFO,
850                 g_param_spec_string("program-info", _("Program info"),
851                 _("Information about the currently running program"),
852                 NULL,
853                 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS) );
854         
855         /**
856          * ChimaraGlk:story-name:
857          *
858          * The name of the story currently running in the Glk interpreter. You
859          * cannot set this property yourself. It is set to the story filename when
860          * you call chimara_if_run_game(), but the plugin can change it by calling
861          * garglk_set_story_name().
862          *
863          * Strictly speaking, this should be a property of #ChimaraIF, but it is
864          * legal for any Glk program to call garglk_set_story_name(), even if it is
865          * not an interpreter and does not load story files.
866          */
867         g_object_class_install_property(object_class, PROP_STORY_NAME,
868                 g_param_spec_string("story-name", _("Story name"),
869                 _("Name of the story currently loaded in the interpreter"),
870                 NULL,
871                 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS) );
872         
873         /**
874          * ChimaraGlk:running:
875          *
876          * Whether this Glk widget is currently running a game or not.
877          */
878         g_object_class_install_property(object_class, PROP_RUNNING,
879                 g_param_spec_boolean("running", _("Running"),
880                 _("Whether there is a program currently running"),
881                 FALSE,
882                 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS) );
883
884         /* Private data */
885     g_type_class_add_private(klass, sizeof(ChimaraGlkPrivate));
886 }
887
888 /* PUBLIC FUNCTIONS */
889
890 /**
891  * chimara_error_quark:
892  *
893  * The error domain for errors from Chimara widgets.
894  *
895  * Returns: The string <quote>chimara-error-quark</quote> as a <link 
896  * linkend="GQuark">GQuark</link>.
897  */
898 GQuark
899 chimara_error_quark(void)
900 {
901         chimara_init(); /* This is a library entry point */
902         return g_quark_from_static_string("chimara-error-quark");
903 }
904
905 /**
906  * chimara_glk_new:
907  *
908  * Creates and initializes a new #ChimaraGlk widget.
909  *
910  * Return value: a #ChimaraGlk widget, with a floating reference.
911  */
912 GtkWidget *
913 chimara_glk_new(void)
914 {
915         /* This is a library entry point; initialize the library */
916         chimara_init();
917
918     return GTK_WIDGET(g_object_new(CHIMARA_TYPE_GLK, NULL));
919 }
920
921 /**
922  * chimara_glk_set_interactive:
923  * @glk: a #ChimaraGlk widget
924  * @interactive: whether the widget should expect user input
925  *
926  * Sets the #ChimaraGlk:interactive property of @glk. 
927  */
928 void 
929 chimara_glk_set_interactive(ChimaraGlk *glk, gboolean interactive)
930 {
931     g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
932     
933     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
934     priv->interactive = interactive;
935     g_object_notify(G_OBJECT(glk), "interactive");
936 }
937
938 /**
939  * chimara_glk_get_interactive:
940  * @glk: a #ChimaraGlk widget
941  *
942  * Returns whether @glk is interactive (expecting user input). See 
943  * #ChimaraGlk:interactive.
944  *
945  * Return value: %TRUE if @glk is interactive.
946  */
947 gboolean 
948 chimara_glk_get_interactive(ChimaraGlk *glk)
949 {
950     g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
951     
952     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
953     return priv->interactive;
954 }
955
956 /**
957  * chimara_glk_set_protect:
958  * @glk: a #ChimaraGlk widget
959  * @protect: whether the widget should allow the Glk program to do file 
960  * operations
961  *
962  * Sets the #ChimaraGlk:protect property of @glk. In protect mode, the Glk 
963  * program is not allowed to do file operations.
964  */
965 void 
966 chimara_glk_set_protect(ChimaraGlk *glk, gboolean protect)
967 {
968     g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
969     
970     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
971     priv->protect = protect;
972     g_object_notify(G_OBJECT(glk), "protect");
973 }
974
975 /**
976  * chimara_glk_get_protect:
977  * @glk: a #ChimaraGlk widget
978  *
979  * Returns whether @glk is in protect mode (banned from doing file operations).
980  * See #ChimaraGlk:protect.
981  *
982  * Return value: %TRUE if @glk is in protect mode.
983  */
984 gboolean 
985 chimara_glk_get_protect(ChimaraGlk *glk)
986 {
987     g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
988     
989     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
990     return priv->protect;
991 }
992
993 /**
994  * chimara_glk_set_css_to_default:
995  * @glk: a #ChimaraGlk widget
996  *
997  * Resets the styles for text buffer and text grid windows to their defaults.
998  * <para><warning>
999  *   This function is not implemented yet.
1000  * </warning></para>
1001  */
1002 void
1003 chimara_glk_set_css_to_default(ChimaraGlk *glk)
1004 {
1005         reset_default_styles(glk);
1006 }
1007
1008 /**
1009  * chimara_glk_set_css_from_file:
1010  * @glk: a #ChimaraGlk widget
1011  * @filename: path to a CSS file, or %NULL
1012  * @error: location to store a <link 
1013  * linkend="glib-Error-Reporting">GError</link>, or %NULL
1014  *
1015  * Sets the styles for text buffer and text grid windows according to the CSS
1016  * file @filename. Note that the styles are set cumulatively on top of whatever
1017  * the styles are at the time this function is called; to reset the styles to
1018  * their defaults, use chimara_glk_set_css_to_default().
1019  *
1020  * Returns: %TRUE on success, %FALSE if an error occurred, in which case @error
1021  * will be set.
1022  */
1023 gboolean 
1024 chimara_glk_set_css_from_file(ChimaraGlk *glk, const gchar *filename, GError **error)
1025 {
1026         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
1027         g_return_val_if_fail(filename, FALSE);
1028         g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
1029
1030         int fd = open(filename, O_RDONLY);
1031         if(fd == -1) {
1032                 if(error)
1033                         *error = g_error_new(G_IO_ERROR, g_io_error_from_errno(errno), 
1034                                 _("Error opening file \"%s\": %s"), filename, g_strerror(errno));
1035                 return FALSE;
1036         }
1037
1038         GScanner *scanner = create_css_file_scanner();
1039         g_scanner_input_file(scanner, fd);
1040         scanner->input_name = filename;
1041         scan_css_file(scanner, glk);
1042
1043         if(close(fd) == -1) {
1044                 if(error)
1045                         *error = g_error_new(G_IO_ERROR, g_io_error_from_errno(errno),
1046                                 _("Error closing file \"%s\": %s"), filename, g_strerror(errno));
1047                 return FALSE;
1048         }
1049         return TRUE;
1050 }
1051
1052 /**
1053  * chimara_glk_set_css_from_string:
1054  * @glk: a #ChimaraGlk widget
1055  * @css: a string containing CSS code
1056  *
1057  * Sets the styles for text buffer and text grid windows according to the CSS
1058  * code @css. Note that the styles are set cumulatively on top of whatever the 
1059  * styles are at the time this function is called; to reset the styles to their
1060  * defaults, use chimara_glk_set_css_to_default().
1061  */
1062 void 
1063 chimara_glk_set_css_from_string(ChimaraGlk *glk, const gchar *css)
1064 {
1065         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1066         g_return_if_fail(css || *css);
1067         
1068         GScanner *scanner = create_css_file_scanner();
1069         g_scanner_input_text(scanner, css, strlen(css));
1070         scanner->input_name = "<string>";
1071         scan_css_file(scanner, glk);
1072 }
1073
1074 /**
1075  * chimara_glk_set_spacing:
1076  * @glk: a #ChimaraGlk widget
1077  * @spacing: the number of pixels to put between Glk windows
1078  *
1079  * Sets the #ChimaraGlk:spacing property of @glk, which is the border width in
1080  * pixels between Glk windows.
1081  */
1082 void 
1083 chimara_glk_set_spacing(ChimaraGlk *glk, guint spacing)
1084 {
1085         g_return_if_fail( glk || CHIMARA_IS_GLK(glk) );
1086         
1087         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
1088         priv->spacing = spacing;
1089         g_object_notify(G_OBJECT(glk), "spacing");
1090 }
1091
1092 /**
1093  * chimara_glk_get_spacing:
1094  * @glk: a #ChimaraGlk widget
1095  *
1096  * Gets the value set by chimara_glk_set_spacing().
1097  *
1098  * Return value: pixels of spacing between Glk windows
1099  */
1100 guint 
1101 chimara_glk_get_spacing(ChimaraGlk *glk)
1102 {
1103         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), 0);
1104         
1105         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
1106         return priv->spacing;
1107 }
1108
1109 struct StartupData {
1110         glk_main_t glk_main;
1111         glkunix_startup_code_t glkunix_startup_code;
1112         glkunix_startup_t args;
1113         ChimaraGlkPrivate *glk_data;
1114 };
1115
1116 static void
1117 free_startup_data(struct StartupData *startup)
1118 {
1119         int i = 0;
1120         while(i < startup->args.argc)
1121                 g_free(startup->args.argv[i++]);
1122         g_free(startup->args.argv);
1123         g_free(startup);
1124 }
1125
1126 /* glk_enter() is the actual function called in the new thread in which
1127 glk_main() runs. Takes ownership of @startup and will free it. */
1128 static gpointer
1129 glk_enter(struct StartupData *startup)
1130 {
1131         extern GPrivate *glk_data_key;
1132         g_private_set(glk_data_key, startup->glk_data);
1133
1134         /* Acquire the Glk thread's references to the input queues */
1135         g_async_queue_ref(startup->glk_data->char_input_queue);
1136         g_async_queue_ref(startup->glk_data->line_input_queue);
1137
1138         /* Run startup function */
1139         if(startup->glkunix_startup_code) {
1140                 startup->glk_data->in_startup = TRUE;
1141                 int result = startup->glkunix_startup_code(&startup->args);
1142                 startup->glk_data->in_startup = FALSE;
1143
1144                 if(!result) {
1145                         free_startup_data(startup);
1146                         return NULL;
1147                 }
1148         }
1149
1150         /* Run main function */
1151         glk_main_t glk_main = startup->glk_main;
1152
1153         /* COMPAT: avoid usage of slices */
1154         g_signal_emit_by_name(startup->glk_data->self, "started");
1155         glk_main();
1156         free_startup_data(startup);
1157         glk_exit(); /* Run shutdown code in glk_exit() even if glk_main() returns normally */
1158         g_assert_not_reached(); /* because glk_exit() calls g_thread_exit() */
1159         return NULL;
1160 }
1161
1162 /**
1163  * chimara_glk_run:
1164  * @glk: a #ChimaraGlk widget
1165  * @plugin: path to a plugin module compiled with <filename 
1166  * class="header">glk.h</filename>
1167  * @argc: Number of command line arguments in @argv
1168  * @argv: Array of command line arguments to pass to the plugin
1169  * @error: location to store a <link 
1170  * linkend="glib-Error-Reporting">GError</link>, or %NULL
1171  *
1172  * Opens a Glk program compiled as a plugin. Sorts out its command line
1173  * arguments from #glkunix_arguments, calls its startup function
1174  * glkunix_startup_code(), and then calls its main function glk_main() in
1175  * a separate thread. On failure, returns %FALSE and sets @error.
1176  *
1177  * The plugin must at least export a glk_main() function; #glkunix_arguments and
1178  * glkunix_startup_code() are optional.
1179  *
1180  * Return value: %TRUE if the Glk program was started successfully.
1181  */
1182 gboolean
1183 chimara_glk_run(ChimaraGlk *glk, const gchar *plugin, int argc, char *argv[], GError **error)
1184 {
1185     g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
1186     g_return_val_if_fail(plugin, FALSE);
1187         g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
1188         
1189         if(chimara_glk_get_running(glk)) {
1190                 g_set_error(error, CHIMARA_ERROR, CHIMARA_PLUGIN_ALREADY_RUNNING, _("There was already a plugin running."));
1191                 return FALSE;
1192         }
1193     
1194     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
1195
1196         /* COMPAT: avoid usage of slices */
1197         struct StartupData *startup = g_new0(struct StartupData,1);
1198         
1199     g_assert( g_module_supported() );
1200         /* If there is already a module loaded, free it first -- you see, we want to
1201          * keep modules loaded as long as possible to avoid crashes in stack unwinding */
1202         chimara_glk_unload_plugin(glk);
1203         /* Open the module to run */
1204     priv->program = g_module_open(plugin, G_MODULE_BIND_LAZY);
1205     
1206     if(!priv->program)
1207     {
1208         g_set_error(error, CHIMARA_ERROR, CHIMARA_LOAD_MODULE_ERROR, _("Error opening module: %s"), g_module_error());
1209         return FALSE;
1210     }
1211     if( !g_module_symbol(priv->program, "glk_main", (gpointer *) &startup->glk_main) )
1212     {
1213         g_set_error(error, CHIMARA_ERROR, CHIMARA_NO_GLK_MAIN, _("Error finding glk_main(): %s"), g_module_error());
1214         return FALSE;
1215     }
1216
1217     if( g_module_symbol(priv->program, "glkunix_startup_code", (gpointer *) &startup->glkunix_startup_code) )
1218     {
1219                 glkunix_argumentlist_t *glkunix_arguments;
1220
1221                 if( !(g_module_symbol(priv->program, "glkunix_arguments", (gpointer *) &glkunix_arguments) 
1222                           && parse_command_line(glkunix_arguments, argc, argv, &startup->args)) )
1223                 {
1224                         /* arguments could not be parsed, so create data ourselves */
1225                         startup->args.argc = 1;
1226                         startup->args.argv = g_new0(gchar *, 1);
1227                 }
1228
1229                 /* Set the program invocation name */
1230                 startup->args.argv[0] = g_strdup(plugin);
1231     }
1232         startup->glk_data = priv;
1233         
1234         /* Set the program name */
1235         priv->program_name = g_path_get_basename(plugin);
1236         g_object_notify(G_OBJECT(glk), "program-name");
1237         
1238     /* Run in a separate thread */
1239         priv->thread = g_thread_create((GThreadFunc)glk_enter, startup, TRUE, error);
1240         
1241         return !(priv->thread == NULL);
1242 }
1243
1244 /**
1245  * chimara_glk_run_file:
1246  * @self: a #ChimaraGlk widget
1247  * @plugin_file: a #GFile pointing to a plugin module compiled with <filename
1248  * class="header">glk.h</filename>
1249  * @argc: Number of command line arguments in @argv
1250  * @argv: Array of command line arguments to pass to the plugin
1251  * @error: location to store a <link
1252  * linkend="glib-Error-Reporting">GError</link>, or %NULL
1253  *
1254  * Opens a Glk program compiled as a plugin, from a #GFile. See
1255  * chimara_glk_run() for details.
1256  *
1257  * Return value: %TRUE if the Glk program was started successfully.
1258  */
1259 gboolean
1260 chimara_glk_run_file(ChimaraGlk *self, GFile *plugin_file, int argc, char *argv[], GError **error)
1261 {
1262         g_return_val_if_fail(self || CHIMARA_IS_GLK(self), FALSE);
1263         g_return_val_if_fail(plugin_file || G_IS_FILE(plugin_file), FALSE);
1264         g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
1265
1266         char *path = g_file_get_path(plugin_file);
1267         gboolean retval = chimara_glk_run(self, path, argc, argv, error);
1268         g_free(path);
1269
1270         return retval;
1271 }
1272
1273 /**
1274  * chimara_glk_stop:
1275  * @glk: a #ChimaraGlk widget
1276  *
1277  * Signals the Glk program running in @glk to abort. Note that if the program is
1278  * caught in an infinite loop in which glk_tick() is not called, this may not
1279  * work.
1280  *
1281  * This function does nothing if no Glk program is running.
1282  */
1283 void
1284 chimara_glk_stop(ChimaraGlk *glk)
1285 {
1286     g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1287     CHIMARA_GLK_USE_PRIVATE(glk, priv);
1288
1289     /* Don't do anything if not running a program */
1290     if(!priv->running)
1291         return;
1292     
1293         if(!priv->after_finalize) {
1294                 g_mutex_lock(&priv->abort_lock);
1295                 priv->abort_signalled = TRUE;
1296                 g_mutex_unlock(&priv->abort_lock);
1297                 /* Stop blocking on the event queue condition */
1298                 event_throw(glk, evtype_Abort, NULL, 0, 0);
1299                 /* Stop blocking on the shutdown key press condition */
1300                 g_mutex_lock(&priv->shutdown_lock);
1301                 g_cond_signal(&priv->shutdown_key_pressed);
1302                 g_mutex_unlock(&priv->shutdown_lock);
1303         }
1304 }
1305
1306 /**
1307  * chimara_glk_wait:
1308  * @glk: a #ChimaraGlk widget
1309  *
1310  * Holds up the main thread and waits for the Glk program running in @glk to 
1311  * finish.
1312  *
1313  * This function does nothing if no Glk program is running.
1314  */
1315 void
1316 chimara_glk_wait(ChimaraGlk *glk)
1317 {
1318     g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1319     CHIMARA_GLK_USE_PRIVATE(glk, priv);
1320     /* Don't do anything if not running a program */
1321     if(!priv->running)
1322         return;
1323         /* Unlock GDK mutex, because the Glk program might need to use it for shutdown */
1324         gdk_threads_leave();
1325     g_thread_join(priv->thread);
1326         gdk_threads_enter();
1327 }
1328
1329 /**
1330  * chimara_glk_unload_plugin:
1331  * @glk: a #ChimaraGlk widget
1332  *
1333  * The plugin containing the Glk program is unloaded as late as possible before
1334  * loading a new plugin, in order to prevent crashes while printing stack
1335  * backtraces during debugging. Sometimes this behavior is not desirable. This
1336  * function forces @glk to unload the plugin running in it.
1337  *
1338  * This function does nothing if there is no plugin loaded.
1339  */
1340 void
1341 chimara_glk_unload_plugin(ChimaraGlk *glk)
1342 {
1343         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1344     CHIMARA_GLK_USE_PRIVATE(glk, priv);
1345         if( priv->program && !g_module_close(priv->program) )
1346                 g_warning( "Error closing module :%s", g_module_error() );
1347 }
1348
1349 /**
1350  * chimara_glk_get_running:
1351  * @glk: a #ChimaraGlk widget
1352  * 
1353  * Use this function to tell whether a program is currently running in the
1354  * widget.
1355  * 
1356  * Returns: %TRUE if @glk is executing a Glk program, %FALSE otherwise.
1357  */
1358 gboolean
1359 chimara_glk_get_running(ChimaraGlk *glk)
1360 {
1361         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
1362         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1363         return priv->running;
1364 }
1365
1366 /**
1367  * chimara_glk_feed_char_input:
1368  * @glk: a #ChimaraGlk widget
1369  * @keyval: a key symbol as defined in <filename 
1370  * class="headerfile">gdk/gdkkeysyms.h</filename>
1371  * 
1372  * Pretend that a key was pressed in the Glk program as a response to a 
1373  * character input request. You can call this function even when no window has
1374  * requested character input, in which case the key will be saved for the 
1375  * following window that requests character input. This has the disadvantage 
1376  * that if more than one window has requested character input, it is arbitrary 
1377  * which one gets the key press.
1378  */
1379 void 
1380 chimara_glk_feed_char_input(ChimaraGlk *glk, guint keyval)
1381 {
1382         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1383         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1384         g_async_queue_push(priv->char_input_queue, GUINT_TO_POINTER(keyval));
1385         event_throw(glk, evtype_ForcedCharInput, NULL, 0, 0);
1386 }
1387
1388 /**
1389  * chimara_glk_feed_line_input:
1390  * @glk: a #ChimaraGlk widget
1391  * @text: text to pass to the next line input request
1392  * 
1393  * Pretend that @text was typed in the Glk program as a response to a line input
1394  * request. @text does not need to end with a newline. You can call this 
1395  * function even when no window has requested line input, in which case the text
1396  * will be saved for the following window that requests line input. This has the 
1397  * disadvantage that if more than one window has requested line input, it is
1398  * arbitrary which one gets the text.
1399  */
1400 void 
1401 chimara_glk_feed_line_input(ChimaraGlk *glk, const gchar *text)
1402 {
1403         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1404         g_return_if_fail(text);
1405         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1406         g_async_queue_push(priv->line_input_queue, g_strdup(text));
1407         event_throw(glk, evtype_ForcedLineInput, NULL, 0, 0);
1408 }
1409
1410 /**
1411  * chimara_glk_is_char_input_pending:
1412  * @glk: a #ChimaraGlk widget
1413  *
1414  * Use this function to tell if character input forced by 
1415  * chimara_glk_feed_char_input() has been passed to an input request or not.
1416  *
1417  * Returns: %TRUE if forced character input is pending, %FALSE otherwise.
1418  */
1419 gboolean
1420 chimara_glk_is_char_input_pending(ChimaraGlk *glk)
1421 {
1422         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
1423         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1424         return g_async_queue_length(priv->char_input_queue) > 0;
1425 }
1426
1427 /**
1428  * chimara_glk_is_line_input_pending:
1429  * @glk: a #ChimaraGlk widget
1430  *
1431  * Use this function to tell if line input forced by 
1432  * chimara_glk_feed_line_input() has been passed to an input request or not.
1433  *
1434  * Returns: %TRUE if forced line input is pending, %FALSE otherwise.
1435  */
1436 gboolean
1437 chimara_glk_is_line_input_pending(ChimaraGlk *glk)
1438 {
1439         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
1440         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1441         return g_async_queue_length(priv->line_input_queue) > 0;
1442 }
1443
1444 /**
1445  * chimara_glk_get_tag:
1446  * @glk: a #ChimaraGlk widget
1447  * @window: The type of window to retrieve the tag for
1448  * @name: The name of the tag to retrieve
1449  *
1450  * Use this function to get a #GtkTextTag so style properties can be changed.
1451  * See also chimara_glk_set_css_from_string().
1452  *
1453  * The layout of the text in Chimara is controlled by two sets of tags: one set
1454  * describing the style in text buffers and one for text grids. See also the
1455  * Glk specification for the difference between the two. The main narrative of
1456  * a game is usually rendered in text buffers, whereas text grids are mostly
1457  * used for status bars and in game menus.
1458  *
1459  * The following tag names are supported:
1460  * <itemizedlist>
1461  *      <listitem><para>normal</para></listitem>
1462  *      <listitem><para>emphasized</para></listitem>
1463  *      <listitem><para>preformatted</para></listitem>
1464  *      <listitem><para>header</para></listitem>
1465  *      <listitem><para>subheader</para></listitem>
1466  *      <listitem><para>alert</para></listitem>
1467  *      <listitem><para>note</para></listitem>
1468  *      <listitem><para>block-quote</para></listitem>
1469  *      <listitem><para>input</para></listitem>
1470  *      <listitem><para>user1</para></listitem>
1471  *      <listitem><para>user2</para></listitem>
1472  *      <listitem><para>hyperlink</para></listitem>
1473  *      <listitem><para>pager</para></listitem>
1474  * </itemizedlist>
1475  *
1476  * Returns: (transfer none): The #GtkTextTag corresponding to @name in the
1477  * styles of @window.
1478  */
1479 GtkTextTag *
1480 chimara_glk_get_tag(ChimaraGlk *glk, ChimaraGlkWindowType window, const gchar *name)
1481 {
1482         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1483
1484         switch(window) {
1485         case CHIMARA_GLK_TEXT_BUFFER:
1486                 return GTK_TEXT_TAG( g_hash_table_lookup(priv->styles->text_buffer, name) );
1487                 break;
1488         case CHIMARA_GLK_TEXT_GRID:
1489                 return GTK_TEXT_TAG( g_hash_table_lookup(priv->styles->text_grid, name) );
1490                 break;
1491         default:
1492                 ILLEGAL_PARAM("Unknown window type: %u", window);
1493                 return NULL;
1494         }
1495 }
1496
1497 /**
1498  * chimara_glk_get_tag_names:
1499  * @glk: a #ChimaraGlk widget
1500  * @num_tags: Return location for the number of tag names retrieved.
1501  *
1502  * Retrieves the possible tag names to use in chimara_glk_get_tag().
1503  *
1504  * Returns: (transfer none) (array length=num_tags) (element-type utf8):
1505  * Array of strings containing the tag names. This array is owned by Chimara,
1506  * do not free it.
1507  */
1508 const gchar **
1509 chimara_glk_get_tag_names(ChimaraGlk *glk, unsigned int *num_tags)
1510 {
1511         g_return_val_if_fail(num_tags != NULL, NULL);
1512
1513         *num_tags = CHIMARA_NUM_STYLES;
1514         return style_get_tag_names();
1515 }
1516
1517 /**
1518  * chimara_glk_set_resource_load_callback:
1519  * @glk: a #ChimaraGlk widget
1520  * @func: a function to call for loading resources, or %NULL
1521  * @user_data: user data to pass to @func, or %NULL
1522  * @destroy_user_data: a function to call for freeing @user_data, or %NULL
1523  *
1524  * Sometimes it is preferable to load image and sound resources from somewhere
1525  * else than a Blorb file, for example while developing a game. Section 14 of
1526  * the <ulink url="http://eblong.com/zarf/blorb/blorb.html#s14">Blorb
1527  * specification</ulink> allows for this possibility. This function sets @func
1528  * to be called when the Glk program requests loading an image or sound without
1529  * a Blorb resource map having been loaded, optionally passing @user_data as an 
1530  * extra parameter.
1531  *
1532  * Note that @func is only called if no Blorb resource map has been set; having
1533  * a resource map in place overrides this function.
1534  *
1535  * If you pass non-%NULL for @destroy_user_data, then @glk takes ownership of
1536  * @user_data. When it is not needed anymore, it will be freed by calling
1537  * @destroy_user_data on it. If you wish to retain ownership of @user_data, pass
1538  * %NULL for @destroy_user_data.
1539  *
1540  * To deactivate the callback, call this function with @func set to %NULL.
1541  */
1542 void
1543 chimara_glk_set_resource_load_callback(ChimaraGlk *glk, ChimaraResourceLoadFunc func, gpointer user_data, GDestroyNotify destroy_user_data)
1544 {
1545         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1546
1547         if(priv->resource_load_callback == func
1548                 && priv->resource_load_callback_data == user_data
1549                 && priv->resource_load_callback_destroy_data == destroy_user_data)
1550                 return;
1551
1552         if(priv->resource_load_callback_destroy_data)
1553                 priv->resource_load_callback_destroy_data(priv->resource_load_callback_data);
1554
1555         priv->resource_load_callback = func;
1556         priv->resource_load_callback_data = user_data;
1557         priv->resource_load_callback_destroy_data = destroy_user_data;
1558 }