Made ChimaraPlayer class
[projects/chimara/chimara.git] / player / main.c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * main.c
4  * Copyright (C) Philip en Marijn 2008 <>
5  * 
6  * main.c is free software copyrighted by Philip en Marijn.
7  * 
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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.
19  * 
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.
31  */
32
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <unistd.h>
36 #include <string.h>
37 #include <stdio.h>
38
39 #include <glib.h>
40 #include <glib/gi18n.h>
41 #include <glib/gstdio.h>
42 #include <gtk/gtk.h>
43
44 /* Use a custom GSettings backend for our preferences file */
45 #define G_SETTINGS_ENABLE_BACKEND
46 #include <gio/gsettingsbackend.h>
47
48 #include "error.h"
49 #include <libchimara/chimara-glk.h>
50 #include <libchimara/chimara-if.h>
51
52 #include "preferences.h"
53 #include "player.h"
54
55
56
57 /* Global global pointers */
58 GtkBuilder *builder = NULL;
59 GtkWidget *aboutwindow = NULL;
60 GtkWidget *prefswindow = NULL;
61
62 GSettings *prefs_settings = NULL;
63 GSettings *state_settings = NULL;
64
65 static GObject *
66 load_object(const gchar *name)
67 {
68         GObject *retval;
69         if( (retval = gtk_builder_get_object(builder, name)) == NULL) {
70                 error_dialog(NULL, NULL, "Error while getting object '%s'", name);
71                 g_error("Error while getting object '%s'", name);
72         }
73         return retval;
74 }
75
76 static void
77 create_window(void)
78 {
79         GError *error = NULL;
80
81         builder = gtk_builder_new();
82         if( !gtk_builder_add_from_file(builder, PACKAGE_DATA_DIR "/chimara.ui", &error) ) {
83 #ifdef DEBUG
84                 g_error_free(error);
85                 error = NULL;
86                 if( !gtk_builder_add_from_file(builder, PACKAGE_SRC_DIR "/chimara.ui", &error) ) {
87 #endif /* DEBUG */
88                         error_dialog(NULL, error, "Error while building interface: ");  
89                         return;
90 #ifdef DEBUG
91                 }
92 #endif /* DEBUG */
93         }
94
95         aboutwindow = GTK_WIDGET(load_object("aboutwindow"));
96         prefswindow = GTK_WIDGET(load_object("prefswindow"));
97
98         const gchar **ptr;
99         GtkRecentFilter *filter = gtk_recent_filter_new();
100         /* TODO: Use mimetypes and construct the filter dynamically depending on 
101         what plugins are installed */
102         const gchar *patterns[] = {
103                 "*.z[1-8]", "*.[zg]lb", "*.[zg]blorb", "*.ulx", "*.blb", "*.blorb", NULL
104         };
105
106         for(ptr = patterns; *ptr; ptr++)
107                 gtk_recent_filter_add_pattern(filter, *ptr);
108         GtkRecentChooser *recent = GTK_RECENT_CHOOSER(load_object("recent"));
109         gtk_recent_chooser_add_filter(recent, filter);
110
111         /* Create preferences window */
112         preferences_create();
113 }
114
115 int
116 main(int argc, char *argv[])
117 {
118         GError *error = NULL;
119
120 #ifdef ENABLE_NLS
121         bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
122         bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
123         textdomain(GETTEXT_PACKAGE);
124 #endif
125
126         if( !g_thread_supported() )
127                 g_thread_init(NULL);
128         gdk_threads_init();
129         gtk_init(&argc, &argv);
130
131         /* Create configuration dir ~/.chimara */
132         gchar *configdir = g_build_filename(g_get_home_dir(), ".chimara", NULL);
133         if(!g_file_test(configdir, G_FILE_TEST_IS_DIR)
134                 && g_mkdir(configdir, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) != 0)
135                 g_error(_("Cannot create configuration directory ~/.chimara"));
136         g_free(configdir);
137
138         /* Initialize settings file; it can be overridden by a "chimara-config" file
139          in the current directory */
140         gchar *keyfile;
141         if(g_file_test("chimara-config", G_FILE_TEST_IS_REGULAR))
142                 keyfile = g_strdup("chimara-config");
143         else
144                 keyfile = g_build_filename(g_get_home_dir(), ".chimara", "config", NULL);
145         GSettingsBackend *backend = g_keyfile_settings_backend_new(keyfile, "/org/chimara-if/player/", NULL);
146         prefs_settings = g_settings_new_with_backend("org.chimara-if.player.preferences", backend);
147         state_settings = g_settings_new_with_backend("org.chimara-if.player.state", backend);
148         g_free(keyfile);
149
150         create_window();
151
152         GtkWidget *window = chimara_player_new();
153         gtk_widget_show_all(window);
154
155         //if(argc == 3) {
156         //      g_object_set(glk, "graphics-file", argv[2], NULL);
157         //}
158         //if(argc >= 2) {
159         //      if( !chimara_if_run_game(CHIMARA_IF(glk), argv[1], &error) ) {
160         //              error_dialog(GTK_WINDOW(window), error, "Error starting Glk library: ");
161         //              return 1;
162         //      }
163         //}
164
165     gdk_threads_enter();
166         gtk_main();
167         gdk_threads_leave();
168
169         return 0;
170 }