00001 /* 00002 config.h 00003 //template// 00004 */ 00005 00006 #ifndef CONFIG_H 00007 #define CONFIG_H 00008 00009 /* GAME_DEBUG 00010 0 = NOT debug mode 00011 1 = debug mode level 1 00012 2 = debug mode level 2 (verbose) 00013 *Motive of change: binary small and faster 00014 */ 00015 #define GAME_DEBUG 2 00016 00017 /* 00018 CHEAT 00019 0 = NOT allow change in monitor life and time and power bar 00020 1 = allow change... 00021 */ 00022 00023 #define CHEAT 1 00024 00025 /* 00026 TIMEOVER 00027 0 = disable 00028 1 = enable 00029 *Exibe cronometer and interrupt figth if time is ZERO. 00030 * Exibe Time Up message (timeup.pcx) if time over. 00031 */ 00032 #define TIMEOVER 1 00033 00034 /* 00035 PERFECT 00036 0 - disable 00037 1 - enable 00038 * If player wins and get zero damage then 00039 Exibe sprite perfect.pcx and play perfect.wav 00040 */ 00041 #define PERFECT 1 00042 00043 /* 00044 SCREENSHOT 00045 0 - disable 00046 1 - enable 00047 * press <F2> and save a screenshot * 00048 */ 00049 #define SCREENSHOT 1 00050 00051 /* 00052 TEMP 00053 0 - disable 00054 1 - enable 00055 * activate of features in development * 00056 */ 00057 #define TEMP 0 00058 00059 #define DEF_MAX_MONITOR_VARS 150 00060 #define DEF_MAX_USER_VARS 50 00061 #define DEF_MAX_CICLES 10000 00062 00063 /* END OF CONFIG FLAGS */ 00064 00065 /*******************************/ 00066 /* This redefinitions is necessary for TRON() ...*/ 00067 #define BRDATE __DATE__ 00068 #define BRTIME __TIME__ 00069 00070 #endif //CONFIG_H