2010-11-29 13:13:04 -05:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 13:13:04 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2010-11-29 13:13:04 -05:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-11-29 13:13:04 -05:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2010-11-29 13:13:04 -05:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
2010-12-20 15:03:49 -05:00
|
|
|
Random portability stuff
|
2010-11-26 18:02:21 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PORTING_HEADER
|
|
|
|
#define PORTING_HEADER
|
|
|
|
|
2014-04-14 12:03:28 -04:00
|
|
|
#ifdef _WIN32
|
|
|
|
#ifdef _WIN32_WINNT
|
|
|
|
#undef _WIN32_WINNT
|
|
|
|
#endif
|
2014-04-05 08:12:36 -04:00
|
|
|
#define _WIN32_WINNT 0x0501 // We need to do this before any other headers
|
2014-04-14 12:03:28 -04:00
|
|
|
// because those might include sdkddkver.h which defines _WIN32_WINNT if not already set
|
|
|
|
#endif
|
|
|
|
|
2011-01-07 12:39:27 -05:00
|
|
|
#include <string>
|
2014-04-05 08:12:36 -04:00
|
|
|
#include "irrlicht.h"
|
2012-06-16 21:00:31 -04:00
|
|
|
#include "irrlichttypes.h" // u32
|
2014-04-05 08:12:36 -04:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2011-01-07 12:39:27 -05:00
|
|
|
#include "debug.h"
|
|
|
|
#include "constants.h"
|
2013-03-29 16:51:57 -04:00
|
|
|
#include "gettime.h"
|
2013-08-10 22:09:45 -04:00
|
|
|
#include "threads.h"
|
2010-12-21 11:08:24 -05:00
|
|
|
|
2011-02-11 09:43:26 -05:00
|
|
|
#ifdef _MSC_VER
|
2010-11-26 18:02:21 -05:00
|
|
|
#define SWPRINTF_CHARSTRING L"%S"
|
|
|
|
#else
|
|
|
|
#define SWPRINTF_CHARSTRING L"%s"
|
|
|
|
#endif
|
|
|
|
|
2013-01-18 14:12:19 -05:00
|
|
|
//currently not needed
|
|
|
|
//template<typename T> struct alignment_trick { char c; T member; };
|
|
|
|
//#define ALIGNOF(type) offsetof (alignment_trick<type>, member)
|
|
|
|
|
2010-12-21 11:08:24 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2013-01-18 14:12:19 -05:00
|
|
|
|
2010-12-21 11:08:24 -05:00
|
|
|
#define sleep_ms(x) Sleep(x)
|
2013-01-23 02:21:26 -05:00
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdint.h> //for uintptr_t
|
2013-02-23 12:30:13 -05:00
|
|
|
|
|
|
|
#if (defined(linux) || defined(__linux)) && !defined(_GNU_SOURCE)
|
2013-02-21 17:44:14 -05:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sched.h>
|
|
|
|
|
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <pthread_np.h>
|
|
|
|
typedef cpuset_t cpu_set_t;
|
|
|
|
#elif defined(__sun) || defined(sun)
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/processor.h>
|
|
|
|
#elif defined(_AIX)
|
|
|
|
#include <sys/processor.h>
|
|
|
|
#elif __APPLE__
|
|
|
|
#include <mach/mach_init.h>
|
|
|
|
#include <mach/thread_policy.h>
|
|
|
|
#endif
|
|
|
|
|
2013-01-23 02:21:26 -05:00
|
|
|
#define sleep_ms(x) usleep(x*1000)
|
2013-02-21 17:44:14 -05:00
|
|
|
|
|
|
|
#define THREAD_PRIORITY_LOWEST 0
|
|
|
|
#define THREAD_PRIORITY_BELOW_NORMAL 1
|
|
|
|
#define THREAD_PRIORITY_NORMAL 2
|
|
|
|
#define THREAD_PRIORITY_ABOVE_NORMAL 3
|
2013-02-21 22:26:21 -05:00
|
|
|
#define THREAD_PRIORITY_HIGHEST 4
|
2013-01-23 02:21:26 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define ALIGNOF(x) __alignof(x)
|
2013-01-18 14:12:19 -05:00
|
|
|
#define strtok_r(x, y, z) strtok_s(x, y, z)
|
|
|
|
#define strtof(x, y) (float)strtod(x, y)
|
|
|
|
#define strtoll(x, y, z) _strtoi64(x, y, z)
|
|
|
|
#define strtoull(x, y, z) _strtoui64(x, y, z)
|
2013-02-05 15:01:33 -05:00
|
|
|
#define strcasecmp(x, y) stricmp(x, y)
|
2014-02-08 17:50:26 -05:00
|
|
|
#define strncasecmp(x, y, n) strnicmp(x, y, n)
|
2010-12-21 11:08:24 -05:00
|
|
|
#else
|
2013-01-18 14:12:19 -05:00
|
|
|
#define ALIGNOF(x) __alignof__(x)
|
2013-01-23 02:21:26 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
#define strtok_r(x, y, z) mystrtok_r(x, y, z)
|
2010-12-21 11:08:24 -05:00
|
|
|
#endif
|
|
|
|
|
2014-02-09 13:12:28 -05:00
|
|
|
// strlcpy is missing from glibc. thanks a lot, drepper.
|
|
|
|
// strlcpy is also missing from AIX and HP-UX because they aim to be weird.
|
|
|
|
// We can't simply alias strlcpy to MSVC's strcpy_s, since strcpy_s by
|
|
|
|
// default raises an assertion error and aborts the program if the buffer is
|
|
|
|
// too small.
|
|
|
|
#if defined(__FreeBSD__) || defined(__NetBSD__) || \
|
|
|
|
defined(__OpenBSD__) || defined(__DragonFly__) || \
|
|
|
|
defined(__APPLE__) || \
|
|
|
|
defined(__sun) || defined(sun) || \
|
|
|
|
defined(__QNX__) || defined(__QNXNTO__)
|
|
|
|
#define HAVE_STRLCPY
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// So we need to define our own.
|
|
|
|
#ifndef HAVE_STRLCPY
|
|
|
|
#define strlcpy(d, s, n) mystrlcpy(d, s, n)
|
|
|
|
#endif
|
|
|
|
|
2013-01-18 14:12:19 -05:00
|
|
|
#define PADDING(x, y) ((ALIGNOF(y) - ((uintptr_t)(x) & (ALIGNOF(y) - 1))) & (ALIGNOF(y) - 1))
|
|
|
|
|
2010-12-21 11:08:24 -05:00
|
|
|
namespace porting
|
|
|
|
{
|
|
|
|
|
2011-02-15 09:11:24 -05:00
|
|
|
/*
|
|
|
|
Signal handler (grabs Ctrl-C on POSIX systems)
|
|
|
|
*/
|
|
|
|
|
|
|
|
void signal_handler_init(void);
|
|
|
|
// Returns a pointer to a bool.
|
|
|
|
// When the bool is true, program should quit.
|
|
|
|
bool * signal_handler_killstatus(void);
|
|
|
|
|
2011-01-07 12:39:27 -05:00
|
|
|
/*
|
|
|
|
Path of static data directory.
|
|
|
|
*/
|
2012-03-10 08:56:24 -05:00
|
|
|
extern std::string path_share;
|
2011-01-07 12:39:27 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Directory for storing user data. Examples:
|
2011-08-10 17:43:21 -04:00
|
|
|
Windows: "C:\Documents and Settings\user\Application Data\<PROJECT_NAME>"
|
|
|
|
Linux: "~/.<PROJECT_NAME>"
|
|
|
|
Mac: "~/Library/Application Support/<PROJECT_NAME>"
|
2011-01-07 12:39:27 -05:00
|
|
|
*/
|
2012-03-10 08:56:24 -05:00
|
|
|
extern std::string path_user;
|
2011-01-07 12:39:27 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Get full path of stuff in data directory.
|
|
|
|
Example: "stone.png" -> "../data/stone.png"
|
|
|
|
*/
|
2011-11-10 16:30:12 -05:00
|
|
|
std::string getDataPath(const char *subpath);
|
2011-01-07 12:39:27 -05:00
|
|
|
|
|
|
|
/*
|
2012-03-10 08:56:24 -05:00
|
|
|
Initialize path_share and path_user.
|
2011-01-07 12:39:27 -05:00
|
|
|
*/
|
|
|
|
void initializePaths();
|
|
|
|
|
2013-02-17 01:47:49 -05:00
|
|
|
/*
|
|
|
|
Get number of online processors in the system.
|
|
|
|
*/
|
|
|
|
int getNumberOfProcessors();
|
|
|
|
|
2013-02-21 17:44:14 -05:00
|
|
|
/*
|
|
|
|
Set a thread's affinity to a particular processor.
|
|
|
|
*/
|
|
|
|
bool threadBindToProcessor(threadid_t tid, int pnumber);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Set a thread's priority.
|
|
|
|
*/
|
|
|
|
bool threadSetPriority(threadid_t tid, int prio);
|
|
|
|
|
2014-01-19 08:32:03 -05:00
|
|
|
/*
|
|
|
|
Return system information
|
|
|
|
e.g. "Linux/3.12.7 x86_64"
|
|
|
|
*/
|
|
|
|
std::string get_sysinfo();
|
|
|
|
|
2014-04-05 08:12:36 -04:00
|
|
|
void initIrrlicht(irr::IrrlichtDevice * );
|
|
|
|
|
2010-12-21 11:08:24 -05:00
|
|
|
/*
|
|
|
|
Resolution is 10-20ms.
|
|
|
|
Remember to check for overflows.
|
|
|
|
Overflow can occur at any value higher than 10000000.
|
|
|
|
*/
|
|
|
|
#ifdef _WIN32 // Windows
|
2013-06-23 03:31:22 -04:00
|
|
|
#ifndef _WIN32_WINNT
|
|
|
|
#define _WIN32_WINNT 0x0501
|
|
|
|
#endif
|
2010-12-21 11:08:24 -05:00
|
|
|
#include <windows.h>
|
2013-03-29 16:51:57 -04:00
|
|
|
|
|
|
|
inline u32 getTimeS()
|
|
|
|
{
|
|
|
|
return GetTickCount() / 1000;
|
|
|
|
}
|
|
|
|
|
2010-12-21 11:08:24 -05:00
|
|
|
inline u32 getTimeMs()
|
|
|
|
{
|
|
|
|
return GetTickCount();
|
|
|
|
}
|
2013-03-29 16:51:57 -04:00
|
|
|
|
|
|
|
inline u32 getTimeUs()
|
|
|
|
{
|
|
|
|
LARGE_INTEGER freq, t;
|
|
|
|
QueryPerformanceFrequency(&freq);
|
|
|
|
QueryPerformanceCounter(&t);
|
|
|
|
return (double)(t.QuadPart) / ((double)(freq.QuadPart) / 1000000.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline u32 getTimeNs()
|
|
|
|
{
|
|
|
|
LARGE_INTEGER freq, t;
|
|
|
|
QueryPerformanceFrequency(&freq);
|
|
|
|
QueryPerformanceCounter(&t);
|
|
|
|
return (double)(t.QuadPart) / ((double)(freq.QuadPart) / 1000000000.0);
|
|
|
|
}
|
|
|
|
|
2010-12-21 11:08:24 -05:00
|
|
|
#else // Posix
|
2011-02-11 15:34:34 -05:00
|
|
|
#include <sys/time.h>
|
2013-03-29 16:51:57 -04:00
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
inline u32 getTimeS()
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return tv.tv_sec;
|
|
|
|
}
|
|
|
|
|
2011-02-11 15:34:34 -05:00
|
|
|
inline u32 getTimeMs()
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
|
|
|
|
}
|
2013-03-29 16:51:57 -04:00
|
|
|
|
|
|
|
inline u32 getTimeUs()
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return tv.tv_sec * 1000000 + tv.tv_usec;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline u32 getTimeNs()
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &ts);
|
|
|
|
return ts.tv_sec * 1000000000 + ts.tv_nsec;
|
|
|
|
}
|
|
|
|
|
2011-02-11 15:34:34 -05:00
|
|
|
/*#include <sys/timeb.h>
|
2010-12-21 11:08:24 -05:00
|
|
|
inline u32 getTimeMs()
|
|
|
|
{
|
|
|
|
struct timeb tb;
|
|
|
|
ftime(&tb);
|
|
|
|
return tb.time * 1000 + tb.millitm;
|
2011-02-11 15:34:34 -05:00
|
|
|
}*/
|
2010-12-21 11:08:24 -05:00
|
|
|
#endif
|
|
|
|
|
2013-03-29 16:51:57 -04:00
|
|
|
inline u32 getTime(TimePrecision prec)
|
|
|
|
{
|
|
|
|
switch (prec) {
|
|
|
|
case PRECISION_SECONDS:
|
|
|
|
return getTimeS();
|
|
|
|
case PRECISION_MILLI:
|
|
|
|
return getTimeMs();
|
|
|
|
case PRECISION_MICRO:
|
|
|
|
return getTimeUs();
|
|
|
|
case PRECISION_NANO:
|
|
|
|
return getTimeNs();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-29 21:07:48 -04:00
|
|
|
/**
|
|
|
|
* Delta calculation function taking two 32bit arguments.
|
|
|
|
* @param old_time_ms old time for delta calculation (order is relevant!)
|
|
|
|
* @param new_time_ms new time for delta calculation (order is relevant!)
|
|
|
|
* @return positive 32bit delta value
|
|
|
|
*/
|
|
|
|
inline u32 getDeltaMs(u32 old_time_ms, u32 new_time_ms)
|
|
|
|
{
|
|
|
|
if (new_time_ms >= old_time_ms) {
|
|
|
|
return (new_time_ms - old_time_ms);
|
|
|
|
} else {
|
|
|
|
return (old_time_ms - new_time_ms);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-13 16:47:24 -04:00
|
|
|
#if defined(linux) || defined(__linux)
|
|
|
|
#include <sys/prctl.h>
|
|
|
|
|
|
|
|
inline void setThreadName(const char *name) {
|
|
|
|
/* It would be cleaner to do this with pthread_setname_np,
|
|
|
|
* which was added to glibc in version 2.12, but some major
|
|
|
|
* distributions are still runing 2.11 and previous versions.
|
|
|
|
*/
|
|
|
|
prctl(PR_SET_NAME, name);
|
|
|
|
}
|
2014-05-26 15:17:59 -04:00
|
|
|
#elif defined(__FreeBSD__) || defined(__OpenBSD__)
|
2014-04-13 16:47:24 -04:00
|
|
|
#include <pthread.h>
|
2014-05-26 15:17:59 -04:00
|
|
|
#include <pthread_np.h>
|
2014-04-05 09:27:33 -04:00
|
|
|
|
2014-04-13 16:47:24 -04:00
|
|
|
inline void setThreadName(const char *name) {
|
|
|
|
pthread_set_name_np(pthread_self(), name);
|
|
|
|
}
|
2014-05-26 15:17:59 -04:00
|
|
|
#elif defined(__NetBSD__)
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
inline void setThreadName(const char *name) {
|
|
|
|
pthread_setname_np(pthread_self(), name);
|
|
|
|
}
|
2014-04-13 16:47:24 -04:00
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
typedef struct tagTHREADNAME_INFO {
|
|
|
|
DWORD dwType; // must be 0x1000
|
|
|
|
LPCSTR szName; // pointer to name (in user addr space)
|
|
|
|
DWORD dwThreadID; // thread ID (-1=caller thread)
|
|
|
|
DWORD dwFlags; // reserved for future use, must be zero
|
|
|
|
} THREADNAME_INFO;
|
|
|
|
|
|
|
|
inline void setThreadName(const char *name) {
|
|
|
|
THREADNAME_INFO info;
|
|
|
|
info.dwType = 0x1000;
|
|
|
|
info.szName = name;
|
|
|
|
info.dwThreadID = -1;
|
|
|
|
info.dwFlags = 0;
|
|
|
|
__try {
|
2014-04-22 15:19:49 -04:00
|
|
|
RaiseException(0x406D1388, 0, sizeof(info) / sizeof(DWORD), (ULONG_PTR *) &info);
|
2014-04-13 16:47:24 -04:00
|
|
|
} __except (EXCEPTION_CONTINUE_EXECUTION) {}
|
|
|
|
}
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
#include <pthread.h>
|
2014-04-05 09:27:33 -04:00
|
|
|
|
2014-04-13 16:47:24 -04:00
|
|
|
inline void setThreadName(const char *name) {
|
|
|
|
pthread_setname_np(name);
|
|
|
|
}
|
2014-04-05 09:27:33 -04:00
|
|
|
#elif defined(_WIN32)
|
2014-04-13 16:47:24 -04:00
|
|
|
inline void setThreadName(const char* name) {}
|
2014-04-05 09:27:33 -04:00
|
|
|
#else
|
2014-04-13 16:47:24 -04:00
|
|
|
#warning "Unrecognized platform, thread names will not be available."
|
|
|
|
inline void setThreadName(const char* name) {}
|
2014-04-05 09:27:33 -04:00
|
|
|
#endif
|
2013-03-29 16:51:57 -04:00
|
|
|
|
2014-04-05 08:12:36 -04:00
|
|
|
#ifndef SERVER
|
|
|
|
float getDisplayDensity();
|
|
|
|
|
|
|
|
v2u32 getDisplaySize();
|
|
|
|
v2u32 getWindowSize();
|
|
|
|
#endif
|
|
|
|
|
2010-12-21 11:08:24 -05:00
|
|
|
} // namespace porting
|
|
|
|
|
2011-01-07 12:39:27 -05:00
|
|
|
#endif // PORTING_HEADER
|
2010-11-26 18:02:21 -05:00
|
|
|
|