Just removed two printfs I have mistakelly committed.
[supertux.git] / src / globals.h
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Bill Kendrick <bill@newbreedsoftware.com>
5 //                     Tobias Glaesser <tobi.web@gmx.de>
6 //                     Ingo Ruhnke <grumbel@gmx.de>
7 //
8 //  This program is free software; you can redistribute it and/or
9 //  modify it under the terms of the GNU General Public License
10 //  as published by the Free Software Foundation; either version 2
11 //  of the License, or (at your option) any later version.
12 //
13 //  This program is distributed in the hope that it will be useful,
14 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 //  GNU General Public License for more details.
17 // 
18 //  You should have received a copy of the GNU General Public License
19 //  along with this program; if not, write to the Free Software
20 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21
22 #ifndef SUPERTUX_GLOBALS_H
23 #define SUPERTUX_GLOBALS_H
24
25 #include <string>
26 #include <SDL.h>
27 #include "text.h"
28 #include "menu.h"
29 #include "mousecursor.h"
30
31 extern std::string datadir;
32
33 /* Joystick buttons and axes: */
34 extern int JOY_A;
35 extern int JOY_B;
36 extern int JOY_START;
37
38 extern int JOY_X;
39 extern int JOY_Y;
40
41 extern SDL_Surface * screen;
42 extern Text* black_text;
43 extern Text* gold_text;
44 extern Text* white_text;
45 extern Text* white_small_text;
46 extern Text* white_big_text;
47 extern Text* blue_text;
48 extern Text* red_text;
49 extern Text* yellow_nums;
50
51 extern MouseCursor * mouse_cursor;
52
53 extern bool use_gl;
54 extern bool use_joystick;
55 extern bool use_fullscreen;
56 extern bool debug_mode;
57 extern bool show_fps;
58
59 /** The number of the joystick that will be use in the game */
60 extern int joystick_num;
61 extern char* level_startup_file;
62 extern bool launch_worldmap_mode;
63
64 /* SuperTux directory ($HOME/.supertux) and save directory($HOME/.supertux/save) */
65 extern char* st_dir;
66 extern char* st_save_dir;
67
68 extern float game_speed;
69 extern SDL_Joystick * js;
70
71 int wait_for_event(SDL_Event& event,unsigned int min_delay = 0, unsigned int max_delay = 0, bool empty_events = false);
72
73 #define JOYSTICK_DEAD_ZONE 4096
74
75 #endif /* SUPERTUX_GLOBALS_H */