Separate KeyboardConfig out into a separate class that can be stored in the global...
[supertux.git] / src / supertux / gameconfig.cpp
1 //  SuperTux -  A Jump'n Run
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "supertux/gameconfig.hpp"
18
19 #include <stdexcept>
20
21 #include "addon/addon_manager.hpp"
22 #include "control/input_manager.hpp"
23 #include "lisp/writer.hpp"
24 #include "lisp/parser.hpp"
25 #include "util/reader.hpp"
26 #include "supertux/globals.hpp"
27
28 Config::Config() :
29   profile(1),
30   fullscreen_size(0, 0),
31   fullscreen_refresh_rate(0),
32   window_size(800, 600),
33   aspect_size(0, 0), // auto detect
34   magnification(0.0f),
35   use_fullscreen(false),
36   video(VideoSystem::AUTO_VIDEO),
37   try_vsync(true),
38   show_fps(false),
39   sound_enabled(true),
40   music_enabled(true),
41   console_enabled(false),
42   random_seed(0), // set by time(), by default (unless in config)
43   start_level(),
44   enable_script_debugger(false),
45   start_demo(),
46   record_demo(),
47   locale(),
48   keyboard_config()
49 {
50 }
51
52 Config::~Config()
53 {}
54
55 void
56 Config::load()
57 {
58   lisp::Parser parser;
59   const lisp::Lisp* root = parser.parse("config");
60
61   const lisp::Lisp* config_lisp = root->get_lisp("supertux-config");
62   if(!config_lisp)
63   {
64     throw std::runtime_error("File is not a supertux-config file");
65   }
66
67   config_lisp->get("profile", profile);
68   config_lisp->get("show_fps", show_fps);
69   config_lisp->get("console", console_enabled);
70   config_lisp->get("locale", locale);
71   config_lisp->get("random_seed", random_seed);
72
73   const lisp::Lisp* config_video_lisp = config_lisp->get_lisp("video");
74   if(config_video_lisp)
75   {
76     config_video_lisp->get("fullscreen", use_fullscreen);
77     std::string video_string;
78     config_video_lisp->get("video", video_string);
79     video = VideoSystem::get_video_system(video_string);
80     config_video_lisp->get("vsync", try_vsync);
81
82     config_video_lisp->get("fullscreen_width",  fullscreen_size.width);
83     config_video_lisp->get("fullscreen_height", fullscreen_size.height);
84     config_video_lisp->get("fullscreen_refresh_rate", fullscreen_refresh_rate);
85
86     config_video_lisp->get("window_width",  window_size.width);
87     config_video_lisp->get("window_height", window_size.height);
88
89     config_video_lisp->get("aspect_width",  aspect_size.width);
90     config_video_lisp->get("aspect_height", aspect_size.height);
91
92     config_video_lisp->get("magnification", magnification);
93   }
94
95   const lisp::Lisp* config_audio_lisp = config_lisp->get_lisp("audio");
96   if(config_audio_lisp) {
97     config_audio_lisp->get("sound_enabled", sound_enabled);
98     config_audio_lisp->get("music_enabled", music_enabled);
99   }
100
101   const lisp::Lisp* config_control_lisp = config_lisp->get_lisp("control");
102   if (config_control_lisp)
103   {
104     keyboard_config.read(*config_control_lisp);
105   }
106
107   const lisp::Lisp* config_addons_lisp = config_lisp->get_lisp("addons");
108   if (config_addons_lisp && AddonManager::current())
109   {
110     AddonManager::current()->read(*config_addons_lisp);
111   }
112 }
113
114 void
115 Config::save()
116 {
117   lisp::Writer writer("config");
118
119   writer.start_list("supertux-config");
120
121   writer.write("profile", profile);
122   writer.write("show_fps", show_fps);
123   writer.write("console", console_enabled);
124   writer.write("locale", locale);
125
126   writer.start_list("video");
127   writer.write("fullscreen", use_fullscreen);
128   writer.write("video", VideoSystem::get_video_string(video));
129   writer.write("vsync", try_vsync);
130
131   writer.write("fullscreen_width",  fullscreen_size.width);
132   writer.write("fullscreen_height", fullscreen_size.height);
133   writer.write("fullscreen_refresh_rate", fullscreen_refresh_rate);
134
135   writer.write("window_width",  window_size.width);
136   writer.write("window_height", window_size.height);
137
138   writer.write("aspect_width",  aspect_size.width);
139   writer.write("aspect_height", aspect_size.height);
140
141   writer.write("magnification", magnification);
142
143   writer.end_list("video");
144
145   writer.start_list("audio");
146   writer.write("sound_enabled", sound_enabled);
147   writer.write("music_enabled", music_enabled);
148   writer.end_list("audio");
149
150   writer.start_list("control");
151   keyboard_config.write(writer);
152   writer.end_list("control");
153
154   if (AddonManager::current())
155   {
156     writer.start_list("addons");
157     AddonManager::current()->write(writer);
158     writer.end_list("addons");
159   }
160
161   writer.end_list("supertux-config");
162 }
163
164 /* EOF */