15 #if defined(__APPLE__) 19 #if defined(__HAIKU__) 20 #include <SupportDefs.h> 26 #if defined(__HAIKU__) || defined(__CYGWIN__) 34 #if !defined(__APPLE__) && (!defined(_MSC_VER) || _MSC_VER >= 1600) 40 #define __STDC_LIMIT_MACROS 46 #if !defined(UINT64_MAX) 47 #define UINT64_MAX (18446744073709551615ULL) 49 #if !defined(INT64_MAX) 50 #define INT64_MAX (9223372036854775807LL) 52 #if !defined(INT64_MIN) 53 #define INT64_MIN (-INT64_MAX - 1) 55 #if !defined(UINT32_MAX) 56 #define UINT32_MAX (4294967295U) 58 #if !defined(INT32_MAX) 59 #define INT32_MAX (2147483647) 61 #if !defined(INT32_MIN) 62 #define INT32_MIN (-INT32_MAX - 1) 64 #if !defined(UINT16_MAX) 65 #define UINT16_MAX (65535U) 67 #if !defined(INT16_MAX) 68 #define INT16_MAX (32767) 70 #if !defined(INT16_MIN) 71 #define INT16_MIN (-INT16_MAX - 1) 73 #if !defined(UINT8_MAX) 74 #define UINT8_MAX (255) 76 #if !defined(INT8_MAX) 77 #define INT8_MAX (127) 79 #if !defined(INT8_MIN) 80 #define INT8_MIN (-INT8_MAX - 1) 92 #define SIZE_MAX ((size_t)-1) 95 #if defined(UNIX) || defined(__MINGW32__) 96 #include <sys/types.h> 101 #define strcasecmp stricmp 104 #if defined(SUNOS) || defined(HPUX) || defined(__CYGWIN__) 109 #if defined(__GNUC__) 110 #define NORETURN __attribute__ ((noreturn)) 112 #define __int64 long long 115 #define WARN_FORMAT(string, args) __attribute__ ((format (printf, string, args))) 116 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7) 124 #if __cplusplus > 201402L // C++17 125 #define FALLTHROUGH [[fallthrough]] 127 #define FALLTHROUGH __attribute__((fallthrough)) 134 #if defined(__WATCOMC__) 137 #define WARN_FORMAT(string, args) 143 #if defined(__MINGW32__) 148 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 152 #if defined(_MSC_VER) 156 #define NTDDI_VERSION NTDDI_WINXP // Windows XP 157 #define _WIN32_WINNT 0x501 // Windows XP 158 #define _WIN32_WINDOWS 0x501 // Windows XP 159 #define WINVER 0x0501 // Windows XP 160 #define _WIN32_IE_ 0x0600 // 6.0 (XP+) 164 #define NTDDI_VERSION NTDDI_WIN2K // Windows 2000 165 #define _WIN32_WINNT 0x0500 // Windows 2000 166 #define _WIN32_WINDOWS 0x400 // Windows 95 167 #define WINVER 0x0400 // Windows NT 4.0 / Windows 95 168 #define _WIN32_IE_ 0x0401 // 4.01 (win98 and NT4SP5+) 170 #define NOMINMAX // Disable min/max macros in windows.h. 172 #pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data 173 #pragma warning(disable: 4761) // integral size mismatch in argument : conversion supplied 174 #pragma warning(disable: 4200) // nonstandard extension used : zero-sized array in struct/union 175 #pragma warning(disable: 4355) // 'this' : used in base member initializer list 177 #if (_MSC_VER < 1400) // MSVC 2005 safety checks 178 #error "Only MSVC 2005 or higher are supported. MSVC 2003 and earlier are not! Upgrade your compiler." 180 #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) 181 #pragma warning(disable: 4996) // 'function': was declared deprecated 182 #define _CRT_SECURE_NO_DEPRECATE // all deprecated 'unsafe string functions 183 #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 184 #pragma warning(disable: 6011) // code analyzer: Dereferencing NULL pointer 'pfGetAddrInfo': Lines: 995, 996, 998, 999, 1001 185 #pragma warning(disable: 6326) // code analyzer: potential comparison of a constant with another constant 186 #pragma warning(disable: 6031) // code analyzer: Return value ignored: 'ReadFile' 187 #pragma warning(disable: 6255) // code analyzer: _alloca indicates failure by raising a stack overflow exception. Consider using _malloca instead 188 #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 ... 190 #if (_MSC_VER == 1500) // Addresses item #13 on http://blogs.msdn.com/b/vcblog/archive/2008/08/11/tr1-fixes-in-vc9-sp1.aspx, for Visual Studio 2008 191 #define _DO_NOT_DECLARE_INTERLOCKED_INTRINSICS_IN_MEMORY 196 #define NORETURN __declspec(noreturn) 197 #if (_MSC_VER < 1900) 198 #define inline __forceinline 202 #define WARN_FORMAT(string, args) 206 #if (_MSC_VER >= 1910) 207 #define FALLTHROUGH [[fallthrough]] 212 # if defined(_WIN32) && !defined(_WIN64) 217 typedef _W64
int INT_PTR, *PINT_PTR;
218 typedef _W64
unsigned int UINT_PTR, *PUINT_PTR;
222 #define fseek _fseeki64 226 # if defined(WITH_ZLIB) 227 # if !defined(ZEXPORT) 228 # define ZEXPORT CDECL 233 # if defined(WITH_FREETYPE) 234 # if !defined(FT_EXPORT) 235 # define FT_EXPORT( x ) extern "C" x CDECL 240 # if defined(WITH_LIBLZMA) 241 # if !defined(LZMA_API_STATIC) 242 # define LZMA_API_STATIC 246 #define strcasecmp stricmp 247 #define strncasecmp strnicmp 248 #define strtoull _strtoui64 251 #define S_ISDIR(mode) (mode & S_IFDIR) 252 #define S_ISREG(mode) (mode & S_IFREG) 258 #if !defined(STRGEN) && !defined(SETTINGSGEN) 260 char *getcwd(
char *buf,
size_t size);
264 namespace std { using ::_tfopen; }
265 #define fopen(file, mode) _tfopen(OTTD2FS(file), _T(mode)) 266 #define unlink(file) _tunlink(OTTD2FS(file)) 268 const char *
FS2OTTD(
const TCHAR *name);
269 const TCHAR *
OTTD2FS(
const char *name,
bool console_cp =
false);
271 #define fopen(file, mode) fopen(OTTD2FS(file), mode) 272 const char *
FS2OTTD(
const char *name);
273 const char *
OTTD2FS(
const char *name);
277 #if defined(_WIN32) || defined(__OS2__) && !defined(__INNOTEK_LIBC__) 279 #define PATHSEPCHAR '\\' 282 #define PATHSEPCHAR '/' 285 #if defined(_MSC_VER) || defined(__WATCOMC__) 286 # define PACK_N(type_dec, n) __pragma(pack(push, n)) type_dec; __pragma(pack(pop)) 287 #elif defined(__MINGW32__) 288 # define PRAGMA(x) _Pragma(#x) 289 # define PACK_N(type_dec, n) PRAGMA(pack(push, n)) type_dec; PRAGMA(pack(pop)) 291 # define PACK_N(type_dec, n) type_dec __attribute__((__packed__, aligned(n))) 293 #define PACK(type_dec) PACK_N(type_dec, 1) 296 #if defined(_MSC_VER) || defined(__MINGW32__) 297 # define OTTD_PRINTF64 "%I64d" 298 # define OTTD_PRINTFHEX64 "%I64x" 299 # define PRINTF_SIZE "%Iu" 300 # define PRINTF_SIZEX "%IX" 302 # define OTTD_PRINTF64 "%lld" 303 # define OTTD_PRINTFHEX64 "%llx" 304 # define PRINTF_SIZE "%zu" 305 # define PRINTF_SIZEX "%zX" 308 typedef unsigned char byte;
311 #if (!defined(UNIX) && !defined(__HAIKU__)) || defined(__QNXNTO__) 312 typedef unsigned int uint;
315 #if defined(TROUBLED_INTS) 320 # define uint32 uint32_ugly_hack 321 # define int32 int32_ugly_hack 322 # define uint64 uint64_ugly_hack 323 # define int64 int64_ugly_hack 324 typedef unsigned int uint32_ugly_hack;
325 typedef signed int int32_ugly_hack;
326 typedef unsigned __int64 uint64_ugly_hack;
327 typedef signed __int64 int64_ugly_hack;
329 typedef unsigned char uint8;
330 typedef signed char int8;
331 typedef unsigned short uint16;
332 typedef signed short int16;
333 typedef unsigned int uint32;
334 typedef signed int int32;
335 typedef unsigned __int64 uint64;
336 typedef signed __int64 int64;
339 #if !defined(WITH_PERSONAL_DIR) 340 #define PERSONAL_DIR "" 346 #if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1600) 347 #define assert_compile(expr) static_assert(expr, #expr ) 348 #define assert_tcompile(expr) assert_compile(expr) 349 #elif defined(__OS2__) 351 #define assert_compile(expr) 352 #define assert_tcompile(expr) assert_compile(expr) 354 #define assert_compile(expr) typedef int __ct_assert__[1 - 2 * !(expr)] 355 #define assert_tcompile(expr) assert(expr) 359 assert_compile(
sizeof(uint64) == 8);
360 assert_compile(
sizeof(uint32) == 4);
361 assert_compile(
sizeof(uint16) == 2);
362 assert_compile(
sizeof(uint8) == 1);
363 assert_compile(SIZE_MAX >= UINT32_MAX);
366 #define M_PI_2 1.57079632679489661923 367 #define M_PI 3.14159265358979323846 378 #define lengthof(x) (sizeof(x) / sizeof(x[0])) 386 #define endof(x) (&x[lengthof(x)]) 394 #define lastof(x) (&x[lengthof(x) - 1]) 396 #define cpp_offsetof(s, m) (((size_t)&reinterpret_cast<const volatile char&>((((s*)(char*)8)->m))) - 8) 397 #if !defined(offsetof) 398 #define offsetof(s, m) cpp_offsetof(s, m) 407 #define cpp_sizeof(base, variable) (sizeof(((base*)8)->variable)) 415 #define cpp_lengthof(base, variable) (cpp_sizeof(base, variable) / cpp_sizeof(base, variable[0])) 419 #if defined(__APPLE__) 420 #define GetString OTTD_GetString 421 #define DrawString OTTD_DrawString 422 #define CloseConnection OTTD_CloseConnection 425 void NORETURN CDECL
usererror(
const char *str, ...) WARN_FORMAT(1, 2);
426 void NORETURN CDECL error(const
char *str, ...) WARN_FORMAT(1, 2);
427 #define NOT_REACHED() error("NOT_REACHED triggered at line %i of %s", __LINE__, __FILE__) 433 #if (defined(_MSC_VER) && defined(NDEBUG) && defined(WITH_ASSERT)) || (!defined(_MSC_VER) && !defined(NDEBUG) && !defined(_DEBUG)) 435 #define assert(expression) if (!(expression)) error("Assertion failed at line %i of %s: %s", __LINE__, __FILE__, #expression); 439 #if !defined(NDEBUG) || (defined(_MSC_VER) && defined(WITH_ASSERT)) 445 #define _stricmp strcasecmp 448 #if defined(MAX_PATH) 450 #elif defined(PATH_MAX) && PATH_MAX > 0 452 #define MAX_PATH PATH_MAX 462 static inline void free(
const void *ptr)
464 free(const_cast<void *>(ptr));
471 #define MAX_UVALUE(type) ((type)~(type)0) 473 #if defined(_MSC_VER) && !defined(_DEBUG) 474 #define IGNORE_UNINITIALIZED_WARNING_START __pragma(warning(push)) __pragma(warning(disable:4700)) 475 #define IGNORE_UNINITIALIZED_WARNING_STOP __pragma(warning(pop)) 476 #elif defined(__GNUC__) && !defined(_DEBUG) 477 #define HELPER0(x) #x 478 #define HELPER1(x) HELPER0(GCC diagnostic ignored x) 479 #define HELPER2(y) HELPER1(#y) 480 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) 481 #define IGNORE_UNINITIALIZED_WARNING_START \ 482 _Pragma("GCC diagnostic push") \ 483 _Pragma(HELPER2(-Wuninitialized)) \ 484 _Pragma(HELPER2(-Wmaybe-uninitialized)) 485 #define IGNORE_UNINITIALIZED_WARNING_STOP _Pragma("GCC diagnostic pop") 489 #ifndef IGNORE_UNINITIALIZED_WARNING_START 490 #define IGNORE_UNINITIALIZED_WARNING_START 491 #define IGNORE_UNINITIALIZED_WARNING_STOP const char * FS2OTTD(const TCHAR *name)
Convert to OpenTTD's encoding from that of the local environment.
static void free(const void *ptr)
Version of the standard free that accepts const pointers.
void CDECL usererror(const char *s,...)
Error handling for fatal user errors.
const TCHAR * OTTD2FS(const char *name, bool console_cp)
Convert from OpenTTD's encoding to that of the local environment.
OSX is different on some places.