Fix building on OSX, broken since "Clean up threading"
[oweals/minetest.git] / src / porting.h
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 /*
21         Random portability stuff
22 */
23
24 #ifndef PORTING_HEADER
25 #define PORTING_HEADER
26
27 #ifdef _WIN32
28         #ifdef _WIN32_WINNT
29                 #undef _WIN32_WINNT
30         #endif
31         #define _WIN32_WINNT 0x0501 // We need to do this before any other headers
32                 // because those might include sdkddkver.h which defines _WIN32_WINNT if not already set
33 #endif
34
35 #include <string>
36 #include <vector>
37 #include "irrlicht.h"
38 #include "irrlichttypes.h" // u32
39 #include "irrlichttypes_extrabloated.h"
40 #include "debug.h"
41 #include "constants.h"
42 #include "gettime.h"
43 #include "threads.h"
44
45 #ifdef _MSC_VER
46         #define SWPRINTF_CHARSTRING L"%S"
47 #else
48         #define SWPRINTF_CHARSTRING L"%s"
49 #endif
50
51 //currently not needed
52 //template<typename T> struct alignment_trick { char c; T member; };
53 //#define ALIGNOF(type) offsetof (alignment_trick<type>, member)
54
55 #ifdef _WIN32
56         #include <windows.h>
57
58         #define sleep_ms(x) Sleep(x)
59 #else
60         #include <unistd.h>
61         #include <stdint.h> //for uintptr_t
62
63         #if (defined(linux) || defined(__linux) || defined(__GNU__)) && !defined(_GNU_SOURCE)
64                 #define _GNU_SOURCE
65         #endif
66
67         #define sleep_ms(x) usleep(x*1000)
68 #endif
69
70 #ifdef _MSC_VER
71         #define ALIGNOF(x) __alignof(x)
72         #define strtok_r(x, y, z) strtok_s(x, y, z)
73         #define strtof(x, y) (float)strtod(x, y)
74         #define strtoll(x, y, z) _strtoi64(x, y, z)
75         #define strtoull(x, y, z) _strtoui64(x, y, z)
76         #define strcasecmp(x, y) stricmp(x, y)
77         #define strncasecmp(x, y, n) strnicmp(x, y, n)
78 #else
79         #define ALIGNOF(x) __alignof__(x)
80 #endif
81
82 #ifdef __MINGW32__
83         #define strtok_r(x, y, z) mystrtok_r(x, y, z)
84 #endif
85
86 // strlcpy is missing from glibc.  thanks a lot, drepper.
87 // strlcpy is also missing from AIX and HP-UX because they aim to be weird.
88 // We can't simply alias strlcpy to MSVC's strcpy_s, since strcpy_s by
89 // default raises an assertion error and aborts the program if the buffer is
90 // too small.
91 #if defined(__FreeBSD__) || defined(__NetBSD__)    || \
92         defined(__OpenBSD__) || defined(__DragonFly__) || \
93         defined(__APPLE__)   ||                           \
94         defined(__sun)       || defined(sun)           || \
95         defined(__QNX__)     || defined(__QNXNTO__)
96         #define HAVE_STRLCPY
97 #endif
98
99 // So we need to define our own.
100 #ifndef HAVE_STRLCPY
101         #define strlcpy(d, s, n) mystrlcpy(d, s, n)
102 #endif
103
104 #define PADDING(x, y) ((ALIGNOF(y) - ((uintptr_t)(x) & (ALIGNOF(y) - 1))) & (ALIGNOF(y) - 1))
105
106 #if defined(__APPLE__)
107         #include <mach-o/dyld.h>
108         #include <CoreFoundation/CoreFoundation.h>
109 #endif
110
111 #ifndef _WIN32 // Posix
112         #include <sys/time.h>
113         #include <time.h>
114         #if defined(__MACH__) && defined(__APPLE__)
115                 #include <mach/clock.h>
116                 #include <mach/mach.h>
117         #endif
118 #endif
119
120 namespace porting
121 {
122
123 /*
124         Signal handler (grabs Ctrl-C on POSIX systems)
125 */
126
127 void signal_handler_init(void);
128 // Returns a pointer to a bool.
129 // When the bool is true, program should quit.
130 bool * signal_handler_killstatus(void);
131
132 /*
133         Path of static data directory.
134 */
135 extern std::string path_share;
136
137 /*
138         Directory for storing user data. Examples:
139         Windows: "C:\Documents and Settings\user\Application Data\<PROJECT_NAME>"
140         Linux: "~/.<PROJECT_NAME>"
141         Mac: "~/Library/Application Support/<PROJECT_NAME>"
142 */
143 extern std::string path_user;
144
145 /*
146         Get full path of stuff in data directory.
147         Example: "stone.png" -> "../data/stone.png"
148 */
149 std::string getDataPath(const char *subpath);
150
151 /*
152         Initialize path_share and path_user.
153 */
154 void initializePaths();
155
156 /*
157         Return system information
158         e.g. "Linux/3.12.7 x86_64"
159 */
160 std::string get_sysinfo();
161
162 void initIrrlicht(irr::IrrlichtDevice * );
163
164 /*
165         Resolution is 10-20ms.
166         Remember to check for overflows.
167         Overflow can occur at any value higher than 10000000.
168 */
169 #ifdef _WIN32 // Windows
170
171         inline u32 getTimeS()
172         {
173                 return GetTickCount() / 1000;
174         }
175
176         inline u32 getTimeMs()
177         {
178                 return GetTickCount();
179         }
180
181         inline u32 getTimeUs()
182         {
183                 LARGE_INTEGER freq, t;
184                 QueryPerformanceFrequency(&freq);
185                 QueryPerformanceCounter(&t);
186                 return (double)(t.QuadPart) / ((double)(freq.QuadPart) / 1000000.0);
187         }
188
189         inline u32 getTimeNs()
190         {
191                 LARGE_INTEGER freq, t;
192                 QueryPerformanceFrequency(&freq);
193                 QueryPerformanceCounter(&t);
194                 return (double)(t.QuadPart) / ((double)(freq.QuadPart) / 1000000000.0);
195         }
196
197 #else // Posix
198
199         inline u32 getTimeS()
200         {
201                 struct timeval tv;
202                 gettimeofday(&tv, NULL);
203                 return tv.tv_sec;
204         }
205
206         inline u32 getTimeMs()
207         {
208                 struct timeval tv;
209                 gettimeofday(&tv, NULL);
210                 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
211         }
212
213         inline u32 getTimeUs()
214         {
215                 struct timeval tv;
216                 gettimeofday(&tv, NULL);
217                 return tv.tv_sec * 1000000 + tv.tv_usec;
218         }
219
220         inline u32 getTimeNs()
221         {
222                 struct timespec ts;
223                 // from http://stackoverflow.com/questions/5167269/clock-gettime-alternative-in-mac-os-x
224 #if defined(__MACH__) && defined(__APPLE__) // OS X does not have clock_gettime, use clock_get_time
225                 clock_serv_t cclock;
226                 mach_timespec_t mts;
227                 host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
228                 clock_get_time(cclock, &mts);
229                 mach_port_deallocate(mach_task_self(), cclock);
230                 ts.tv_sec = mts.tv_sec;
231                 ts.tv_nsec = mts.tv_nsec;
232 #else
233                 clock_gettime(CLOCK_REALTIME, &ts);
234 #endif
235                 return ts.tv_sec * 1000000000 + ts.tv_nsec;
236         }
237
238         /*#include <sys/timeb.h>
239         inline u32 getTimeMs()
240         {
241                 struct timeb tb;
242                 ftime(&tb);
243                 return tb.time * 1000 + tb.millitm;
244         }*/
245 #endif
246
247 inline u32 getTime(TimePrecision prec)
248 {
249         switch (prec) {
250                 case PRECISION_SECONDS:
251                         return getTimeS();
252                 case PRECISION_MILLI:
253                         return getTimeMs();
254                 case PRECISION_MICRO:
255                         return getTimeUs();
256                 case PRECISION_NANO:
257                         return getTimeNs();
258         }
259         return 0;
260 }
261
262 /**
263  * Delta calculation function taking two 32bit arguments.
264  * @param old_time_ms old time for delta calculation (order is relevant!)
265  * @param new_time_ms new time for delta calculation (order is relevant!)
266  * @return positive 32bit delta value
267  */
268 inline u32 getDeltaMs(u32 old_time_ms, u32 new_time_ms)
269 {
270         if (new_time_ms >= old_time_ms) {
271                 return (new_time_ms - old_time_ms);
272         } else {
273                 return (old_time_ms - new_time_ms);
274         }
275 }
276
277
278 #ifndef SERVER
279 float getDisplayDensity();
280
281 v2u32 getDisplaySize();
282 v2u32 getWindowSize();
283
284 std::vector<core::vector3d<u32> > getSupportedVideoModes();
285 std::vector<irr::video::E_DRIVER_TYPE> getSupportedVideoDrivers();
286 const char *getVideoDriverName(irr::video::E_DRIVER_TYPE type);
287 const char *getVideoDriverFriendlyName(irr::video::E_DRIVER_TYPE type);
288 #endif
289
290 inline const char *getPlatformName()
291 {
292         return
293 #if defined(ANDROID)
294         "Android"
295 #elif defined(linux) || defined(__linux) || defined(__linux__)
296         "Linux"
297 #elif defined(_WIN32) || defined(_WIN64)
298         "Windows"
299 #elif defined(__DragonFly__) || defined(__FreeBSD__) || \
300                 defined(__NetBSD__) || defined(__OpenBSD__)
301         "BSD"
302 #elif defined(__APPLE__) && defined(__MACH__)
303         #if TARGET_OS_MAC
304                 "OSX"
305         #elif TARGET_OS_IPHONE
306                 "iOS"
307         #else
308                 "Apple"
309         #endif
310 #elif defined(_AIX)
311         "AIX"
312 #elif defined(__hpux)
313         "HP-UX"
314 #elif defined(__sun) || defined(sun)
315         #if defined(__SVR4)
316                 "Solaris"
317         #else
318                 "SunOS"
319         #endif
320 #elif defined(__CYGWIN__)
321         "Cygwin"
322 #elif defined(__unix__) || defined(__unix)
323         #if defined(_POSIX_VERSION)
324                 "Posix"
325         #else
326                 "Unix"
327         #endif
328 #else
329         "?"
330 #endif
331         ;
332 }
333
334 void setXorgClassHint(const video::SExposedVideoData &video_data,
335         const std::string &name);
336
337 // This only needs to be called at the start of execution, since all future
338 // threads in the process inherit this exception handler
339 void setWin32ExceptionHandler();
340
341 } // namespace porting
342
343 #ifdef __ANDROID__
344 #include "porting_android.h"
345 #endif
346
347 #endif // PORTING_HEADER
348