2 Copyright (C) 2003, 2010 - Wolfire Games
4 This file is part of Lugaru.
6 Lugaru is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 // stuff to make Mac code compatable with Windows
33 // disable warnings about double to float conversions
34 #pragma warning(disable:4305)
35 #pragma warning(disable:4244)
37 // disable warnings about boolean to int conversions
38 #pragma warning(disable:4800)
40 // disable warning about unreferenced local variables
41 #pragma warning(disable:4101)
52 typedef signed char SInt8;
53 typedef unsigned int UInt32;
59 void CopyCStringToPascal( const char* src, unsigned char dst[256]);
60 void CopyPascalStringToC( const unsigned char* src, char* dst);
63 typedef struct AbsoluteTime
69 AbsoluteTime UpTime(); // NOTE: returns time since app started, not system start
71 typedef long Duration;
75 durationMicrosecond = -1,
76 durationMillisecond = 1,
77 durationSecond = 1000,
78 durationMinute = 1000 * 60,
79 durationHour = 1000 * 60 * 60,
80 durationDay = 1000 * 60 * 60 * 24,
81 durationForever = 0x7FFFFFFF,
82 durationImmediate = 0,
85 Duration AbsoluteDeltaToDuration( AbsoluteTime& a, AbsoluteTime& b);
88 inline bool isnormal( double x)
90 int ret = _fpclass( x);
91 return (ret == _FPCLASS_NN || ret == _FPCLASS_PN);
94 typedef unsigned int uintptr_t;
97 // fix file names to use '/' instead of ':'
98 char* ConvertFileName( const char* orgfilename);
99 char* ConvertFileName( const char* orgfilename, const char* junk);
102 #define fopen( a, b) fopen( ConvertFileName( a), b);
104 inline float abs( float f)
111 inline double abs( double f)