Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core4/src/core/OrxonoxClass.h @ 3276

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

Added a few more generic parts to the input library:

  • Created Mouse and Keyboard to join JoyStick and provided them with a templated base class (InputDeviceTemplated) that does most of the work (reduces quite some redundancy)
  • Created InputPrereqs.h from InputInterfaces.h and destroyed the latter
  • Exported InputHandler to its own file and replaced KeyHandler, MouseHandler and JoyStickHandler with the single InputHandler.
  • Deleted the SimpleInputState: There is only one class now which fulfills all our needs.

In general there is now less code and the code itself has more 'pluses'. However I haven't really thrown away any feature at all.

  • Property svn:eol-style set to native
File size: 5.1 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 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30    @file
31    @brief Declaration of the OrxonoxClass Class.
32
33    All objects and interfaces of the game-logic (not the engine) are derived from OrxonoxClass.
34    It stores the Identifier and the MetaObjectList and has all needed functions to create and use the class-hierarchy.
35*/
36
37#ifndef _OrxonoxClass_H__
38#define _OrxonoxClass_H__
39
40#include "CorePrereqs.h"
41#include <set>
42#include <vector>
43
44namespace orxonox
45{
46    //! The class all objects and interfaces of the game-logic (not the engine) are derived from.
47    /**
48        The BaseObject and Interfaces are derived with 'virtual public OrxonoxClass' from OrxonoxClass.
49        OrxonoxClass is needed to create the class-hierarchy at startup and to store the Identifier and the MetaObjectList.
50    */
51    class _CoreExport OrxonoxClass
52    {
53        template <class T>
54        friend class ClassIdentifier;
55
56        public:
57            OrxonoxClass();
58            virtual ~OrxonoxClass();
59
60            /** @brief Function to collect the SetConfigValue-macro calls. */
61            void setConfigValues() {};
62
63            /** @brief Returns the Identifier of the object. @return The Identifier */
64            inline Identifier* getIdentifier() const { return this->identifier_; }
65
66            bool isA(const Identifier* identifier);
67            bool isExactlyA(const Identifier* identifier);
68            bool isChildOf(const Identifier* identifier);
69            bool isDirectChildOf(const Identifier* identifier);
70            bool isParentOf(const Identifier* identifier);
71            bool isDirectParentOf(const Identifier* identifier);
72
73            template <class B> bool isA(const SubclassIdentifier<B>* identifier);
74            template <class B> bool isExactlyA(const SubclassIdentifier<B>* identifier);
75            template <class B> bool isChildOf(const SubclassIdentifier<B>* identifier);
76            template <class B> bool isDirectChildOf(const SubclassIdentifier<B>* identifier);
77            template <class B> bool isParentOf(const SubclassIdentifier<B>* identifier);
78            template <class B> bool isDirectParentOf(const SubclassIdentifier<B>* identifier);
79
80            template <class B> bool isA(const SubclassIdentifier<B> identifier);
81            template <class B> bool isExactlyA(const SubclassIdentifier<B> identifier);
82            template <class B> bool isChildOf(const SubclassIdentifier<B> identifier);
83            template <class B> bool isDirectChildOf(const SubclassIdentifier<B> identifier);
84            template <class B> bool isParentOf(const SubclassIdentifier<B> identifier);
85            template <class B> bool isDirectParentOf(const SubclassIdentifier<B> identifier);
86
87            bool isA(const OrxonoxClass* object);
88            bool isExactlyA(const OrxonoxClass* object);
89            bool isChildOf(const OrxonoxClass* object);
90            bool isDirectChildOf(const OrxonoxClass* object);
91            bool isParentOf(const OrxonoxClass* object);
92            bool isDirectParentOf(const OrxonoxClass* object);
93
94            /**
95            @brief
96                Returns a valid pointer of any derived type that is
97                registered in the class hierarchy.
98            @return
99                Returns NULL if the no pointer was found.
100            */
101            template <class T>
102            FORCEINLINE T* getDerivedPointer(unsigned int classID) const
103            {
104                for (int i = this->objectPointers_.size() - 1; i >= 0; --i)
105                {
106                    if (this->objectPointers_[i].first == classID)
107                        return reinterpret_cast<T*>(this->objectPointers_[i].second);
108                }
109                return NULL;
110            }
111
112        private:
113            Identifier* identifier_;                   //!< The Identifier of the object
114            std::set<const Identifier*>* parents_;     //!< List of all parents of the object
115            MetaObjectList* metaList_;                 //!< MetaObjectList, containing all ObjectLists and ObjectListElements the object is registered in
116            //! 'Fast map' that holds this-pointers of all derived types
117            std::vector<std::pair<unsigned int, void*> > objectPointers_;
118    };
119}
120
121#endif /* _OrxonoxClass_H__ */
Note: See TracBrowser for help on using the repository browser.