| 1 | /* | 
|---|
| 2 |  *   ORXONOX - the hottest 3D action shooter ever to exist | 
|---|
| 3 |  *                    > www.orxonox.net < | 
|---|
| 4 |  * | 
|---|
| 5 |  * | 
|---|
| 6 |  *   License notice: | 
|---|
| 7 |  * | 
|---|
| 8 |  *   This program is free software; you can redistribute it and/or | 
|---|
| 9 |  *   modify it under the terms of the GNU General Public License | 
|---|
| 10 |  *   as published by the Free Software Foundation; either version 2 | 
|---|
| 11 |  *   of the License, or (at your option) any later version. | 
|---|
| 12 |  * | 
|---|
| 13 |  *   This program is distributed in the hope that it will be useful, | 
|---|
| 14 |  *   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 15 |  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
| 16 |  *   GNU General Public License for more details. | 
|---|
| 17 |  * | 
|---|
| 18 |  *   You should have received a copy of the GNU General Public License | 
|---|
| 19 |  *   along with this program; if not, write to the Free Software | 
|---|
| 20 |  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
|---|
| 21 |  * | 
|---|
| 22 |  *   Author: | 
|---|
| 23 |  *      Reto Grieder | 
|---|
| 24 |  *   Co-authors: | 
|---|
| 25 |  *      ... | 
|---|
| 26 |  * | 
|---|
| 27 |  */ | 
|---|
| 28 |  | 
|---|
| 29 | #ifndef _PathConfig_H__ | 
|---|
| 30 | #define _PathConfig_H__ | 
|---|
| 31 |  | 
|---|
| 32 | #include "CorePrereqs.h" | 
|---|
| 33 |  | 
|---|
| 34 | #include <string> | 
|---|
| 35 | #include <vector> | 
|---|
| 36 | #include "util/Singleton.h" | 
|---|
| 37 |  | 
|---|
| 38 | namespace orxonox | 
|---|
| 39 | { | 
|---|
| 40 |     /** | 
|---|
| 41 |     @brief | 
|---|
| 42 |         The PathConfig class is a singleton used to configure different paths. | 
|---|
| 43 |     @details | 
|---|
| 44 |         The class provides information about the data, config, log, executable, | 
|---|
| 45 |         root and module path. | 
|---|
| 46 |         It determines those by the use of platform specific functions. | 
|---|
| 47 |     @remarks | 
|---|
| 48 |         Not all paths are always available: | 
|---|
| 49 |         - root only when installed copyable | 
|---|
| 50 |         - externalData only for development builds in the build tree | 
|---|
| 51 |     */ | 
|---|
| 52 |     class _CoreExport PathConfig : public Singleton<PathConfig> | 
|---|
| 53 |     { | 
|---|
| 54 |         friend class Singleton<PathConfig>; | 
|---|
| 55 |         friend class Core; | 
|---|
| 56 |  | 
|---|
| 57 |         public: | 
|---|
| 58 |             /** | 
|---|
| 59 |             @brief | 
|---|
| 60 |                 Retrievs the executable path and sets all hard coded fixed paths (currently only the module path) | 
|---|
| 61 |                 Also checks for "orxonox_dev_build.keep_me" in the executable diretory. | 
|---|
| 62 |                 If found it means that this is not an installed run, hence we | 
|---|
| 63 |                 don't write the logs and config files to ~/.orxonox | 
|---|
| 64 |             @throw | 
|---|
| 65 |                 GeneralException | 
|---|
| 66 |             */ | 
|---|
| 67 |             PathConfig(); | 
|---|
| 68 |             ~PathConfig(); | 
|---|
| 69 |  | 
|---|
| 70 |             //! Returns the path to the root folder as boost::filesystem::path | 
|---|
| 71 |             static const boost::filesystem::path& getRootPath() | 
|---|
| 72 |                 { return getInstance().rootPath_; } | 
|---|
| 73 |             //! Returns the path to the executable folder as boost::filesystem::path | 
|---|
| 74 |             static const boost::filesystem::path& getExecutablePath() | 
|---|
| 75 |                 { return getInstance().executablePath_; } | 
|---|
| 76 |             //! Returns the path to the data files as boost::filesystem::path | 
|---|
| 77 |             static const boost::filesystem::path& getDataPath() | 
|---|
| 78 |                 { return getInstance().dataPath_; } | 
|---|
| 79 |             //! Returns the path to the config files as boost::filesystem::path | 
|---|
| 80 |             static const boost::filesystem::path& getConfigPath() | 
|---|
| 81 |                 { return getInstance().configPath_; } | 
|---|
| 82 |             //! Returns the path to the log files as boost::filesystem::path | 
|---|
| 83 |             static const boost::filesystem::path& getLogPath() | 
|---|
| 84 |                 { return getInstance().logPath_; } | 
|---|
| 85 |             //! Returns the path to the modules as boost::filesystem::path | 
|---|
| 86 |             static const boost::filesystem::path& getModulePath() | 
|---|
| 87 |                 { return getInstance().modulePath_; } | 
|---|
| 88 |  | 
|---|
| 89 |             //! Returns the path to the root folder as std::string | 
|---|
| 90 |             static std::string getRootPathString(); | 
|---|
| 91 |             //! Returns the path to the executable folder as std::string | 
|---|
| 92 |             static std::string getExecutablePathString(); | 
|---|
| 93 |             //! Returns the path to the data files as std::string | 
|---|
| 94 |             static std::string getDataPathString(); | 
|---|
| 95 |             //! Returns the path to the config files as std::string | 
|---|
| 96 |             static std::string getConfigPathString(); | 
|---|
| 97 |             //! Returns the path to the log files as std::string | 
|---|
| 98 |             static std::string getLogPathString(); | 
|---|
| 99 |             //! Returns the path to the modules as std::string | 
|---|
| 100 |             static std::string getModulePathString(); | 
|---|
| 101 |  | 
|---|
| 102 |             //! Return trrue for runs in the build directory (not installed) | 
|---|
| 103 |             static bool isDevelopmentRun() { return getInstance().bDevRun_; } | 
|---|
| 104 |  | 
|---|
| 105 |         private: | 
|---|
| 106 |             PathConfig(const PathConfig&); //!< Don't use (undefined symbol) | 
|---|
| 107 |  | 
|---|
| 108 |             /** | 
|---|
| 109 |             @brief | 
|---|
| 110 |                 Sets config, log and media path and creates the folders if necessary. | 
|---|
| 111 |             @throws | 
|---|
| 112 |                 GeneralException | 
|---|
| 113 |             */ | 
|---|
| 114 |             void setConfigurablePaths(); | 
|---|
| 115 |             //! Returns a list with all modules declared by a *.module file in the module folder. | 
|---|
| 116 |             std::vector<std::string> getModulePaths(); | 
|---|
| 117 |  | 
|---|
| 118 |             //! Path to the parent directory of the ones above if program was installed with relativ paths | 
|---|
| 119 |             boost::filesystem::path& rootPath_; | 
|---|
| 120 |             boost::filesystem::path& executablePath_;        //!< Path to the executable | 
|---|
| 121 |             boost::filesystem::path& modulePath_;            //!< Path to the modules | 
|---|
| 122 |             boost::filesystem::path& dataPath_;              //!< Path to the data files folder | 
|---|
| 123 |             boost::filesystem::path& configPath_;            //!< Path to the config files folder | 
|---|
| 124 |             boost::filesystem::path& logPath_;               //!< Path to the log files folder | 
|---|
| 125 |  | 
|---|
| 126 |             bool                     bDevRun_;               //!< True for runs in the build directory (not installed) | 
|---|
| 127 |             static PathConfig* singletonPtr_s; | 
|---|
| 128 |     }; | 
|---|
| 129 | } | 
|---|
| 130 |  | 
|---|
| 131 | #endif /* _PathConfig_H__ */ | 
|---|