Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/core/Game.h @ 5747

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

Added Exception::handleMessage() (copy from Game::getExceptionMessage) function that returns the exception message (if retrievable) when catching with "…"
and adjusted some exception handlers.

  • Property svn:eol-style set to native
File size: 7.3 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 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30@file
31@brief
32    Declaration of Game Singleton.
33 */
34
35#ifndef _Game_H__
36#define _Game_H__
37
38#include "CorePrereqs.h"
39
40#include <cassert>
41#include <list>
42#include <map>
43#include <string>
44#include <vector>
45#include <boost/shared_ptr.hpp>
46#include <boost/scoped_ptr.hpp>
47#include <boost/preprocessor/cat.hpp>
48
49#include "util/Debug.h"
50#include "util/ScopeGuard.h"
51#include "util/Singleton.h"
52
53/**
54@def
55    Adds a new GameState to the Game. The second parameter is the name as string
56    and every following paramter is a constructor argument (which is usually non existent)
57*/
58#define DeclareGameState(className, stateName, bIgnoreTickTime, bGraphicsMode) \
59    static bool BOOST_PP_CAT(bGameStateDummy_##className, __LINE__) = orxonox::Game::declareGameState<className>(#className, stateName, bIgnoreTickTime, bGraphicsMode)
60
61namespace orxonox
62{
63    class GameConfiguration;
64
65    //! Helper object required before GameStates are being constructed
66    struct GameStateInfo
67    {
68        std::string stateName;
69        std::string className;
70        bool bIgnoreTickTime;
71        bool bGraphicsMode;
72    };
73
74    /**
75    @brief
76        Main class responsible for running the game.
77    @remark
78        You should only create this singleton once because it owns the Core class! (see remark there)
79    */
80    class _CoreExport Game : public Singleton<Game>
81    {
82        friend class Singleton<Game>;
83        typedef std::vector<shared_ptr<GameState> > GameStateVector;
84        typedef std::map<std::string, shared_ptr<GameState> > GameStateMap;
85        typedef shared_ptr<GameStateTreeNode> GameStateTreeNodePtr;
86
87    public:
88        Game(const std::string& cmdLine);
89        ~Game();
90
91        void setStateHierarchy(const std::string& str);
92        shared_ptr<GameState> getState(const std::string& name);
93
94        void run();
95        void stop();
96
97        void requestState(const std::string& name);
98        void requestStates(const std::string& names);
99        void popState();
100
101        const Clock& getGameClock() { return *this->gameClock_; }
102
103        float getAvgTickTime() { return this->avgTickTime_; }
104        float getAvgFPS()      { return this->avgFPS_; }
105
106        void subtractTickTime(int32_t length);
107
108        template <class T>
109        static bool declareGameState(const std::string& className, const std::string& stateName, bool bIgnoreTickTime, bool bConsoleMode);
110
111    private:
112        class _CoreExport GameStateFactory
113        {
114        public:
115            virtual ~GameStateFactory() { }
116            static shared_ptr<GameState> fabricate(const GameStateInfo& info);
117            template <class T>
118            static void createFactory(const std::string& className)
119                { factories_s[className].reset(new TemplateGameStateFactory<T>()); }
120
121            virtual shared_ptr<GameState> fabricateInternal(const GameStateInfo& info) = 0;
122            static std::map<std::string, shared_ptr<GameStateFactory> > factories_s;
123        };
124        template <class T>
125        class TemplateGameStateFactory : public GameStateFactory
126        {
127        public:
128            shared_ptr<GameState> fabricateInternal(const GameStateInfo& info)
129                { return shared_ptr<GameState>(new T(info)); }
130        };
131        // For the factory destruction
132        typedef Loki::ObjScopeGuardImpl0<std::map<std::string, shared_ptr<GameStateFactory> >, void (std::map<std::string, shared_ptr<GameStateFactory> >::*)()> ObjScopeGuard;
133
134        struct StatisticsTickInfo
135        {
136            uint64_t    tickTime;
137            uint32_t    tickLength;
138        };
139
140        Game(Game&); // don't mess with singletons
141
142        void loadGraphics();
143        void unloadGraphics();
144
145        bool checkState(const std::string& name) const;
146        void loadState(const std::string& name);
147        void unloadState(const std::string& name);
148
149        // Main loop structuring
150        void updateGameStateStack();
151        void updateGameStates();
152        void updateStatistics();
153        void updateFPSLimiter();
154
155        // ScopeGuard helper function
156        void resetChangingState() { this->bChangingState_ = false; }
157
158        scoped_ptr<Clock>                  gameClock_;
159        scoped_ptr<Core>                   core_;
160        ObjScopeGuard                      gsFactoryDestroyer_;
161        scoped_ptr<GameConfiguration>      configuration_;
162
163        GameStateMap                       constructedStates_;
164        GameStateVector                    loadedStates_;
165        GameStateTreeNodePtr               rootStateNode_;
166        GameStateTreeNodePtr               loadedTopStateNode_;
167        std::vector<GameStateTreeNodePtr>  requestedStateNodes_;
168
169        bool                               bChangingState_;
170        bool                               bAbort_;
171
172        // variables for time statistics
173        uint64_t                           statisticsStartTime_;
174        std::list<StatisticsTickInfo>      statisticsTickTimes_;
175        uint32_t                           periodTime_;
176        uint32_t                           periodTickTime_;
177        float                              avgFPS_;
178        float                              avgTickTime_;
179        int                                excessSleepTime_;
180        unsigned int                       minimumSleepTime_;
181
182        static std::map<std::string, GameStateInfo> gameStateDeclarations_s;
183        static Game* singletonPtr_s;        //!< Pointer to the Singleton
184    };
185
186    template <class T>
187    /*static*/ bool Game::declareGameState(const std::string& className, const std::string& stateName, bool bIgnoreTickTime, bool bGraphicsMode)
188    {
189        std::map<std::string, GameStateInfo>::const_iterator it = gameStateDeclarations_s.find(stateName);
190        if (it == gameStateDeclarations_s.end())
191        {
192            GameStateInfo& info = gameStateDeclarations_s[stateName];
193            info.stateName = stateName;
194            info.className = className;
195            info.bIgnoreTickTime = bIgnoreTickTime;
196            info.bGraphicsMode = bGraphicsMode;
197        }
198        else
199        {
200            COUT(0) << "Error: Cannot declare two GameStates with the same name." << std::endl;
201            COUT(0) << "       Ignoring second one ('" << stateName << "')." << std::endl;
202        }
203
204        // Create a factory to delay GameState creation
205        GameStateFactory::createFactory<T>(className);
206
207        // just a required dummy return value
208        return true;
209    }
210}
211
212#endif /* _Game_H__ */
Note: See TracBrowser for help on using the repository browser.