Limitated the number of bullets to be shot at the same time.
[supertux.git] / src / defines.h
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2000 Bill Kendrick <bill@newbreedsoftware.com>
5 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
6 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 // 
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 //  02111-1307, USA.
21
22 #if !defined( SUPERTUX_DEFINES_H )
23
24 #define SUPERTUX_DEFINES_H
25 /* Version: */
26
27 #ifndef VERSION
28         #define VERSION "0.0.5-0.0.6-CVS"
29 #endif
30
31 /* Frames per second: */
32
33 #define FPS (1000 / 25)
34
35 enum Direction { LEFT = 0, RIGHT = 1 };
36
37 /* Direction (keyboard/joystick) states: */
38
39 #define UP 0
40 #define DOWN 1
41
42 /* Dying types: */
43
44 /* ---- NO 0 */
45 enum DyingType {
46   DYING_NOT = 0,
47   DYING_SQUISHED = 1,
48   DYING_FALLING = 2
49 };
50
51 /* Hurt modes: */
52
53 #define KILL 0
54 #define SHRINK 1
55
56 /* Sizes: */
57
58 #define SMALL 0
59 #define BIG 1
60
61 /* Speed constraints: */
62
63 #define MAX_WALK_XM 2.3
64 #define MAX_RUN_XM 3.2
65 #define MAX_YM 20.0
66 #define MAX_JUMP_TIME 375
67 #define MAX_LIVES 99
68
69 #define WALK_SPEED 1.0
70 #define RUN_SPEED 1.5
71 #define JUMP_SPEED 1.2
72
73 #define MAX_BULLETS 2
74
75 #define GRAVITY 1.0
76 #define YM_FOR_JUMP 6.0
77 #define WALK_ACCELERATION_X 0.03
78 #define RUN_ACCELERATION_X 0.04
79 #define KILL_BOUNCE_YM 8.0
80
81 #define SKID_XM 2.0
82 #define SKID_TIME 200
83
84 /* Size constraints: */
85
86 #define OFFSCREEN_DISTANCE 256
87
88 #define LEVEL_WIDTH 375
89
90
91 /* Debugging */
92
93 #ifdef DEBUG
94         #define DEBUG_MSG( msg ) { \
95         printf( msg ); printf("\n"); \
96         }
97         #else
98        #define DEBUG_MSG( msg ) {}
99 #endif
100
101 #endif
102