]> git.jsancho.org Git - lugaru.git/blob - Source/WinDefs.h
94b9da098ba275d10f847d990a484abec80244b6
[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 struct Point {
42     short v;
43     short h;
44 };
45
46 typedef signed char SInt8;
47 typedef unsigned int UInt32;
48
49
50 #include "Random.h"
51
52
53 typedef struct AbsoluteTime {
54     unsigned long   hi;
55     unsigned long   lo;
56 } AbsoluteTime;
57
58 AbsoluteTime UpTime(); // NOTE: returns time since app started, not system start
59
60 typedef long Duration;
61
62 enum {
63     durationMicrosecond             = -1,
64     durationMillisecond             = 1,
65     durationSecond                  = 1000,
66     durationMinute                  = 1000 * 60,
67     durationHour                    = 1000 * 60 * 60,
68     durationDay                     = 1000 * 60 * 60 * 24,
69     durationForever                 = 0x7FFFFFFF,
70     durationImmediate               = 0,
71 };
72
73 Duration AbsoluteDeltaToDuration( AbsoluteTime& a, AbsoluteTime& b);
74
75
76 /*
77 inline bool isnormal( double x)
78 {
79     int ret = _fpclass( x);
80     return (ret == _FPCLASS_NN || ret == _FPCLASS_PN);
81 }
82 */
83
84
85 // fix file names to use '/' instead of ':'
86 char* ConvertFileName( const char* orgfilename);
87 char* ConvertFileName( const char* orgfilename, const char* junk);
88
89
90 #define fopen(a, b) fopen(ConvertFileName(a), b);
91
92 #ifndef __MINGW32__
93 inline float abs(float f)
94 {
95     if (f < 0)
96         return -f;
97     return f;
98 }
99
100 inline double abs(double f)
101 {
102     if (f < 0)
103         return -f;
104     return f;
105 }
106 #endif // __MINGW32__
107
108
109 #endif
110 #endif