Cleaned up VideoSystem initalisation
[supertux.git] / src / supertux / gameconfig.hpp
1 //  SuperTux=
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 #ifndef HEADER_SUPERTUX_SUPERTUX_GAMECONFIG_HPP
18 #define HEADER_SUPERTUX_SUPERTUX_GAMECONFIG_HPP
19
20 #include "video/video_system.hpp"
21 #include "math/size.hpp"
22
23 class Config
24 {
25 public:
26   Config();
27   ~Config();
28
29   void load();
30   void save();
31
32   int profile;
33
34   // the width/height to be used to display the game in fullscreen
35   Size fullscreen_size;
36
37   // refresh rate for use in fullscreen, 0 for auto
38   int fullscreen_refresh_rate;
39
40   /** the width/height of the window managers window */
41   Size window_size;
42
43   /** the aspect ratio */
44   Size aspect_size;
45
46   float magnification;
47
48   bool use_fullscreen;
49   VideoSystem::Enum video;
50   bool try_vsync;
51   bool show_fps;
52   bool sound_enabled;
53   bool music_enabled;
54   bool console_enabled;
55
56   int random_seed;            // initial random seed.  0 ==> set from time()
57
58   /** this variable is set if supertux should start in a specific level */
59   std::string start_level;
60   bool enable_script_debugger;
61   std::string start_demo;
62   std::string record_demo;
63
64   std::string locale; /**< force SuperTux language to this locale, e.g. "de". A file "data/locale/xx.po" must exist for this to work. An empty string means autodetect. */
65 };
66
67 #endif
68
69 /* EOF */