1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) Philip en Marijn 2008 <>
6 * main.c is free software copyrighted by Philip en Marijn.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name ``Philip en Marijn'' nor the name of any other
17 * contributor may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * main.c IS PROVIDED BY Philip en Marijn ``AS IS'' AND ANY EXPRESS
21 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL Philip en Marijn OR ANY OTHER CONTRIBUTORS
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
27 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
30 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #include <sys/types.h>
40 #include <glib/gi18n.h>
43 #include "callbacks.h"
45 #include <libchimara/chimara-glk.h>
47 /* Global pointers to widgets */
48 GtkBuilder *builder = NULL;
49 GtkWidget *window = NULL;
50 GtkWidget *glk = NULL;
53 on_started(ChimaraGlk *glk)
55 g_printerr("Started!\n");
59 on_stopped(ChimaraGlk *glk)
61 g_printerr("Stopped!\n");
67 if( (window = GTK_WIDGET(gtk_builder_get_object(builder, "gargoyle-gtk"))) == NULL ) {
68 error_dialog(NULL, NULL, "Error while getting main window object");
72 gtk_builder_connect_signals(builder, NULL);
74 glk = chimara_glk_new();
75 g_object_set(glk, "border-width", 6, "spacing", 6, NULL);
76 chimara_glk_set_default_font_string(CHIMARA_GLK(glk), "Serif 12");
77 chimara_glk_set_monospace_font_string(CHIMARA_GLK(glk), "Monospace 12");
78 g_signal_connect(glk, "started", G_CALLBACK(on_started), NULL);
79 g_signal_connect(glk, "stopped", G_CALLBACK(on_stopped), NULL);
81 GtkBox *vbox = GTK_BOX( gtk_builder_get_object(builder, "vbox") );
84 error_dialog(NULL, NULL, "Could not find vbox");
88 gtk_box_pack_end(vbox, glk, TRUE, TRUE, 0);
92 main(int argc, char *argv[])
97 bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
98 bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
99 textdomain(GETTEXT_PACKAGE);
102 if( !g_thread_supported() )
108 gtk_init(&argc, &argv);
110 builder = gtk_builder_new();
111 if( !gtk_builder_add_from_file(builder, "chimara.ui", &error) ) {
112 error_dialog(NULL, error, "Error while building interface: ");
117 gtk_widget_show_all(window);
119 g_object_unref( G_OBJECT(builder) );
121 if( !chimara_glk_run(CHIMARA_GLK(glk), "../interpreters/frotz/.libs/frotz.so", argc, argv, &error) ) {
122 error_dialog(GTK_WINDOW(window), error, "Error starting Glk library: ");
130 chimara_glk_stop(CHIMARA_GLK(glk));
131 chimara_glk_wait(CHIMARA_GLK(glk));