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