]> git.lizzy.rs Git - minetest.git/blob - src/porting.h
Make ItemStack:set_count(0) clear the item stack
[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         Path to gettext locale files
147 */
148 extern std::string path_locale;
149
150 /*
151         Path to directory for storing caches.
152 */
153 extern std::string path_cache;
154
155 /*
156         Get full path of stuff in data directory.
157         Example: "stone.png" -> "../data/stone.png"
158 */
159 std::string getDataPath(const char *subpath);
160
161 /*
162         Move cache folder from path_user to the
163         system cache location if possible.
164 */
165 void migrateCachePath();
166
167 /*
168         Initialize path_*.
169 */
170 void initializePaths();
171
172 /*
173         Return system information
174         e.g. "Linux/3.12.7 x86_64"
175 */
176 std::string get_sysinfo();
177
178 void initIrrlicht(irr::IrrlichtDevice * );
179
180 /*
181         Resolution is 10-20ms.
182         Remember to check for overflows.
183         Overflow can occur at any value higher than 10000000.
184 */
185 #ifdef _WIN32 // Windows
186
187         inline u32 getTimeS()
188         {
189                 return GetTickCount() / 1000;
190         }
191
192         inline u32 getTimeMs()
193         {
194                 return GetTickCount();
195         }
196
197         inline u32 getTimeUs()
198         {
199                 LARGE_INTEGER freq, t;
200                 QueryPerformanceFrequency(&freq);
201                 QueryPerformanceCounter(&t);
202                 return (double)(t.QuadPart) / ((double)(freq.QuadPart) / 1000000.0);
203         }
204
205         inline u32 getTimeNs()
206         {
207                 LARGE_INTEGER freq, t;
208                 QueryPerformanceFrequency(&freq);
209                 QueryPerformanceCounter(&t);
210                 return (double)(t.QuadPart) / ((double)(freq.QuadPart) / 1000000000.0);
211         }
212
213 #else // Posix
214
215         inline u32 getTimeS()
216         {
217                 struct timeval tv;
218                 gettimeofday(&tv, NULL);
219                 return tv.tv_sec;
220         }
221
222         inline u32 getTimeMs()
223         {
224                 struct timeval tv;
225                 gettimeofday(&tv, NULL);
226                 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
227         }
228
229         inline u32 getTimeUs()
230         {
231                 struct timeval tv;
232                 gettimeofday(&tv, NULL);
233                 return tv.tv_sec * 1000000 + tv.tv_usec;
234         }
235
236         inline u32 getTimeNs()
237         {
238                 struct timespec ts;
239                 // from http://stackoverflow.com/questions/5167269/clock-gettime-alternative-in-mac-os-x
240 #if defined(__MACH__) && defined(__APPLE__) // OS X does not have clock_gettime, use clock_get_time
241                 clock_serv_t cclock;
242                 mach_timespec_t mts;
243                 host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
244                 clock_get_time(cclock, &mts);
245                 mach_port_deallocate(mach_task_self(), cclock);
246                 ts.tv_sec = mts.tv_sec;
247                 ts.tv_nsec = mts.tv_nsec;
248 #else
249                 clock_gettime(CLOCK_REALTIME, &ts);
250 #endif
251                 return ts.tv_sec * 1000000000 + ts.tv_nsec;
252         }
253
254         /*#include <sys/timeb.h>
255         inline u32 getTimeMs()
256         {
257                 struct timeb tb;
258                 ftime(&tb);
259                 return tb.time * 1000 + tb.millitm;
260         }*/
261 #endif
262
263 inline u32 getTime(TimePrecision prec)
264 {
265         switch (prec) {
266                 case PRECISION_SECONDS:
267                         return getTimeS();
268                 case PRECISION_MILLI:
269                         return getTimeMs();
270                 case PRECISION_MICRO:
271                         return getTimeUs();
272                 case PRECISION_NANO:
273                         return getTimeNs();
274         }
275         return 0;
276 }
277
278 /**
279  * Delta calculation function taking two 32bit arguments.
280  * @param old_time_ms old time for delta calculation (order is relevant!)
281  * @param new_time_ms new time for delta calculation (order is relevant!)
282  * @return positive 32bit delta value
283  */
284 inline u32 getDeltaMs(u32 old_time_ms, u32 new_time_ms)
285 {
286         if (new_time_ms >= old_time_ms) {
287                 return (new_time_ms - old_time_ms);
288         } else {
289                 return (old_time_ms - new_time_ms);
290         }
291 }
292
293
294 #ifndef SERVER
295 float getDisplayDensity();
296
297 v2u32 getDisplaySize();
298 v2u32 getWindowSize();
299
300 std::vector<core::vector3d<u32> > getSupportedVideoModes();
301 std::vector<irr::video::E_DRIVER_TYPE> getSupportedVideoDrivers();
302 const char *getVideoDriverName(irr::video::E_DRIVER_TYPE type);
303 const char *getVideoDriverFriendlyName(irr::video::E_DRIVER_TYPE type);
304 #endif
305
306 inline const char *getPlatformName()
307 {
308         return
309 #if defined(ANDROID)
310         "Android"
311 #elif defined(linux) || defined(__linux) || defined(__linux__)
312         "Linux"
313 #elif defined(_WIN32) || defined(_WIN64)
314         "Windows"
315 #elif defined(__DragonFly__) || defined(__FreeBSD__) || \
316                 defined(__NetBSD__) || defined(__OpenBSD__)
317         "BSD"
318 #elif defined(__APPLE__) && defined(__MACH__)
319         #if TARGET_OS_MAC
320                 "OSX"
321         #elif TARGET_OS_IPHONE
322                 "iOS"
323         #else
324                 "Apple"
325         #endif
326 #elif defined(_AIX)
327         "AIX"
328 #elif defined(__hpux)
329         "HP-UX"
330 #elif defined(__sun) || defined(sun)
331         #if defined(__SVR4)
332                 "Solaris"
333         #else
334                 "SunOS"
335         #endif
336 #elif defined(__CYGWIN__)
337         "Cygwin"
338 #elif defined(__unix__) || defined(__unix)
339         #if defined(_POSIX_VERSION)
340                 "Posix"
341         #else
342                 "Unix"
343         #endif
344 #else
345         "?"
346 #endif
347         ;
348 }
349
350 void setXorgClassHint(const video::SExposedVideoData &video_data,
351         const std::string &name);
352
353 // This only needs to be called at the start of execution, since all future
354 // threads in the process inherit this exception handler
355 void setWin32ExceptionHandler();
356
357 bool secure_rand_fill_buf(void *buf, size_t len);
358 } // namespace porting
359
360 #ifdef __ANDROID__
361 #include "porting_android.h"
362 #endif
363
364 #endif // PORTING_HEADER
365