organizing stuff.
[oweals/minetest.git] / src / porting.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010 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 General Public License as published by
7 the Free Software Foundation; either version 2 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 General Public License for more details.
14
15 You should have received a copy of the GNU 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 // Included for u64 and such
28 #include "common_irrlicht.h"
29
30 #ifdef _WIN32
31         #define SWPRINTF_CHARSTRING L"%S"
32 #else
33         #define SWPRINTF_CHARSTRING L"%s"
34 #endif
35
36 #ifdef _WIN32
37         #include <windows.h>
38         #define sleep_ms(x) Sleep(x)
39 #else
40         #include <unistd.h>
41         #define sleep_ms(x) usleep(x*1000)
42 #endif
43
44 namespace porting
45 {
46
47 /*
48         Resolution is 10-20ms.
49         Remember to check for overflows.
50         Overflow can occur at any value higher than 10000000.
51 */
52 #ifdef _WIN32 // Windows
53         #include <windows.h>
54         inline u32 getTimeMs()
55         {
56                 return GetTickCount();
57         }
58 #else // Posix
59         #include <sys/timeb.h>
60         inline u32 getTimeMs()
61         {
62                 struct timeb tb;
63                 ftime(&tb);
64                 return tb.time * 1000 + tb.millitm;
65         }
66 #endif
67
68 } // namespace porting
69
70 #endif
71