Added Size class
[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_systems.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   /** the width/height of the window managers window */
38   Size window_size;
39
40   /** the aspect ratio */
41   Size aspect_size;
42   
43   float magnification;
44
45   bool use_fullscreen;
46   VideoSystem video;
47   bool try_vsync;
48   bool show_fps;
49   bool sound_enabled;
50   bool music_enabled;
51   bool console_enabled;
52
53   int random_seed;            // initial random seed.  0 ==> set from time()
54
55   /** this variable is set if supertux should start in a specific level */
56   std::string start_level;
57   bool enable_script_debugger;
58   std::string start_demo;
59   std::string record_demo;
60
61   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. */
62 };
63
64 #endif
65
66 /* EOF */