X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=646bb3e9afed604cf118fcd577c38982a0b9ff51;hp=5722e05ddc3a512e24c1c2bfa167f0786494ee4c;hb=64e7c54dce6ea8c063f04198c64c5057d751c928;hpb=ff56a43aa3799aa3357f4deca4d6482fc25a6a41 diff --git a/src/libgame/types.h b/src/libgame/types.h index 5722e05d..646bb3e9 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -1,27 +1,45 @@ -/*********************************************************** -* Artsoft Retro-Game Library * -*----------------------------------------------------------* -* (c) 1994-2000 Artsoft Entertainment * -* Holger Schemel * -* Detmolder Strasse 189 * -* 33604 Bielefeld * -* Germany * -* e-mail: info@artsoft.org * -*----------------------------------------------------------* -* types.h * -***********************************************************/ +// ============================================================================ +// Artsoft Retro-Game Library +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// http://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// types.h +// ============================================================================ #ifndef TYPES_H #define TYPES_H -typedef unsigned char boolean; +#include +#include +#include +#include +#include + + +#if !defined(PLATFORM_WIN32) +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 @@ -35,7 +53,27 @@ typedef unsigned char byte; #endif #ifndef SIGN -#define SIGN(a) ((a) < 0 ? -1 : ((a)>0 ? 1 : 0)) +#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 -#endif /* TYPES_H */ +#define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0])) + + +struct ListNode +{ + char *key; + void *content; + struct ListNode *prev; + struct ListNode *next; +}; +typedef struct ListNode ListNode; + +#endif // TYPES_H