stdafx.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef STDAFX_H
00013 #define STDAFX_H
00014
00015 #if defined(__APPLE__)
00016 #include "os/macosx/osx_stdafx.h"
00017 #endif
00018
00019 #if defined(__BEOS__) || defined(__HAIKU__)
00020 #include <SupportDefs.h>
00021 #include <unistd.h>
00022 #define _GNU_SOURCE
00023 #define TROUBLED_INTS
00024 #elif defined(__NDS__)
00025 #include <nds/jtypes.h>
00026 #define TROUBLED_INTS
00027 #endif
00028
00029
00030
00031
00032
00033 #if defined(__APPLE__)
00034
00035 #elif !defined(_MSC_VER) && !defined( __MORPHOS__) && !defined(_STDINT_H_)
00036 #if defined(SUNOS)
00037
00038
00039 #include <inttypes.h>
00040 # else
00041 #define __STDC_LIMIT_MACROS
00042 #include <stdint.h>
00043 #endif
00044 #else
00045 #define UINT64_MAX (18446744073709551615ULL)
00046 #define INT64_MAX (9223372036854775807LL)
00047 #define INT64_MIN (-INT64_MAX - 1)
00048 #define UINT32_MAX (4294967295U)
00049 #define INT32_MAX (2147483647)
00050 #define INT32_MIN (-INT32_MAX - 1)
00051 #define UINT16_MAX (65535U)
00052 #define INT16_MAX (32767)
00053 #define INT16_MIN (-INT16_MAX - 1)
00054 #define UINT8_MAX (255)
00055 #define INT8_MAX (127)
00056 #define INT8_MIN (-INT8_MAX - 1)
00057 #endif
00058
00059 #include <cstdio>
00060 #include <cstddef>
00061 #include <cstring>
00062 #include <cstdlib>
00063 #include <climits>
00064 #include <cassert>
00065
00066 #if defined(UNIX) || defined(__MINGW32__)
00067 #include <sys/types.h>
00068 #endif
00069
00070 #if defined(__OS2__)
00071 #include <types.h>
00072 #define strcasecmp stricmp
00073 #endif
00074
00075 #if defined(PSP)
00076 #include <psptypes.h>
00077 #include <pspdebug.h>
00078 #include <pspthreadman.h>
00079 #endif
00080
00081 #if defined(SUNOS) || defined(HPUX)
00082 #include <alloca.h>
00083 #endif
00084
00085 #if defined(__MORPHOS__)
00086
00087
00088
00089 #if defined(amigaos)
00090 #undef amigaos
00091 #endif
00092 #if defined(__amigaos__)
00093 #undef __amigaos__
00094 # endif
00095 #if defined(__AMIGA__)
00096 #undef __AMIGA__
00097 #endif
00098 #if defined(AMIGA)
00099 #undef AMIGA
00100 #endif
00101 #if defined(amiga)
00102 #undef amiga
00103 #endif
00104
00105
00106 #define CLIB_USERGROUP_PROTOS_H
00107 #endif
00108
00109 #if defined(PSP)
00110
00111
00112
00113 #define LIMITED_FDS 8
00114 #define printf pspDebugScreenPrintf
00115 #endif
00116
00117
00118 #if defined(__GNUC__)
00119 #define NORETURN __attribute__ ((noreturn))
00120 #define FORCEINLINE inline
00121 #define CDECL
00122 #define __int64 long long
00123 #define GCC_PACK __attribute__((packed))
00124
00125
00126 #define WARN_FORMAT(string, args) __attribute__ ((format (printf, string, args)))
00127 #endif
00128
00129 #if defined(__WATCOMC__)
00130 #define NORETURN
00131 #define FORCEINLINE inline
00132 #define CDECL
00133 #define GCC_PACK
00134 #define WARN_FORMAT(string, args)
00135 #include <malloc.h>
00136 #endif
00137
00138 #if defined(__MINGW32__) || defined(__CYGWIN__)
00139 #include <malloc.h>
00140 #endif
00141
00142 #if defined(WIN32)
00143 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
00144 #endif
00145
00146
00147 #if defined(_MSC_VER)
00148 #pragma once
00149
00150
00151 #define NTDDI_VERSION NTDDI_WIN2K // Windows 2000
00152 #define _WIN32_WINNT 0x0500 // Windows 2000
00153 #define _WIN32_WINDOWS 0x400 // Windows 95
00154 #if !defined(WINCE)
00155 #define WINVER 0x0400 // Windows NT 4.0 / Windows 95
00156 #endif
00157 #define _WIN32_IE_ 0x0401 // 4.01 (win98 and NT4SP5+)
00158
00159 #pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
00160 #pragma warning(disable: 4761) // integral size mismatch in argument : conversion supplied
00161 #pragma warning(disable: 4200) // nonstandard extension used : zero-sized array in struct/union
00162
00163 #if (_MSC_VER < 1400) // MSVC 2005 safety checks
00164 #error "Only MSVC 2005 or higher are supported. MSVC 2003 and earlier are not! Upgrade your compiler."
00165 #endif
00166 #pragma warning(disable: 4291) // no matching operator delete found; memory will not be freed if initialization throws an exception (reason: our overloaded functions never throw an exception)
00167 #pragma warning(disable: 4996) // 'function': was declared deprecated
00168 #define _CRT_SECURE_NO_DEPRECATE // all deprecated 'unsafe string functions
00169 #pragma warning(disable: 6308) // code analyzer: 'realloc' might return null pointer: assigning null pointer to 't_ptr', which is passed as an argument to 'realloc', will cause the original memory block to be leaked
00170 #pragma warning(disable: 6011) // code analyzer: Dereferencing NULL pointer 'pfGetAddrInfo': Lines: 995, 996, 998, 999, 1001
00171 #pragma warning(disable: 6326) // code analyzer: potential comparison of a constant with another constant
00172 #pragma warning(disable: 6031) // code analyzer: Return value ignored: 'ReadFile'
00173 #pragma warning(disable: 6255) // code analyzer: _alloca indicates failure by raising a stack overflow exception. Consider using _malloca instead
00174 #pragma warning(disable: 6246) // code analyzer: Local declaration of 'statspec' hides declaration of the same name in outer scope. For additional information, see previous declaration at ...
00175 #define WARN_FORMAT(string, args)
00176
00177 #include <malloc.h>
00178 #define NORETURN __declspec(noreturn)
00179 #define FORCEINLINE __forceinline
00180 #define inline _inline
00181
00182 #if !defined(WINCE)
00183 #define CDECL _cdecl
00184 #endif
00185
00186 #define GCC_PACK
00187
00188 int CDECL snprintf(char *str, size_t size, const char *format, ...) WARN_FORMAT(3, 4);
00189 #if defined(WINCE)
00190 int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap);
00191 #endif
00192
00193 #if defined(WIN32) && !defined(_WIN64) && !defined(WIN64)
00194 #if !defined(_W64)
00195 #define _W64
00196 #endif
00197
00198 typedef _W64 int INT_PTR, *PINT_PTR;
00199 typedef _W64 unsigned int UINT_PTR, *PUINT_PTR;
00200 #endif
00201
00202 #if defined(_WIN64) || defined(WIN64)
00203 #define fseek _fseeki64
00204 #endif
00205
00206
00207 #if defined(WITH_ZLIB) || defined(WITH_PNG)
00208 #if !defined(ZLIB_WINAPI)
00209 #define ZLIB_WINAPI
00210 #endif
00211 #endif
00212
00213 #if defined(WINCE)
00214 #define strcasecmp _stricmp
00215 #define strncasecmp _strnicmp
00216 #undef DEBUG
00217 #else
00218 #define strcasecmp stricmp
00219 #define strncasecmp strnicmp
00220 #endif
00221
00222
00223 #define S_ISDIR(mode) (mode & S_IFDIR)
00224 #define S_ISREG(mode) (mode & S_IFREG)
00225
00226 #endif
00227
00228 #if defined(DOS)
00229
00230 #define strsignal(sig) ""
00231
00232
00233
00234 #define SIGBUS SIGNOFP
00235 #endif
00236
00237 #if defined(WINCE)
00238 #define strdup _strdup
00239 #endif
00240
00241
00242
00243 #if !defined(STRGEN) && !defined(SETTINGSGEN)
00244 #if defined(WIN32) || defined(WIN64)
00245 char *getcwd(char *buf, size_t size);
00246 #include <tchar.h>
00247 #include <io.h>
00248
00249
00250 #if !defined(WINCE)
00251 namespace std { using ::_tfopen; }
00252 #define fopen(file, mode) _tfopen(OTTD2FS(file), _T(mode))
00253 #define unlink(file) _tunlink(OTTD2FS(file))
00254 #endif
00255
00256 const char *FS2OTTD(const TCHAR *name);
00257 const TCHAR *OTTD2FS(const char *name);
00258 #define SQ2OTTD(name) FS2OTTD(name)
00259 #define OTTD2SQ(name) OTTD2FS(name)
00260 #else
00261 #define fopen(file, mode) fopen(OTTD2FS(file), mode)
00262 const char *FS2OTTD(const char *name);
00263 const char *OTTD2FS(const char *name);
00264 #define SQ2OTTD(name) (name)
00265 #define OTTD2SQ(name) (name)
00266 #endif
00267 #endif
00268
00269 #if defined(WIN32) || defined(WIN64) || defined(__OS2__) && !defined(__INNOTEK_LIBC__)
00270 #define PATHSEP "\\"
00271 #define PATHSEPCHAR '\\'
00272 #else
00273 #define PATHSEP "/"
00274 #define PATHSEPCHAR '/'
00275 #endif
00276
00277
00278 #if defined(_MSC_VER) || defined(__MINGW32__)
00279 #define OTTD_PRINTF64 "%I64d"
00280 #define OTTD_PRINTFHEX64 "%I64x"
00281 #define PRINTF_SIZE "%Iu"
00282 #else
00283 #define OTTD_PRINTF64 "%lld"
00284 #define OTTD_PRINTFHEX64 "%llx"
00285 #define PRINTF_SIZE "%zu"
00286 #endif
00287
00288 typedef unsigned char byte;
00289
00290
00291 #if (!defined(UNIX) && !defined(__CYGWIN__) && !defined(__BEOS__) && !defined(__HAIKU__) && !defined(__MORPHOS__)) || defined(__QNXNTO__)
00292 typedef unsigned int uint;
00293 #endif
00294
00295 #if defined(TROUBLED_INTS)
00296
00297
00298 #define uint32 uint32_ugly_hack
00299 #define int32 int32_ugly_hack
00300 typedef unsigned int uint32_ugly_hack;
00301 typedef signed int int32_ugly_hack;
00302 #else
00303 typedef unsigned char uint8;
00304 typedef signed char int8;
00305 typedef unsigned short uint16;
00306 typedef signed short int16;
00307 typedef unsigned int uint32;
00308 typedef signed int int32;
00309 typedef unsigned __int64 uint64;
00310 typedef signed __int64 int64;
00311 #endif
00312
00313 #if !defined(WITH_PERSONAL_DIR)
00314 #define PERSONAL_DIR ""
00315 #endif
00316
00317
00318
00319
00320 #if defined(__STDCXX_VERSION__) || defined(__GXX_EXPERIMENTAL_CXX0X__) || defined(__GXX_EXPERIMENTAL_CPP0X__) || defined(static_assert)
00321
00322 #define assert_compile(expr) static_assert(expr, #expr )
00323 #define assert_tcompile(expr) assert_compile(expr)
00324 #elif defined(__OS2__)
00325
00326 #define assert_compile(expr)
00327 #define assert_tcompile(expr) assert_compile(expr)
00328 #else
00329 #define assert_compile(expr) typedef int __ct_assert__[1 - 2 * !(expr)]
00330 #define assert_tcompile(expr) assert(expr)
00331 #endif
00332
00333
00334 assert_compile(sizeof(uint64) == 8);
00335 assert_compile(sizeof(uint32) == 4);
00336 assert_compile(sizeof(uint16) == 2);
00337 assert_compile(sizeof(uint8) == 1);
00338
00339 #ifndef M_PI_2
00340 #define M_PI_2 1.57079632679489661923
00341 #define M_PI 3.14159265358979323846
00342 #endif
00343
00352 #define lengthof(x) (sizeof(x) / sizeof(x[0]))
00353
00360 #define endof(x) (&x[lengthof(x)])
00361
00368 #define lastof(x) (&x[lengthof(x) - 1])
00369
00370 #define cpp_offsetof(s, m) (((size_t)&reinterpret_cast<const volatile char&>((((s*)(char*)8)->m))) - 8)
00371 #if !defined(offsetof)
00372 #define offsetof(s, m) cpp_offsetof(s, m)
00373 #endif
00374
00381 #define cpp_sizeof(base, variable) (sizeof(((base*)8)->variable))
00382
00389 #define cpp_lengthof(base, variable) (cpp_sizeof(base, variable) / cpp_sizeof(base, variable[0]))
00390
00391
00392
00393 #if defined(__APPLE__)
00394 #define GetString OTTD_GetString
00395 #define DrawString OTTD_DrawString
00396 #define CloseConnection OTTD_CloseConnection
00397 #endif
00398
00399 void NORETURN CDECL usererror(const char *str, ...) WARN_FORMAT(1, 2);
00400 void NORETURN CDECL error(const char *str, ...) WARN_FORMAT(1, 2);
00401 #define NOT_REACHED() error("NOT_REACHED triggered at line %i of %s", __LINE__, __FILE__)
00402
00403
00404
00405
00406
00407 #if (defined(_MSC_VER) && defined(NDEBUG) && defined(WITH_ASSERT)) || (!defined(_MSC_VER) && !defined(NDEBUG) && !defined(_DEBUG))
00408 #undef assert
00409 #define assert(expression) if (!(expression)) error("Assertion failed at line %i of %s: %s", __LINE__, __FILE__, #expression);
00410 #endif
00411
00412
00413 #if !defined(NDEBUG) || (defined(_MSC_VER) && defined(WITH_ASSERT))
00414 #define OTTD_ASSERT
00415 #endif
00416
00417 #if defined(MORPHOS) || defined(__NDS__) || defined(__DJGPP__)
00418
00419 #define _stricmp stricmp
00420 #elif defined(OPENBSD)
00421
00422 #define _stricmp strcasecmp
00423 #endif
00424
00425 #if defined(MAX_PATH)
00426
00427 #elif defined(PATH_MAX) && PATH_MAX > 0
00428
00429 #define MAX_PATH PATH_MAX
00430 #else
00431
00432 #define MAX_PATH 260
00433 #endif
00434
00439 #define MAX_UVALUE(type) ((type)~(type)0)
00440
00441 #endif