2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
5 This file is part of Lugaru.
7 Lugaru is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 Lugaru is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Lugaru. If not, see <http://www.gnu.org/licenses/>.
26 #include <sys/types.h>
31 #include <shlobj.h> // to get paths related functions
34 const std::string Folders::dataDir = DATA_DIR;
36 std::string Folders::getScreenshotDir()
38 std::string screenshotDir = getUserDataPath() + "/Screenshots";
39 makeDirectory(screenshotDir);
43 std::string Folders::getResourcePath(std::string filepath)
45 return dataDir + '/' + filepath;
48 std::string Folders::getUserDataPath()
50 std::string userDataPath;
53 // %APPDATA% (%USERPROFILE%\Application Data)
54 if(SUCCEEDED(SHGetFolderPathA(nullptr, CSIDL_APPDATA, nullptr, 0, path))) {
55 userDataPath = std::string(path) + "/Lugaru/";
59 #elif (defined(__APPLE__) && defined(__MACH__))
60 const char* homePath = getHomeDirectory();
61 if (homePath == NULL) {
64 userDataPath = std::string(homePath) + "/Library/Application Support/Lugaru";
67 userDataPath = getGenericDirectory("XDG_DATA_HOME", ".local/share");
69 makeDirectory(userDataPath);
73 std::string Folders::getConfigFilePath()
75 std::string configFolder;
76 #if defined(_WIN32) || (defined(__APPLE__) && defined(__MACH__))
77 configFolder = getUserDataPath();
79 configFolder = getGenericDirectory("XDG_CONFIG_HOME", ".config");
80 makeDirectory(configFolder);
82 return configFolder + "/config.txt";
86 /* Generic code for XDG ENVVAR test and fallback */
87 std::string Folders::getGenericDirectory(const char* ENVVAR, const std::string fallback) {
88 const char* path = getenv(ENVVAR);
90 if ((path != NULL) && (strlen(path) != 0)) {
91 ret = std::string(path) + "/lugaru";
93 const char* homedir = getHomeDirectory();
94 if ((homedir != NULL) && (strlen(homedir) != 0)) {
95 ret = std::string(homedir) + '/' + fallback + "/lugaru";
105 const char* Folders::getHomeDirectory()
107 const char *homedir = getenv("HOME");
110 struct passwd *pw = getpwuid(getuid());
117 bool Folders::makeDirectory(std::string path) {
119 int status = CreateDirectory(path.c_str(), NULL);
122 } else if(GetLastError() == ERROR_ALREADY_EXISTS) {
129 int status = mkdir(path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
132 } else if(errno == EEXIST) {
140 FILE* Folders::openMandatoryFile(std::string filename, const char* mode)
142 FILE* tfile = fopen(filename.c_str(), mode);
144 throw FileNotFoundException(filename);