JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Some code cleanup.
[vor.git] / config.h
1 #ifndef VOR_CONFIG_H
2 #define VOR_CONFIG_H
3
4 #define VERSION "0.1"
5
6 // screen size
7 #define XSIZE 640
8 #define YSIZE 480
9
10 // number of rock image files.
11 #define NROCKS 6
12 // image file containing font for score stuff.
13 #define BIG_FONT_FILE "fonts/score.png"
14
15 #define MAXROCKS 120 // MAX Rocks
16 #define MAXROCKHEIGHT 100
17 #define ROCKRATE 2
18 #define MAXBLACKPOINTS 500
19 #define MAXENGINEDOTS 5000
20 #define MAXBANGDOTS 50000
21 #define MAXSPACEDOTS 2000
22 #define W 100
23 #define M 255
24 #define BLAST_RADIUS 200 // radius^2 (pixels) which will be cleared of rocks when you die
25
26 #define MAX_PATH_LEN 1024
27
28 #ifndef true
29 #define true 1
30 #endif
31
32 #ifndef false
33 #define false 0
34 #endif
35
36 #ifndef NULL
37 #define NULL 0
38 #endif
39
40 #endif // VOR_CONFIG_H