Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 6105 was 6105, checked in by rgrieder, 14 years ago

Merged console branch back to trunk.

  • Property svn:eol-style set to native
File size: 3.6 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
[1531]30#ifndef _Core_H__
31#define _Core_H__
[1505]32
33#include "CorePrereqs.h"
34
[2662]35#include <cassert>
[3370]36#include <boost/scoped_ptr.hpp>
[1747]37#include "util/OutputHandler.h"
[5929]38#include "util/Scope.h"
[3370]39#include "util/ScopeGuard.h"
40#include "util/Singleton.h"
[1505]41
42namespace orxonox
43{
[3280]44    class CoreConfiguration;
45
[3196]46    /**
47    @brief
48        The Core class is a singleton used to configure the program basics.
[3370]49    @remark
50        You should only create this singleton once because it destroys the identifiers!
[3196]51    */
[3370]52    class _CoreExport Core : public Singleton<Core>
[1505]53    {
[3370]54        typedef Loki::ScopeGuardImpl0<void (*)()> SimpleScopeGuard;
55        friend class Singleton<Core>;
[5695]56        friend class Game;
[3370]57
[1505]58        public:
[3196]59            /**
60            @brief
61                Determines the executable path, checks for build directory runs, creates
62                the output directories and sets up the other core library singletons.
63            @throws
64                GeneralException
65            */
[3323]66            Core(const std::string& cmdLine);
[2662]67            ~Core();
[2896]68
[1505]69            void setConfigValues();
70
71            static const std::string& getLanguage();
[2662]72            static void  resetLanguage();
[1505]73
74        private:
[3196]75            Core(const Core&); //!< Don't use (undefined symbol)
[2896]76
[5695]77            void preUpdate(const Clock& time);
78            void postUpdate(const Clock& time);
79
[5781]80            void loadGraphics();
81            void unloadGraphics();
82
[2896]83            void setThreadAffinity(int limitToCPU);
84
[3370]85            // Mind the order for the destruction!
[5929]86            scoped_ptr<PathConfig>        pathConfig_;
[5693]87            scoped_ptr<DynLibManager>     dynLibManager_;
[3370]88            scoped_ptr<SignalHandler>     signalHandler_;
89            SimpleScopeGuard              identifierDestroyer_;
[5781]90            SimpleScopeGuard              consoleCommandDestroyer_;
[3370]91            scoped_ptr<ConfigFileManager> configFileManager_;
92            scoped_ptr<Language>          languageInstance_;
[6105]93            scoped_ptr<IOConsole>         ioConsole_;
[3370]94            scoped_ptr<CoreConfiguration> configuration_;
[5781]95            scoped_ptr<TclBind>           tclBind_;
96            scoped_ptr<TclThreadManager>  tclThreadManager_;
97            // graphical
98            scoped_ptr<GraphicsManager>   graphicsManager_;     //!< Interface to OGRE
99            scoped_ptr<InputManager>      inputManager_;        //!< Interface to OIS
100            scoped_ptr<GUIManager>        guiManager_;          //!< Interface to GUI
[5929]101            scoped_ptr<Scope<ScopeID::Root> >     rootScope_;
102            scoped_ptr<Scope<ScopeID::Graphics> > graphicsScope_;
[2710]103
[5781]104            bool                          bGraphicsLoaded_;
[3370]105            static Core* singletonPtr_s;
[1505]106    };
107}
108
[1531]109#endif /* _Core_H__ */
Note: See TracBrowser for help on using the repository browser.