JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
99bed8f2d9be0d3fe051b6af9922a7df999e0289
[vor.git] / config.h
1 #ifndef VOR_CONFIG_H
2 #define VOR_CONFIG_H
3
4 #define VERSION "0.4pre"
5
6 // screen size
7 #define XSIZE 640
8 #define YSIZE 480
9
10 #define SCREENDXMIN 7.5
11
12 // image file containing font for score stuff.
13 #define BIG_FONT_FILE "fonts/score.png"
14
15
16 // -----------------------------------------------------------------------
17 // Rocks
18
19 // number of rock images
20 #define NROCKS 50 
21
22 // initial/final counts for rocks-on-screen
23 #define I_ROCKS 25
24 #define F_ROCKS 45
25
26 // number of rock structs to allocate
27 #define MAXROCKS 120
28
29 #define MAXENGINEDOTS 5000
30 #define MAXBANGDOTS 50000
31 #define MAXSPACEDOTS 2000
32 #define MAXDUSTDEPTH 2
33 #define W 100
34 #define M 255
35
36 // radius^2 (pixels) which will be cleared of rocks when you die
37 #define BLAST_RADIUS 300
38 #define DEAD_PAUSE_LENGTH 40.0
39
40 #define MAX_PATH_LEN 1024
41
42 #endif // VOR_CONFIG_H