From: RĂ©mi Verschelde Date: Wed, 7 Dec 2016 21:59:41 +0000 (+0100) Subject: Write config and user data to %APPDATA% on Windows X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=commitdiff_plain;h=e8886f08acfcbec9dbe361df12cff7ef96005a0e Write config and user data to %APPDATA% on Windows We may want to readd a PORTABLE option that reverts to loading the config and user data from the binary's directory for portable binary distribution. Last part of and fixes #22. --- diff --git a/Source/Utils/Folders.cpp b/Source/Utils/Folders.cpp index c4e86ab..b667daa 100644 --- a/Source/Utils/Folders.cpp +++ b/Source/Utils/Folders.cpp @@ -28,6 +28,7 @@ along with Lugaru. If not, see . #endif #if _WIN32 #include +#include // to get paths related functions #endif const std::string Folders::dataDir = DATA_DIR; @@ -46,39 +47,39 @@ std::string Folders::getResourcePath(std::string filepath) std::string Folders::getUserDataPath() { -#ifdef _WIN32 - return dataDir; -#else std::string userDataPath; -#if (defined(__APPLE__) && defined(__MACH__)) +#ifdef _WIN32 + char path[MAX_PATH]; + // %APPDATA% (%USERPROFILE%\Application Data) + if(SUCCEEDED(SHGetFolderPathA(nullptr, CSIDL_APPDATA, nullptr, 0, path))) { + userDataPath = std::string(path) + "/Lugaru/"; + } else { + return dataDir; + } +#elif (defined(__APPLE__) && defined(__MACH__)) const char* homePath = getHomeDirectory(); if (homePath == NULL) { userDataPath = "."; } else { userDataPath = std::string(homePath) + "/Library/Application Support/Lugaru"; } -#else +#else // Linux userDataPath = getGenericDirectory("XDG_DATA_HOME", ".local/share"); #endif makeDirectory(userDataPath); return userDataPath; -#endif } std::string Folders::getConfigFilePath() { -#ifdef _WIN32 - return dataDir + "/config.txt"; -#else std::string configFolder; -#if (defined(__APPLE__) && defined(__MACH__)) +#if defined(_WIN32) || (defined(__APPLE__) && defined(__MACH__)) configFolder = getUserDataPath(); -#else +#else // Linux configFolder = getGenericDirectory("XDG_CONFIG_HOME", ".config"); -#endif makeDirectory(configFolder); - return configFolder + "/config.txt"; #endif + return configFolder + "/config.txt"; } #if PLATFORM_LINUX