--- /dev/null
+.deps
+.libs
+Makefile
+Makefile.in
+chimara
+iliad
--- /dev/null
+AM_CFLAGS = -Wall
+AM_CPPFLAGS = -I$(top_srcdir)
+
+PLUGIN_LIBTOOL_FLAGS=-module -avoid-version -export-symbols-regex "^glk_main$$"
+
+if TARGET_ILIAD
+
+chimara_iliad_SOURCES = iliad.c
+chimara_iliad_CFLAGS = @TEST_CFLAGS@ $(AM_CFLAGS)
+chimara_iliad_LDADD = @TEST_LIBS@ $(top_builddir)/libchimara/libchimara.la
+
+bin_PROGRAMS = chimara_iliad
+
+else
+
+dist_data_DATA = chimara.ui chimara.menus
+bin_PROGRAMS = chimara
+
+chimara_SOURCES = main.c callbacks.c error.c error.h
+chimara_CPPFLAGS = $(AM_CPPFLAGS) \
+ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
+ -DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
+ -DPACKAGE_DATA_DIR=\""$(datadir)"\"
+chimara_CFLAGS = @TEST_CFLAGS@ $(AM_CFLAGS)
+chimara_LDADD = @TEST_LIBS@ $(top_builddir)/libchimara/libchimara.la
+
+endif
--- /dev/null
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * callbacks.c
+ * Copyright (C) Philip en Marijn 2008 <>
+ *
+ * callbacks.c is free software copyrighted by Philip en Marijn.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name ``Philip en Marijn'' nor the name of any other
+ * contributor may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * callbacks.c IS PROVIDED BY Philip en Marijn ``AS IS'' AND ANY EXPRESS
+ * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL Philip en Marijn OR ANY OTHER CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <gdk/gdkkeysyms.h>
+#include <libchimara/chimara-glk.h>
+#include "error.h"
+
+void on_save(GtkAction *action, ChimaraGlk *glk) {
+ chimara_glk_feed_line_input(glk, "save");
+}
+
+void on_restore(GtkAction *action, ChimaraGlk *glk) {
+ chimara_glk_feed_line_input(glk, "restore");
+}
+
+gboolean on_window_delete_event(GtkWidget *widget, GdkEvent *event, ChimaraGlk *glk) {
+ gtk_main_quit();
+ return TRUE;
+}
+
+void on_quit(GtkAction *action, ChimaraGlk *glk) {
+ gtk_main_quit();
+}
--- /dev/null
+<?xml version="1.0"?>
+<ui>
+ <menubar>
+ <menu action="game">
+ <menuitem action="open"/>
+ <menuitem action="restore"/>
+ <menuitem action="save"/>
+ <separator/>
+ <menuitem action="quit"/>
+ </menu>
+ </menubar>
+ <toolbar>
+ <toolitem action="open"/>
+ <toolitem action="restore"/>
+ <toolitem action="save"/>
+ <separator/>
+ <toolitem action="quit"/>
+ </toolbar>
+</ui>
--- /dev/null
+<?xml version="1.0"?>
+<interface>
+ <!-- interface-requires gtk+ 2.12 -->
+ <!-- interface-naming-policy toplevel-contextual -->
+ <object class="GtkWindow" id="chimara">
+ <property name="title" translatable="yes">Chimara</property>
+ <property name="default_width">800</property>
+ <property name="default_height">800</property>
+ <signal name="delete_event" handler="on_window_delete_event"/>
+ <child>
+ <object class="GtkVBox" id="vbox">
+ <property name="visible">True</property>
+ <property name="orientation">vertical</property>
+ <child>
+ <placeholder/>
+ </child>
+ </object>
+ </child>
+ </object>
+ <object class="GtkActionGroup" id="actiongroup"/>
+ <object class="GtkAction" id="game">
+ <property name="label">_Game</property>
+ </object>
+ <object class="GtkAction" id="open">
+ <property name="label">_Open...</property>
+ <property name="short_label">_Open</property>
+ <property name="tooltip">Quit the current game and load a new one</property>
+ <property name="stock_id">gtk-media-play</property>
+ </object>
+ <object class="GtkAction" id="restore">
+ <property name="label">_Restore...</property>
+ <property name="short_label">_Restore</property>
+ <property name="tooltip">Restore a previously saved game</property>
+ <property name="stock_id">gtk-open</property>
+ <signal name="activate" handler="on_restore"/>
+ </object>
+ <object class="GtkAction" id="save">
+ <property name="label">_Save</property>
+ <property name="tooltip">Save the game</property>
+ <property name="stock_id">gtk-save</property>
+ <signal name="activate" handler="on_save"/>
+ </object>
+ <object class="GtkAction" id="quit">
+ <property name="label">_Quit</property>
+ <property name="tooltip">Exit Chimara</property>
+ <property name="stock_id">gtk-quit</property>
+ <signal name="activate" handler="on_quit"/>
+ </object>
+</interface>
--- /dev/null
+/* Copyright 2006 P.F. Chimento
+ * This file is part of GNOME Inform 7.
+ *
+ * GNOME Inform 7 is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GNOME Inform 7 is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNOME Inform 7; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <gtk/gtk.h>
+#include <stdarg.h>
+
+#include "error.h"
+
+/* Create and display an error dialog box, with parent window parent, and
+message format string msg. If err is not NULL, tack the error message on to the
+end of the format string. */
+void
+error_dialog(GtkWindow *parent, GError *err, const gchar *msg, ...)
+{
+ va_list ap;
+
+ va_start(ap, msg);
+ gchar buffer[1024];
+ g_vsnprintf(buffer, 1024, msg, ap);
+ va_end(ap);
+
+ gchar *message;
+ if(err) {
+ message = g_strconcat(buffer, err->message, NULL);
+ g_error_free(err);
+ } else
+ message = g_strdup(buffer);
+
+ GtkWidget *dialog = gtk_message_dialog_new(parent,
+ parent? GTK_DIALOG_DESTROY_WITH_PARENT : 0,
+ GTK_MESSAGE_ERROR,
+ GTK_BUTTONS_OK,
+ message);
+ gtk_dialog_run(GTK_DIALOG(dialog));
+ gtk_widget_destroy(dialog);
+ g_free(message);
+}
--- /dev/null
+/* Copyright 2006 P.F. Chimento
+ * This file is part of GNOME Inform 7.
+ *
+ * GNOME Inform 7 is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GNOME Inform 7 is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNOME Inform 7; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef ERROR_H
+#define ERROR_H
+
+#include <stdarg.h>
+#include <gtk/gtk.h>
+
+void error_dialog(GtkWindow *parent, GError *err, const gchar *msg, ...);
+
+#endif
--- /dev/null
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * iliad.c
+ * Copyright (C) Philip en Marijn 2008 <>
+ *
+ * iliad.c is free software copyrighted by Philip en Marijn.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name ``Philip en Marijn'' nor the name of any other
+ * contributor may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * main.c IS PROVIDED BY Philip en Marijn ``AS IS'' AND ANY EXPRESS
+ * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL Philip en Marijn OR ANY OTHER CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+#include <string.h>
+#include <stdio.h>
+
+#include <glib.h>
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+
+#include "error.h"
+#include <libchimara/chimara-glk.h>
+#include <libchimara/chimara-if.h>
+
+/* Global pointers to widgets */
+GtkWidget *window = NULL;
+GtkWidget *glk = NULL;
+
+static void
+on_started(ChimaraGlk *glk)
+{
+ g_printerr("Started!\n");
+}
+
+static void
+on_stopped(ChimaraGlk *glk)
+{
+ g_printerr("Stopped!\n");
+}
+
+static void
+on_restore()
+{
+ chimara_glk_feed_line_input( CHIMARA_GLK(glk), "restore" );
+}
+
+static void
+on_save()
+{
+ chimara_glk_feed_line_input( CHIMARA_GLK(glk), "save" );
+}
+
+static void
+create_window(void)
+{
+ window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+ glk = chimara_if_new();
+ //chimara_if_set_preferred_interpreter( CHIMARA_IF(glk), CHIMARA_IF_FORMAT_Z8, CHIMARA_IF_INTERPRETER_NITFOL);
+
+ gtk_widget_set_size_request(window, 800, 800);
+ g_object_set(glk,
+ "border-width", 6,
+ "spacing", 6,
+ "ignore-errors", TRUE,
+ NULL);
+ chimara_glk_set_default_font_string(CHIMARA_GLK(glk), "Serif 12");
+ chimara_glk_set_monospace_font_string(CHIMARA_GLK(glk), "Monospace 12");
+ g_signal_connect(glk, "started", G_CALLBACK(on_started), NULL);
+ g_signal_connect(glk, "stopped", G_CALLBACK(on_stopped), NULL);
+
+ GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
+ GtkWidget *toolbar = gtk_toolbar_new();
+
+ GtkToolItem *restore_button = gtk_tool_button_new_from_stock(GTK_STOCK_OPEN);
+ g_signal_connect(restore_button, "clicked", G_CALLBACK(on_restore), NULL);
+ gtk_toolbar_insert( GTK_TOOLBAR(toolbar), restore_button, 0 );
+
+ GtkToolItem *save_button = gtk_tool_button_new_from_stock(GTK_STOCK_SAVE);
+ g_signal_connect(save_button, "clicked", G_CALLBACK(on_save), NULL);
+ gtk_toolbar_insert( GTK_TOOLBAR(toolbar), save_button, 0 );
+
+ GtkToolItem *quit_button = gtk_tool_button_new_from_stock(GTK_STOCK_QUIT);
+ g_signal_connect(quit_button, "clicked", G_CALLBACK(gtk_main_quit), NULL);
+ gtk_toolbar_insert( GTK_TOOLBAR(toolbar), quit_button, 0 );
+
+ GtkWidget *spacer = gtk_vbox_new(FALSE, 0);
+ gtk_widget_set_size_request(spacer, -1, 250);
+
+ gtk_box_pack_start( GTK_BOX(vbox), toolbar, FALSE, FALSE, 0 );
+ gtk_box_pack_start( GTK_BOX(vbox), glk, TRUE, TRUE, 0 );
+ gtk_box_pack_end( GTK_BOX(vbox), spacer, FALSE, FALSE, 0 );
+
+ gtk_container_add( GTK_CONTAINER(window), vbox );
+}
+
+int
+main(int argc, char *argv[])
+{
+ GError *error = NULL;
+
+#ifdef ENABLE_NLS
+ bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
+ bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
+ textdomain(GETTEXT_PACKAGE);
+#endif
+
+ if( !g_thread_supported() )
+ g_thread_init(NULL);
+ gdk_threads_init();
+ gtk_init(&argc, &argv);
+
+ create_window();
+ gtk_widget_show_all(window);
+
+ if(argc < 2) {
+ g_printerr("Must provide a game file\n");
+ return 1;
+ }
+
+ if( !chimara_if_run_game(CHIMARA_IF(glk), argv[1], &error) ) {
+ g_printerr("Error starting Glk library: %s\n", error->message);
+ return 1;
+ }
+ //chimara_glk_run( CHIMARA_GLK(glk), ".libs/multiwin.so", argc, argv, NULL);
+
+
+ gdk_threads_enter();
+ gtk_main();
+ gdk_threads_leave();
+
+ chimara_glk_stop(CHIMARA_GLK(glk));
+ chimara_glk_wait(CHIMARA_GLK(glk));
+
+ return 0;
+}
--- /dev/null
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * main.c
+ * Copyright (C) Philip en Marijn 2008 <>
+ *
+ * main.c is free software copyrighted by Philip en Marijn.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name ``Philip en Marijn'' nor the name of any other
+ * contributor may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * main.c IS PROVIDED BY Philip en Marijn ``AS IS'' AND ANY EXPRESS
+ * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL Philip en Marijn OR ANY OTHER CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+#include <string.h>
+#include <stdio.h>
+
+#include <glib.h>
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+
+#include "error.h"
+#include <libchimara/chimara-glk.h>
+#include <libchimara/chimara-if.h>
+
+/* Global pointers to widgets */
+GtkBuilder *builder = NULL;
+GtkUIManager *uimanager = NULL;
+GtkWidget *window = NULL;
+GtkWidget *glk = NULL;
+
+static GObject *
+load_object(const gchar *name)
+{
+ GObject *retval;
+ if( (retval = gtk_builder_get_object(builder, name)) == NULL) {
+ error_dialog(NULL, NULL, "Error while getting object '%s'", name);
+ g_error("Error while getting object '%s'", name);
+ }
+ return retval;
+}
+
+static void
+create_window(void)
+{
+ GError *error = NULL;
+
+ builder = gtk_builder_new();
+ if( !gtk_builder_add_from_file(builder, PACKAGE_SRC_DIR "/chimara.ui", &error) ) {
+ error_dialog(NULL, error, "Error while building interface: ");
+ return;
+ }
+
+ window = GTK_WIDGET(load_object("chimara"));
+ GtkActionGroup *actiongroup = GTK_ACTION_GROUP(load_object("actiongroup"));
+
+ /* Add all the actions to the action group. This for-loop is a temporary fix
+ and can be removed once Glade supports adding actions and accelerators to an
+ action group. */
+ const gchar *actions[] = {
+ "game", "",
+ "open", "<ctrl>F7",
+ "save", NULL, /* NULL means use stock accelerator */
+ "quit", NULL,
+ "hint", "",
+ "char_input", "",
+ "char_input2", "",
+ NULL
+ };
+ const gchar **ptr;
+ for(ptr = actions; *ptr; ptr += 2)
+ gtk_action_group_add_action_with_accel(actiongroup, GTK_ACTION(load_object(ptr[0])), ptr[1]);
+
+ uimanager = gtk_ui_manager_new();
+ if( !gtk_ui_manager_add_ui_from_file(uimanager, PACKAGE_SRC_DIR "/chimara.menus", &error) ) {
+ error_dialog(NULL, error, "Error while building interface: ");
+ return;
+ }
+
+ glk = chimara_if_new();
+ //chimara_if_set_preferred_interpreter( CHIMARA_IF(glk), CHIMARA_IF_FORMAT_Z8, CHIMARA_IF_INTERPRETER_NITFOL);
+
+ g_object_set(glk,
+ "border-width", 6,
+ "spacing", 6,
+ "ignore-errors", TRUE,
+ NULL);
+ chimara_glk_set_default_font_string(CHIMARA_GLK(glk), "Serif 12");
+ chimara_glk_set_monospace_font_string(CHIMARA_GLK(glk), "Monospace 12");
+
+ GtkBox *vbox = GTK_BOX( gtk_builder_get_object(builder, "vbox") );
+ if(vbox == NULL)
+ {
+ error_dialog(NULL, NULL, "Could not find vbox");
+ return;
+ }
+
+ gtk_ui_manager_insert_action_group(uimanager, actiongroup, 0);
+ GtkWidget *menubar = gtk_ui_manager_get_widget(uimanager, "/menubar");
+ GtkWidget *toolbar = gtk_ui_manager_get_widget(uimanager, "/toolbar");
+
+ gtk_box_pack_end(vbox, glk, TRUE, TRUE, 0);
+ gtk_box_pack_start(vbox, menubar, FALSE, FALSE, 0);
+ gtk_box_pack_start(vbox, toolbar, FALSE, FALSE, 0);
+
+ gtk_builder_connect_signals(builder, glk);
+}
+
+int
+main(int argc, char *argv[])
+{
+ GError *error = NULL;
+
+#ifdef ENABLE_NLS
+ bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
+ bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
+ textdomain(GETTEXT_PACKAGE);
+#endif
+
+ if( !g_thread_supported() )
+ g_thread_init(NULL);
+ gdk_threads_init();
+ gtk_init(&argc, &argv);
+
+ create_window();
+ gtk_widget_show_all(window);
+
+ g_object_unref( G_OBJECT(builder) );
+ g_object_unref( G_OBJECT(uimanager) );
+
+ if(argc < 2) {
+ error_dialog(GTK_WINDOW(window), NULL, "Must provide a game file");
+ return 1;
+ }
+
+ if( !chimara_if_run_game(CHIMARA_IF(glk), argv[1], &error) ) {
+ error_dialog(GTK_WINDOW(window), error, "Error starting Glk library: ");
+ return 1;
+ }
+
+ gdk_threads_enter();
+ gtk_main();
+ gdk_threads_leave();
+
+ chimara_glk_stop(CHIMARA_GLK(glk));
+ chimara_glk_wait(CHIMARA_GLK(glk));
+
+ return 0;
+}