Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core2/src/orxonox/objects/Tickable.h @ 1001

Last change on this file since 1001 was 1001, checked in by landauf, 16 years ago

ok, be aware, here comes a big one. people with weak nerves should probably better look away or take some serious drugs.
this update includes partial and explicit class template specialization, partial and explicit specialized template function overloading, template meta programming and a simple typecast.
yeah right, a typecast. but let me explain the whole story from the beginning.

it all started with a simple problem: i had a double in a MultiType and wanted a float, but i always got 0. what was the problem? the conversion 'MultiType to anyting' was handled by the Converter class in util/Convert.h and the Converter was specialized for strings, multitypes, vectors and so on, but not for int, float, bool, …
so i've first wanted to implement a typecast as default, but this was a bad idea because it doesn't work for almost every generic type.
implementing an explicit specialization for every possible pair of primitives (did you ever happened to use an unsigned short? or a long double? no? ignorants :D) would have been a simple but ugly solution.
but there were other problems: if there's a rule to convert a string into anything and another rule to convert anything into an int - what happens if you want to convert a string into an int? compiler error! …ambiguous partial template specialization.
so i've spent days and nights to find a solution. this is my 5th try or so and i'm still really unsure if it works, but it's the first version i want to commit to have at least a backup.
if you're interested in looking at the code you better wait until i've cleaned up the whole thing, it's a real mess. and i want to do further tests, but now i'm tired. good night ;)

File size: 2.8 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *
4 *
5 *   License notice:
6 *
7 *   This program is free software; you can redistribute it and/or
8 *   modify it under the terms of the GNU General Public License
9 *   as published by the Free Software Foundation; either version 2
10 *   of the License, or (at your option) any later version.
11 *
12 *   This program is distributed in the hope that it will be useful,
13 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *   GNU General Public License for more details.
16 *
17 *   You should have received a copy of the GNU General Public License
18 *   along with this program; if not, write to the Free Software
19 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 *   Author:
22 *      Fabian 'x3n' Landau
23 *   Co-authors:
24 *      ...
25 *
26 */
27
28/*!
29    @file Tickable.h
30    @brief Definition of the Tickable interface.
31
32    The Tickable interface provides a tick(dt) function, that gets called every frame.
33    float dt is the time since the last frame in seconds.
34
35    Attention:
36    Classes derived from a Tickable that want to have a tick(dt) function on their part, MUST call the
37    parent::tick(dt) function explicit in their implementation of tick(dt) because it's a virtual function.
38*/
39
40#ifndef _Tickable_H__
41#define _Tickable_H__
42
43#include <OgreFrameListener.h>
44
45#include "../OrxonoxPrereqs.h"
46#include "core/OrxonoxClass.h"
47
48namespace orxonox
49{
50    class TickFrameListener; // Forward declaration
51
52    void slomo(float factor);
53    void setTimeFactor(float factor = 1.0);
54    float getTimeFactor();
55
56    //! The Tickable interface provides a tick(dt) function, that gets called every frame.
57    class _OrxonoxExport Tickable : virtual public OrxonoxClass
58    {
59        public:
60            /**
61                @brief Gets called every frame.
62                @param dt The time since the last frame in seconds
63            */
64            virtual void tick(float dt) = 0;
65
66        protected:
67            Tickable();
68    };
69
70    //! The TickFrameListener calls the tick(dt) function of all Tickables every frame.
71    class _OrxonoxExport TickFrameListener : public Ogre::FrameListener
72    {
73        private:
74            /** @brief Gets called before a frame gets rendered. */
75            bool frameStarted(const Ogre::FrameEvent &evt)
76            {
77                float dt = evt.timeSinceLastFrame * getTimeFactor();
78                // Iterate through all Tickables and call their tick(dt) function
79                for (Iterator<Tickable> it = ObjectList<Tickable>::start(); it; )
80                    (it++)->tick(dt);
81
82                return FrameListener::frameStarted(evt);
83            }
84    };
85}
86
87#endif /* _Tickable_H__ */
Note: See TracBrowser for help on using the repository browser.