00001
00004
00005 #ifndef CONFIG_H
00006 #define CONFIG_H
00007
00008 #define OPTIMIZE_ROM_CALLS
00011
00012 #define REGISTERVAR
00016 #define SET_FILE_IN_USE_BIT
00017
00018 #define ALLOWDEBUG
00019
00020 #undef DEBUG_HEAVILY
00021
00022 #undef INTERPRETER_DEBUG
00023
00024 #undef DEBUG_BALANCE
00025
00026 #undef DEBUG_ALLOCATOR
00027
00028 #undef DEBUG_FILES
00029
00030 #undef DISABLE_COMPRESSION
00031
00032 #undef DISABLE_HUFFMAN
00033
00034 #undef DISABLE_RLE
00035
00036
00037 #define CROGUE_VERSION "Pre-Beta 6a"
00038
00039 #define CROGUE_VERSION_MAJOR 6
00040
00041 #define CROGUE_VERSION_MINOR 0
00042
00043
00044 #define SAVEFILENAME "rgsave"
00045
00046 #define DATAFILENAME "crogdat"
00047
00048 #define DATAFILENAME_PC "crogdat.dat"
00049
00050 #define SCOREFILENAME "rgscores"
00051
00052 #define NUM_SCORES 10
00053
00054 #define DLLFILENAME "crogdll"
00055
00056
00059 #define DLL_IDENTIFICATION_NUMBER \
00060 (0x6CA4F134+CROGUE_VERSION_MAJOR*10+CROGUE_VERSION_MINOR)
00061
00063 #define MONSTERS_MAX 128
00064
00065 #define MESSAGEBUF_SIZE 512
00066
00067 #define PLRINVSIZE 50
00068
00070 #define DELAY_AMOUNT 3
00071
00072 #define DELAY_AMOUNT_PC 80
00073
00074 #define LEVEL_SCORE_FACTOR 100
00075
00076 #define DEFAULT_COLOR 8
00077
00078 #endif //CONFIG_H
00079