2 * Copyright (C) 2008, 2009, 2010, 2011 Philip Chimento and Marijn van Vliet.
5 * Chimara is free software copyrighted by Philip Chimento and Marijn van Vliet.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 * 3. Neither of the names Philip Chimento or Marijn van Vliet, nor the name of
16 * any other contributor may be used to endorse or promote products derived
17 * from this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #include <sys/types.h>
34 #include <glib-object.h>
35 #include <glib/gi18n.h>
36 #include <glib/gstdio.h>
38 /* Use a custom GSettings backend for our preferences file */
39 #define G_SETTINGS_ENABLE_BACKEND
40 #include <gio/gsettingsbackend.h>
43 #include <libchimara/chimara-if.h>
48 #include "preferences.h"
51 typedef struct _ChimaraAppPrivate {
52 /* Action group containing "application actions" */
53 GtkActionGroup *action_group;
54 /* List of currently opened player windows */
58 #define CHIMARA_APP_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), CHIMARA_TYPE_APP, ChimaraAppPrivate))
59 #define CHIMARA_APP_USE_PRIVATE ChimaraAppPrivate *priv = CHIMARA_APP_PRIVATE(self)
61 G_DEFINE_TYPE(ChimaraApp, chimara_app, G_TYPE_OBJECT);
64 chimara_app_finalize(GObject *self)
66 CHIMARA_APP_USE_PRIVATE;
67 g_object_unref(priv->action_group);
68 g_slist_free(priv->window_list);
71 G_OBJECT_CLASS(chimara_app_parent_class)->finalize(self);
75 chimara_app_class_init(ChimaraAppClass *klass)
77 /* Override methods of parent classes */
78 GObjectClass *object_class = G_OBJECT_CLASS(klass);
79 object_class->finalize = chimara_app_finalize;
82 g_type_class_add_private(klass, sizeof(ChimaraAppPrivate));
86 chimara_app_init(ChimaraApp *self)
88 CHIMARA_APP_USE_PRIVATE;
90 /* Create configuration dir ~/.chimara */
91 gchar *configdir = g_build_filename(g_get_home_dir(), ".chimara", NULL);
92 if(!g_file_test(configdir, G_FILE_TEST_IS_DIR)
93 && g_mkdir(configdir, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) != 0)
94 g_error(_("Cannot create configuration directory ~/.chimara"));
97 /* Initialize settings file; it can be overridden by a "chimara-config" file
98 in the current directory */
100 if(g_file_test("chimara-config", G_FILE_TEST_IS_REGULAR))
101 keyfile = g_strdup("chimara-config");
103 keyfile = g_build_filename(g_get_home_dir(), ".chimara", "config", NULL);
104 GSettingsBackend *backend = g_keyfile_settings_backend_new(keyfile, "/org/chimara-if/player/", NULL);
105 self->prefs_settings = g_settings_new_with_backend("org.chimara-if.player.preferences", backend);
106 self->state_settings = g_settings_new_with_backend("org.chimara-if.player.state", backend);
109 /* Build user interface */
110 char *object_ids[] = {
115 GtkBuilder *builder = new_builder_with_objects(object_ids);
117 self->aboutwindow = GTK_WIDGET(load_object(builder, "aboutwindow"));
118 priv->action_group = GTK_ACTION_GROUP(load_object(builder, "app_group"));
119 g_object_ref(priv->action_group);
122 GtkRecentFilter *filter = gtk_recent_filter_new();
123 /* TODO: Use mimetypes and construct the filter dynamically depending on
124 what plugins are installed */
125 const gchar *patterns[] = {
126 "*.z[1-8]", "*.[zg]lb", "*.[zg]blorb", "*.ulx", "*.blb", "*.blorb", NULL
129 for(ptr = patterns; *ptr; ptr++)
130 gtk_recent_filter_add_pattern(filter, *ptr);
131 GtkRecentChooser *recent = GTK_RECENT_CHOOSER(load_object(builder, "recent"));
132 gtk_recent_chooser_add_filter(recent, filter);
134 gtk_builder_connect_signals(builder, self);
136 g_object_unref(builder);
139 /* PUBLIC FUNCTIONS */
142 chimara_app_get(void)
144 static ChimaraApp *theapp = NULL;
146 if(G_UNLIKELY(theapp == NULL)) {
147 theapp = CHIMARA_APP(g_object_new(CHIMARA_TYPE_APP, NULL));
149 /* Create one-per-application windows */
150 theapp->prefswindow = chimara_prefs_new();
151 theapp->browser_window = chimara_browser_new();
158 chimara_app_get_action_group(ChimaraApp *self)
160 CHIMARA_APP_USE_PRIVATE;
161 return priv->action_group;
164 /* Internal function: See if there is a corresponding graphics file. If so,
165 return its path. If not, return NULL. */
167 search_for_graphics_file(const char *path)
169 ChimaraApp *theapp = chimara_app_get();
171 /* First get the name of the story file */
172 char *scratch = g_path_get_basename(path);
173 *(strrchr(scratch, '.')) = '\0';
175 /* Check in the stored resource path, if set */
177 g_settings_get(theapp->prefs_settings, "resource-path", "ms", &resource_path);
179 /* Otherwise check in the current directory */
181 resource_path = g_path_get_dirname(path);
183 char *blorbfile = g_strconcat(resource_path, "/", scratch, ".blb", NULL);
185 g_free(resource_path);
187 if(g_file_test(blorbfile, G_FILE_TEST_EXISTS))
194 /* Remove a deleted player window from the list of currently opened windows */
196 on_player_delete_event(GtkWidget *player, GdkEvent *event, ChimaraApp *self)
198 CHIMARA_APP_USE_PRIVATE;
199 priv->window_list = g_slist_remove(priv->window_list, player);
200 return FALSE; /* don't block event */
204 chimara_app_open_game(ChimaraApp *self, const char *path)
206 CHIMARA_APP_USE_PRIVATE;
207 GError *error = NULL;
209 /* Open a new player window */
210 ChimaraPlayer *player = CHIMARA_PLAYER(chimara_player_new());
211 gtk_widget_show_all(GTK_WIDGET(player));
212 gtk_window_present(GTK_WINDOW(player));
214 gchar *blorbfile = search_for_graphics_file(path);
216 g_object_set(player->glk, "graphics-file", blorbfile, NULL);
219 if(!chimara_if_run_game(CHIMARA_IF(player->glk), path, &error)) {
220 error_dialog(GTK_WINDOW(player), error, _("Could not open game file '%s': "), path);
221 gtk_widget_destroy(GTK_WIDGET(player));
225 /* Add the opened game to the list of currently opened windows */
226 priv->window_list = g_slist_prepend(priv->window_list, player);
227 g_signal_connect_after(player, "delete-event", G_CALLBACK(on_player_delete_event), self);
232 /* GLADE CALLBACKS */
235 on_open_activate(GtkAction *action, ChimaraApp *theapp)
237 //if(!confirm_open_new_game(CHIMARA_GLK(player->glk)))
240 GtkWidget *dialog = gtk_file_chooser_dialog_new(_("Open Game"),
241 GTK_WINDOW(theapp->browser_window),
242 GTK_FILE_CHOOSER_ACTION_OPEN,
243 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
244 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
247 /* Get last opened path */
249 g_settings_get(theapp->state_settings, "last-open-path", "ms", &path);
251 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), path);
255 if(gtk_dialog_run(GTK_DIALOG(dialog)) != GTK_RESPONSE_ACCEPT)
258 GError *error = NULL;
259 char *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
261 if(!chimara_app_open_game(theapp, filename))
264 path = gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(dialog));
266 g_settings_set(theapp->state_settings, "last-open-path", "ms", path);
270 /* Add file to recent files list */
271 GtkRecentManager *manager = gtk_recent_manager_get_default();
274 if(!(uri = g_filename_to_uri(filename, NULL, &error)))
275 g_warning(_("Could not convert filename '%s' to URI: %s"), filename, error->message);
277 if(!gtk_recent_manager_add_item(manager, uri))
278 g_warning(_("Could not add URI '%s' to recent files list."), uri);
285 gtk_widget_destroy(dialog);
289 on_recent_item_activated(GtkRecentChooser *chooser, ChimaraApp *theapp)
291 GError *error = NULL;
292 gchar *uri = gtk_recent_chooser_get_current_uri(chooser);
294 if(!(filename = g_filename_from_uri(uri, NULL, &error))) {
295 error_dialog(GTK_WINDOW(theapp->browser_window), error, _("Could not open game file '%s': "), uri);
299 //if(!confirm_open_new_game(CHIMARA_GLK(player->glk)))
302 if(!chimara_app_open_game(theapp, filename))
305 /* Add file to recent files list again, this updates it to most recently used */
306 GtkRecentManager *manager = gtk_recent_manager_get_default();
307 if(!gtk_recent_manager_add_item(manager, uri))
308 g_warning(_("Could not add URI '%s' to recent files list."), uri);
317 on_quit_chimara_activate(GtkAction *action, ChimaraApp *theapp)
323 on_preferences_activate(GtkAction *action, ChimaraApp *theapp)
325 gtk_window_present(GTK_WINDOW(theapp->prefswindow));
329 on_about_activate(GtkAction *action, ChimaraApp *theapp)
331 gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(theapp->aboutwindow), PACKAGE_VERSION);
332 gtk_window_present(GTK_WINDOW(theapp->aboutwindow));