Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core4/src/core/Core.h @ 3247

Last change on this file since 3247 was 3247, checked in by rgrieder, 15 years ago

Removed OrxonoxClass inheritance from Game and Core: this allows the Core class to deal with everything core-related, including identifier destruction.
Instead I moved the config-values to CoreConfiguration and GameConfiguration which in turn are member variables (as pointers).
Also handled exceptions better: Game or Core must not fail to initialise, otherwise orxonox will not start. This now gets displayed properly.

  • Property svn:eol-style set to native
File size: 4.1 KB
RevLine 
[1505]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 *      Fabian 'x3n' Landau
[2896]24 *      Reto Grieder
[1505]25 *   Co-authors:
[2896]26 *      ...
[1505]27 *
28 */
29
30/**
[3196]31@file
32@brief
33    Declaration of the Core class.
34@details
[1524]35    The Core class is a singleton, only used to configure some variables
[1505]36    in the core through the config-file.
37*/
38
[1531]39#ifndef _Core_H__
40#define _Core_H__
[1505]41
42#include "CorePrereqs.h"
43
[2662]44#include <cassert>
[1747]45#include "util/OutputHandler.h"
[1505]46
47namespace orxonox
48{
[3247]49    class CoreConfiguration;
50
[3196]51    /**
52    @brief
53        The Core class is a singleton used to configure the program basics.
54    @details
55        The class provides information about the media, config and log path.
56        It determines those by the use of platform specific functions.
57    */
[3247]58    class _CoreExport Core
[1505]59    {
60        public:
[3196]61            /**
62            @brief
63                Determines the executable path, checks for build directory runs, creates
64                the output directories and sets up the other core library singletons.
65            @throws
66                GeneralException
67            */
[3247]68            Core(int argc, char** argv);
[2662]69            ~Core();
[2896]70
[1505]71            void setConfigValues();
72
[2896]73            void update(const Clock& time);
74
[2662]75            static Core& getInstance() { assert(Core::singletonRef_s); return *Core::singletonRef_s; }
76
77            static int   getSoftDebugLevel(OutputHandler::OutputDevice device = OutputHandler::LD_All);
78            static void  setSoftDebugLevel(OutputHandler::OutputDevice device, int level);
[1505]79            static const std::string& getLanguage();
[2662]80            static void  resetLanguage();
[1505]81
[3247]82            static void tsetMediaPath(const std::string& path);
[3196]83            //! Returns the path to the config files as boost::filesystem::path
[2710]84            static const boost::filesystem::path& getMediaPath();
[3196]85            //! Returns the path to the config files as boost::filesystem::path
[2710]86            static const boost::filesystem::path& getConfigPath();
[3196]87            //! Returns the path to the log files as boost::filesystem::path
[2710]88            static const boost::filesystem::path& getLogPath();
[3196]89            //! Returns the path to the data files as std::string
[2710]90            static std::string getMediaPathString();
[3196]91            //! Returns the path to the config files as std::string
[2710]92            static std::string getConfigPathString();
[3196]93            //! Returns the path to the log files as std::string
[2710]94            static std::string getLogPathString();
95
[1505]96        private:
[3196]97            Core(const Core&); //!< Don't use (undefined symbol)
[2896]98
99            void checkDevBuild();
100            void setExecutablePath();
101            void createDirectories();
102            void setThreadAffinity(int limitToCPU);
103
104            // Singletons
105            ConfigFileManager*    configFileManager_;
106            Language*             languageInstance_;
107            LuaBind*              luaBind_;
108            Shell*                shell_;
109            SignalHandler*        signalHandler_;
110            TclBind*              tclBind_;
111            TclThreadManager*     tclThreadManager_;
[2710]112
[2896]113            bool isDevBuild_;                               //!< True for builds in the build directory (not installed)
[3247]114            CoreConfiguration*    configuration_;
[2087]115
[2662]116            static Core* singletonRef_s;
[1505]117    };
118}
119
[1531]120#endif /* _Core_H__ */
Note: See TracBrowser for help on using the repository browser.