2005-07-24 14:12:37 +00:00
/* $Id$ */
2009-08-21 20:21:05 +00:00
/*
* This file is part of OpenTTD .
* OpenTTD is free software ; you can redistribute it and / or modify it under the terms of the GNU General Public License as published by the Free Software Foundation , version 2.
* OpenTTD is distributed in the hope that it will be useful , but WITHOUT ANY WARRANTY ; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE .
* See the GNU General Public License for more details . You should have received a copy of the GNU General Public License along with OpenTTD . If not , see < http : //www.gnu.org/licenses/>.
*/
2008-05-06 15:11:33 +00:00
/** @file stdafx.h Definition of base types and functions in a cross-platform compatible way. */
2007-04-04 01:35:16 +00:00
2005-09-18 20:56:44 +00:00
# ifndef STDAFX_H
# define STDAFX_H
2004-08-09 17:04:08 +00:00
2009-03-29 19:55:08 +00:00
# if defined(__APPLE__)
# include "os/macosx/osx_stdafx.h"
# endif /* __APPLE__ */
2009-09-21 18:36:33 +00:00
# if defined(__BEOS__) || defined(__HAIKU__)
# include <SupportDefs.h>
# include <unistd.h>
# define _GNU_SOURCE
# define TROUBLED_INTS
2014-09-25 20:45:25 +00:00
# include <strings.h>
2009-09-21 18:36:33 +00:00
# elif defined(__NDS__)
2008-01-21 23:55:57 +00:00
# include <nds/jtypes.h>
2009-09-21 18:36:33 +00:00
# define TROUBLED_INTS
# endif
2008-01-21 23:55:57 +00:00
2007-01-24 00:55:35 +00:00
/* It seems that we need to include stdint.h before anything else
* We need INT64_MAX , which for most systems comes from stdint . h . However , MSVC
2013-01-20 15:02:28 +00:00
* does not have stdint . h and apparently neither does MorphOS .
* For OSX the inclusion is already done in osx_stdafx . h . */
2013-03-30 13:50:46 +00:00
# if !defined(__APPLE__) && (!defined(_MSC_VER) || _MSC_VER >= 1600) && !defined(__MORPHOS__)
2007-12-02 21:43:16 +00:00
# if defined(SUNOS)
/* SunOS/Solaris does not have stdint.h, but inttypes.h defines everything
* stdint . h defines and we need . */
# include <inttypes.h>
2013-01-20 15:02:28 +00:00
# else
2007-12-02 21:43:16 +00:00
# define __STDC_LIMIT_MACROS
# include <stdint.h>
# endif
2013-01-20 15:02:28 +00:00
# endif
/* The conditions for these constants to be available are way too messy; so check them one by one */
# if !defined(UINT64_MAX)
2008-04-04 20:34:09 +00:00
# define UINT64_MAX (18446744073709551615ULL)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT64_MAX)
2008-04-04 20:34:09 +00:00
# define INT64_MAX (9223372036854775807LL)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT64_MIN)
2008-04-04 20:34:09 +00:00
# define INT64_MIN (-INT64_MAX - 1)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(UINT32_MAX)
2008-04-04 20:34:09 +00:00
# define UINT32_MAX (4294967295U)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT32_MAX)
2008-04-04 20:34:09 +00:00
# define INT32_MAX (2147483647)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT32_MIN)
2008-04-04 20:34:09 +00:00
# define INT32_MIN (-INT32_MAX - 1)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(UINT16_MAX)
2008-04-04 20:34:09 +00:00
# define UINT16_MAX (65535U)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT16_MAX)
2008-04-04 20:34:09 +00:00
# define INT16_MAX (32767)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT16_MIN)
2008-04-04 20:34:09 +00:00
# define INT16_MIN (-INT16_MAX - 1)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(UINT8_MAX)
2010-02-20 22:58:25 +00:00
# define UINT8_MAX (255)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT8_MAX)
2010-02-20 22:58:25 +00:00
# define INT8_MAX (127)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT8_MIN)
2010-02-20 22:58:25 +00:00
# define INT8_MIN (-INT8_MAX - 1)
2007-01-24 00:55:35 +00:00
# endif
2007-02-04 11:14:42 +00:00
# include <cstdio>
# include <cstddef>
# include <cstring>
# include <cstdlib>
# include <climits>
2009-10-04 21:08:30 +00:00
# include <cassert>
2005-07-28 21:47:41 +00:00
2011-09-02 20:54:51 +00:00
# ifndef SIZE_MAX
# define SIZE_MAX ((size_t)-1)
# endif
2005-01-03 14:33:59 +00:00
# if defined(UNIX) || defined(__MINGW32__)
2007-12-02 21:43:16 +00:00
# include <sys/types.h>
2004-08-09 17:04:08 +00:00
# endif
2004-12-23 14:46:16 +00:00
# if defined(__OS2__)
2007-12-02 21:43:16 +00:00
# include <types.h>
# define strcasecmp stricmp
2004-12-23 14:46:16 +00:00
# endif
2007-02-11 13:57:35 +00:00
# if defined(PSP)
2007-12-02 21:43:16 +00:00
# include <psptypes.h>
# include <pspdebug.h>
# include <pspthreadman.h>
# endif
2007-02-11 13:57:35 +00:00
2008-04-30 07:39:46 +00:00
# if defined(SUNOS) || defined(HPUX)
2007-12-02 21:43:16 +00:00
# include <alloca.h>
2004-11-17 09:07:29 +00:00
# endif
2007-12-02 21:43:16 +00:00
# if defined(__MORPHOS__)
/* MorphOS defines certain Amiga defines per default, we undefine them
* here to make the rest of source less messy and more clear what is
* required for morphos and what for AmigaOS */
# if defined(amigaos)
# undef amigaos
# endif
# if defined(__amigaos__)
# undef __amigaos__
# endif
# if defined(__AMIGA__)
# undef __AMIGA__
# endif
# if defined(AMIGA)
# undef AMIGA
# endif
# if defined(amiga)
# undef amiga
# endif
/* Act like we already included this file, as it somehow gives linkage problems
* ( mismatch linkage of C + + and C between this include and unistd . h ) . */
# define CLIB_USERGROUP_PROTOS_H
2004-12-22 21:12:36 +00:00
# endif /* __MORPHOS__ */
2007-02-08 23:46:25 +00:00
# if defined(PSP)
2007-12-02 21:43:16 +00:00
/* PSP can only have 10 file-descriptors open at any given time, but this
* switch only limits reads via the Fio system . So keep 2 fds free for things
* like saving a game . */
# define LIMITED_FDS 8
# define printf pspDebugScreenPrintf
2007-02-08 23:46:25 +00:00
# endif /* PSP */
2007-02-04 11:20:24 +00:00
/* Stuff for GCC */
2004-08-09 17:04:08 +00:00
# if defined(__GNUC__)
2007-12-02 21:43:16 +00:00
# define NORETURN __attribute__ ((noreturn))
# define CDECL
# define __int64 long long
# define GCC_PACK __attribute__((packed))
2009-05-10 17:27:25 +00:00
/* Warn about functions using 'printf' format syntax. First argument determines which parameter
* is the format string , second argument is start of values passed to printf . */
# define WARN_FORMAT(string, args) __attribute__ ((format (printf, string, args)))
2011-12-18 17:17:18 +00:00
# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)
# define FINAL final
# else
# define FINAL
# endif
2005-10-03 22:16:30 +00:00
# endif /* __GNUC__ */
2004-08-09 17:04:08 +00:00
2004-12-23 14:46:16 +00:00
# if defined(__WATCOMC__)
2007-12-02 21:43:16 +00:00
# define NORETURN
# define CDECL
# define GCC_PACK
2009-05-10 17:27:25 +00:00
# define WARN_FORMAT(string, args)
2011-12-18 17:17:18 +00:00
# define FINAL
2007-12-02 21:43:16 +00:00
# include <malloc.h>
2005-10-03 22:16:30 +00:00
# endif /* __WATCOMC__ */
2004-12-23 14:46:16 +00:00
2004-12-23 22:31:46 +00:00
# if defined(__MINGW32__) || defined(__CYGWIN__)
2007-12-02 21:43:16 +00:00
# include <malloc.h> // alloca()
2004-12-23 22:31:46 +00:00
# endif
2008-05-16 17:53:19 +00:00
# if defined(WIN32)
# define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
# endif
2007-02-04 11:20:24 +00:00
/* Stuff for MSVC */
2004-08-09 17:04:08 +00:00
# if defined(_MSC_VER)
2007-12-02 21:43:16 +00:00
# pragma once
2013-08-05 20:36:58 +00:00
# ifdef _WIN64
/* No 64-bit Windows below XP, so we can safely assume it as the target platform. */
# define NTDDI_VERSION NTDDI_WINXP // Windows XP
# define _WIN32_WINNT 0x501 // Windows XP
# define _WIN32_WINDOWS 0x501 // Windows XP
# define WINVER 0x0501 // Windows XP
# define _WIN32_IE_ 0x0600 // 6.0 (XP+)
# else
/* Define a win32 target platform, to override defaults of the SDK
* We need to define NTDDI version for Vista SDK , but win2k is minimum */
# define NTDDI_VERSION NTDDI_WIN2K // Windows 2000
# define _WIN32_WINNT 0x0500 // Windows 2000
# define _WIN32_WINDOWS 0x400 // Windows 95
# if !defined(WINCE)
# define WINVER 0x0400 // Windows NT 4.0 / Windows 95
# endif
# define _WIN32_IE_ 0x0401 // 4.01 (win98 and NT4SP5+)
2007-12-02 21:43:16 +00:00
# endif
2012-07-19 19:06:27 +00:00
# define NOMINMAX // Disable min/max macros in windows.h.
2007-12-02 21:43:16 +00:00
# pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
# pragma warning(disable: 4761) // integral size mismatch in argument : conversion supplied
# pragma warning(disable: 4200) // nonstandard extension used : zero-sized array in struct/union
2012-12-03 22:08:03 +00:00
# pragma warning(disable: 4355) // 'this' : used in base member initializer list
2007-12-02 21:43:16 +00:00
2008-01-24 18:47:05 +00:00
# if (_MSC_VER < 1400) // MSVC 2005 safety checks
2009-01-30 17:54:48 +00:00
# error "Only MSVC 2005 or higher are supported. MSVC 2003 and earlier are not! Upgrade your compiler."
2008-01-24 18:47:05 +00:00
# endif /* (_MSC_VER < 1400) */
2009-11-11 21:15:58 +00:00
# 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)
2010-12-31 16:13:34 +00:00
# pragma warning(disable: 4996) // 'function': was declared deprecated
2008-01-24 18:47:05 +00:00
# define _CRT_SECURE_NO_DEPRECATE // all deprecated 'unsafe string functions
# 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
# pragma warning(disable: 6011) // code analyzer: Dereferencing NULL pointer 'pfGetAddrInfo': Lines: 995, 996, 998, 999, 1001
# pragma warning(disable: 6326) // code analyzer: potential comparison of a constant with another constant
# pragma warning(disable: 6031) // code analyzer: Return value ignored: 'ReadFile'
# pragma warning(disable: 6255) // code analyzer: _alloca indicates failure by raising a stack overflow exception. Consider using _malloca instead
# 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 ...
2007-12-02 21:43:16 +00:00
2014-01-05 10:15:57 +00:00
# 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
# define _DO_NOT_DECLARE_INTERLOCKED_INTRINSICS_IN_MEMORY
# include <intrin.h>
# endif
2007-12-02 21:43:16 +00:00
# include <malloc.h> // alloca()
# define NORETURN __declspec(noreturn)
2015-08-10 20:21:29 +00:00
# if (_MSC_VER < 1900)
# define inline __forceinline
# endif
2007-12-02 21:43:16 +00:00
# if !defined(WINCE)
# define CDECL _cdecl
# endif
2009-07-01 21:29:03 +00:00
# define GCC_PACK
2011-12-18 17:17:18 +00:00
# define WARN_FORMAT(string, args)
# define FINAL sealed
2009-07-01 21:29:03 +00:00
2009-01-30 17:54:48 +00:00
# if defined(WINCE)
2007-12-02 21:43:16 +00:00
int CDECL vsnprintf ( char * str , size_t size , const char * format , va_list ap ) ;
# endif
# if defined(WIN32) && !defined(_WIN64) && !defined(WIN64)
# if !defined(_W64)
# define _W64
# endif
typedef _W64 int INT_PTR , * PINT_PTR ;
typedef _W64 unsigned int UINT_PTR , * PUINT_PTR ;
# endif /* WIN32 && !_WIN64 && !WIN64 */
2008-05-27 21:41:00 +00:00
# if defined(_WIN64) || defined(WIN64)
# define fseek _fseeki64
# endif /* _WIN64 || WIN64 */
2007-12-02 21:43:16 +00:00
/* This is needed to zlib uses the stdcall calling convention on visual studio */
# if defined(WITH_ZLIB) || defined(WITH_PNG)
# if !defined(ZLIB_WINAPI)
# define ZLIB_WINAPI
# endif
# endif
# if defined(WINCE)
# define strcasecmp _stricmp
# define strncasecmp _strnicmp
# undef DEBUG
# else
# define strcasecmp stricmp
# define strncasecmp strnicmp
# endif
2007-12-09 21:20:21 +00:00
2015-01-02 19:50:43 +00:00
# define strtoull _strtoui64
2008-11-26 01:07:49 +00:00
/* MSVC doesn't have these :( */
# define S_ISDIR(mode) (mode & S_IFDIR)
# define S_ISREG(mode) (mode & S_IFREG)
2005-10-03 22:16:30 +00:00
# endif /* defined(_MSC_VER) */
2004-08-09 17:04:08 +00:00
2010-02-25 13:06:00 +00:00
# if defined(DOS)
/* The DOS port does not have all signals/signal functions. */
# define strsignal(sig) ""
2010-04-12 14:12:47 +00:00
/* Use 'no floating point' for bus errors; SIGBUS does not exist
* for DOS , SIGNOFP for other platforms . So it ' s fairly safe
* to interchange those . */
2010-02-25 13:06:00 +00:00
# define SIGBUS SIGNOFP
# endif
2007-01-21 14:19:18 +00:00
# if defined(WINCE)
2014-04-25 15:40:32 +00:00
# define stredup _stredup
2007-01-21 14:19:18 +00:00
# endif /* WINCE */
2006-11-28 14:42:31 +00:00
/* NOTE: the string returned by these functions is only valid until the next
* call to the same function and is not thread - or reentrancy - safe */
2011-03-03 20:59:59 +00:00
# if !defined(STRGEN) && !defined(SETTINGSGEN)
2007-12-02 21:43:16 +00:00
# if defined(WIN32) || defined(WIN64)
char * getcwd ( char * buf , size_t size ) ;
# include <tchar.h>
2009-03-14 15:42:53 +00:00
# include <io.h>
2007-12-02 21:43:16 +00:00
/* XXX - WinCE without MSVCRT doesn't support wfopen, so it seems */
# if !defined(WINCE)
2010-05-11 20:44:58 +00:00
namespace std { using : : _tfopen ; }
2007-12-02 21:43:16 +00:00
# define fopen(file, mode) _tfopen(OTTD2FS(file), _T(mode))
2009-03-14 00:25:59 +00:00
# define unlink(file) _tunlink(OTTD2FS(file))
2007-12-02 21:43:16 +00:00
# endif /* WINCE */
const char * FS2OTTD ( const TCHAR * name ) ;
2013-08-05 20:36:47 +00:00
const TCHAR * OTTD2FS ( const char * name , bool console_cp = false ) ;
2007-12-02 21:43:16 +00:00
# else
# define fopen(file, mode) fopen(OTTD2FS(file), mode)
const char * FS2OTTD ( const char * name ) ;
const char * OTTD2FS ( const char * name ) ;
# endif /* WIN32 */
2011-03-03 20:59:59 +00:00
# endif /* STRGEN || SETTINGSGEN */
2005-10-02 22:39:56 +00:00
2007-01-10 19:39:54 +00:00
# if defined(WIN32) || defined(WIN64) || defined(__OS2__) && !defined(__INNOTEK_LIBC__)
2007-12-02 21:43:16 +00:00
# define PATHSEP "\\"
# define PATHSEPCHAR '\\'
2006-08-25 12:26:34 +00:00
# else
2007-12-02 21:43:16 +00:00
# define PATHSEP " / "
# define PATHSEPCHAR ' / '
2004-08-09 17:04:08 +00:00
# endif
2009-05-10 17:27:25 +00:00
/* MSVCRT of course has to have a different syntax for long long *sigh* */
# if defined(_MSC_VER) || defined(__MINGW32__)
# define OTTD_PRINTF64 "%I64d"
2010-04-06 23:45:10 +00:00
# define OTTD_PRINTFHEX64 "%I64x"
2009-05-10 17:27:25 +00:00
# define PRINTF_SIZE "%Iu"
# else
# define OTTD_PRINTF64 "%lld"
2010-04-06 23:45:10 +00:00
# define OTTD_PRINTFHEX64 "%llx"
2009-05-10 17:27:25 +00:00
# define PRINTF_SIZE "%zu"
# endif
2004-08-09 17:04:08 +00:00
typedef unsigned char byte ;
2007-12-02 21:43:16 +00:00
/* This is already defined in unix, but not in QNX Neutrino (6.x)*/
2009-09-21 18:36:33 +00:00
# if (!defined(UNIX) && !defined(__CYGWIN__) && !defined(__BEOS__) && !defined(__HAIKU__) && !defined(__MORPHOS__)) || defined(__QNXNTO__)
2007-12-02 21:43:16 +00:00
typedef unsigned int uint ;
2004-12-04 17:54:56 +00:00
# endif
2004-08-09 17:04:08 +00:00
2009-09-21 18:36:33 +00:00
# if defined(TROUBLED_INTS)
/* NDS'/BeOS'/Haiku's types for uint32/int32 are based on longs, which causes
* trouble all over the place in OpenTTD . */
# define uint32 uint32_ugly_hack
# define int32 int32_ugly_hack
typedef unsigned int uint32_ugly_hack ;
typedef signed int int32_ugly_hack ;
# else
2007-12-02 21:43:16 +00:00
typedef unsigned char uint8 ;
typedef signed char int8 ;
typedef unsigned short uint16 ;
typedef signed short int16 ;
typedef unsigned int uint32 ;
typedef signed int int32 ;
2006-05-27 16:12:16 +00:00
typedef unsigned __int64 uint64 ;
2007-12-02 21:43:16 +00:00
typedef signed __int64 int64 ;
2009-09-21 18:36:33 +00:00
# endif /* !TROUBLED_INTS */
2004-08-09 17:04:08 +00:00
2007-06-17 15:48:57 +00:00
# if !defined(WITH_PERSONAL_DIR)
2007-12-02 21:43:16 +00:00
# define PERSONAL_DIR ""
2004-08-09 17:04:08 +00:00
# endif
2010-04-11 15:43:54 +00:00
/* Compile time assertions. Prefer c++0x static_assert().
* Older compilers cannot evaluate some expressions at compile time ,
* typically when templates are involved , try assert_tcompile ( ) in those cases . */
2009-09-07 21:02:10 +00:00
# if defined(__STDCXX_VERSION__) || defined(__GXX_EXPERIMENTAL_CXX0X__) || defined(__GXX_EXPERIMENTAL_CPP0X__) || defined(static_assert)
/* __STDCXX_VERSION__ is c++0x feature macro, __GXX_EXPERIMENTAL_CXX0X__ is used by gcc, __GXX_EXPERIMENTAL_CPP0X__ by icc */
# define assert_compile(expr) static_assert(expr, #expr )
2010-04-11 15:43:54 +00:00
# define assert_tcompile(expr) assert_compile(expr)
2009-11-13 15:53:51 +00:00
# elif defined(__OS2__)
/* Disabled for OS/2 */
2007-12-02 21:43:16 +00:00
# define assert_compile(expr)
2010-04-11 15:43:54 +00:00
# define assert_tcompile(expr) assert_compile(expr)
2004-12-23 14:46:16 +00:00
# else
2009-11-13 15:53:51 +00:00
# define assert_compile(expr) typedef int __ct_assert__[1 - 2 * !(expr)]
2010-04-11 15:43:54 +00:00
# define assert_tcompile(expr) assert(expr)
2009-09-07 21:02:10 +00:00
# endif
2004-08-09 17:04:08 +00:00
2008-03-05 18:51:26 +00:00
/* Check if the types have the bitsizes like we are using them */
assert_compile ( sizeof ( uint64 ) = = 8 ) ;
2004-08-09 17:04:08 +00:00
assert_compile ( sizeof ( uint32 ) = = 4 ) ;
assert_compile ( sizeof ( uint16 ) = = 2 ) ;
2005-11-14 19:48:04 +00:00
assert_compile ( sizeof ( uint8 ) = = 1 ) ;
2011-09-03 12:45:45 +00:00
assert_compile ( SIZE_MAX > = UINT32_MAX ) ;
2004-08-09 17:04:08 +00:00
2010-03-06 15:30:40 +00:00
# ifndef M_PI_2
# define M_PI_2 1.57079632679489661923
# define M_PI 3.14159265358979323846
# endif /* M_PI_2 */
2008-11-02 11:05:26 +00:00
/**
* Return the length of an fixed size array .
* Unlike sizeof this function returns the number of elements
* of the given type .
*
* @ param x The pointer to the first element of the array
* @ return The number of elements
*/
2008-05-06 22:17:12 +00:00
# define lengthof(x) (sizeof(x) / sizeof(x[0]))
2008-11-02 11:05:26 +00:00
/**
* Get the end element of an fixed size array .
*
* @ param x The pointer to the first element of the array
* @ return The pointer past to the last element of the array
*/
2004-08-09 17:04:08 +00:00
# define endof(x) (&x[lengthof(x)])
2008-11-02 11:05:26 +00:00
/**
* Get the last element of an fixed size array .
*
* @ param x The pointer to the first element of the array
* @ return The pointer to the last element of the array
*/
2005-02-06 13:41:02 +00:00
# define lastof(x) (&x[lengthof(x) - 1])
2007-01-14 21:03:21 +00:00
2008-04-18 04:37:06 +00:00
# define cpp_offsetof(s, m) (((size_t)&reinterpret_cast<const volatile char&>((((s*)(char*)8)->m))) - 8)
2007-12-02 21:43:16 +00:00
# if !defined(offsetof)
2008-04-18 04:37:06 +00:00
# define offsetof(s, m) cpp_offsetof(s, m)
2007-02-19 21:11:44 +00:00
# endif /* offsetof */
2007-01-14 21:03:21 +00:00
2010-04-23 14:56:14 +00:00
/**
* Gets the size of a variable within a class .
* @ param base The class the variable is in .
* @ param variable The variable to get the size of .
* @ return the size of the variable
*/
# define cpp_sizeof(base, variable) (sizeof(((base*)8)->variable))
/**
* Gets the length of an array variable within a class .
* @ param base The class the variable is in .
* @ param variable The array variable to get the size of .
* @ return the length of the array
*/
# define cpp_lengthof(base, variable) (cpp_sizeof(base, variable) / cpp_sizeof(base, variable[0]))
2004-08-09 17:04:08 +00:00
2007-02-04 11:20:24 +00:00
/* take care of some name clashes on MacOS */
2004-08-09 17:04:08 +00:00
# if defined(__APPLE__)
2007-12-02 21:43:16 +00:00
# define GetString OTTD_GetString
# define DrawString OTTD_DrawString
# define CloseConnection OTTD_CloseConnection
2007-12-23 14:06:03 +00:00
# endif /* __APPLE__ */
2007-12-02 21:43:16 +00:00
2009-05-10 17:27:25 +00:00
void NORETURN CDECL usererror ( const char * str , . . . ) WARN_FORMAT ( 1 , 2 ) ;
void NORETURN CDECL error ( const char * str , . . . ) WARN_FORMAT ( 1 , 2 ) ;
2007-05-17 20:00:45 +00:00
# define NOT_REACHED() error("NOT_REACHED triggered at line %i of %s", __LINE__, __FILE__)
2007-05-15 13:01:52 +00:00
2009-09-07 12:14:45 +00:00
/* For non-debug builds with assertions enabled use the special assertion handler:
* - For MSVC : NDEBUG is set for all release builds and WITH_ASSERT overrides the disabling of asserts .
* - For non MSVC : NDEBUG is set when assertions are disables , _DEBUG is set for non - release builds .
*/
# if (defined(_MSC_VER) && defined(NDEBUG) && defined(WITH_ASSERT)) || (!defined(_MSC_VER) && !defined(NDEBUG) && !defined(_DEBUG))
# undef assert
# define assert(expression) if (!(expression)) error("Assertion failed at line %i of %s: %s", __LINE__, __FILE__, #expression);
# endif
2011-02-09 18:55:51 +00:00
/* Asserts are enabled if NDEBUG isn't defined, or if we are using MSVC and WITH_ASSERT is defined. */
# if !defined(NDEBUG) || (defined(_MSC_VER) && defined(WITH_ASSERT))
# define OTTD_ASSERT
# endif
2008-11-26 13:12:45 +00:00
# if defined(MORPHOS) || defined(__NDS__) || defined(__DJGPP__)
2008-01-21 23:55:57 +00:00
/* MorphOS and NDS don't have C++ conformant _stricmp... */
2007-12-02 21:43:16 +00:00
# define _stricmp stricmp
2007-07-17 16:59:21 +00:00
# elif defined(OPENBSD)
2007-12-02 21:43:16 +00:00
/* OpenBSD uses strcasecmp(3) */
# define _stricmp strcasecmp
2007-07-17 16:59:21 +00:00
# endif
2010-05-10 09:43:49 +00:00
# if defined(MAX_PATH)
/* It's already defined, no need to override */
# elif defined(PATH_MAX) && PATH_MAX > 0
/* Use the value from PATH_MAX, if it exists */
# define MAX_PATH PATH_MAX
# else
/* If all else fails, hardcode something :( */
2007-12-02 21:43:16 +00:00
# define MAX_PATH 260
2007-07-16 09:16:58 +00:00
# endif
2011-11-12 13:00:29 +00:00
/**
* Version of the standard free that accepts const pointers .
* @ param ptr The data to free .
*/
2011-12-20 17:57:56 +00:00
static inline void free ( const void * ptr )
2011-11-12 13:00:29 +00:00
{
free ( const_cast < void * > ( ptr ) ) ;
}
2007-12-23 10:56:02 +00:00
/**
* The largest value that can be entered in a variable
* @ param type the type of the variable
*/
# define MAX_UVALUE(type) ((type)~(type)0)
2014-01-03 18:43:10 +00:00
# if defined(_MSC_VER) && !defined(_DEBUG)
# define IGNORE_UNINITIALIZED_WARNING_START __pragma(warning(push)) __pragma(warning(disable:4700))
# define IGNORE_UNINITIALIZED_WARNING_STOP __pragma(warning(pop))
# elif defined(__GNUC__) && !defined(_DEBUG)
# define HELPER0(x) #x
# define HELPER1(x) HELPER0(GCC diagnostic ignored x)
# define HELPER2(y) HELPER1(#y)
2014-10-25 12:32:42 +00:00
# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
2014-01-03 18:43:10 +00:00
# define IGNORE_UNINITIALIZED_WARNING_START \
_Pragma ( " GCC diagnostic push " ) \
_Pragma ( HELPER2 ( - Wuninitialized ) ) \
_Pragma ( HELPER2 ( - Wmaybe - uninitialized ) )
# define IGNORE_UNINITIALIZED_WARNING_STOP _Pragma("GCC diagnostic pop")
2014-10-25 12:32:42 +00:00
# endif
# endif
# ifndef IGNORE_UNINITIALIZED_WARNING_START
2014-01-03 18:43:10 +00:00
# define IGNORE_UNINITIALIZED_WARNING_START
# define IGNORE_UNINITIALIZED_WARNING_STOP
# endif
2005-09-18 20:56:44 +00:00
# endif /* STDAFX_H */