1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
/* bzflag
* Copyright (c) 1993 - 2005 Tim Riker
*
* This package is free software; you can redistribute it and/or
* modify it under the terms of the license found in the file
* named COPYING that should have accompanied this file.
*
* THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
/*
* common definitions
*/
#ifndef BZF_COMMON_H
#define BZF_COMMON_H
// this should always be the very FIRST header
#ifdef _DEVCPP //the Dev-C++ build is acting very stubborn; this is (hopefully) -temporary-
# include_next "config.h"
#else
# include "config.h"
#endif
#ifdef _WIN32
#include "win32.h"
#define _FD_SET(fd, set) FD_SET((unsigned int)fd, set)
#else
#define _FD_SET(fd, set) FD_SET(fd, set)
#endif
#include <stdio.h>
#include <stdlib.h> //needed for bzfrand
#include <math.h>
extern int debugLevel;
// Like verbose debug messages? level 0 for development only
#define DEBUG0 formatDebug
#define DEBUG1 if (debugLevel >= 1) formatDebug
#define DEBUG2 if (debugLevel >= 2) formatDebug
#define DEBUG3 if (debugLevel >= 3) formatDebug
#define DEBUG4 if (debugLevel >= 4) formatDebug
/* near zero by some epsilon convenience define since relying on
* the floating point unit for proper equivalence is not safe
*/
#define NEAR_ZERO(_value,_epsilon) ( ((_value) > -_epsilon) && ((_value) < _epsilon) )
// seven places of precision is pretty safe, so something less precise
#if defined(FLT_EPSILON)
# define ZERO_TOLERANCE FLT_EPSILON
#else
# define ZERO_TOLERANCE 1.0e-06f
#endif
// Might we be BSDish? sys/param.h has BSD defined if so
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
#ifdef HAVE__STRICMP
# define strcasecmp _stricmp
#endif
#ifdef HAVE__STRNICMP
# define strncasecmp _strnicmp
#endif
#if !defined(HAVE_VSNPRINTF)
# ifdef HAVE__VSNPRINTF
# define vsnprintf _vsnprintf
# else
# define vsnprintf(buf, size, fmt, list) vsprintf(buf, fmt, list)
# endif
#endif
// some platforms don't have float versions of the math library
#ifndef HAVE_ASINF
# define asinf (float)asin
#endif
#ifndef HAVE_ATAN2F
# define atan2f (float)atan2
#endif
#ifndef HAVE_ATANF
# define atanf (float)atan
#endif
#ifndef HAVE_COSF
# define cosf (float)cos
#endif
#ifndef HAVE_EXPF
# define expf (float)exp
#endif
#ifndef HAVE_FABSF
# define fabsf (float)fabs
#endif
#ifndef HAVE_FLOORF
# define floorf (float)floor
#endif
#ifndef HAVE_FMODF
# define fmodf (float)fmod
#endif
#ifndef HAVE_HYPOTF
# define hypotf (float)hypot
#endif
#ifndef HAVE_LOGF
# define logf (float)log
#endif
#ifndef HAVE_POWF
# define powf (float)pow
#endif
#ifndef HAVE_SINF
# define sinf (float)sin
#endif
#ifndef HAVE_SQRTF
# define sqrtf (float)sqrt
#endif
#ifndef HAVE_TANF
# define tanf (float)tan
#endif
// random number stuff
#define bzfrand() ((double)rand() / ((double)RAND_MAX + 1.0))
#define bzfsrand(_s) srand(_s)
#if !defined(_WIN32)
#ifndef __BEOS__
# ifdef HAVE_VALUES_H
# include <values.h>
# endif
#else
# include <limits.h>
/* BeOS: FIXME */
# define MAXSHORT SHORT_MAX
# define MAXINT INT_MAX
# define MAXLONG LONG_MAX
#endif /* __BEOS__ */
#include <sys/types.h>
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#if defined(__linux) || (defined(__sgi) && !defined(__INTTYPES_MAJOR))
typedef u_int16_t uint16_t;
typedef u_int32_t uint32_t;
#endif
#if defined(sun)
typedef signed short int16_t;
typedef ushort_t uint16_t;
typedef signed int int32_t;
typedef uint_t uint32_t;
#endif
#endif
typedef unsigned char uint8_t;
#if defined( __BEOS__ )
// missing constants
# ifndef MAXFLOAT
# define MAXFLOAT 3.402823466e+38f
# endif
# ifndef M_PI
# define M_PI 3.14159265358979323846f
# endif
# ifndef M_SQRT1_2
# define M_SQRT1_2 0.70710678118654752440f
# endif
// need some integer types
# include <inttypes.h>
# ifndef setenv
# define setenv(a,b,c)
# endif
# ifndef putenv
# define putenv(a)
# endif
#endif /* defined( __BEOS__ ) */
#ifdef countof
# undef countof
#endif
#define countof(__x) (sizeof(__x) / sizeof(__x[0]))
#if defined(_WIN32) && defined(_MSC_VER)
#define std_max(a,b) max(a,b)
#else
#define std_max(a,b) std::max(a,b)
#endif
#endif // BZF_COMMON_H
// Local Variables: ***
// mode: C++ ***
// tab-width: 8 ***
// c-basic-offset: 2 ***
// indent-tabs-mode: t ***
// End: ***
// ex: shiftwidth=2 tabstop=8
|