IceTypes.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2. /**
  3. * Contains custom types.
  4. * \file IceTypes.h
  5. * \author Pierre Terdiman
  6. * \date April, 4, 2000
  7. */
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  9. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  10. // Include Guard
  11. #ifndef __ICETYPES_H__
  12. #define __ICETYPES_H__
  13. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  14. // Things to help us compile on non-windows platforms
  15. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  16. #define USE_HANDLE_MANAGER
  17. // Constants
  18. #define PI 3.1415926535897932384626433832795028841971693993751f //!< PI
  19. #define HALFPI 1.57079632679489661923f //!< 0.5 * PI
  20. #define TWOPI 6.28318530717958647692f //!< 2.0 * PI
  21. #define INVPI 0.31830988618379067154f //!< 1.0 / PI
  22. #define RADTODEG 57.2957795130823208768f //!< 180.0 / PI, convert radians to degrees
  23. #define DEGTORAD 0.01745329251994329577f //!< PI / 180.0, convert degrees to radians
  24. #define EXP 2.71828182845904523536f //!< e
  25. #define INVLOG2 3.32192809488736234787f //!< 1.0 / log10(2)
  26. #define LN2 0.693147180559945f //!< ln(2)
  27. #define INVLN2 1.44269504089f //!< 1.0f / ln(2)
  28. #define INV3 0.33333333333333333333f //!< 1/3
  29. #define INV6 0.16666666666666666666f //!< 1/6
  30. #define INV7 0.14285714285714285714f //!< 1/7
  31. #define INV9 0.11111111111111111111f //!< 1/9
  32. #define INV255 0.00392156862745098039f //!< 1/255
  33. #define SQRT2 1.41421356237f //!< sqrt(2)
  34. #define INVSQRT2 0.707106781188f //!< 1 / sqrt(2)
  35. #define SQRT3 1.73205080757f //!< sqrt(3)
  36. #define INVSQRT3 0.577350269189f //!< 1 / sqrt(3)
  37. #define null 0 //!< our own NULL pointer
  38. // Custom types used in ICE
  39. typedef signed char sbyte; //!< sizeof(sbyte) must be 1
  40. typedef unsigned char ubyte; //!< sizeof(ubyte) must be 1
  41. typedef signed short sword; //!< sizeof(sword) must be 2
  42. typedef unsigned short uword; //!< sizeof(uword) must be 2
  43. typedef signed int sdword; //!< sizeof(sdword) must be 4
  44. typedef unsigned int udword; //!< sizeof(udword) must be 4
  45. typedef signed __int64 sqword; //!< sizeof(sqword) must be 8
  46. typedef unsigned __int64 uqword; //!< sizeof(uqword) must be 8
  47. typedef float float32; //!< sizeof(float32) must be 4
  48. typedef double float64; //!< sizeof(float64) must be 4
  49. ICE_COMPILE_TIME_ASSERT(sizeof(ubyte)==1);
  50. ICE_COMPILE_TIME_ASSERT(sizeof(sbyte)==1);
  51. ICE_COMPILE_TIME_ASSERT(sizeof(sword)==2);
  52. ICE_COMPILE_TIME_ASSERT(sizeof(uword)==2);
  53. ICE_COMPILE_TIME_ASSERT(sizeof(udword)==4);
  54. ICE_COMPILE_TIME_ASSERT(sizeof(sdword)==4);
  55. ICE_COMPILE_TIME_ASSERT(sizeof(uqword)==8);
  56. ICE_COMPILE_TIME_ASSERT(sizeof(sqword)==8);
  57. //! TO BE DOCUMENTED
  58. #define DECLARE_ICE_HANDLE(name) struct name##__ { int unused; }; typedef struct name##__ *name
  59. typedef udword DynID; //!< Dynamic identifier
  60. #ifdef USE_HANDLE_MANAGER
  61. typedef udword KID; //!< Kernel ID
  62. // DECLARE_ICE_HANDLE(KID);
  63. #else
  64. typedef uword KID; //!< Kernel ID
  65. #endif
  66. typedef udword RTYPE; //!< Relationship-type (!) between owners and references
  67. #define INVALID_ID 0xffffffff //!< Invalid dword ID (counterpart of null pointers)
  68. #ifdef USE_HANDLE_MANAGER
  69. #define INVALID_KID 0xffffffff //!< Invalid Kernel ID
  70. #else
  71. #define INVALID_KID 0xffff //!< Invalid Kernel ID
  72. #endif
  73. #define INVALID_NUMBER 0xDEADBEEF //!< Standard junk value
  74. // Define BOOL if needed
  75. #ifndef BOOL
  76. typedef int BOOL; //!< Another boolean type.
  77. #endif
  78. //! Union of a float and a sdword
  79. typedef union {
  80. float f; //!< The float
  81. sdword d; //!< The integer
  82. }scell;
  83. //! Union of a float and a udword
  84. typedef union {
  85. float f; //!< The float
  86. udword d; //!< The integer
  87. }ucell;
  88. // Type ranges
  89. #define MAX_SBYTE 0x7f //!< max possible sbyte value
  90. #define MIN_SBYTE 0x80 //!< min possible sbyte value
  91. #define MAX_UBYTE 0xff //!< max possible ubyte value
  92. #define MIN_UBYTE 0x00 //!< min possible ubyte value
  93. #define MAX_SWORD 0x7fff //!< max possible sword value
  94. #define MIN_SWORD 0x8000 //!< min possible sword value
  95. #define MAX_UWORD 0xffff //!< max possible uword value
  96. #define MIN_UWORD 0x0000 //!< min possible uword value
  97. #define MAX_SDWORD 0x7fffffff //!< max possible sdword value
  98. #define MIN_SDWORD 0x80000000 //!< min possible sdword value
  99. #define MAX_UDWORD 0xffffffff //!< max possible udword value
  100. #define MIN_UDWORD 0x00000000 //!< min possible udword value
  101. #define MAX_FLOAT FLT_MAX //!< max possible float value
  102. #define MIN_FLOAT (-FLT_MAX) //!< min possible loat value
  103. #define IEEE_1_0 0x3f800000 //!< integer representation of 1.0
  104. #define IEEE_255_0 0x437f0000 //!< integer representation of 255.0
  105. #define IEEE_MAX_FLOAT 0x7f7fffff //!< integer representation of MAX_FLOAT
  106. #define IEEE_MIN_FLOAT 0xff7fffff //!< integer representation of MIN_FLOAT
  107. #define IEEE_UNDERFLOW_LIMIT 0x1a000000
  108. #define ONE_OVER_RAND_MAX (1.0f / float(RAND_MAX)) //!< Inverse of the max possible value returned by rand()
  109. // typedef int (__stdcall* PROC)(); -- Oleh Derevenko: Conflicts with Windows headers in x64 mode //!< A standard procedure call.
  110. typedef bool (*ENUMERATION)(udword value, udword param, udword context); //!< ICE standard enumeration call
  111. typedef void** VTABLE; //!< A V-Table.
  112. #undef MIN
  113. #undef MAX
  114. #define MIN(a, b) ((a) < (b) ? (a) : (b)) //!< Returns the min value between a and b
  115. #define MAX(a, b) ((a) > (b) ? (a) : (b)) //!< Returns the max value between a and b
  116. #define MAXMAX(a,b,c) ((a) > (b) ? MAX (a,c) : MAX (b,c)) //!< Returns the max value between a, b and c
  117. template<class T> inline_ const T& TMin (const T& a, const T& b) { return b < a ? b : a; }
  118. template<class T> inline_ const T& TMax (const T& a, const T& b) { return a < b ? b : a; }
  119. template<class T> inline_ void TSetMin (T& a, const T& b) { if(a>b) a = b; }
  120. template<class T> inline_ void TSetMax (T& a, const T& b) { if(a<b) a = b; }
  121. #define SQR(x) ((x)*(x)) //!< Returns x square
  122. #define CUBE(x) ((x)*(x)*(x)) //!< Returns x cube
  123. #define AND & //!< ...
  124. #define OR | //!< ...
  125. #define XOR ^ //!< ...
  126. #define QUADRAT(x) ((x)*(x)) //!< Returns x square
  127. #ifdef _WIN32
  128. # define srand48(x) srand((unsigned int) (x))
  129. # define srandom(x) srand((unsigned int) (x))
  130. # define random() ((double) rand())
  131. # define drand48() ((double) (((double) rand()) / ((double) RAND_MAX)))
  132. #endif
  133. #endif // __ICETYPES_H__