Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 11012 was 11012, checked in by landauf, 8 years ago

added unittest for plugin loading and unloading

  • Property svn:eol-style set to native
File size: 4.4 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
[7401]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
[1531]41#ifndef _Core_H__
42#define _Core_H__
[1505]43
44#include "CorePrereqs.h"
45
[6417]46#include <string>
[11012]47#include <list>
[8423]48#include "util/DestructionHelper.h"
[3370]49#include "util/Singleton.h"
[10624]50#include "CoreConfig.h"
[1505]51
52namespace orxonox
53{
[3196]54    /**
55    @brief
56        The Core class is a singleton used to configure the program basics.
[3370]57    @remark
58        You should only create this singleton once because it destroys the identifiers!
[3196]59    */
[10624]60    class _CoreExport Core : public Singleton<Core>
[1505]61    {
[3370]62        friend class Singleton<Core>;
63
[1505]64        public:
[3196]65            /**
66            @brief
67                Determines the executable path, checks for build directory runs, creates
68                the output directories and sets up the other core library singletons.
69            @throws
70                GeneralException
71            */
[3323]72            Core(const std::string& cmdLine);
[2896]73
[8423]74            /// Leave empty and use destroy() instead
75            ~Core() {}
76            /// Destructor that also executes when the object fails to construct
77            void destroy();
78
[10624]79            void preUpdate(const Clock& time);
80            void postUpdate(const Clock& time);
[1505]81
[10624]82            void loadGraphics();
83            void unloadGraphics(bool loadGraphicsManagerWithoutRenderer = true);
[1505]84
[10624]85            void loadModules();
86            void unloadModules();
87            void loadModule(ModuleInstance* module);
88            void unloadModule(ModuleInstance* module);
[7870]89
[10624]90            inline CoreConfig* getConfig() const
91                { return this->config_; }
[7870]92
[1505]93        private:
[3196]94            Core(const Core&); //!< Don't use (undefined symbol)
[2896]95
96            void setThreadAffinity(int limitToCPU);
[8423]97
[10624]98            ApplicationPaths*                applicationPaths_;
99            ConfigurablePaths*               configurablePaths_;
100            DynLibManager*                   dynLibManager_;
101            SignalHandler*                   signalHandler_;
102            ConfigFileManager*               configFileManager_;
103            Language*                        languageInstance_;
104            Loader*                          loaderInstance_;
105            IOConsole*                       ioConsole_;
106            TclBind*                         tclBind_;
107            TclThreadManager*                tclThreadManager_;
108            Scope<ScopeID::ROOT>*            rootScope_;
[5781]109            // graphical
[10624]110            GraphicsManager*                 graphicsManager_;            //!< Interface to OGRE
111            InputManager*                    inputManager_;               //!< Interface to OIS
112            GUIManager*                      guiManager_;                 //!< Interface to GUI
113            Scope<ScopeID::GRAPHICS>*        graphicsScope_;
114            bool                             bGraphicsLoaded_;
[2710]115
[10624]116            CoreStaticInitializationHandler* staticInitHandler_;
117            PluginManager*                   pluginManager_;
118            ModuleInstance*                  rootModule_;
119            std::list<ModuleInstance*>       modules_;
[6417]120
[10624]121            /// Helper object that stores the config values
122            CoreConfig*                      config_;
123
[8423]124            /// Helper object that executes the surrogate destructor destroy()
[10624]125            DestructionHelper<Core>          destructionHelper_;
[8423]126
[10624]127            static Core*                     singletonPtr_s;
[1505]128    };
129}
130
[1531]131#endif /* _Core_H__ */
Note: See TracBrowser for help on using the repository browser.