[1505] | 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 | /** |
---|
[7401] | 30 | @defgroup OrxonoxClass OrxonoxClass |
---|
| 31 | @ingroup Class |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | /** |
---|
[2171] | 35 | @file |
---|
[7401] | 36 | @ingroup Class OrxonoxClass |
---|
| 37 | @brief Declaration of OrxonoxClass, the base class of all objects and interfaces in Orxonox. |
---|
[1505] | 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" |
---|
[6524] | 47 | #include "Super.h" |
---|
[3327] | 48 | |
---|
[1505] | 49 | #include <set> |
---|
[3327] | 50 | #include <vector> |
---|
[1505] | 51 | |
---|
[6105] | 52 | /** |
---|
| 53 | @def CCOUT |
---|
| 54 | Acts almost exactly like COUT(x), but prepends "ClassName: " |
---|
| 55 | */ |
---|
| 56 | #define CCOUT(level) \ |
---|
| 57 | COUT(level) << this->getIdentifier()->getName() << ": " |
---|
| 58 | |
---|
[1505] | 59 | namespace orxonox |
---|
| 60 | { |
---|
| 61 | /** |
---|
[7401] | 62 | @brief The class all objects and interfaces of the game-logic (not the engine) are derived from. |
---|
| 63 | |
---|
| 64 | The BaseObject and Interfaces are derived with @c virtual @c public @c OrxonoxClass from OrxonoxClass. |
---|
| 65 | OrxonoxClass is needed to create the class-hierarchy at startup and to store the Identifier and the |
---|
| 66 | MetaObjectList, as well as to provide an interface for SmartPtr and WeakPtr. |
---|
[1505] | 67 | */ |
---|
| 68 | class _CoreExport OrxonoxClass |
---|
| 69 | { |
---|
[3325] | 70 | template <class T> |
---|
| 71 | friend class ClassIdentifier; |
---|
| 72 | |
---|
[5929] | 73 | template <class T> |
---|
| 74 | friend class SmartPtr; |
---|
| 75 | |
---|
| 76 | template <class T> |
---|
| 77 | friend class WeakPtr; |
---|
| 78 | |
---|
[1505] | 79 | public: |
---|
| 80 | OrxonoxClass(); |
---|
| 81 | virtual ~OrxonoxClass(); |
---|
| 82 | |
---|
[5929] | 83 | void destroy(); |
---|
[6417] | 84 | void unregisterObject(); |
---|
[5929] | 85 | |
---|
[7401] | 86 | /// Function to collect the SetConfigValue-macro calls. |
---|
[1505] | 87 | void setConfigValues() {}; |
---|
| 88 | |
---|
[7401] | 89 | /// Returns the Identifier of the object. |
---|
[1505] | 90 | inline Identifier* getIdentifier() const { return this->identifier_; } |
---|
| 91 | |
---|
| 92 | bool isA(const Identifier* identifier); |
---|
| 93 | bool isExactlyA(const Identifier* identifier); |
---|
| 94 | bool isChildOf(const Identifier* identifier); |
---|
| 95 | bool isDirectChildOf(const Identifier* identifier); |
---|
| 96 | bool isParentOf(const Identifier* identifier); |
---|
| 97 | bool isDirectParentOf(const Identifier* identifier); |
---|
| 98 | |
---|
[7401] | 99 | /// Returns true if the object's class is of the given type or a derivative. |
---|
[5929] | 100 | template <class B> inline bool isA(const SubclassIdentifier<B>* identifier) |
---|
| 101 | { return this->isA(*identifier); } |
---|
[7401] | 102 | /// Returns true if the object's class is exactly of the given type. |
---|
[5929] | 103 | template <class B> inline bool isExactlyA(const SubclassIdentifier<B>* identifier) |
---|
| 104 | { return this->isExactlyA(*identifier); } |
---|
[7401] | 105 | /// Returns true if the object's class is a child of the given type. |
---|
[5929] | 106 | template <class B> inline bool isChildOf(const SubclassIdentifier<B>* identifier) |
---|
| 107 | { return this->isChildOf(*identifier); } |
---|
[7401] | 108 | /// Returns true if the object's class is a direct child of the given type. |
---|
[5929] | 109 | template <class B> inline bool isDirectChildOf(const SubclassIdentifier<B>* identifier) |
---|
| 110 | { return this->isDirectChildOf(*identifier); } |
---|
[7401] | 111 | /// Returns true if the object's class is a parent of the given type. |
---|
[5929] | 112 | template <class B> inline bool isParentOf(const SubclassIdentifier<B>* identifier) |
---|
| 113 | { return this->isParentOf(*identifier); } |
---|
[7401] | 114 | /// Returns true if the object's class is a direct parent of the given type. |
---|
[5929] | 115 | template <class B> inline bool isDirectParentOf(const SubclassIdentifier<B>* identifier) |
---|
| 116 | { return this->isDirectParentOf(*identifier); } |
---|
[1505] | 117 | |
---|
| 118 | bool isA(const OrxonoxClass* object); |
---|
| 119 | bool isExactlyA(const OrxonoxClass* object); |
---|
| 120 | bool isChildOf(const OrxonoxClass* object); |
---|
| 121 | bool isDirectChildOf(const OrxonoxClass* object); |
---|
| 122 | bool isParentOf(const OrxonoxClass* object); |
---|
| 123 | bool isDirectParentOf(const OrxonoxClass* object); |
---|
[7163] | 124 | |
---|
[6524] | 125 | virtual void clone(OrxonoxClass*& item) {} |
---|
[1505] | 126 | |
---|
[7401] | 127 | /// Returns the number of @ref orxonox::SmartPtr "smart pointers" that point to this object. |
---|
[5929] | 128 | inline unsigned int getReferenceCount() const |
---|
| 129 | { return this->referenceCount_; } |
---|
| 130 | |
---|
[3325] | 131 | /** |
---|
| 132 | @brief |
---|
| 133 | Returns a valid pointer of any derived type that is |
---|
| 134 | registered in the class hierarchy. |
---|
| 135 | @return |
---|
| 136 | Returns NULL if the no pointer was found. |
---|
| 137 | */ |
---|
[5929] | 138 | FORCEINLINE void* getDerivedPointer(unsigned int classID) |
---|
[3325] | 139 | { |
---|
| 140 | for (int i = this->objectPointers_.size() - 1; i >= 0; --i) |
---|
| 141 | { |
---|
| 142 | if (this->objectPointers_[i].first == classID) |
---|
[5929] | 143 | return this->objectPointers_[i].second; |
---|
[3325] | 144 | } |
---|
| 145 | return NULL; |
---|
| 146 | } |
---|
[5929] | 147 | |
---|
[7401] | 148 | /// Version of getDerivedPointer with template |
---|
[5929] | 149 | template <class T> FORCEINLINE T* getDerivedPointer(unsigned int classID) |
---|
| 150 | { return static_cast<T*>(this->getDerivedPointer(classID)); } |
---|
[7401] | 151 | /// Const version of getDerivedPointer with template |
---|
[5929] | 152 | template <class T> FORCEINLINE const T* getDerivedPointer(unsigned int classID) const |
---|
| 153 | { return const_cast<OrxonoxClass*>(this)->getDerivedPointer<T>(classID); } |
---|
| 154 | |
---|
[6417] | 155 | protected: |
---|
[7401] | 156 | /// 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. |
---|
[6417] | 157 | virtual void preDestroy() {} |
---|
| 158 | |
---|
[5929] | 159 | private: |
---|
[7401] | 160 | /// Increments the reference counter (for smart pointers). |
---|
[5929] | 161 | inline void incrementReferenceCount() |
---|
| 162 | { ++this->referenceCount_; } |
---|
[7401] | 163 | /// Decrements the reference counter (for smart pointers). |
---|
[5929] | 164 | inline void decrementReferenceCount() |
---|
[6417] | 165 | { |
---|
| 166 | --this->referenceCount_; |
---|
| 167 | if (this->referenceCount_ == 0 && this->requestedDestruction_) |
---|
| 168 | this->destroy(); |
---|
| 169 | } |
---|
| 170 | |
---|
[7401] | 171 | /// Register a weak pointer which points to this object. |
---|
[3333] | 172 | template <class T> |
---|
[5929] | 173 | inline void registerWeakPtr(WeakPtr<T>* pointer) |
---|
| 174 | { this->weakPointers_.insert(reinterpret_cast<WeakPtr<OrxonoxClass>*>(pointer)); } |
---|
[7401] | 175 | /// Unegister a weak pointer which pointed to this object before. |
---|
[5929] | 176 | template <class T> |
---|
| 177 | inline void unregisterWeakPtr(WeakPtr<T>* pointer) |
---|
| 178 | { this->weakPointers_.erase(reinterpret_cast<WeakPtr<OrxonoxClass>*>(pointer)); } |
---|
[3325] | 179 | |
---|
[7401] | 180 | Identifier* identifier_; //!< The Identifier of the object |
---|
| 181 | std::set<const Identifier*>* parents_; //!< List of all parents of the object |
---|
| 182 | MetaObjectList* metaList_; //!< MetaObjectList, containing all ObjectLists and ObjectListElements the object is registered in |
---|
| 183 | int referenceCount_; //!< Counts the references from smart pointers to this object |
---|
| 184 | bool requestedDestruction_; //!< Becomes true after someone called delete on this object |
---|
| 185 | std::set<WeakPtr<OrxonoxClass>*> weakPointers_; //!< All weak pointers which point to this object (and like to get notified if it dies) |
---|
[5929] | 186 | |
---|
[7401] | 187 | /// 'Fast map' that holds this-pointers of all derived types |
---|
[3325] | 188 | std::vector<std::pair<unsigned int, void*> > objectPointers_; |
---|
[1505] | 189 | }; |
---|
[7163] | 190 | |
---|
| 191 | SUPER_FUNCTION(11, OrxonoxClass, clone, false); |
---|
| 192 | |
---|
[1505] | 193 | } |
---|
| 194 | |
---|
| 195 | #endif /* _OrxonoxClass_H__ */ |
---|