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