~ubuntu-branches/ubuntu/precise/pingus/precise

« back to all changes in this revision

Viewing changes to src/globals.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Goulais
  • Date: 2004-08-09 10:26:00 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040809102600-lg2q9lfars0q1p42
Tags: 0.6.0-8
Applied patch from Andreas Jochens (Closes: #263992)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  $Id: globals.cxx,v 1.13 2003/04/15 10:33:15 grumbel Exp $
 
2
//
 
3
//  Pingus - A free Lemmings clone
 
4
//  Copyright (C) 1999 Ingo Ruhnke <grumbel@gmx.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
 
 
20
#include "globals.hxx"
 
21
 
 
22
int         game_speed                      = 20;
 
23
bool        print_fps                       = false;
 
24
int         verbose                         = 0;
 
25
bool        music_enabled                   = true;
 
26
bool        sound_enabled                   = true;
 
27
bool        enable_demo_recording           = true;
 
28
bool        play_demo                       = false;
 
29
bool        cursor_enabled                  = false;
 
30
bool        fast_mode                       = false;
 
31
bool        maintainer_mode                 = false;
 
32
std::string demo_file;
 
33
bool        start_editor                    = false;
 
34
bool        auto_scrolling                  = true;
 
35
int         tile_size                       = 32;
 
36
#ifdef WIN32
 
37
bool        fullscreen_enabled              = true;
 
38
#else
 
39
bool        fullscreen_enabled              = false;
 
40
#endif
 
41
int         screen_width                    = 800;
 
42
int         screen_height                   = 600;
 
43
bool        draw_collision_map              = false;
 
44
bool        swcursor_enabled                = false;
 
45
std::string config_file;
 
46
bool        max_cpu_usage                   = true;
 
47
bool        use_opengl                      = false;
 
48
bool        action_help                     = true;
 
49
bool        show_input_debug_screen         = false;
 
50
 
 
51
int         min_frame_skip                  = 1;
 
52
int         max_frame_skip                  = 5;
 
53
 
 
54
std::string controller_file;
 
55
 
 
56
std::string global_username;
 
57
std::string global_email; 
 
58
std::string default_language                = "en";
 
59
 
 
60
int         pingus_debug_flags              = 0;
 
61
 
 
62
/* EOF */