X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=f7d8ad462e42b5ce198adfb7c529145d56887820;hb=24e6fe624376685e6c63861aa132c6f6cdf2bd4d;hp=e4aad2a3a5f6233600cc438f8bfac0896fd1b091;hpb=da14f69fd95c7bd5a0d70cdf4935af06f1f20a04;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index e4aad2a3..f7d8ad46 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -1,25 +1,104 @@ -/*********************************************************** -* Rocks'n'Diamonds -- McDuffin Strikes Back! * -*----------------------------------------------------------* -* (c) 1995-98 Artsoft Entertainment * -* Holger Schemel * -* Oststrasse 11a * -* 33604 Bielefeld * -* phone: ++49 +521 290471 * -* email: aeglos@valinor.owl.de * -*----------------------------------------------------------* -* types.h * -***********************************************************/ +// ============================================================================ +// Artsoft Retro-Game Library +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// https://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// types.h +// ============================================================================ #ifndef TYPES_H #define TYPES_H -typedef unsigned char boolean; +#include +#include +#include +#include +#include + + +#if !defined(PLATFORM_WINDOWS) +typedef int boolean; typedef unsigned char byte; +#endif + +#ifdef TRUE +#undef TRUE +#endif + +#ifdef FALSE +#undef FALSE +#endif + +#ifdef STATE_AUTO +#undef STATE_AUTO +#endif + +#ifdef STATE_ASK +#undef STATE_ASK +#endif + +// values for boolean data type +#define TRUE 1 +#define FALSE 0 + +// values for 3-state data type (for "yes/no/auto" or "yes/no/ask") +#define STATE_TRUE 1 +#define STATE_FALSE 0 +#define STATE_AUTO -1 +#define STATE_ASK -1 + +#ifndef MIN +#define MIN(a, b) ((a) < (b) ? (a) : (b)) +#endif -#ifndef FALSE -#define FALSE 0 -#define TRUE (!FALSE) +#ifndef MAX +#define MAX(a, b) ((a) > (b) ? (a) : (b)) #endif -#endif /* TYPES_H */ +#ifndef ABS +#define ABS(a) ((a) < 0 ? -(a) : (a)) +#endif + +#ifndef SIGN +#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 ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0])) + +#define PTR_TO_INT(p) ((int) (long) (p)) +#define PTR_TO_UINT(p) ((unsigned int) (unsigned long) (p)) + +#define INT_TO_PTR(i) ((void *) (long) (i)) +#define UINT_TO_PTR(u) ((void *) (unsigned long) (u)) + +#define STRUCT_OFFSET(s, m) (offsetof(s, m)) + + +struct ListNode +{ + char *key; + void *content; + struct ListNode *prev; + struct ListNode *next; +}; +typedef struct ListNode ListNode; + +struct DelayCounter +{ + unsigned int value; + unsigned int count; +}; +typedef struct DelayCounter DelayCounter; + +#endif // TYPES_H