Changed the logic of aspect ratio, aspect_width/height now give projection size
[supertux.git] / src / gameconfig.cpp
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
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 #include <config.h>
20
21 #include "gameconfig.hpp"
22
23 #include <stdlib.h>
24 #include <string>
25 #include <stdexcept>
26
27 #include "lisp/parser.hpp"
28 #include "lisp/lisp.hpp"
29 #include "lisp/writer.hpp"
30 #include "control/joystickkeyboardcontroller.hpp"
31 #include "resources.hpp"
32 #include "main.hpp"
33
34 Config* config = 0;
35
36 Config::Config()
37 {
38   profile = 1;
39   use_fullscreen = false;
40   video = AUTO_VIDEO;
41   try_vsync = true;
42   show_fps = false;
43   sound_enabled = true;
44   music_enabled = true;
45   console_enabled = false;
46   random_seed = 0;          // set by time(), by default (unless in config)
47
48   screenwidth = 800;
49   screenheight = 600;
50   
51   aspect_width  = 800;
52   aspect_height = 600;
53
54   enable_script_debugger = false;
55
56   locale = ""; // autodetect 
57 }
58
59 Config::~Config()
60 {}
61
62 void
63 Config::load()
64 {
65   lisp::Parser parser;
66   const lisp::Lisp* root = parser.parse("config");
67
68   const lisp::Lisp* config_lisp = root->get_lisp("supertux-config");
69   if(!config_lisp)
70     throw std::runtime_error("File is not a supertux-config file");
71
72   config_lisp->get("show_fps", show_fps);
73   config_lisp->get("console", console_enabled);
74   config_lisp->get("locale", locale);
75   config_lisp->get("random_seed", random_seed);
76
77   const lisp::Lisp* config_video_lisp = config_lisp->get_lisp("video");
78   if(config_video_lisp) {
79     config_video_lisp->get("fullscreen", use_fullscreen);
80     std::string video_string;
81     config_video_lisp->get("video", video_string);
82     video = get_video_system(video_string);
83     config_video_lisp->get("vsync", try_vsync);
84     config_video_lisp->get("width", screenwidth);
85     config_video_lisp->get("height", screenheight);
86     config_video_lisp->get("aspect_width",  aspect_width);
87     config_video_lisp->get("aspect_height", aspect_height);
88   }
89
90   const lisp::Lisp* config_audio_lisp = config_lisp->get_lisp("audio");
91   if(config_audio_lisp) {
92     config_audio_lisp->get("sound_enabled", sound_enabled);
93     config_audio_lisp->get("music_enabled", music_enabled);
94   }
95
96   const lisp::Lisp* config_control_lisp = config_lisp->get_lisp("control");
97   if(config_control_lisp && main_controller) {
98     main_controller->read(*config_control_lisp);
99   }
100 }
101
102 void
103 Config::save()
104 {
105   lisp::Writer writer("config");
106
107   writer.start_list("supertux-config");
108
109   writer.write_bool("show_fps", show_fps);
110   writer.write_bool("console", console_enabled);
111   writer.write_string("locale", locale);
112
113   writer.start_list("video");
114   writer.write_bool("fullscreen", use_fullscreen);
115   writer.write_string("video", get_video_string(video));
116   writer.write_bool("vsync", try_vsync);
117   writer.write_int("width", screenwidth);
118   writer.write_int("height", screenheight);
119   writer.write_float("aspect_width",  aspect_width);
120   writer.write_float("aspect_height", aspect_height);
121   writer.end_list("video");
122
123   writer.start_list("audio");
124   writer.write_bool("sound_enabled", sound_enabled);
125   writer.write_bool("music_enabled", music_enabled);
126   writer.end_list("audio");
127
128   if(main_controller) {
129     writer.start_list("control");
130     main_controller->write(writer);
131     writer.end_list("control");
132   }
133
134   writer.end_list("supertux-config");
135 }