Some initial work on getting load/save working for Levelsets
[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 {
49 }
50
51 Config::~Config()
52 {}
53
54 void
55 Config::load()
56 {
57   lisp::Parser parser;
58   const lisp::Lisp* root = parser.parse("config");
59
60   const lisp::Lisp* config_lisp = root->get_lisp("supertux-config");
61   if(!config_lisp)
62     throw std::runtime_error("File is not a supertux-config file");
63
64   config_lisp->get("profile", profile);
65   config_lisp->get("show_fps", show_fps);
66   config_lisp->get("console", console_enabled);
67   config_lisp->get("locale", locale);
68   config_lisp->get("random_seed", random_seed);
69
70   const lisp::Lisp* config_video_lisp = config_lisp->get_lisp("video");
71   if(config_video_lisp) {
72     config_video_lisp->get("fullscreen", use_fullscreen);
73     std::string video_string;
74     config_video_lisp->get("video", video_string);
75     video = VideoSystem::get_video_system(video_string);
76     config_video_lisp->get("vsync", try_vsync);
77
78     config_video_lisp->get("fullscreen_width",  fullscreen_size.width);
79     config_video_lisp->get("fullscreen_height", fullscreen_size.height);
80     config_video_lisp->get("fullscreen_refresh_rate", fullscreen_refresh_rate);
81
82     config_video_lisp->get("window_width",  window_size.width);
83     config_video_lisp->get("window_height", window_size.height);
84
85     config_video_lisp->get("aspect_width",  aspect_size.width);
86     config_video_lisp->get("aspect_height", aspect_size.height);
87
88     config_video_lisp->get("magnification", magnification);
89   }
90
91   const lisp::Lisp* config_audio_lisp = config_lisp->get_lisp("audio");
92   if(config_audio_lisp) {
93     config_audio_lisp->get("sound_enabled", sound_enabled);
94     config_audio_lisp->get("music_enabled", music_enabled);
95   }
96
97   const lisp::Lisp* config_control_lisp = config_lisp->get_lisp("control");
98   if(config_control_lisp && g_input_manager) {
99     g_input_manager->read(*config_control_lisp);
100   }
101
102   const lisp::Lisp* config_addons_lisp = config_lisp->get_lisp("addons");
103   if(config_addons_lisp) {
104     AddonManager::get_instance().read(*config_addons_lisp);
105   }
106 }
107
108 void
109 Config::save()
110 {
111   lisp::Writer writer("config");
112
113   writer.start_list("supertux-config");
114
115   writer.write("profile", profile);
116   writer.write("show_fps", show_fps);
117   writer.write("console", console_enabled);
118   writer.write("locale", locale);
119
120   writer.start_list("video");
121   writer.write("fullscreen", use_fullscreen);
122   writer.write("video", VideoSystem::get_video_string(video));
123   writer.write("vsync", try_vsync);
124
125   writer.write("fullscreen_width",  fullscreen_size.width);
126   writer.write("fullscreen_height", fullscreen_size.height);
127   writer.write("fullscreen_refresh_rate", fullscreen_refresh_rate);
128
129   writer.write("window_width",  window_size.width);
130   writer.write("window_height", window_size.height);
131
132   writer.write("aspect_width",  aspect_size.width);
133   writer.write("aspect_height", aspect_size.height);
134
135   writer.write("magnification", magnification);
136
137   writer.end_list("video");
138
139   writer.start_list("audio");
140   writer.write("sound_enabled", sound_enabled);
141   writer.write("music_enabled", music_enabled);
142   writer.end_list("audio");
143
144   if(g_input_manager) {
145     writer.start_list("control");
146     g_input_manager->write(writer);
147     writer.end_list("control");
148   }
149
150   writer.start_list("addons");
151   AddonManager::get_instance().write(writer);
152   writer.end_list("addons");
153
154   writer.end_list("supertux-config");
155 }
156
157 /* EOF */