]> git.jsancho.org Git - lugaru.git/blob - Source/WinDefs.h
License: Update GPLv2+ header to match current FSF recommendation
[lugaru.git] / Source / WinDefs.h
1 /*
2 Copyright (C) 2003, 2010 - Wolfire Games
3
4 This file is part of Lugaru.
5
6 Lugaru is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 Lugaru 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.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef _WINDEFS_H_
21 #define _WINDEFS_H_
22 #ifdef WIN32
23
24
25 #include <stdio.h>
26 #include <math.h>
27
28 // stuff to make Mac code compatable with Windows
29
30
31 // disable warnings about double to float conversions
32 #pragma warning(disable:4305)
33 #pragma warning(disable:4244)
34
35 // disable warnings about boolean to int conversions
36 #pragma warning(disable:4800)
37
38 // disable warning about unreferenced local variables
39 #pragma warning(disable:4101)
40
41 typedef bool Boolean;
42
43 struct Point {
44     short v;
45     short h;
46 };
47
48 typedef signed char SInt8;
49 typedef unsigned int UInt32;
50
51
52 #include "Random.h"
53
54
55 void CopyCStringToPascal( const char* src, unsigned char dst[256]);
56 void CopyPascalStringToC( const unsigned char* src, char* dst);
57
58
59 typedef struct AbsoluteTime {
60     unsigned long   hi;
61     unsigned long   lo;
62 } AbsoluteTime;
63
64 AbsoluteTime UpTime(); // NOTE: returns time since app started, not system start
65
66 typedef long Duration;
67
68 enum {
69     durationMicrosecond             = -1,
70     durationMillisecond             = 1,
71     durationSecond                  = 1000,
72     durationMinute                  = 1000 * 60,
73     durationHour                    = 1000 * 60 * 60,
74     durationDay                     = 1000 * 60 * 60 * 24,
75     durationForever                 = 0x7FFFFFFF,
76     durationImmediate               = 0,
77 };
78
79 Duration AbsoluteDeltaToDuration( AbsoluteTime& a, AbsoluteTime& b);
80
81
82 /*
83 inline bool isnormal( double x)
84 {
85     int ret = _fpclass( x);
86     return (ret == _FPCLASS_NN || ret == _FPCLASS_PN);
87 }
88 */
89
90
91 // fix file names to use '/' instead of ':'
92 char* ConvertFileName( const char* orgfilename);
93 char* ConvertFileName( const char* orgfilename, const char* junk);
94
95
96 #define fopen(a, b) fopen(ConvertFileName(a), b);
97
98 #ifndef __MINGW32__
99 inline float abs(float f)
100 {
101     if (f < 0)
102         return -f;
103     return f;
104 }
105
106 inline double abs(double f)
107 {
108     if (f < 0)
109         return -f;
110     return f;
111 }
112 #endif // __MINGW32__
113
114
115 #endif
116 #endif