]> git.jsancho.org Git - lugaru.git/blob - Source/WinDefs.h
Removed commented out code
[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 // fix file names to use '/' instead of ':'
76 char* ConvertFileName( const char* orgfilename);
77 char* ConvertFileName( const char* orgfilename, const char* junk);
78
79
80 #define fopen(a, b) fopen(ConvertFileName(a), b);
81
82 #ifndef __MINGW32__
83 inline float abs(float f)
84 {
85     if (f < 0)
86         return -f;
87     return f;
88 }
89
90 inline double abs(double f)
91 {
92     if (f < 0)
93         return -f;
94     return f;
95 }
96 #endif // __MINGW32__
97
98
99 #endif
100 #endif