X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=config.h;h=6b346c5e3d10566cb8901dca2ce5d69f95b1749d;hp=63d143b543006ef22537761c7c3b4d41751fa747;hb=13f67bd0888b8b4ccec1a1fb5516074423d0ec32;hpb=fac9f096e69b8e1594a90796ec8dcf222fc1b6e3 diff --git a/config.h b/config.h index 63d143b..6b346c5 100644 --- a/config.h +++ b/config.h @@ -1,13 +1,26 @@ +#ifndef VOR_CONFIG_H +#define VOR_CONFIG_H + +#define debug(x) if(DEBUG) { x; } + #define VERSION "0.1" +#define DATA_PREFIX "/usr/share/vor" + +// Speed of the game. New players may like to try 3/4 or 2/3 speed. +#define GAMESPEED 1.00 +// #define GAMESPEED (3.0/4.0) +// #define GAMESPEED (2.0/3.0) // screen size #define XSIZE 640 #define YSIZE 480 // number of rock image files. -#define NROCKS 6 +#define NROCKS 50 // image file containing font for score stuff. #define BIG_FONT_FILE "fonts/score.png" +#define I_ROCKS 25 // initial/final counts for rocks-on-screen. +#define F_ROCKS 45 #define MAXROCKS 120 // MAX Rocks #define MAXROCKHEIGHT 100 @@ -16,6 +29,27 @@ #define MAXENGINEDOTS 5000 #define MAXBANGDOTS 50000 #define MAXSPACEDOTS 2000 +#define MAXDUSTDEPTH 2 #define W 100 #define M 255 -#define START_RAD_SQ 40000 // radius^2 (pixels) which will be cleared of rocks when you die +#define BLAST_RADIUS 300 // radius^2 (pixels) which will be cleared of rocks when you die +#define DEAD_PAUSE_LENGTH 40.0 + +#define MAX_PATH_LEN 1024 + +#ifndef true +#define true 1 +#endif + +#ifndef false +#define false 0 +#endif + +#ifndef NULL +#define NULL 0 +#endif + +#define CONDERROR(a) if((a)) {initerror = strdup(SDL_GetError());return 1;} +#define NULLERROR(a) CONDERROR((a) == NULL) + +#endif // VOR_CONFIG_H