X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fgameconfig.hpp;h=4263bda55f86a84c57d4f2bcca9d896728542119;hb=f171cfbf82ac235d60cc53d24bf9be6cc5365550;hp=8fdaff1230f9426beadc43fe4f1c49d681d6f111;hpb=7124d68eaa9f9f2099361c7073e4355d4f004339;p=supertux.git diff --git a/src/gameconfig.hpp b/src/gameconfig.hpp index 8fdaff123..4263bda55 100644 --- a/src/gameconfig.hpp +++ b/src/gameconfig.hpp @@ -1,7 +1,7 @@ -// $Id: configfile.h 2293 2005-03-25 20:39:56Z matzebraun $ +// $Id$ // -// SuperTux - A Jump'n Run -// Copyright (C) 2004 Michael George +// SuperTux= +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -26,26 +26,34 @@ class Config public: Config(); ~Config(); - + void load(); void save(); /** screen width in pixel (warning: this is the real screen width+height, - * supertux is using a logical width+height and not this one) + * you should use the logical SCREEN_WIDTH and SCREEN_HEIGHT for your + * rendering code.) */ int screenwidth; int screenheight; + float aspect_ratio; bool use_fullscreen; + bool try_vsync; bool show_fps; bool sound_enabled; bool music_enabled; - bool cheats_enabled; + bool console_enabled; + + int random_seed; // initial random seed. 0 ==> set from time() /** this variable is set if supertux should start in a specific level */ std::string start_level; + bool enable_script_debugger; std::string start_demo; std::string record_demo; + + 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. */ }; extern Config* config;