]> git.jsancho.org Git - lugaru.git/blob - Source/MacCompatibility.h
Sorted all source files in folders
[lugaru.git] / Source / MacCompatibility.h
1 /*
2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
4
5 This file is part of Lugaru.
6
7 Lugaru is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 Lugaru is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef _MACCOMPATIBLITY_H_
22 #define _MACCOMPATIBLITY_H_
23
24 #include <stdio.h>
25 #include <float.h>
26 #include <math.h>
27
28 // stuff to make Mac code compatable with Windows/Linux/etc
29
30 #if defined(WIN32) && !defined(strcasecmp)
31 #define strcasecmp(a,b) stricmp(a,b)
32 #endif
33
34 #ifdef _MSC_VER
35 // disable warnings about double to float conversions
36 #pragma warning(disable:4305)
37 #pragma warning(disable:4244)
38
39 // disable warnings about boolean to int conversions
40 #pragma warning(disable:4800)
41
42 // disable warning about unreferenced local variables
43 #pragma warning(disable:4101)
44 #endif
45
46 #ifndef __forceinline
47 #  ifdef __GNUC__
48 #    define __forceinline inline __attribute__((always_inline))
49 #  endif
50 #endif
51
52 struct Point {
53     short v;
54     short h;
55 };
56
57 typedef signed char SInt8;
58 typedef unsigned int UInt32;
59
60
61 #include "Math/Random.h"
62
63 typedef struct AbsoluteTime {
64     unsigned long   hi;
65     unsigned long   lo;
66 } AbsoluteTime;
67
68 AbsoluteTime UpTime(); // NOTE: returns time since app started, not system start
69
70 typedef long Duration;
71
72 enum {
73     durationMicrosecond             = -1,
74     durationMillisecond             = 1,
75     durationSecond                  = 1000,
76     durationMinute                  = 1000 * 60,
77     durationHour                    = 1000 * 60 * 60,
78     durationDay                     = 1000 * 60 * 60 * 24,
79     durationForever                 = 0x7FFFFFFF,
80     durationImmediate               = 0,
81 };
82
83 Duration AbsoluteDeltaToDuration( AbsoluteTime& a, AbsoluteTime& b);
84
85 #ifdef _MSC_VER
86 inline bool isnormal( double x)
87 {
88     int ret = _fpclass( x);
89     return (ret == _FPCLASS_NN || ret == _FPCLASS_PN);
90 }
91 #else
92 #include <stdint.h>
93 #endif
94
95 #endif
96
97