]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/porting.cpp
Dont search for locale folders if gettext is disabled (#6133)
[dragonfireclient.git] / src / porting.cpp
index 98b85b7d00dcedceab0a2e3b80a9539b786ac591..b453b7f76d0dbf02338a7d2c926814046bbd758f 100644 (file)
@@ -25,7 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include "porting.h"
 
-#if defined(__FreeBSD__)
+#if defined(__FreeBSD__)  || defined(__NetBSD__) || defined(__DragonFly__)
        #include <sys/types.h>
        #include <sys/sysctl.h>
 #elif defined(_WIN32)
@@ -41,14 +41,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
        #define _PSTAT64
        #include <sys/pstat.h>
 #endif
-#if !defined(_WIN32) && !defined(__APPLE__) && \
-       !defined(__ANDROID__) && !defined(SERVER)
-       #define XORG_USED
-#endif
-#ifdef XORG_USED
-       #include <X11/Xlib.h>
-       #include <X11/Xutil.h>
-#endif
 
 #include "config.h"
 #include "debug.h"
@@ -75,11 +67,16 @@ bool * signal_handler_killstatus(void)
 #if !defined(_WIN32) // POSIX
        #include <signal.h>
 
-void sigint_handler(int sig)
+void signal_handler(int sig)
 {
        if (!g_killed) {
-               dstream << "INFO: sigint_handler(): "
-                       << "Ctrl-C pressed, shutting down." << std::endl;
+               if (sig == SIGINT) {
+                       dstream << "INFO: signal_handler(): "
+                               << "Ctrl-C pressed, shutting down." << std::endl;
+               } else if (sig == SIGTERM) {
+                       dstream << "INFO: signal_handler(): "
+                               << "got SIGTERM, shutting down." << std::endl;
+               }
 
                // Comment out for less clutter when testing scripts
                /*dstream << "INFO: sigint_handler(): "
@@ -88,13 +85,14 @@ void sigint_handler(int sig)
 
                g_killed = true;
        } else {
-               (void)signal(SIGINT, SIG_DFL);
+               (void)signal(sig, SIG_DFL);
        }
 }
 
 void signal_handler_init(void)
 {
-       (void)signal(SIGINT, sigint_handler);
+       (void)signal(SIGINT, signal_handler);
+       (void)signal(SIGTERM, signal_handler);
 }
 
 #else // _WIN32
@@ -252,7 +250,7 @@ bool getCurrentExecPath(char *buf, size_t len)
 
 
 //// Linux
-#elif defined(linux) || defined(__linux) || defined(__linux__)
+#elif defined(__linux__)
 
 bool getCurrentExecPath(char *buf, size_t len)
 {
@@ -368,7 +366,7 @@ bool setSystemPaths()
 
 
 //// Linux
-#elif defined(linux) || defined(__linux)
+#elif defined(__linux__)
 
 bool setSystemPaths()
 {
@@ -402,7 +400,7 @@ bool setSystemPaths()
 #endif
 
        for (std::list<std::string>::const_iterator
-                       i = trylist.begin(); i != trylist.end(); i++) {
+                       i = trylist.begin(); i != trylist.end(); ++i) {
                const std::string &trypath = *i;
                if (!fs::PathExists(trypath) ||
                        !fs::PathExists(trypath + DIR_DELIM + "builtin")) {
@@ -558,7 +556,7 @@ void initializePaths()
        infostream << "Detected user path: " << path_user << std::endl;
        infostream << "Detected cache path: " << path_cache << std::endl;
 
-#ifdef USE_GETTEXT
+#if USE_GETTEXT
        bool found_localedir = false;
 #  ifdef STATIC_LOCALEDIR
        if (STATIC_LOCALEDIR[0] && fs::PathExists(STATIC_LOCALEDIR)) {
@@ -586,165 +584,6 @@ void initializePaths()
 #endif  // USE_GETTEXT
 }
 
-
-
-void setXorgClassHint(const video::SExposedVideoData &video_data,
-       const std::string &name)
-{
-#ifdef XORG_USED
-       if (video_data.OpenGLLinux.X11Display == NULL)
-               return;
-
-       XClassHint *classhint = XAllocClassHint();
-       classhint->res_name  = (char *)name.c_str();
-       classhint->res_class = (char *)name.c_str();
-
-       XSetClassHint((Display *)video_data.OpenGLLinux.X11Display,
-               video_data.OpenGLLinux.X11Window, classhint);
-       XFree(classhint);
-#endif
-}
-
-
-////
-//// Video/Display Information (Client-only)
-////
-
-#ifndef SERVER
-
-static irr::IrrlichtDevice *device;
-
-void initIrrlicht(irr::IrrlichtDevice *device_)
-{
-       device = device_;
-}
-
-v2u32 getWindowSize()
-{
-       return device->getVideoDriver()->getScreenSize();
-}
-
-
-std::vector<core::vector3d<u32> > getSupportedVideoModes()
-{
-       IrrlichtDevice *nulldevice = createDevice(video::EDT_NULL);
-       sanity_check(nulldevice != NULL);
-
-       std::vector<core::vector3d<u32> > mlist;
-       video::IVideoModeList *modelist = nulldevice->getVideoModeList();
-
-       u32 num_modes = modelist->getVideoModeCount();
-       for (u32 i = 0; i != num_modes; i++) {
-               core::dimension2d<u32> mode_res = modelist->getVideoModeResolution(i);
-               s32 mode_depth = modelist->getVideoModeDepth(i);
-               mlist.push_back(core::vector3d<u32>(mode_res.Width, mode_res.Height, mode_depth));
-       }
-
-       nulldevice->drop();
-
-       return mlist;
-}
-
-std::vector<irr::video::E_DRIVER_TYPE> getSupportedVideoDrivers()
-{
-       std::vector<irr::video::E_DRIVER_TYPE> drivers;
-
-       for (int i = 0; i != irr::video::EDT_COUNT; i++) {
-               if (irr::IrrlichtDevice::isDriverSupported((irr::video::E_DRIVER_TYPE)i))
-                       drivers.push_back((irr::video::E_DRIVER_TYPE)i);
-       }
-
-       return drivers;
-}
-
-const char *getVideoDriverName(irr::video::E_DRIVER_TYPE type)
-{
-       static const char *driver_ids[] = {
-               "null",
-               "software",
-               "burningsvideo",
-               "direct3d8",
-               "direct3d9",
-               "opengl",
-               "ogles1",
-               "ogles2",
-       };
-
-       return driver_ids[type];
-}
-
-
-const char *getVideoDriverFriendlyName(irr::video::E_DRIVER_TYPE type)
-{
-       static const char *driver_names[] = {
-               "NULL Driver",
-               "Software Renderer",
-               "Burning's Video",
-               "Direct3D 8",
-               "Direct3D 9",
-               "OpenGL",
-               "OpenGL ES1",
-               "OpenGL ES2",
-       };
-
-       return driver_names[type];
-}
-
-#      ifndef __ANDROID__
-#              ifdef XORG_USED
-
-static float calcDisplayDensity()
-{
-       const char *current_display = getenv("DISPLAY");
-
-       if (current_display != NULL) {
-               Display *x11display = XOpenDisplay(current_display);
-
-               if (x11display != NULL) {
-                       /* try x direct */
-                       float dpi_height = floor(DisplayHeight(x11display, 0) /
-                                                       (DisplayHeightMM(x11display, 0) * 0.039370) + 0.5);
-                       float dpi_width = floor(DisplayWidth(x11display, 0) /
-                                                       (DisplayWidthMM(x11display, 0) * 0.039370) + 0.5);
-
-                       XCloseDisplay(x11display);
-
-                       return std::max(dpi_height,dpi_width) / 96.0;
-               }
-       }
-
-       /* return manually specified dpi */
-       return g_settings->getFloat("screen_dpi")/96.0;
-}
-
-
-float getDisplayDensity()
-{
-       static float cached_display_density = calcDisplayDensity();
-       return cached_display_density;
-}
-
-
-#              else // XORG_USED
-float getDisplayDensity()
-{
-       return g_settings->getFloat("screen_dpi")/96.0;
-}
-#              endif // XORG_USED
-
-v2u32 getDisplaySize()
-{
-       IrrlichtDevice *nulldevice = createDevice(video::EDT_NULL);
-
-       core::dimension2d<u32> deskres = nulldevice->getVideoModeList()->getDesktopResolution();
-       nulldevice -> drop();
-
-       return deskres;
-}
-#      endif // __ANDROID__
-#endif // SERVER
-
-
 ////
 //// OS-specific Secure Random
 ////
@@ -784,4 +623,31 @@ bool secure_rand_fill_buf(void *buf, size_t len)
 
 #endif
 
+void attachOrCreateConsole(void)
+{
+#ifdef _WIN32
+       static bool consoleAllocated = false;
+       const bool redirected = (_fileno(stdout) == -2 || _fileno(stdout) == -1); // If output is redirected to e.g a file
+       if (!consoleAllocated && redirected && (AttachConsole(ATTACH_PARENT_PROCESS) || AllocConsole())) {
+               freopen("CONOUT$", "w", stdout);
+               freopen("CONOUT$", "w", stderr);
+               consoleAllocated = true;
+       }
+#endif
+}
+
+// Load performance counter frequency only once at startup
+#ifdef _WIN32
+
+inline double get_perf_freq()
+{
+       LARGE_INTEGER freq;
+       QueryPerformanceFrequency(&freq);
+       return freq.QuadPart;
+}
+
+double perf_freq = get_perf_freq();
+
+#endif
+
 } //namespace porting