X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=6e55364cb9ddd40945865a5eda9cbd262324c8ac;hb=a7c06161253796a30a0237a7f5a044f459c8cf35;hp=f4d0e820847c59c9a0aef9240014d02dcf288a3f;hpb=e05dda5c8cc6687dcbc59e182a81aed627e262d0;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index f4d0e820..6e55364c 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -26,11 +26,22 @@ typedef int boolean; typedef unsigned char byte; #endif -#ifndef FALSE -#define FALSE 0 -#define TRUE (!FALSE) +#ifdef TRUE +#undef TRUE +#endif + +#ifdef FALSE +#undef FALSE #endif +#ifdef AUTO +#undef AUTO +#endif + +#define TRUE 1 +#define FALSE 0 +#define AUTO -1 + #ifndef MIN #define MIN(a,b) ((a) < (b) ? (a) : (b)) #endif @@ -47,6 +58,14 @@ typedef unsigned char byte; #define SIGN(a) ((a) < 0 ? -1 : ((a) > 0 ? 1 : 0)) #endif +#ifndef ODD +#define ODD(a) (((a) & 1) == 1) +#endif + +#ifndef EVEN +#define EVEN(a) (((a) & 1) == 0) +#endif + #define SIZEOF_ARRAY(array, type) (sizeof(array) / sizeof(type)) #define SIZEOF_ARRAY_INT(array) SIZEOF_ARRAY(array, int)