Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/gui/src/core/Core.h @ 2846

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

Moving game clock from Core to Game.
Other small fixes.

  • Property svn:eol-style set to native
File size: 5.7 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    @file
32    @brief Declaration of the Core class.
33
34    The Core class is a singleton, only used to configure some variables
35    in the core through the config-file.
36*/
37
38#ifndef _Core_H__
39#define _Core_H__
40
41#include "CorePrereqs.h"
42
43#include <cassert>
44#include "OrxonoxClass.h"
45#include "util/OutputHandler.h"
46
47// boost::filesystem header has quite a large tail, use forward declaration
48namespace boost { namespace filesystem
49{
50    struct path_traits;
51    template<class String, class Traits> class basic_path;
52    typedef basic_path< std::string, path_traits> path;
53} }
54
55namespace orxonox
56{
57    //! The Core class is a singleton, only used to configure some config-values.
58    class _CoreExport Core : public OrxonoxClass
59    {
60        public:
61            Core();
62            ~Core();
63
64            void initialise(int argc, char** argv);
65            void setConfigValues();
66
67            void update(const Clock& time);
68
69            static Core& getInstance() { assert(Core::singletonRef_s); return *Core::singletonRef_s; }
70
71            static int   getSoftDebugLevel(OutputHandler::OutputDevice device = OutputHandler::LD_All);
72            static void  setSoftDebugLevel(OutputHandler::OutputDevice device, int level);
73            static const std::string& getLanguage();
74            static void  resetLanguage();
75
76            static void tsetMediaPath(const std::string& path)
77            { assert(singletonRef_s); singletonRef_s->_tsetMediaPath(path); }
78            static const boost::filesystem::path& getMediaPath();
79            static const boost::filesystem::path& getConfigPath();
80            static const boost::filesystem::path& getLogPath();
81            static std::string getMediaPathString();
82            static std::string getConfigPathString();
83            static std::string getLogPathString();
84
85            // fast access global variables.
86            static bool showsGraphics() { return bShowsGraphics_s; }
87            static bool hasServer()     { return bHasServer_s; }
88            static bool isClient()      { return bIsClient_s; }
89            static bool isStandalone()  { return bIsStandalone_s; }
90            static bool isMaster()      { return bIsMaster_s; }
91            static void setShowsGraphics(bool val) { bShowsGraphics_s = val; updateIsMaster(); }
92            static void setHasServer    (bool val) { bHasServer_s     = val; updateIsMaster(); }
93            static void setIsClient     (bool val) { bIsClient_s      = val; updateIsMaster(); }
94            static void setIsStandalone (bool val) { bIsStandalone_s  = val; updateIsMaster(); }
95            static void updateIsMaster  ()         { bIsMaster_s      = (bHasServer_s || bIsStandalone_s); }
96
97        private:
98            Core(const Core&);
99
100            void checkDevBuild();
101            void setExecutablePath();
102            void createDirectories();
103            void setThreadAffinity(int limitToCPU);
104
105            void resetLanguageIntern();
106            void initializeRandomNumberGenerator();
107            void debugLevelChanged();
108            void languageChanged();
109            void mediaPathChanged();
110            void _tsetMediaPath(const std::string& path);
111
112            // Singletons
113            ConfigFileManager*    configFileManager_;
114            Language*             languageInstance_;
115            LuaBind*              luaBind_;
116            Shell*                shell_;
117            SignalHandler*        signalHandler_;
118            TclBind*              tclBind_;
119            TclThreadManager*     tclThreadManager_;
120
121            int softDebugLevel_;                            //!< The debug level
122            int softDebugLevelConsole_;                     //!< The debug level for the console
123            int softDebugLevelLogfile_;                     //!< The debug level for the logfile
124            int softDebugLevelShell_;                       //!< The debug level for the ingame shell
125            std::string language_;                          //!< The language
126            bool bInitializeRandomNumberGenerator_;         //!< If true, srand(time(0)) is called
127            std::string mediaPathString_;                   //!< Path to the data/media file folder as string
128            bool isDevBuild_;                               //!< True for builds in the build directory (not installed)
129            bool loaded_;                                   //!< Only true if constructor was interrupted
130
131            static bool bShowsGraphics_s;                   //!< global variable that tells whether to show graphics
132            static bool bHasServer_s;                       //!< global variable that tells whether this is a server
133            static bool bIsClient_s;
134            static bool bIsStandalone_s;
135            static bool bIsMaster_s;
136
137            static Core* singletonRef_s;
138    };
139}
140
141#endif /* _Core_H__ */
Note: See TracBrowser for help on using the repository browser.