2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
#ifndef STDAFX_H
|
|
|
|
#define STDAFX_H
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
2005-10-03 22:16:30 +00:00
|
|
|
# pragma once
|
|
|
|
# define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
|
|
# pragma warning(disable: 4018) // 'expression' : signed/unsigned mismatch
|
|
|
|
# pragma warning(disable: 4100) // 'identifier' : unreferenced formal parameter
|
|
|
|
# pragma warning(disable: 4127) // conditional expression is constant
|
|
|
|
# pragma warning(disable: 4201) // nonstandard extension used : nameless struct/union
|
|
|
|
# pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
|
|
|
|
# pragma warning(disable: 4245) // 'conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch
|
|
|
|
# pragma warning(disable: 4276) // 'fucntion' : no prototype provided; assumed no parameters (MSVC BUG???)
|
|
|
|
# pragma warning(disable: 4305) // 'identifier' : truncation from 'type1' to 'type2'
|
|
|
|
# pragma warning(disable: 4514) // 'function' : unreferenced inline function has been removed
|
|
|
|
# pragma warning(disable: 4761) // integral size mismatch in argument : conversion supplied
|
|
|
|
#endif /* _MSC_VER */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2005-07-28 21:47:41 +00:00
|
|
|
// MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal
|
2005-07-29 09:45:25 +00:00
|
|
|
// strgen always runs from terminal and don't need a window for asserts
|
|
|
|
#if !defined(__APPLE__) || defined(STRGEN)
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <assert.h>
|
2005-07-28 21:47:41 +00:00
|
|
|
#else
|
2005-10-03 22:16:30 +00:00
|
|
|
# include "os/macosx/macos.h"
|
2005-07-28 21:47:41 +00:00
|
|
|
#endif
|
|
|
|
|
2005-01-03 14:33:59 +00:00
|
|
|
#if defined(UNIX) || defined(__MINGW32__)
|
2005-10-03 22:16:30 +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__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <types.h>
|
2004-12-23 14:46:16 +00:00
|
|
|
#endif
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#ifdef __BEOS__
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <SupportDefs.h>
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
2004-11-17 09:07:29 +00:00
|
|
|
#ifdef SUNOS
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <alloca.h>
|
2004-11-17 09:07:29 +00:00
|
|
|
#endif
|
|
|
|
|
2004-12-22 21:12:36 +00:00
|
|
|
#ifdef __MORPHOS__
|
2005-01-06 18:45:28 +00:00
|
|
|
// morphos defines certain amiga defines per default, we undefine them
|
2004-12-22 21:12:36 +00:00
|
|
|
// here to make the rest of source less messy and more clear what is
|
|
|
|
// required for morphos and what for amigaos
|
2005-10-03 22:16:30 +00:00
|
|
|
# ifdef amigaos
|
|
|
|
# undef amigaos
|
|
|
|
# endif
|
|
|
|
# ifdef __amigaos__
|
|
|
|
# undef __amigaos__
|
|
|
|
# endif
|
|
|
|
# ifdef __AMIGA__
|
|
|
|
# undef __AMIGA__
|
|
|
|
# endif
|
|
|
|
# ifdef AMIGA
|
|
|
|
# undef AMIGA
|
|
|
|
# endif
|
|
|
|
# ifdef amiga
|
|
|
|
# undef amiga
|
|
|
|
# endif
|
2004-12-22 21:12:36 +00:00
|
|
|
#endif /* __MORPHOS__ */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#define BSWAP32(x) ((((x) >> 24) & 0xFF) | (((x) >> 8) & 0xFF00) | (((x) << 8) & 0xFF0000) | (((x) << 24) & 0xFF000000))
|
|
|
|
#define BSWAP16(x) ((x) >> 8 | (x) << 8)
|
|
|
|
|
|
|
|
// by default we use [] var arrays
|
|
|
|
#define VARARRAY_SIZE
|
|
|
|
|
|
|
|
|
|
|
|
// Stuff for GCC
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
# define NORETURN
|
|
|
|
# define FORCEINLINE inline
|
|
|
|
# define CDECL
|
|
|
|
//#include <alloca.h>
|
|
|
|
//#include <malloc.h>
|
|
|
|
# define __int64 long long
|
2005-05-30 22:16:05 +00:00
|
|
|
# define NOT_REACHED() assert(0)
|
2004-08-09 17:04:08 +00:00
|
|
|
# define GCC_PACK __attribute__((packed))
|
|
|
|
|
2005-10-03 22:16:30 +00:00
|
|
|
# if (__GNUC__ == 2)
|
2004-08-09 17:04:08 +00:00
|
|
|
# undef VARARRAY_SIZE
|
|
|
|
# define VARARRAY_SIZE 0
|
|
|
|
# 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__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define NORETURN
|
|
|
|
# define FORCEINLINE inline
|
|
|
|
# define CDECL
|
|
|
|
# define NOT_REACHED() assert(0)
|
|
|
|
# define GCC_PACK
|
|
|
|
# undef TTD_ALIGNMENT_4
|
|
|
|
# undef TTD_ALIGNMENT_2
|
|
|
|
# include <malloc.h>
|
|
|
|
#endif /* __WATCOMC__ */
|
2004-12-23 14:46:16 +00:00
|
|
|
|
2004-12-23 22:31:46 +00:00
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <malloc.h> // alloca()
|
2004-12-23 22:31:46 +00:00
|
|
|
#endif
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// Stuff for MSVC
|
|
|
|
#if defined(_MSC_VER)
|
2005-10-03 22:16:30 +00:00
|
|
|
# include <malloc.h> // alloca()
|
2004-08-09 17:04:08 +00:00
|
|
|
# define NORETURN __declspec(noreturn)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define FORCEINLINE __forceinline
|
|
|
|
# define inline _inline
|
|
|
|
# define CDECL _cdecl
|
2005-05-30 22:16:05 +00:00
|
|
|
# if defined(_DEBUG)
|
|
|
|
# define NOT_REACHED() assert(0)
|
|
|
|
# else
|
|
|
|
# define NOT_REACHED() _assume(0)
|
2005-10-03 22:16:30 +00:00
|
|
|
# endif /* _DEBUG */
|
|
|
|
int CDECL snprintf(char *str, size_t size, const char *format, ...);
|
|
|
|
# if _MSC_VER < 1400
|
|
|
|
int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap);
|
2005-05-30 22:16:05 +00:00
|
|
|
# endif
|
2005-10-03 22:16:30 +00:00
|
|
|
|
|
|
|
# if defined(WIN32) && !defined(_WIN64) && !defined(WIN64)
|
|
|
|
# ifndef _W64
|
|
|
|
# define _W64
|
|
|
|
# endif
|
|
|
|
typedef _W64 int INT_PTR, *PINT_PTR;
|
|
|
|
typedef _W64 unsigned int UINT_PTR, *PUINT_PTR;
|
|
|
|
# endif /* WIN32 && !_WIN64 && !WIN64 */
|
|
|
|
|
|
|
|
# if _MSC_VER < 1300 // VC6 and lower
|
|
|
|
# ifdef _WIN64
|
|
|
|
typedef __int64 intptr_t;
|
|
|
|
# else
|
|
|
|
typedef _W64 int intptr_t;
|
|
|
|
# endif
|
|
|
|
# endif /* _MSC_VER < 1300 */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
# undef TTD_ALIGNMENT_4
|
|
|
|
# undef TTD_ALIGNMENT_2
|
|
|
|
# define GCC_PACK
|
2005-10-03 22:16:30 +00:00
|
|
|
#endif /* defined(_MSC_VER) */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-10-02 22:39:56 +00:00
|
|
|
|
2004-09-04 14:20:12 +00:00
|
|
|
// Windows has always LITTLE_ENDIAN
|
2005-10-02 22:39:56 +00:00
|
|
|
#if defined(WIN32) || defined(__OS2__) || defined(WIN64)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define TTD_LITTLE_ENDIAN
|
2004-09-04 14:20:12 +00:00
|
|
|
#else
|
2005-04-24 15:41:01 +00:00
|
|
|
// Else include endian[target/host].h, which has the endian-type, autodetected by the Makefile
|
2005-10-03 22:16:30 +00:00
|
|
|
# if defined(STRGEN)
|
|
|
|
# include "endian_host.h"
|
|
|
|
# else
|
|
|
|
# include "endian_target.h"
|
|
|
|
# endif
|
|
|
|
#endif /* WIN32 || __OS2__ || WIN64 */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#if defined(UNIX)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define PATHSEP "/"
|
2004-08-09 17:04:08 +00:00
|
|
|
#else
|
2005-10-03 22:16:30 +00:00
|
|
|
# define PATHSEP "\\"
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
#ifndef __BEOS__ // already defined
|
2005-10-03 22:16:30 +00:00
|
|
|
typedef unsigned char uint8;
|
|
|
|
typedef unsigned short uint16;
|
|
|
|
typedef unsigned int uint32;
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// This is already defined in unix
|
2005-05-14 23:48:39 +00:00
|
|
|
#if !defined(UNIX) && !defined(__CYGWIN__) && !defined(__BEOS__)
|
2005-10-03 22:16:30 +00:00
|
|
|
typedef unsigned int uint;
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
2004-12-04 17:54:56 +00:00
|
|
|
// Not defined in QNX Neutrino (6.x)
|
|
|
|
#if defined(__QNXNTO__)
|
2005-10-03 22:16:30 +00:00
|
|
|
typedef unsigned int uint;
|
2004-12-04 17:54:56 +00:00
|
|
|
#endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#ifndef __BEOS__
|
2005-10-03 22:16:30 +00:00
|
|
|
typedef signed char int8;
|
|
|
|
typedef signed short int16;
|
|
|
|
typedef signed int int32;
|
|
|
|
# ifndef __cplusplus
|
|
|
|
typedef unsigned char bool;
|
|
|
|
# endif
|
|
|
|
typedef signed __int64 int64;
|
|
|
|
typedef unsigned __int64 uint64;
|
|
|
|
#endif /* __BEOS__ */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
// Setup alignment and conversion macros
|
|
|
|
#if defined(TTD_BIG_ENDIAN)
|
|
|
|
# define TTD_ALIGNMENT_2
|
|
|
|
# define TTD_ALIGNMENT_4
|
2005-10-03 22:16:30 +00:00
|
|
|
static inline uint32 TO_LE32(uint32 x) { return BSWAP32(x); }
|
|
|
|
static inline uint16 TO_LE16(uint16 x) { return BSWAP16(x); }
|
|
|
|
static inline uint32 FROM_LE32(uint32 x) { return BSWAP32(x); }
|
|
|
|
static inline uint16 FROM_LE16(uint16 x) { return BSWAP16(x); }
|
|
|
|
# define TO_BE32(x) x
|
|
|
|
# define TO_BE16(x) x
|
|
|
|
# define FROM_BE32(x) x
|
|
|
|
# define FROM_BE16(x) x
|
|
|
|
# define TO_BE32X(x) x
|
2004-08-09 17:04:08 +00:00
|
|
|
#else
|
2005-10-03 22:16:30 +00:00
|
|
|
static inline uint32 TO_BE32(uint32 x) { return BSWAP32(x); }
|
|
|
|
static inline uint16 TO_BE16(uint16 x) { return BSWAP16(x); }
|
|
|
|
static inline uint32 FROM_BE32(uint32 x) { return BSWAP32(x); }
|
|
|
|
static inline uint16 FROM_BE16(uint16 x) { return BSWAP16(x); }
|
|
|
|
# define TO_LE32(x) x
|
|
|
|
# define TO_LE16(x) x
|
|
|
|
# define TO_BE32X(x) BSWAP32(x)
|
|
|
|
# define FROM_LE32(x) x
|
|
|
|
# define FROM_LE16(x) x
|
|
|
|
#endif /* TTD_BIG_ENDIAN */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
#if !defined(GAME_DATA_DIR)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define GAME_DATA_DIR ""
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(PERSONAL_DIR)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define PERSONAL_DIR ""
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
2005-10-03 22:16:30 +00:00
|
|
|
# ifndef __BEOS__
|
|
|
|
enum {
|
|
|
|
false = 0,
|
|
|
|
true = 1,
|
|
|
|
};
|
|
|
|
# endif
|
|
|
|
#endif /* __cplusplus */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
// Compile time assertions
|
2004-12-23 14:46:16 +00:00
|
|
|
#ifdef __OS2__
|
2005-10-03 22:16:30 +00:00
|
|
|
# define assert_compile(expr)
|
2004-12-23 14:46:16 +00:00
|
|
|
#else
|
2005-10-03 22:16:30 +00:00
|
|
|
# define assert_compile(expr) void __ct_assert__(int a[1 - 2 * !(expr)])
|
2004-12-23 14:46:16 +00:00
|
|
|
#endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
assert_compile(sizeof(uint32) == 4);
|
|
|
|
assert_compile(sizeof(uint16) == 2);
|
|
|
|
assert_compile(sizeof(uint8) == 1);
|
|
|
|
|
|
|
|
#define lengthof(x) (sizeof(x)/sizeof(x[0]))
|
|
|
|
#define endof(x) (&x[lengthof(x)])
|
2005-02-06 13:41:02 +00:00
|
|
|
#define lastof(x) (&x[lengthof(x) - 1])
|
2004-08-09 17:04:08 +00:00
|
|
|
#ifndef offsetof
|
2005-10-03 22:16:30 +00:00
|
|
|
# define offsetof(s,m) (size_t)&(((s *)0)->m)
|
2004-08-09 17:04:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// take care of some name clashes on macos
|
|
|
|
#if defined(__APPLE__)
|
2005-10-03 22:16:30 +00:00
|
|
|
# define GetString OTTD_GetString
|
|
|
|
# define DrawString OTTD_DrawString
|
|
|
|
# define Random OTTD_Random
|
|
|
|
# define CloseConnection OTTD_CloseConnection
|
|
|
|
#endif /* __APPLE */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-22 21:12:36 +00:00
|
|
|
#ifdef __AMIGA__
|
2004-12-08 16:27:54 +00:00
|
|
|
// it seems AmigaOS already have a Point declared
|
2005-10-03 22:16:30 +00:00
|
|
|
# define Point OTTD_AMIGA_POINT
|
2004-12-08 16:27:54 +00:00
|
|
|
#endif
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
#endif /* STDAFX_H */
|