This should fix animations. (bugs in the line of bomb explosions)
[supertux.git] / lib / utils / configfile.cpp
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2004 Michael George <mike@georgetech.com>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #include <cstdlib>
21 #include <string>
22
23 #include "../utils/configfile.h"
24 #include "../app/setup.h"
25 #include "../app/globals.h"
26 #include "../audio/sound_manager.h"
27
28 using namespace SuperTux;
29
30 #ifdef WIN32
31 const char * config_filename = ("/"+ package_symbol_name + "_config.dat").c_str();
32 #else
33 const char * config_filename = "/config";
34 #endif
35
36 Config* SuperTux::config = 0;
37
38 static void defaults ()
39 {
40   /* Set defaults: */
41   debug_mode = false;
42   SoundManager::get()->set_audio_device_available(true);
43
44   use_fullscreen = false;
45   show_fps = false;
46   use_gl = false;
47
48   SoundManager::get()->enable_sound(true);
49   SoundManager::get()->enable_music(true);
50 }
51
52 FILE * SuperTux::opendata(const std::string& rel_filename, const char *mode)
53 {
54   std::string filename;
55   FILE * fi;
56
57   filename = st_dir + rel_filename;
58
59   /* Try opening the file: */
60   fi = fopen(filename.c_str(), mode);
61
62   if (fi == NULL)
63     {
64       fprintf(stderr, "Warning: Unable to open the file \"%s\" ", filename.c_str());
65
66       if (strcmp(mode, "r") == 0)
67         fprintf(stderr, "for read!!!\n");
68       else if (strcmp(mode, "w") == 0)
69         fprintf(stderr, "for write!!!\n");
70     }
71
72   return(fi);
73 }
74
75 void Config::load()
76 {
77   FILE * file = NULL;
78
79   defaults();
80
81   /* override defaults from config file */
82
83   file = opendata(config_filename, "r");
84
85   if (file == NULL)
86     return;
87
88   /* read config file */
89
90   lisp_stream_t   stream;
91   lisp_object_t * root_obj = NULL;
92
93   lisp_stream_init_file (&stream, file);
94   root_obj = lisp_read (&stream);
95
96   if (root_obj->type == LISP_TYPE_EOF || root_obj->type == LISP_TYPE_PARSE_ERROR)
97     return;
98
99   if (strcmp(lisp_symbol(lisp_car(root_obj)), (package_symbol_name+"-config").c_str()) != 0)
100     return;
101
102   LispReader reader(lisp_cdr(root_obj));
103
104   reader.read_bool("fullscreen", use_fullscreen);
105   bool temp;
106   reader.read_bool("sound",     temp);
107   SoundManager::get()->enable_sound(temp);
108   reader.read_bool("music",      temp);
109   SoundManager::get()->enable_music(temp);
110   reader.read_bool("show_fps",   show_fps);
111
112   std::string video;
113   reader.read_string ("video", video);
114   if (video == "opengl")
115     use_gl = true;
116   else
117     use_gl = false;
118
119   reader.read_int ("joystick", joystick_num);
120
121   if (joystick_num >= 0)
122     {
123     reader.read_int ("joystick-x", joystick_keymap.x_axis);
124     reader.read_int ("joystick-y", joystick_keymap.y_axis);
125     reader.read_int ("joystick-a", joystick_keymap.a_button);
126     reader.read_int ("joystick-b", joystick_keymap.b_button);
127     reader.read_int ("joystick-start", joystick_keymap.start_button);
128     reader.read_int ("joystick-deadzone", joystick_keymap.dead_zone);
129     }
130
131   customload(reader);
132
133   lisp_free(root_obj);
134   fclose(file);
135 }
136
137 void Config::save ()
138 {
139   /* write settings to config file */
140   FILE * config = opendata(config_filename, "w");
141
142   if(config)
143     {
144       fprintf(config, ("("+package_symbol_name+"-config\n").c_str());
145       fprintf(config, "\t;; the following options can be set to #t or #f:\n");
146       fprintf(config, "\t(fullscreen %s)\n", use_fullscreen ? "#t" : "#f");
147       fprintf(config, "\t(sound      %s)\n", SoundManager::get()->sound_enabled()      ? "#t" : "#f");
148       fprintf(config, "\t(music      %s)\n", SoundManager::get()->music_enabled()      ? "#t" : "#f");
149       fprintf(config, "\t(show_fps   %s)\n", show_fps       ? "#t" : "#f");
150
151       fprintf(config, "\n\t;; either \"opengl\" or \"sdl\"\n");
152       fprintf(config, "\t(video      \"%s\")\n", use_gl ? "opengl" : "sdl");
153
154       if(use_joystick)
155         {
156         fprintf(config, "\n\t;; joystick number:\n");
157         fprintf(config, "\t(joystick   %d)\n", joystick_num);
158
159         fprintf(config, "\t(joystick-x   %d)\n", joystick_keymap.x_axis);
160         fprintf(config, "\t(joystick-y   %d)\n", joystick_keymap.y_axis);
161         fprintf(config, "\t(joystick-a   %d)\n", joystick_keymap.a_button);
162         fprintf(config, "\t(joystick-b   %d)\n", joystick_keymap.b_button);
163         fprintf(config, "\t(joystick-start  %d)\n", joystick_keymap.start_button);
164         fprintf(config, "\t(joystick-deadzone  %d)\n", joystick_keymap.dead_zone);
165         }
166         
167         customsave(config);
168
169       fprintf(config, ")\n");
170       fclose(config);
171     }
172 }
173
174 /* EOF */