Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/core/Core.h @ 8423

Last change on this file since 8423 was 8423, checked in by rgrieder, 13 years ago

Added and incorporated new class DestructionHelper: instead of doing the destruction of certain singletons implicitly via scoped_ptrs and ScopeGuards, use a method named destroy() that essentially achieves the same, but makes the destruction sequence obvious.

  • Property svn:eol-style set to native
File size: 5.2 KB
Line 
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
24 *      Reto Grieder
25 *   Co-authors:
26 *      ...
27 *
28 */
29
30/**
31    @defgroup CoreGame Core and Game
32    @ingroup Management
33*/
34
35/**
36    @file
37    @ingroup Management CoreGame
38    @brief Declaration of the Core singleton which is used to configure the program basics.
39*/
40
41#ifndef _Core_H__
42#define _Core_H__
43
44#include "CorePrereqs.h"
45
46#include <string>
47#include <loki/ScopeGuard.h>
48
49#include "util/DestructionHelper.h"
50#include "util/Singleton.h"
51#include "OrxonoxClass.h"
52
53namespace orxonox
54{
55    /**
56    @brief
57        The Core class is a singleton used to configure the program basics.
58    @remark
59        You should only create this singleton once because it destroys the identifiers!
60    */
61    class _CoreExport Core : public Singleton<Core>, public OrxonoxClass
62    {
63        friend class Singleton<Core>;
64        friend class Game;
65
66        public:
67            /**
68            @brief
69                Determines the executable path, checks for build directory runs, creates
70                the output directories and sets up the other core library singletons.
71            @throws
72                GeneralException
73            */
74            Core(const std::string& cmdLine);
75
76            /// Leave empty and use destroy() instead
77            ~Core() {}
78            /// Destructor that also executes when the object fails to construct
79            void destroy();
80
81            void setConfigValues();
82
83            //! Returns the configured language.
84            const std::string& getLanguage()
85                { return this->language_; }
86            void resetLanguage();
87
88            void updateLastLevelTimestamp();
89            inline long long getLastLevelTimestamp() const
90                { return this->lastLevelTimestamp_; }
91
92            void updateOgreConfigTimestamp();
93            inline long long getOgreConfigTimestamp() const
94                { return this->ogreConfigTimestamp_; }
95
96            //! Developers bit. If returns false, some options are not available as to not confuse the normal user.
97            inline bool inDevMode(void) const
98                { return this->bDevMode_; }
99
100        private:
101            Core(const Core&); //!< Don't use (undefined symbol)
102
103            void languageChanged();
104            void initRandomNumberGenerator();
105
106            void preUpdate(const Clock& time);
107            void postUpdate(const Clock& time);
108
109            void loadGraphics();
110            void unloadGraphics();
111
112            void setThreadAffinity(int limitToCPU);
113
114            PathConfig*               pathConfig_;
115            DynLibManager*            dynLibManager_;
116            SignalHandler*            signalHandler_;
117            ConfigFileManager*        configFileManager_;
118            Language*                 languageInstance_;
119            IOConsole*                ioConsole_;
120            TclBind*                  tclBind_;
121            TclThreadManager*         tclThreadManager_;
122            Scope<ScopeID::Root>*     rootScope_;
123            // graphical
124            GraphicsManager*          graphicsManager_;            //!< Interface to OGRE
125            InputManager*             inputManager_;               //!< Interface to OIS
126            GUIManager*               guiManager_;                 //!< Interface to GUI
127            Scope<ScopeID::Graphics>* graphicsScope_;
128
129            bool                      bGraphicsLoaded_;
130            int                       softDebugLevelLogFile_;      //!< The debug level for the log file (belongs to OutputHandler)
131            std::string               language_;                   //!< The language
132            bool                      bInitRandomNumberGenerator_; //!< If true, srand(time(0)) is called
133            bool                      bStartIOConsole_;            //!< Set to false if you don't want to use the IOConsole
134            long long                 lastLevelTimestamp_;         ///< Timestamp when the last level was started
135            long long                 ogreConfigTimestamp_;        ///< Timestamp wehen the ogre config level was modified
136            bool                      bDevMode_;                   //!< Developers bit. If set to false, some options are not available as to not confuse the normal user.
137
138            /// Helper object that executes the surrogate destructor destroy()
139            DestructionHelper<Core>   destructionHelper_;
140
141            static Core*              singletonPtr_s;
142    };
143}
144
145#endif /* _Core_H__ */
Note: See TracBrowser for help on using the repository browser.