]> git.jsancho.org Git - lugaru.git/blob - Source/MacCompatibility.hpp
AI: Prevent division by 0 when enemy has no velocity
[lugaru.git] / Source / MacCompatibility.hpp
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_HPP_
22 #define _MACCOMPATIBLITY_HPP_
23
24 #include "Math/Random.hpp"
25
26 #include <float.h>
27 #include <math.h>
28 #include <stdio.h>
29
30 // stuff to make Mac code compatable with Windows/Linux/etc
31
32 #if defined(WIN32) && !defined(strcasecmp)
33 #define strcasecmp(a,b) stricmp(a,b)
34 #endif
35
36 #ifdef _MSC_VER
37 // disable warnings about double to float conversions
38 #pragma warning(disable:4305)
39 #pragma warning(disable:4244)
40
41 // disable warnings about boolean to int conversions
42 #pragma warning(disable:4800)
43
44 // disable warning about unreferenced local variables
45 #pragma warning(disable:4101)
46 #endif
47
48 #ifndef __forceinline
49 #  ifdef __GNUC__
50 #    define __forceinline inline __attribute__((always_inline))
51 #  endif
52 #endif
53
54 struct Point {
55     short v;
56     short h;
57 };
58
59 typedef signed char SInt8;
60 typedef unsigned int UInt32;
61
62
63
64 typedef struct AbsoluteTime {
65     unsigned long   hi;
66     unsigned long   lo;
67 } AbsoluteTime;
68
69 AbsoluteTime UpTime(); // NOTE: returns time since app started, not system start
70
71 typedef long Duration;
72
73 enum {
74     durationMicrosecond             = -1,
75     durationMillisecond             = 1,
76     durationSecond                  = 1000,
77     durationMinute                  = 1000 * 60,
78     durationHour                    = 1000 * 60 * 60,
79     durationDay                     = 1000 * 60 * 60 * 24,
80     durationForever                 = 0x7FFFFFFF,
81     durationImmediate               = 0,
82 };
83
84 Duration AbsoluteDeltaToDuration( AbsoluteTime& a, AbsoluteTime& b);
85
86 #ifdef _MSC_VER
87 inline bool isnormal( double x)
88 {
89     int ret = _fpclass( x);
90     return (ret == _FPCLASS_NN || ret == _FPCLASS_PN);
91 }
92 #else
93 #include <stdint.h>
94 #endif
95
96 #endif
97
98