- change subimage loading syntax to be more usefull, ie. now its (images "somefile...
[supertux.git] / src / 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 "configfile.h"
24 #include "setup.h"
25 #include "globals.h"
26 #include "lispreader.h"
27 #include "player.h"
28
29 #ifdef WIN32
30 const char * config_filename = "/st_config.dat";
31 #else
32 const char * config_filename = "/config";
33 #endif
34
35 static void defaults ()
36 {
37   /* Set defaults: */
38   debug_mode = false;
39   audio_device = true;
40
41   use_fullscreen = false;
42   show_fps = false;
43   use_gl = false;
44
45   use_sound = true;
46   use_music = true;
47 }
48
49 void loadconfig(void)
50 {
51   FILE * file = NULL;
52
53   defaults();
54
55   /* override defaults from config file */
56
57   file = opendata(config_filename, "r");
58
59   if (file == NULL)
60     return;
61
62   /* read config file */
63
64   lisp_stream_t   stream;
65   lisp_object_t * root_obj = NULL;
66
67   lisp_stream_init_file (&stream, file);
68   root_obj = lisp_read (&stream);
69
70   if (root_obj->type == LISP_TYPE_EOF || root_obj->type == LISP_TYPE_PARSE_ERROR)
71     return;
72
73   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-config") != 0)
74     return;
75
76   LispReader reader(lisp_cdr(root_obj));
77
78   reader.read_bool("fullscreen", use_fullscreen);
79   reader.read_bool("sound",      use_sound);
80   reader.read_bool("music",      use_music);
81   reader.read_bool("show_fps",   show_fps);
82
83   std::string video;
84   reader.read_string ("video", video);
85   if (video == "opengl")
86     use_gl = true;
87   else
88     use_gl = false;
89
90   reader.read_int ("joystick", joystick_num);
91   if (!(joystick_num >= 0))
92     use_joystick = false;
93   else
94     use_joystick = true;
95
96   reader.read_int ("joystick-x", joystick_keymap.x_axis);
97   reader.read_int ("joystick-y", joystick_keymap.y_axis);
98   reader.read_int ("joystick-a", joystick_keymap.a_button);
99   reader.read_int ("joystick-b", joystick_keymap.b_button);
100   reader.read_int ("joystick-start", joystick_keymap.start_button);
101   reader.read_int ("joystick-deadzone", joystick_keymap.dead_zone);
102
103   reader.read_int ("keyboard-jump", keymap.jump);
104   reader.read_int ("keyboard-activate", keymap.activate);
105   reader.read_int ("keyboard-duck", keymap.duck);
106   reader.read_int ("keyboard-left", keymap.left);
107   reader.read_int ("keyboard-right", keymap.right);
108   reader.read_int ("keyboard-fire", keymap.fire);
109
110   lisp_free(root_obj);
111 }
112
113 void saveconfig (void)
114 {
115   /* write settings to config file */
116   FILE * config = opendata(config_filename, "w");
117
118   if(config)
119     {
120       fprintf(config, "(supertux-config\n");
121       fprintf(config, "\t;; the following options can be set to #t or #f:\n");
122       fprintf(config, "\t(fullscreen %s)\n", use_fullscreen ? "#t" : "#f");
123       fprintf(config, "\t(sound      %s)\n", use_sound      ? "#t" : "#f");
124       fprintf(config, "\t(music      %s)\n", use_music      ? "#t" : "#f");
125       fprintf(config, "\t(show_fps   %s)\n", show_fps       ? "#t" : "#f");
126
127       fprintf(config, "\n\t;; either \"opengl\" or \"sdl\"\n");
128       fprintf(config, "\t(video      \"%s\")\n", use_gl ? "opengl" : "sdl");
129
130       fprintf(config, "\n\t;; joystick number (-1 means no joystick):\n");
131       fprintf(config, "\t(joystick   %d)\n", use_joystick ? joystick_num : -1);
132
133       fprintf(config, "\t(joystick-x   %d)\n", joystick_keymap.x_axis);
134       fprintf(config, "\t(joystick-y   %d)\n", joystick_keymap.y_axis);
135       fprintf(config, "\t(joystick-a   %d)\n", joystick_keymap.a_button);
136       fprintf(config, "\t(joystick-b   %d)\n", joystick_keymap.b_button);
137       fprintf(config, "\t(joystick-start  %d)\n", joystick_keymap.start_button);
138       fprintf(config, "\t(joystick-deadzone  %d)\n", joystick_keymap.dead_zone);
139
140       fprintf(config, "\t(keyboard-jump  %d)\n", keymap.jump);
141       fprintf(config, "\t(keyboard-duck  %d)\n", keymap.duck);
142       fprintf(config, "\t(keyboard-left  %d)\n", keymap.left);
143       fprintf(config, "\t(keyboard-right %d)\n", keymap.right);
144       fprintf(config, "\t(keyboard-fire  %d)\n", keymap.fire);
145
146       fprintf(config, ")\n");
147     }
148 }
149
150 /* EOF */