44 |
44 |
45 #define MAKE_VERSION_NUMBER(MAJ, MIN, PAT) ((MAJ * 10000) + (MIN * 100) + PAT) |
45 #define MAKE_VERSION_NUMBER(MAJ, MIN, PAT) ((MAJ * 10000) + (MIN * 100) + PAT) |
46 #define VERSION_NUMBER MAKE_VERSION_NUMBER (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) |
46 #define VERSION_NUMBER MAKE_VERSION_NUMBER (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) |
47 |
47 |
48 // On Windows, files are case-insensitive |
48 // On Windows, files are case-insensitive |
49 #if (defined(WIN32) || defined(_WIN32) || defined(__WIN32)) && !defined(__CYGWIN__) |
49 #if (defined(WIN32) or defined(_WIN32) or defined(__WIN32)) and !defined(__CYGWIN__) |
50 # define FILE_CASEINSENSITIVE |
50 # define FILE_CASEINSENSITIVE |
51 #endif |
51 #endif |
52 |
52 |
53 #define named_enum enum |
53 #define named_enum enum |
54 #define elif else if |
54 #define elif else if |
62 #define deprecated __attribute__ ((deprecated)) |
62 #define deprecated __attribute__ ((deprecated)) |
63 |
63 |
64 template<typename... argtypes> |
64 template<typename... argtypes> |
65 void error (const char* fmtstr, const argtypes&... args); |
65 void error (const char* fmtstr, const argtypes&... args); |
66 |
66 |
67 #ifdef DEBUG |
67 #ifndef RELEASE |
68 # define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) ((A OP B) ? (void) 0 : \ |
68 # define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) ((A OP B) ? (void) 0 : \ |
69 error ("assertion failed at " __FILE__ ":" MACRO_TO_STRING(__LINE__) ": " #A " (%1) " COMPLAINT " " #B " (%2)", A, B)); |
69 error ("assertion failed at " __FILE__ ":" MACRO_TO_STRING(__LINE__) ": " #A " (%1) " COMPLAINT " " #B " (%2)", A, B)); |
70 #else |
70 #else |
71 # define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) {} |
71 # define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) {} |
72 #endif |
72 #endif |