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
2021-04-29 12:26:08 +00:00
# if defined(_WIN32)
/* MinGW defaults to Windows 7 if none of these are set, and they must be set before any MinGW header is included */
# 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+)
# endif
2020-06-06 17:25:42 +00:00
# ifdef _MSC_VER
/* Stop Microsoft (and clang-cl) compilers from complaining about potentially-unsafe/potentially-non-standard functions */
# define _CRT_SECURE_NO_DEPRECATE
# define _CRT_SECURE_NO_WARNINGS
# define _CRT_NONSTDC_NO_WARNINGS
# endif
2009-03-29 19:55:08 +00:00
# if defined(__APPLE__)
2020-07-02 21:36:10 +00:00
# include "os / macosx / osx_stdafx.h"
2009-03-29 19:55:08 +00:00
# endif /* __APPLE__ */
2019-03-04 18:46:11 +00:00
# if defined(__HAIKU__)
2020-07-02 21:36:10 +00:00
# include <SupportDefs.h>
# include <unistd.h>
2021-05-20 23:34:50 +00:00
# define _DEFAULT_SOURCE
2020-07-02 21:36:10 +00:00
# define _GNU_SOURCE
# define TROUBLED_INTS
2019-10-05 23:21:36 +00:00
# endif
# if defined(__HAIKU__) || defined(__CYGWIN__)
# include <strings.h> /* strncasecmp */
2009-09-21 18:36:33 +00:00
# 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
2019-03-04 18:21:13 +00:00
* does not have stdint . h .
2013-01-20 15:02:28 +00:00
* For OSX the inclusion is already done in osx_stdafx . h . */
2019-03-04 18:21:13 +00:00
# if !defined(__APPLE__) && (!defined(_MSC_VER) || _MSC_VER >= 1600)
2020-07-02 21:36:10 +00:00
# if defined(SUNOS)
2007-12-02 21:43:16 +00:00
/* SunOS/Solaris does not have stdint.h, but inttypes.h defines everything
* stdint . h defines and we need . */
2020-07-02 21:36:10 +00:00
# include <inttypes.h>
# else
# 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)
2020-07-02 21:36:10 +00:00
# define UINT64_MAX (18446744073709551615ULL)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT64_MAX)
2020-07-02 21:36:10 +00:00
# define INT64_MAX (9223372036854775807LL)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT64_MIN)
2020-07-02 21:36:10 +00:00
# define INT64_MIN (-INT64_MAX - 1)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(UINT32_MAX)
2020-07-02 21:36:10 +00:00
# define UINT32_MAX (4294967295U)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT32_MAX)
2020-07-02 21:36:10 +00:00
# define INT32_MAX (2147483647)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT32_MIN)
2020-07-02 21:36:10 +00:00
# define INT32_MIN (-INT32_MAX - 1)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(UINT16_MAX)
2020-07-02 21:36:10 +00:00
# define UINT16_MAX (65535U)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT16_MAX)
2020-07-02 21:36:10 +00:00
# define INT16_MAX (32767)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT16_MIN)
2020-07-02 21:36:10 +00:00
# define INT16_MIN (-INT16_MAX - 1)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(UINT8_MAX)
2020-07-02 21:36:10 +00:00
# define UINT8_MAX (255)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT8_MAX)
2020-07-02 21:36:10 +00:00
# define INT8_MAX (127)
2013-01-20 15:02:28 +00:00
# endif
# if !defined(INT8_MIN)
2020-07-02 21:36:10 +00:00
# define INT8_MIN (-INT8_MAX - 1)
2007-01-24 00:55:35 +00:00
# endif
2021-01-08 10:16:18 +00:00
# include <algorithm>
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>
2019-04-02 19:31:10 +00:00
# include <memory>
2021-02-21 16:03:19 +00:00
# include <string>
2005-07-28 21:47:41 +00:00
2011-09-02 20:54:51 +00:00
# ifndef SIZE_MAX
2020-07-02 21:36:10 +00:00
# define SIZE_MAX ((size_t)-1)
2011-09-02 20:54:51 +00:00
# endif
2005-01-03 14:33:59 +00:00
# if defined(UNIX) || defined(__MINGW32__)
2020-07-02 21:36:10 +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__)
2020-07-02 21:36:10 +00:00
# include <types.h>
# define strcasecmp stricmp
2004-12-23 14:46:16 +00:00
# endif
2019-10-05 23:21:36 +00:00
# if defined(SUNOS) || defined(HPUX) || defined(__CYGWIN__)
2020-07-02 21:36:10 +00:00
# include <alloca.h>
2004-11-17 09:07:29 +00:00
# endif
2007-02-04 11:20:24 +00:00
/* Stuff for GCC */
2021-04-11 13:15:37 +00:00
# if defined(__GNUC__) || (defined(__clang__) && !defined(_MSC_VER))
2020-07-02 21:36:10 +00:00
# define NORETURN __attribute__ ((noreturn))
# define CDECL
# define __int64 long long
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 . */
2020-07-02 21:36:10 +00:00
# define WARN_FORMAT(string, args) __attribute__ ((format (printf, string, args)))
2021-05-13 08:00:41 +00:00
# define WARN_TIME_FORMAT(string) __attribute__ ((format (strftime, string, 0)))
2020-07-02 21:36:10 +00:00
# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)
# define FINAL final
# else
# define FINAL
# endif
2017-08-13 18:38:42 +00:00
/* Use fallthrough attribute where supported */
2020-07-02 21:36:10 +00:00
# if __GNUC__ >= 7
# if __cplusplus > 201402L // C++17
# define FALLTHROUGH [[fallthrough]]
# else
# define FALLTHROUGH __attribute__((fallthrough))
# endif
# else
# define FALLTHROUGH
# endif
2016-09-08 17:38:53 +00:00
# endif /* __GNUC__ || __clang__ */
2004-08-09 17:04:08 +00:00
2021-04-28 21:06:47 +00:00
# if __GNUC__ > 11 || (__GNUC__ == 11 && __GNUC_MINOR__ >= 1)
# define NOACCESS(args) __attribute__ ((access (none, args)))
# else
# define NOACCESS(args)
# endif
2004-12-23 14:46:16 +00:00
# if defined(__WATCOMC__)
2020-07-02 21:36:10 +00:00
# define NORETURN
# define CDECL
# define WARN_FORMAT(string, args)
2021-05-13 08:00:41 +00:00
# define WARN_TIME_FORMAT(string)
2020-07-02 21:36:10 +00:00
# define FINAL
# define FALLTHROUGH
# include <malloc.h>
2005-10-03 22:16:30 +00:00
# endif /* __WATCOMC__ */
2004-12-23 14:46:16 +00:00
2019-10-05 23:21:36 +00:00
# if defined(__MINGW32__)
2020-07-02 21:36:10 +00:00
# include <malloc.h> // alloca()
2004-12-23 22:31:46 +00:00
# endif
2018-12-09 01:28:14 +00:00
# if defined(_WIN32)
2020-07-02 21:36:10 +00:00
# define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
2008-05-16 17:53:19 +00:00
# endif
2007-02-04 11:20:24 +00:00
/* Stuff for MSVC */
2004-08-09 17:04:08 +00:00
# if defined(_MSC_VER)
2020-07-02 21:36:10 +00:00
# pragma once
# define NOMINMAX // Disable min/max macros in windows.h.
# 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
# pragma warning(disable: 4355) // 'this' : used in base member initializer list
# if (_MSC_VER < 1400) // MSVC 2005 safety checks
# error "Only MSVC 2005 or higher are supported. MSVC 2003 and earlier are not! Upgrade your compiler."
# endif /* (_MSC_VER < 1400) */
# 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)
# pragma warning(disable: 4996) // 'function': was declared deprecated
# 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 ...
# 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
# include <malloc.h> // alloca()
# define NORETURN __declspec(noreturn)
# if (_MSC_VER < 1900)
# define inline __forceinline
# endif
# define CDECL _cdecl
# define WARN_FORMAT(string, args)
2021-05-13 08:00:41 +00:00
# define WARN_TIME_FORMAT(string)
2021-04-11 13:15:37 +00:00
# define FINAL final
2009-07-01 21:29:03 +00:00
2017-08-13 18:38:42 +00:00
/* fallthrough attribute, VS 2017 */
2021-04-11 13:15:37 +00:00
# if (_MSC_VER >= 1910) || defined(__clang__)
2020-07-02 21:36:10 +00:00
# define FALLTHROUGH [[fallthrough]]
# else
# define FALLTHROUGH
# endif
2017-08-13 18:38:42 +00:00
2018-12-09 01:28:14 +00:00
# if defined(_WIN32) && !defined(_WIN64)
2020-07-02 21:36:10 +00:00
# if !defined(_W64)
# define _W64
# endif
2007-12-02 21:43:16 +00:00
typedef _W64 int INT_PTR , * PINT_PTR ;
typedef _W64 unsigned int UINT_PTR , * PUINT_PTR ;
2018-12-09 01:28:14 +00:00
# endif /* _WIN32 && !_WIN64 */
2007-12-02 21:43:16 +00:00
2018-12-09 01:28:14 +00:00
# if defined(_WIN64)
2020-07-02 21:36:10 +00:00
# define fseek _fseeki64
2018-12-09 01:28:14 +00:00
# endif /* _WIN64 */
2008-05-27 21:41:00 +00:00
2018-12-25 02:03:23 +00:00
/* zlib from vcpkg use cdecl calling convention without enforcing it in the headers */
# if defined(WITH_ZLIB)
# if !defined(ZEXPORT)
# define ZEXPORT CDECL
# endif
# endif
/* freetype from vcpkg use cdecl calling convention without enforcing it in the headers */
# if defined(WITH_FREETYPE)
# if !defined(FT_EXPORT)
# define FT_EXPORT( x ) extern "C" x CDECL
# endif
2019-06-02 22:18:28 +00:00
# endif
/* liblzma from vcpkg (before 5.2.4-2) used to patch lzma.h to define LZMA_API_STATIC for static builds */
# if defined(WITH_LIBLZMA)
# if !defined(LZMA_API_STATIC)
# define LZMA_API_STATIC
# endif
2018-12-25 02:03:23 +00:00
# endif
2007-12-02 21:43:16 +00:00
2020-07-02 21:36:10 +00:00
# define strcasecmp stricmp
# define strncasecmp strnicmp
# define strtoull _strtoui64
2015-01-02 19:50:43 +00:00
2008-11-26 01:07:49 +00:00
/* MSVC doesn't have these :( */
2020-07-02 21:36:10 +00:00
# define S_ISDIR(mode) (mode & S_IFDIR)
# define S_ISREG(mode) (mode & S_IFREG)
2008-11-26 01:07:49 +00:00
2005-10-03 22:16:30 +00:00
# endif /* defined(_MSC_VER) */
2004-08-09 17:04:08 +00:00
2011-03-03 20:59:59 +00:00
# if !defined(STRGEN) && !defined(SETTINGSGEN)
2018-12-09 01:28:14 +00:00
# if defined(_WIN32)
2007-12-02 21:43:16 +00:00
char * getcwd ( char * buf , size_t size ) ;
2020-07-02 21:36:10 +00:00
# include <io.h>
2021-02-21 16:03:19 +00:00
# include <tchar.h>
2007-12-02 21:43:16 +00:00
2021-02-21 16:03:19 +00:00
# define fopen(file, mode) _wfopen(OTTD2FS(file).c_str(), _T(mode))
# define unlink(file) _wunlink(OTTD2FS(file).c_str())
2007-12-02 21:43:16 +00:00
2021-02-21 16:03:19 +00:00
std : : string FS2OTTD ( const std : : wstring & name ) ;
2021-04-02 16:35:00 +00:00
std : : wstring OTTD2FS ( const std : : string & name ) ;
2021-02-21 16:03:19 +00:00
# elif defined(WITH_ICONV)
# define fopen(file, mode) fopen(OTTD2FS(file).c_str(), mode)
std : : string FS2OTTD ( const std : : string & name ) ;
std : : string OTTD2FS ( const std : : string & name ) ;
2018-12-09 01:28:14 +00:00
# else
2021-02-21 16:03:19 +00:00
// no override of fopen() since no transformation is required of the filename
template < typename T > std : : string FS2OTTD ( T name ) { return name ; }
template < typename T > std : : string OTTD2FS ( T name ) { return name ; }
# endif /* _WIN32 or WITH_ICONV */
2011-03-03 20:59:59 +00:00
# endif /* STRGEN || SETTINGSGEN */
2005-10-02 22:39:56 +00:00
2018-12-09 01:28:14 +00:00
# if defined(_WIN32) || defined(__OS2__) && !defined(__INNOTEK_LIBC__)
2020-07-02 21:36:10 +00:00
# define PATHSEP "\\"
# define PATHSEPCHAR '\\'
2006-08-25 12:26:34 +00:00
# else
2020-07-02 21:36:10 +00:00
# define PATHSEP " / "
# define PATHSEPCHAR ' / '
2004-08-09 17:04:08 +00:00
# endif
2018-06-18 20:21:45 +00:00
# if defined(_MSC_VER) || defined(__WATCOMC__)
# define PACK_N(type_dec, n) __pragma(pack(push, n)) type_dec; __pragma(pack(pop))
# elif defined(__MINGW32__)
# define PRAGMA(x) _Pragma(#x)
# define PACK_N(type_dec, n) PRAGMA(pack(push, n)) type_dec; PRAGMA(pack(pop))
# else
# define PACK_N(type_dec, n) type_dec __attribute__((__packed__, aligned(n)))
# endif
# define PACK(type_dec) PACK_N(type_dec, 1)
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__)
2019-05-01 17:12:37 +00:00
# define OTTD_PRINTF64 "%I64d"
# define OTTD_PRINTFHEX64 "%I64x"
# define PRINTF_SIZE "%Iu"
# define PRINTF_SIZEX "%IX"
2009-05-10 17:27:25 +00:00
# else
2019-05-01 17:12:37 +00:00
# define OTTD_PRINTF64 "%lld"
# define OTTD_PRINTFHEX64 "%llx"
# define PRINTF_SIZE "%zu"
# define PRINTF_SIZEX "%zX"
2009-05-10 17:27:25 +00:00
# endif
2004-08-09 17:04:08 +00:00
typedef unsigned char byte ;
2021-02-16 02:05:26 +00:00
/* This is already defined in unix, but not in QNX Neutrino (6.x) or Cygwin. */
# if (!defined(UNIX) && !defined(__HAIKU__)) || defined(__QNXNTO__) || defined(__CYGWIN__)
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)
2019-03-04 19:51:46 +00:00
/* Haiku's types for uint32/int32/uint64/int64 are different than what
* they are on other platforms ; not in length , but how to print them .
* So make them more like the other platforms , to make printf ( ) etc a
* little bit easier . */
# define uint32 uint32_ugly_hack
# define int32 int32_ugly_hack
# define uint64 uint64_ugly_hack
# define int64 int64_ugly_hack
2009-09-21 18:36:33 +00:00
typedef unsigned int uint32_ugly_hack ;
typedef signed int int32_ugly_hack ;
2019-03-04 19:51:46 +00:00
typedef unsigned __int64 uint64_ugly_hack ;
typedef signed __int64 int64_ugly_hack ;
2009-09-21 18:36:33 +00:00
# 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)
2020-07-02 21:36:10 +00:00
# define PERSONAL_DIR ""
2004-08-09 17:04:08 +00:00
# endif
2020-12-06 18:49:28 +00:00
/* Define the the platforms that use XDG */
2021-05-08 07:43:17 +00:00
# if defined(WITH_PERSONAL_DIR) && defined(UNIX) && !defined(__APPLE__) && !defined(__EMSCRIPTEN__)
2020-12-06 18:49:28 +00:00
# define USE_XDG
# endif
2008-03-05 18:51:26 +00:00
/* Check if the types have the bitsizes like we are using them */
2020-12-27 10:44:22 +00:00
static_assert ( sizeof ( uint64 ) = = 8 ) ;
static_assert ( sizeof ( uint32 ) = = 4 ) ;
static_assert ( sizeof ( uint16 ) = = 2 ) ;
static_assert ( sizeof ( uint8 ) = = 1 ) ;
static_assert ( 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
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
*/
2020-12-13 23:22:04 +00:00
# define cpp_sizeof(base, variable) (sizeof(std::declval<base>().variable))
2010-04-23 14:56:14 +00:00
/**
* 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__)
2020-07-02 21:36:10 +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
2016-09-08 17:38:53 +00:00
# if defined(__GNUC__) || defined(__clang__)
2016-03-10 00:13:58 +00:00
# define likely(x) __builtin_expect(!!(x), 1)
# define unlikely(x) __builtin_expect(!!(x), 0)
# else
# define likely(x) (x)
# define unlikely(x) (x)
2016-09-08 17:38:53 +00:00
# endif /* __GNUC__ || __clang__ */
2016-03-10 00:13:58 +00:00
2021-06-11 19:17:07 +00:00
/* For the FMT library we only want to use the headers, not link to some library. */
# define FMT_HEADER_ONLY
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
Add: introduce CMake for project management
CMake works on all our supported platforms, like MSVC, Mingw, GCC,
Clang, and many more. It allows for a single way of doing things,
so no longer we need shell scripts and vbs scripts to work on all
our supported platforms.
Additionally, CMake allows to generate project files for like MSVC,
KDevelop, etc.
This heavily reduces the lines of code we need to support multiple
platforms from a project perspective.
Addtiionally, this heavily improves our detection of libraries, etc.
2019-04-07 09:57:55 +00:00
/* For non-debug builds with assertions enabled use the special assertion handler. */
# if defined(NDEBUG) && defined(WITH_ASSERT)
2020-07-02 21:36:10 +00:00
# undef assert
2016-03-10 00:13:58 +00:00
# define assert(expression) if (unlikely(!(expression))) error("Assertion failed at line %i of %s: %s", __LINE__, __FILE__, #expression);
2009-09-07 12:14:45 +00:00
# endif
Remove: DOS support
In 10 years there was no active development on DOS. Although it
turned out to still work, the FPS was very bad. There is little
interest in the current community to look into this.
Further more, we like to switch to c++11 functions for threads,
which are not implemented by DJGPP, the only current compiler
for DOS.
Additionally, DOS is the only platform which does not support
networking. It is the reason we have tons of #ifdefs to support
disabling networking.
By removing DOS support, we can both use c++11 functions for threads,
and remove all the code related to disabling network. Sadly, this
means we have to see DOS go.
Of course, if you feel up for the task, simply revert this commit,
and implement stub c++11 functions for threads and stub functions
for networking. We are more than happy to accept such Pull Request.
2019-03-19 21:23:09 +00:00
# if defined(OPENBSD)
2007-12-02 21:43:16 +00:00
/* OpenBSD uses strcasecmp(3) */
2020-07-02 21:36:10 +00:00
# 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 */
2020-07-02 21:36:10 +00:00
# define MAX_PATH PATH_MAX
2010-05-10 09:43:49 +00:00
# else
/* If all else fails, hardcode something :( */
2020-07-02 21:36:10 +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)
2020-07-02 21:36:10 +00:00
# define IGNORE_UNINITIALIZED_WARNING_START __pragma(warning(push)) __pragma(warning(disable:4700))
# define IGNORE_UNINITIALIZED_WARNING_STOP __pragma(warning(pop))
2014-01-03 18:43:10 +00:00
# elif defined(__GNUC__) && !defined(_DEBUG)
2020-07-02 21:36:10 +00:00
# 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))
2020-07-02 21:36:10 +00:00
# define IGNORE_UNINITIALIZED_WARNING_START \
2014-01-03 18:43:10 +00:00
_Pragma ( " GCC diagnostic push " ) \
_Pragma ( HELPER2 ( - Wuninitialized ) ) \
_Pragma ( HELPER2 ( - Wmaybe - uninitialized ) )
2020-07-02 21:36:10 +00:00
# define IGNORE_UNINITIALIZED_WARNING_STOP _Pragma("GCC diagnostic pop")
2014-10-25 12:32:42 +00:00
# endif
# endif
# ifndef IGNORE_UNINITIALIZED_WARNING_START
2020-07-02 21:36:10 +00:00
# define IGNORE_UNINITIALIZED_WARNING_START
# define IGNORE_UNINITIALIZED_WARNING_STOP
2014-01-03 18:43:10 +00:00
# endif
2005-09-18 20:56:44 +00:00
# endif /* STDAFX_H */