Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/orxonox/gamestates/GSRoot.cc @ 2558

Last change on this file since 2558 was 2558, checked in by scheusso, 15 years ago

Fixed that problems with statistical info of tick time/fps

  • Property svn:eol-style set to native
File size: 11.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 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "OrxonoxStableHeaders.h"
30#include "GSRoot.h"
31
32#include "util/Exception.h"
33#include "util/Debug.h"
34#include "core/Core.h"
35#include "core/Factory.h"
36#include "core/ConfigValueIncludes.h"
37#include "core/CoreIncludes.h"
38#include "core/ConsoleCommand.h"
39#include "core/CommandLine.h"
40#include "core/Shell.h"
41#include "core/TclBind.h"
42#include "core/TclThreadManager.h"
43#include "core/LuaBind.h"
44#include "tools/Timer.h"
45#include "objects/Tickable.h"
46#include "Settings.h"
47
48#if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32
49#  ifndef WIN32_LEAN_AND_MEAN
50#    define WIN32_LEAN_AND_MEAN
51#  endif
52#  include "windows.h"
53
54   //Get around Windows hackery
55#  ifdef max
56#    undef max
57#  endif
58#  ifdef min
59#    undef min
60#  endif
61#endif
62
63namespace orxonox
64{
65    SetCommandLineArgument(dataPath, "").information("PATH");
66    SetCommandLineArgument(limitToCPU, 1).information("0: off | #cpu");
67
68    GSRoot::GSRoot()
69        : RootGameState("root")
70        , timeFactor_(1.0f)
71        , bPaused_(false)
72        , timeFactorPauseBackup_(1.0f)
73        , settings_(0)
74        , tclBind_(0)
75        , tclThreadManager_(0)
76        , shell_(0)
77    {
78        RegisterRootObject(GSRoot);
79        setConfigValues();
80
81        this->ccSetTimeFactor_ = 0;
82        this->ccPause_ = 0;
83    }
84
85    GSRoot::~GSRoot()
86    {
87    }
88
89    void GSRoot::setConfigValues()
90    {
91        SetConfigValue(statisticsRefreshCycle_, 250000)
92            .description("Sets the time in microseconds interval at which average fps, etc. get updated.");
93        SetConfigValue(statisticsAvgLength_, 1000000)
94            .description("Sets the time in microseconds interval at which average fps, etc. gets calculated.");
95    }
96
97    void GSRoot::enter()
98    {
99        // creates the class hierarchy for all classes with factories
100        Factory::createClassHierarchy();
101
102        // reset game speed to normal
103        timeFactor_ = 1.0f;
104
105        // reset frame counter
106        this->statisticsStartTime_ = 0;
107        this->statisticsTickTimes_.clear();
108        this->periodTickTime_ = 0;
109        this->avgFPS_ = 0.0f;
110        this->avgTickTime_ = 0.0f;
111
112        // Create the lua interface
113        this->luaBind_ = new LuaBind();
114
115        // instantiate Settings class
116        this->settings_ = new Settings();
117
118        std::string dataPath = CommandLine::getValue("dataPath");
119        if (dataPath != "")
120        {
121            if (*dataPath.end() != '/' && *dataPath.end() != '\\')
122                Settings::tsetDataPath(dataPath + "/");
123            else
124                Settings::tsetDataPath(dataPath);
125        }
126
127        // initialise TCL
128        this->tclBind_ = new TclBind(Settings::getDataPath());
129        this->tclThreadManager_ = new TclThreadManager(tclBind_->getTclInterpreter());
130
131        // create a shell
132        this->shell_ = new Shell();
133
134        // limit the main thread to the first core so that QueryPerformanceCounter doesn't jump
135        // do this after ogre has initialised. Somehow Ogre changes the settings again (not through
136        // the timer though).
137        int limitToCPU = CommandLine::getValue("limitToCPU");
138        if (limitToCPU > 0)
139            setThreadAffinity((unsigned int)(limitToCPU - 1));
140
141        {
142            // add console commands
143            FunctorMember<GSRoot>* functor = createFunctor(&GSRoot::exitGame);
144            functor->setObject(this);
145            this->ccExit_ = createConsoleCommand(functor, "exit");
146            CommandExecutor::addConsoleCommandShortcut(this->ccExit_);
147        }
148
149        {
150            // add console commands
151            FunctorMember01<GameStateBase, const std::string&>* functor = createFunctor(&GameStateBase::requestState);
152            functor->setObject(this);
153            this->ccSelectGameState_ = createConsoleCommand(functor, "selectGameState");
154            CommandExecutor::addConsoleCommandShortcut(this->ccSelectGameState_);
155        }
156
157        {
158            // time factor console command
159            FunctorMember<GSRoot>* functor = createFunctor(&GSRoot::setTimeFactor);
160            functor->setObject(this);
161            this->ccSetTimeFactor_ = createConsoleCommand(functor, "setTimeFactor");
162            CommandExecutor::addConsoleCommandShortcut(this->ccSetTimeFactor_).accessLevel(AccessLevel::Offline).defaultValue(0, 1.0);
163        }
164
165        {
166            // time factor console command
167            FunctorMember<GSRoot>* functor = createFunctor(&GSRoot::pause);
168            functor->setObject(this);
169            this->ccPause_ = createConsoleCommand(functor, "pause");
170            CommandExecutor::addConsoleCommandShortcut(this->ccPause_).accessLevel(AccessLevel::Offline);
171        }
172    }
173
174    void GSRoot::leave()
175    {
176        // destroy console commands
177        delete this->ccExit_;
178        delete this->ccSelectGameState_;
179
180        delete this->shell_;
181        delete this->tclThreadManager_;
182        delete this->tclBind_;
183
184        delete this->settings_;
185        delete this->luaBind_;
186
187        if (this->ccSetTimeFactor_)
188        {
189            delete this->ccSetTimeFactor_;
190            this->ccSetTimeFactor_ = 0;
191        }
192
193        if (this->ccPause_)
194        {
195            delete this->ccPause_;
196            this->ccPause_ = 0;
197        }
198    }
199
200    void GSRoot::ticked(const Clock& time)
201    {
202        uint64_t timeBeforeTick = time.getRealMicroseconds();
203
204        TclThreadManager::getInstance().tick(time.getDeltaTime());
205
206        for (ObjectList<TimerBase>::iterator it = ObjectList<TimerBase>::begin(); it; ++it)
207            it->tick(time);
208
209        /*** HACK *** HACK ***/
210        // Call the Tickable objects
211        float leveldt = time.getDeltaTime();
212        if (leveldt > 1.0f)
213        {
214            // just loaded
215            leveldt = 0.0f;
216        }
217        for (ObjectList<Tickable>::iterator it = ObjectList<Tickable>::begin(); it; ++it)
218            it->tick(leveldt * this->timeFactor_);
219        /*** HACK *** HACK ***/
220
221        uint64_t timeAfterTick = time.getRealMicroseconds();
222
223        // STATISTICS
224        assert(timeAfterTick - timeBeforeTick >= 0 );
225        statisticsTickInfo tickInfo = {timeAfterTick, timeAfterTick - timeBeforeTick};
226        statisticsTickTimes_.push_back(tickInfo);
227        assert(statisticsTickTimes_.back().tickLength==tickInfo.tickLength);
228
229        // Ticks GSGraphics or GSDedicated
230        this->tickChild(time);
231
232        // Note: tickInfo.tickLength is modified by GSGraphics or GSDedicated!
233        this->periodTickTime_ += tickInfo.tickLength;
234        if (timeAfterTick > statisticsStartTime_ + statisticsRefreshCycle_)
235        {
236            std::list<statisticsTickInfo>::iterator it = this->statisticsTickTimes_.begin();
237            assert(it != this->statisticsTickTimes_.end());
238            int64_t lastTime = timeAfterTick - statisticsAvgLength_;
239            if ((int64_t)it->tickTime < lastTime)
240            {
241                do
242                {
243                    assert(this->periodTickTime_ > it->tickLength);
244                    this->periodTickTime_ -= it->tickLength;
245                    ++it;
246                    assert(it != this->statisticsTickTimes_.end());
247                } while ((int64_t)it->tickTime < lastTime);
248                this->statisticsTickTimes_.erase(this->statisticsTickTimes_.begin(), it);
249            }
250
251            uint32_t framesPerPeriod = this->statisticsTickTimes_.size();
252            this->avgFPS_ = (float)framesPerPeriod / (timeAfterTick - this->statisticsTickTimes_.front().tickTime) * 1000000.0;
253            this->avgTickTime_ = (float)this->periodTickTime_ / framesPerPeriod / 1000.0;
254
255            statisticsStartTime_ = timeAfterTick;
256        }
257
258    }
259
260    /**
261    @note
262        The code of this function has been copied and adjusted from OGRE, an open source graphics engine.
263            (Object-oriented Graphics Rendering Engine)
264        For the latest info, see http://www.ogre3d.org/
265
266        Copyright (c) 2000-2008 Torus Knot Software Ltd
267
268        OGRE is licensed under the LGPL. For more info, see OGRE license.
269    */
270    void GSRoot::setThreadAffinity(unsigned int limitToCPU)
271    {
272#if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32
273        // Get the current process core mask
274        DWORD procMask;
275        DWORD sysMask;
276#  if _MSC_VER >= 1400 && defined (_M_X64)
277        GetProcessAffinityMask(GetCurrentProcess(), (PDWORD_PTR)&procMask, (PDWORD_PTR)&sysMask);
278#  else
279        GetProcessAffinityMask(GetCurrentProcess(), &procMask, &sysMask);
280#  endif
281
282        // If procMask is 0, consider there is only one core available
283        // (using 0 as procMask will cause an infinite loop below)
284        if (procMask == 0)
285            procMask = 1;
286
287        // if the core specified with limitToCPU is not available, take the lowest one
288        if (!(procMask & (1 << limitToCPU)))
289            limitToCPU = 0;
290
291        // Find the lowest core that this process uses and limitToCPU suggests
292        DWORD threadMask = 1;
293        while ((threadMask & procMask) == 0 || (threadMask < (1u << limitToCPU)))
294            threadMask <<= 1;
295
296        // Set affinity to the first core
297        SetThreadAffinityMask(GetCurrentThread(), threadMask);
298#endif
299    }
300
301    /**
302    @brief
303        Changes the speed of Orxonox
304    */
305    void GSRoot::setTimeFactor(float factor)
306    {
307        if (Core::isMaster())
308        {
309            if (!this->bPaused_)
310            {
311                TimeFactorListener::timefactor_s = factor;
312
313                for (ObjectList<TimeFactorListener>::iterator it = ObjectList<TimeFactorListener>::begin(); it != ObjectList<TimeFactorListener>::end(); ++it)
314                    it->changedTimeFactor(factor, this->timeFactor_);
315
316                this->timeFactor_ = factor;
317            }
318            else
319                this->timeFactorPauseBackup_ = factor;
320        }
321    }
322
323    void GSRoot::pause()
324    {
325        if (Core::isMaster())
326        {
327            if (!this->bPaused_)
328            {
329                this->timeFactorPauseBackup_ = this->timeFactor_;
330                this->setTimeFactor(0.0f);
331                this->bPaused_ = true;
332            }
333            else
334            {
335                this->bPaused_ = false;
336                this->setTimeFactor(this->timeFactorPauseBackup_);
337            }
338        }
339    }
340
341    ////////////////////////
342    // TimeFactorListener //
343    ////////////////////////
344    float TimeFactorListener::timefactor_s = 1.0f;
345
346    TimeFactorListener::TimeFactorListener()
347    {
348        RegisterRootObject(TimeFactorListener);
349    }
350}
Note: See TracBrowser for help on using the repository browser.