Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core6/src/libraries/core/OrxonoxClass.h @ 9561

Last change on this file since 9561 was 9561, checked in by landauf, 11 years ago

OrxonoxClass now takes a 'Context' object as constructor argument. Not yet enforced nor used

  • Property svn:eol-style set to native
File size: 9.0 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    @defgroup OrxonoxClass OrxonoxClass
31    @ingroup Class
32*/
33
34/**
35    @file
36    @ingroup Class OrxonoxClass
37    @brief Declaration of OrxonoxClass, the base class of all objects and interfaces in Orxonox.
38
39    All objects and interfaces of the game-logic (not the engine) are derived from OrxonoxClass.
40    It stores the Identifier and the MetaObjectList and has all needed functions to create and use the class-hierarchy.
41*/
42
43#ifndef _OrxonoxClass_H__
44#define _OrxonoxClass_H__
45
46#include "CorePrereqs.h"
47
48#include <set>
49#include <vector>
50#include "Super.h"
51
52namespace orxonox
53{
54    /**
55        @brief The class all objects and interfaces of the game-logic (not the engine) are derived from.
56
57        The BaseObject and Interfaces are derived with @c virtual @c public @c OrxonoxClass from OrxonoxClass.
58        OrxonoxClass is needed to create the class-hierarchy at startup and to store the Identifier and the
59        MetaObjectList, as well as to provide an interface for SmartPtr and WeakPtr.
60    */
61    class _CoreExport OrxonoxClass
62    {
63        template <class T>
64        friend class ClassIdentifier;
65
66        template <class T>
67        friend class SmartPtr;
68
69        friend class DestructionListener;
70
71        public:
72            OrxonoxClass(Context* context = NULL);
73            virtual ~OrxonoxClass();
74
75            void destroy();
76            void unregisterObject();
77
78            /// Function to collect the SetConfigValue-macro calls.
79            void setConfigValues() {};
80
81            /// Returns the Identifier of the object.
82            inline Identifier* getIdentifier() const { return this->identifier_; }
83
84            /// Returns the object's Context.
85            inline Context* getContext() const { return this->context_; }
86
87            bool isA(const Identifier* identifier);
88            bool isExactlyA(const Identifier* identifier);
89            bool isChildOf(const Identifier* identifier);
90            bool isDirectChildOf(const Identifier* identifier);
91            bool isParentOf(const Identifier* identifier);
92            bool isDirectParentOf(const Identifier* identifier);
93
94            /// Returns true if the object's class is of the given type or a derivative.
95            template <class B> inline bool isA(const SubclassIdentifier<B>* identifier)
96                { return this->isA(*identifier); }
97            /// Returns true if the object's class is exactly of the given type.
98            template <class B> inline bool isExactlyA(const SubclassIdentifier<B>* identifier)
99                { return this->isExactlyA(*identifier); }
100            /// Returns true if the object's class is a child of the given type.
101            template <class B> inline bool isChildOf(const SubclassIdentifier<B>* identifier)
102                { return this->isChildOf(*identifier); }
103            /// Returns true if the object's class is a direct child of the given type.
104            template <class B> inline bool isDirectChildOf(const SubclassIdentifier<B>* identifier)
105                { return this->isDirectChildOf(*identifier); }
106            /// Returns true if the object's class is a parent of the given type.
107            template <class B> inline bool isParentOf(const SubclassIdentifier<B>* identifier)
108                { return this->isParentOf(*identifier); }
109            /// Returns true if the object's class is a direct parent of the given type.
110            template <class B> inline bool isDirectParentOf(const SubclassIdentifier<B>* identifier)
111                { return this->isDirectParentOf(*identifier); }
112
113            bool isA(const OrxonoxClass* object);
114            bool isExactlyA(const OrxonoxClass* object);
115            bool isChildOf(const OrxonoxClass* object);
116            bool isDirectChildOf(const OrxonoxClass* object);
117            bool isParentOf(const OrxonoxClass* object);
118            bool isDirectParentOf(const OrxonoxClass* object);
119
120            /// Returns the number of @ref orxonox::SmartPtr "smart pointers" that point to this object.
121            inline unsigned int getReferenceCount() const
122                { return this->referenceCount_; }
123
124            /**
125            @brief
126                Returns a valid pointer of any derived type that is
127                registered in the class hierarchy.
128            @return
129                Returns NULL if the no pointer was found.
130            */
131            ORX_FORCEINLINE void* getDerivedPointer(unsigned int classID)
132            {
133                for (int i = this->objectPointers_.size() - 1; i >= 0; --i)
134                {
135                    if (this->objectPointers_[i].first == classID)
136                        return this->objectPointers_[i].second;
137                }
138                return NULL;
139            }
140
141            /// Version of getDerivedPointer with template
142            template <class T> ORX_FORCEINLINE T* getDerivedPointer(unsigned int classID)
143            {   return static_cast<T*>(this->getDerivedPointer(classID));   }
144            /// Const version of getDerivedPointer with template
145            template <class T> ORX_FORCEINLINE const T* getDerivedPointer(unsigned int classID) const
146            {   return const_cast<OrxonoxClass*>(this)->getDerivedPointer<T>(classID);   }
147
148        protected:
149            /// This virtual function is called if destroy() is called and no SmartPtr points to this object. Used in some cases to create a new SmartPtr to prevent destruction.
150            virtual void preDestroy() {}
151
152        private:
153            /// Increments the reference counter (for smart pointers).
154            inline void incrementReferenceCount()
155                { ++this->referenceCount_; }
156            /// Decrements the reference counter (for smart pointers).
157            inline void decrementReferenceCount()
158            {
159                --this->referenceCount_;
160                if (this->referenceCount_ == 0 && this->requestedDestruction_)
161                    this->destroy();
162            }
163
164            /// Register a destruction listener (for example a weak pointer which points to this object).
165            inline void registerDestructionListener(DestructionListener* pointer)
166                { this->destructionListeners_.insert(pointer); }
167            /// Unegister a destruction listener (for example a weak pointer which pointed to this object before).
168            inline void unregisterDestructionListener(DestructionListener* pointer)
169                { this->destructionListeners_.erase(pointer); }
170
171            Identifier* identifier_;                                //!< The Identifier of the object
172            Context* context_;                                      //!< The object's context
173            std::set<const Identifier*>* parents_;                  //!< List of all parents of the object
174            MetaObjectList* metaList_;                              //!< MetaObjectList, containing all ObjectLists and ObjectListElements the object is registered in
175            int referenceCount_;                                    //!< Counts the references from smart pointers to this object
176            bool requestedDestruction_;                             //!< Becomes true after someone called delete on this object
177            std::set<DestructionListener*> destructionListeners_;   //!< All destruction listeners (for example weak pointers which point to this object and like to get notified if it dies)
178
179            /// 'Fast map' that holds this-pointers of all derived types
180            std::vector<std::pair<unsigned int, void*> > objectPointers_;
181    };
182
183    /**
184        @brief This listener is used to inform weak pointers if an object of type OrxonoxClass gets destroyed.
185    */
186    class _CoreExport DestructionListener
187    {
188        friend class OrxonoxClass;
189
190        protected:
191            virtual ~DestructionListener() {}
192
193            inline void registerAsDestructionListener(OrxonoxClass* object)
194                { if (object) { object->registerDestructionListener(this); } }
195            inline void unregisterAsDestructionListener(OrxonoxClass* object)
196                { if (object) { object->unregisterDestructionListener(this); } }
197
198            virtual void objectDeleted() = 0;
199    };
200
201}
202
203#endif /* _OrxonoxClass_H__ */
Note: See TracBrowser for help on using the repository browser.