Translations update
[openttd/fttd.git] / src / stdafx.h
blob7a2942d994fc24e732405917f352cfa3ec88d0f5
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
8 */
10 /** @file stdafx.h Definition of base types and functions in a cross-platform compatible way. */
12 #ifndef STDAFX_H
13 #define STDAFX_H
15 #if defined(__APPLE__)
16 #include "os/macosx/osx_stdafx.h"
17 #endif /* __APPLE__ */
19 #if defined(__BEOS__) || defined(__HAIKU__)
20 #include <SupportDefs.h>
21 #include <unistd.h>
22 #define _GNU_SOURCE
23 #define TROUBLED_INTS
24 #elif defined(__NDS__)
25 #include <nds/jtypes.h>
26 #define TROUBLED_INTS
27 #endif
29 /* It seems that we need to include stdint.h before anything else
30 * We need INT64_MAX, which for most systems comes from stdint.h. However, MSVC
31 * does not have stdint.h and apparently neither does MorphOS.
32 * For OSX the inclusion is already done in osx_stdafx.h. */
33 #if !defined(__APPLE__) && (!defined(_MSC_VER) || _MSC_VER >= 1600) && !defined(__MORPHOS__)
34 #if defined(SUNOS)
35 /* SunOS/Solaris does not have stdint.h, but inttypes.h defines everything
36 * stdint.h defines and we need. */
37 #include <inttypes.h>
38 #else
39 #define __STDC_LIMIT_MACROS
40 #include <stdint.h>
41 #endif
42 #endif
44 /* The conditions for these constants to be available are way too messy; so check them one by one */
45 #if !defined(UINT64_MAX)
46 #define UINT64_MAX (18446744073709551615ULL)
47 #endif
48 #if !defined(INT64_MAX)
49 #define INT64_MAX (9223372036854775807LL)
50 #endif
51 #if !defined(INT64_MIN)
52 #define INT64_MIN (-INT64_MAX - 1)
53 #endif
54 #if !defined(UINT32_MAX)
55 #define UINT32_MAX (4294967295U)
56 #endif
57 #if !defined(INT32_MAX)
58 #define INT32_MAX (2147483647)
59 #endif
60 #if !defined(INT32_MIN)
61 #define INT32_MIN (-INT32_MAX - 1)
62 #endif
63 #if !defined(UINT16_MAX)
64 #define UINT16_MAX (65535U)
65 #endif
66 #if !defined(INT16_MAX)
67 #define INT16_MAX (32767)
68 #endif
69 #if !defined(INT16_MIN)
70 #define INT16_MIN (-INT16_MAX - 1)
71 #endif
72 #if !defined(UINT8_MAX)
73 #define UINT8_MAX (255)
74 #endif
75 #if !defined(INT8_MAX)
76 #define INT8_MAX (127)
77 #endif
78 #if !defined(INT8_MIN)
79 #define INT8_MIN (-INT8_MAX - 1)
80 #endif
82 #include <cstdio>
83 #include <cstddef>
84 #include <cstring>
85 #include <cstdlib>
86 #include <climits>
87 #include <cassert>
89 #ifndef SIZE_MAX
90 #define SIZE_MAX ((size_t)-1)
91 #endif
93 #if defined(UNIX) || defined(__MINGW32__)
94 #include <sys/types.h>
95 #endif
97 #if defined(__OS2__)
98 #include <types.h>
99 #define strcasecmp stricmp
100 #endif
102 #if defined(PSP)
103 #include <psptypes.h>
104 #include <pspdebug.h>
105 #include <pspthreadman.h>
106 #endif
108 #if defined(SUNOS) || defined(HPUX)
109 #include <alloca.h>
110 #endif
112 #if defined(__MORPHOS__)
113 /* MorphOS defines certain Amiga defines per default, we undefine them
114 * here to make the rest of source less messy and more clear what is
115 * required for morphos and what for AmigaOS */
116 #if defined(amigaos)
117 #undef amigaos
118 #endif
119 #if defined(__amigaos__)
120 #undef __amigaos__
121 # endif
122 #if defined(__AMIGA__)
123 #undef __AMIGA__
124 #endif
125 #if defined(AMIGA)
126 #undef AMIGA
127 #endif
128 #if defined(amiga)
129 #undef amiga
130 #endif
131 /* Act like we already included this file, as it somehow gives linkage problems
132 * (mismatch linkage of C++ and C between this include and unistd.h). */
133 #define CLIB_USERGROUP_PROTOS_H
134 #endif /* __MORPHOS__ */
136 #if defined(PSP)
137 /* PSP can only have 10 file-descriptors open at any given time, but this
138 * switch only limits reads via the Fio system. So keep 2 fds free for things
139 * like saving a game. */
140 #define LIMITED_FDS 8
141 #define printf pspDebugScreenPrintf
142 #endif /* PSP */
144 /* Stuff for GCC */
145 #if defined(__GNUC__)
146 #define NORETURN __attribute__ ((noreturn))
147 #define CDECL
148 #define __int64 long long
149 #define GCC_PACK __attribute__((packed))
150 /* Warn about functions using 'printf' format syntax. First argument determines which parameter
151 * is the format string, second argument is start of values passed to printf. */
152 #define WARN_FORMAT(string, args) __attribute__ ((format (printf, string, args)))
153 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)
154 #define FINAL final
155 #define OVERRIDE override
156 #define FINAL_OVERRIDE final override
157 #define DELETED = delete
158 #else
159 #define FINAL
160 #define OVERRIDE
161 #define FINAL_OVERRIDE
162 #define DELETED { NOT_REACHED(); }
163 #endif
164 #endif /* __GNUC__ */
166 #if defined(__WATCOMC__)
167 #define NORETURN
168 #define CDECL
169 #define GCC_PACK
170 #define WARN_FORMAT(string, args)
171 #define FINAL
172 #define OVERRIDE
173 #define FINAL_OVERRIDE
174 #define DELETED { NOT_REACHED(); }
175 #include <malloc.h>
176 #endif /* __WATCOMC__ */
178 #if defined(__MINGW32__) || defined(__CYGWIN__)
179 #include <malloc.h> // alloca()
180 #endif
182 #if defined(WIN32)
183 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
184 #endif
186 /* Stuff for MSVC */
187 #if defined(_MSC_VER)
188 #pragma once
189 #ifdef _WIN64
190 /* No 64-bit Windows below XP, so we can safely assume it as the target platform. */
191 #define NTDDI_VERSION NTDDI_WINXP // Windows XP
192 #define _WIN32_WINNT 0x501 // Windows XP
193 #define _WIN32_WINDOWS 0x501 // Windows XP
194 #define WINVER 0x0501 // Windows XP
195 #define _WIN32_IE_ 0x0600 // 6.0 (XP+)
196 #else
197 /* Define a win32 target platform, to override defaults of the SDK
198 * We need to define NTDDI version for Vista SDK, but win2k is minimum */
199 #define NTDDI_VERSION NTDDI_WIN2K // Windows 2000
200 #define _WIN32_WINNT 0x0500 // Windows 2000
201 #define _WIN32_WINDOWS 0x400 // Windows 95
202 #if !defined(WINCE)
203 #define WINVER 0x0400 // Windows NT 4.0 / Windows 95
204 #endif
205 #define _WIN32_IE_ 0x0401 // 4.01 (win98 and NT4SP5+)
206 #endif
207 #define NOMINMAX // Disable min/max macros in windows.h.
209 #pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
210 #pragma warning(disable: 4761) // integral size mismatch in argument : conversion supplied
211 #pragma warning(disable: 4200) // nonstandard extension used : zero-sized array in struct/union
212 #pragma warning(disable: 4355) // 'this' : used in base member initializer list
214 #if (_MSC_VER < 1400) // MSVC 2005 safety checks
215 #error "Only MSVC 2005 or higher are supported. MSVC 2003 and earlier are not! Upgrade your compiler."
216 #endif /* (_MSC_VER < 1400) */
217 #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)
218 #pragma warning(disable: 4996) // 'function': was declared deprecated
219 #define _CRT_SECURE_NO_DEPRECATE // all deprecated 'unsafe string functions
220 #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
221 #pragma warning(disable: 6011) // code analyzer: Dereferencing NULL pointer 'pfGetAddrInfo': Lines: 995, 996, 998, 999, 1001
222 #pragma warning(disable: 6326) // code analyzer: potential comparison of a constant with another constant
223 #pragma warning(disable: 6031) // code analyzer: Return value ignored: 'ReadFile'
224 #pragma warning(disable: 6255) // code analyzer: _alloca indicates failure by raising a stack overflow exception. Consider using _malloca instead
225 #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 ...
227 #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
228 #define _DO_NOT_DECLARE_INTERLOCKED_INTRINSICS_IN_MEMORY
229 #include <intrin.h>
230 #endif
232 #include <malloc.h> // alloca()
233 #define NORETURN __declspec(noreturn)
234 #define inline __forceinline
236 #if !defined(WINCE)
237 #define CDECL _cdecl
238 #endif
240 #define GCC_PACK
241 #define WARN_FORMAT(string, args)
242 #define FINAL sealed
243 #define OVERRIDE
244 #define FINAL_OVERRIDE
245 #define DELETED { NOT_REACHED(); }
247 int CDECL snprintf(char *str, size_t size, const char *format, ...) WARN_FORMAT(3, 4);
248 #if defined(WINCE)
249 int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap);
250 #endif
252 #if defined(WIN32) && !defined(_WIN64) && !defined(WIN64)
253 #if !defined(_W64)
254 #define _W64
255 #endif
257 typedef _W64 int INT_PTR, *PINT_PTR;
258 typedef _W64 unsigned int UINT_PTR, *PUINT_PTR;
259 #endif /* WIN32 && !_WIN64 && !WIN64 */
261 #if defined(_WIN64) || defined(WIN64)
262 #define fseek _fseeki64
263 #endif /* _WIN64 || WIN64 */
265 /* This is needed to zlib uses the stdcall calling convention on visual studio */
266 #if defined(WITH_ZLIB) || defined(WITH_PNG)
267 #if !defined(ZLIB_WINAPI)
268 #define ZLIB_WINAPI
269 #endif
270 #endif
272 #if defined(WINCE)
273 #define strcasecmp _stricmp
274 #define strncasecmp _strnicmp
275 #undef DEBUG
276 #else
277 #define strcasecmp stricmp
278 #define strncasecmp strnicmp
279 #endif
281 /* MSVC doesn't have these :( */
282 #define S_ISDIR(mode) (mode & S_IFDIR)
283 #define S_ISREG(mode) (mode & S_IFREG)
285 #endif /* defined(_MSC_VER) */
287 #if defined(DOS)
288 /* The DOS port does not have all signals/signal functions. */
289 #define strsignal(sig) ""
290 /* Use 'no floating point' for bus errors; SIGBUS does not exist
291 * for DOS, SIGNOFP for other platforms. So it's fairly safe
292 * to interchange those. */
293 #define SIGBUS SIGNOFP
294 #endif
296 #if defined(WINCE)
297 #define strdup _strdup
298 #endif /* WINCE */
300 /* NOTE: the string returned by these functions is only valid until the next
301 * call to the same function and is not thread- or reentrancy-safe */
302 #if !defined(STRGEN) && !defined(SETTINGSGEN)
303 #if defined(WIN32) || defined(WIN64)
304 char *getcwd(char *buf, size_t size);
305 #include <tchar.h>
306 #include <io.h>
308 /* XXX - WinCE without MSVCRT doesn't support wfopen, so it seems */
309 #if !defined(WINCE)
310 namespace std { using ::_tfopen; }
311 #define fopen(file, mode) _tfopen(OTTD2FS(file), _T(mode))
312 #define unlink(file) _tunlink(OTTD2FS(file))
313 #endif /* WINCE */
315 const char *FS2OTTD(const TCHAR *name);
316 const TCHAR *OTTD2FS(const char *name, bool console_cp = false);
317 #define SQ2OTTD(name) FS2OTTD(name)
318 #define OTTD2SQ(name) OTTD2FS(name)
319 #else
320 #define fopen(file, mode) fopen(OTTD2FS(file), mode)
321 const char *FS2OTTD(const char *name);
322 const char *OTTD2FS(const char *name);
323 #define SQ2OTTD(name) (name)
324 #define OTTD2SQ(name) (name)
325 #endif /* WIN32 */
326 #endif /* STRGEN || SETTINGSGEN */
328 #if defined(WIN32) || defined(WIN64) || defined(__OS2__) && !defined(__INNOTEK_LIBC__)
329 #define PATHSEP "\\"
330 #define PATHSEPCHAR '\\'
331 #else
332 #define PATHSEP "/"
333 #define PATHSEPCHAR '/'
334 #endif
336 /* MSVCRT of course has to have a different syntax for long long *sigh* */
337 #if defined(_MSC_VER) || defined(__MINGW32__)
338 #define OTTD_PRINTF64 "%I64d"
339 #define OTTD_PRINTFHEX64 "%I64x"
340 #define PRINTF_SIZE "%Iu"
341 #else
342 #define OTTD_PRINTF64 "%lld"
343 #define OTTD_PRINTFHEX64 "%llx"
344 #define PRINTF_SIZE "%zu"
345 #endif
347 typedef unsigned char byte;
349 /* This is already defined in unix, but not in QNX Neutrino (6.x)*/
350 #if (!defined(UNIX) && !defined(__CYGWIN__) && !defined(__BEOS__) && !defined(__HAIKU__) && !defined(__MORPHOS__)) || defined(__QNXNTO__)
351 typedef unsigned int uint;
352 #endif
354 #if defined(TROUBLED_INTS)
355 /* NDS'/BeOS'/Haiku's types for uint32/int32 are based on longs, which causes
356 * trouble all over the place in OpenTTD. */
357 #define uint32 uint32_ugly_hack
358 #define int32 int32_ugly_hack
359 typedef unsigned int uint32_ugly_hack;
360 typedef signed int int32_ugly_hack;
361 #else
362 typedef unsigned char uint8;
363 typedef signed char int8;
364 typedef unsigned short uint16;
365 typedef signed short int16;
366 typedef unsigned int uint32;
367 typedef signed int int32;
368 typedef unsigned __int64 uint64;
369 typedef signed __int64 int64;
370 #endif /* !TROUBLED_INTS */
372 #if !defined(WITH_PERSONAL_DIR)
373 #define PERSONAL_DIR ""
374 #endif
376 /* Compile time assertions. Prefer c++0x static_assert().
377 * Older compilers cannot evaluate some expressions at compile time,
378 * typically when templates are involved, try assert_tcompile() in those cases. */
379 #if defined(__STDCXX_VERSION__) || defined(__GXX_EXPERIMENTAL_CXX0X__) || defined(__GXX_EXPERIMENTAL_CPP0X__) || defined(static_assert)
380 /* __STDCXX_VERSION__ is c++0x feature macro, __GXX_EXPERIMENTAL_CXX0X__ is used by gcc, __GXX_EXPERIMENTAL_CPP0X__ by icc */
381 #define assert_compile(expr) static_assert(expr, #expr )
382 #define assert_tcompile(expr) assert_compile(expr)
383 #elif defined(__OS2__)
384 /* Disabled for OS/2 */
385 #define assert_compile(expr)
386 #define assert_tcompile(expr) assert_compile(expr)
387 #else
388 #define assert_compile(expr) typedef int __ct_assert__[1 - 2 * !(expr)]
389 #define assert_tcompile(expr) assert(expr)
390 #endif
392 /* Check if the types have the bitsizes like we are using them */
393 assert_compile(sizeof(uint64) == 8);
394 assert_compile(sizeof(uint32) == 4);
395 assert_compile(sizeof(uint16) == 2);
396 assert_compile(sizeof(uint8) == 1);
397 assert_compile(SIZE_MAX >= UINT32_MAX);
399 #ifndef M_PI_2
400 #define M_PI_2 1.57079632679489661923
401 #define M_PI 3.14159265358979323846
402 #endif /* M_PI_2 */
405 * Return the length of an fixed size array.
406 * Unlike sizeof this function returns the number of elements
407 * of the given type.
409 * @param x The pointer to the first element of the array
410 * @return The number of elements
412 #define lengthof(x) (sizeof(x) / sizeof(x[0]))
415 * Get the end element of an fixed size array.
417 * @param x The pointer to the first element of the array
418 * @return The pointer past to the last element of the array
420 #define endof(x) (&x[lengthof(x)])
423 * Get the last element of an fixed size array.
425 * @param x The pointer to the first element of the array
426 * @return The pointer to the last element of the array
428 #define lastof(x) (&x[lengthof(x) - 1])
430 #define cpp_offsetof(s, m) (((size_t)&reinterpret_cast<const volatile char&>((((s*)(char*)8)->m))) - 8)
431 #if !defined(offsetof)
432 #define offsetof(s, m) cpp_offsetof(s, m)
433 #endif /* offsetof */
436 * Gets the size of a variable within a class.
437 * @param base The class the variable is in.
438 * @param variable The variable to get the size of.
439 * @return the size of the variable
441 #define cpp_sizeof(base, variable) (sizeof(((base*)8)->variable))
444 * Gets the length of an array variable within a class.
445 * @param base The class the variable is in.
446 * @param variable The array variable to get the size of.
447 * @return the length of the array
449 #define cpp_lengthof(base, variable) (cpp_sizeof(base, variable) / cpp_sizeof(base, variable[0]))
452 /* take care of some name clashes on MacOS */
453 #if defined(__APPLE__)
454 #define GetString OTTD_GetString
455 #define DrawString OTTD_DrawString
456 #define CloseConnection OTTD_CloseConnection
457 #endif /* __APPLE__ */
459 void NORETURN CDECL usererror(const char *str, ...) WARN_FORMAT(1, 2);
460 void NORETURN CDECL error(const char *str, ...) WARN_FORMAT(1, 2);
461 #define NOT_REACHED() error("NOT_REACHED triggered at line %i of %s", __LINE__, __FILE__)
463 /* For non-debug builds with assertions enabled use the special assertion handler:
464 * - For MSVC: NDEBUG is set for all release builds and WITH_ASSERT overrides the disabling of asserts.
465 * - For non MSVC: NDEBUG is set when assertions are disables, _DEBUG is set for non-release builds.
467 #if (defined(_MSC_VER) && defined(NDEBUG) && defined(WITH_ASSERT)) || (!defined(_MSC_VER) && !defined(NDEBUG) && !defined(_DEBUG))
468 #undef assert
469 #define assert(expression) if (!(expression)) error("Assertion failed at line %i of %s: %s", __LINE__, __FILE__, #expression);
470 #endif
472 /* Asserts are enabled if NDEBUG isn't defined, or if we are using MSVC and WITH_ASSERT is defined. */
473 #if !defined(NDEBUG) || (defined(_MSC_VER) && defined(WITH_ASSERT))
474 #define OTTD_ASSERT
475 #endif
477 #if defined(MORPHOS) || defined(__NDS__) || defined(__DJGPP__)
478 /* MorphOS and NDS don't have C++ conformant _stricmp... */
479 #define _stricmp stricmp
480 #elif defined(OPENBSD)
481 /* OpenBSD uses strcasecmp(3) */
482 #define _stricmp strcasecmp
483 #endif
485 #if defined(MAX_PATH)
486 /* It's already defined, no need to override */
487 #elif defined(PATH_MAX) && PATH_MAX > 0
488 /* Use the value from PATH_MAX, if it exists */
489 #define MAX_PATH PATH_MAX
490 #else
491 /* If all else fails, hardcode something :( */
492 #define MAX_PATH 260
493 #endif
496 * Version of the standard free that accepts const pointers.
497 * @param ptr The data to free.
499 static inline void free(const void *ptr)
501 free(const_cast<void *>(ptr));
505 * The largest value that can be entered in a variable
506 * @param type the type of the variable
508 #define MAX_UVALUE(type) ((type)~(type)0)
510 #if defined(_MSC_VER) && !defined(_DEBUG)
511 #define IGNORE_UNINITIALIZED_WARNING_START __pragma(warning(push)) __pragma(warning(disable:4700))
512 #define IGNORE_UNINITIALIZED_WARNING_STOP __pragma(warning(pop))
513 #elif defined(__GNUC__) && !defined(_DEBUG)
514 #define HELPER0(x) #x
515 #define HELPER1(x) HELPER0(GCC diagnostic ignored x)
516 #define HELPER2(y) HELPER1(#y)
517 #define IGNORE_UNINITIALIZED_WARNING_START \
518 _Pragma("GCC diagnostic push") \
519 _Pragma(HELPER2(-Wuninitialized)) \
520 _Pragma(HELPER2(-Wmaybe-uninitialized))
521 #define IGNORE_UNINITIALIZED_WARNING_STOP _Pragma("GCC diagnostic pop")
522 #else
523 #define IGNORE_UNINITIALIZED_WARNING_START
524 #define IGNORE_UNINITIALIZED_WARNING_STOP
525 #endif
527 #endif /* STDAFX_H */