/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Fabian 'x3n' Landau * Co-authors: * ... * */ /** @defgroup OrxonoxClass OrxonoxClass @ingroup Class */ /** @file @ingroup Class OrxonoxClass @brief Declaration of OrxonoxClass, the base class of all objects and interfaces in Orxonox. All objects and interfaces of the game-logic (not the engine) are derived from OrxonoxClass. It stores the Identifier and the MetaObjectList and has all needed functions to create and use the class-hierarchy. */ #ifndef _OrxonoxClass_H__ #define _OrxonoxClass_H__ #include "CorePrereqs.h" #include "Super.h" #include #include /** @def CCOUT Acts almost exactly like COUT(x), but prepends "ClassName: " */ #define CCOUT(level) \ COUT(level) << this->getIdentifier()->getName() << ": " namespace orxonox { /** @brief The class all objects and interfaces of the game-logic (not the engine) are derived from. The BaseObject and Interfaces are derived with @c virtual @c public @c OrxonoxClass from OrxonoxClass. OrxonoxClass is needed to create the class-hierarchy at startup and to store the Identifier and the MetaObjectList, as well as to provide an interface for SmartPtr and WeakPtr. */ class _CoreExport OrxonoxClass { template friend class ClassIdentifier; template friend class SmartPtr; template friend class WeakPtr; public: OrxonoxClass(); virtual ~OrxonoxClass(); void destroy(); void unregisterObject(); /// Function to collect the SetConfigValue-macro calls. void setConfigValues() {}; /// Returns the Identifier of the object. inline Identifier* getIdentifier() const { return this->identifier_; } bool isA(const Identifier* identifier); bool isExactlyA(const Identifier* identifier); bool isChildOf(const Identifier* identifier); bool isDirectChildOf(const Identifier* identifier); bool isParentOf(const Identifier* identifier); bool isDirectParentOf(const Identifier* identifier); /// Returns true if the object's class is of the given type or a derivative. template inline bool isA(const SubclassIdentifier* identifier) { return this->isA(*identifier); } /// Returns true if the object's class is exactly of the given type. template inline bool isExactlyA(const SubclassIdentifier* identifier) { return this->isExactlyA(*identifier); } /// Returns true if the object's class is a child of the given type. template inline bool isChildOf(const SubclassIdentifier* identifier) { return this->isChildOf(*identifier); } /// Returns true if the object's class is a direct child of the given type. template inline bool isDirectChildOf(const SubclassIdentifier* identifier) { return this->isDirectChildOf(*identifier); } /// Returns true if the object's class is a parent of the given type. template inline bool isParentOf(const SubclassIdentifier* identifier) { return this->isParentOf(*identifier); } /// Returns true if the object's class is a direct parent of the given type. template inline bool isDirectParentOf(const SubclassIdentifier* identifier) { return this->isDirectParentOf(*identifier); } bool isA(const OrxonoxClass* object); bool isExactlyA(const OrxonoxClass* object); bool isChildOf(const OrxonoxClass* object); bool isDirectChildOf(const OrxonoxClass* object); bool isParentOf(const OrxonoxClass* object); bool isDirectParentOf(const OrxonoxClass* object); virtual void clone(OrxonoxClass*& item) {} /// Returns the number of @ref orxonox::SmartPtr "smart pointers" that point to this object. inline unsigned int getReferenceCount() const { return this->referenceCount_; } /** @brief Returns a valid pointer of any derived type that is registered in the class hierarchy. @return Returns NULL if the no pointer was found. */ FORCEINLINE void* getDerivedPointer(unsigned int classID) { for (int i = this->objectPointers_.size() - 1; i >= 0; --i) { if (this->objectPointers_[i].first == classID) return this->objectPointers_[i].second; } return NULL; } /// Version of getDerivedPointer with template template FORCEINLINE T* getDerivedPointer(unsigned int classID) { return static_cast(this->getDerivedPointer(classID)); } /// Const version of getDerivedPointer with template template FORCEINLINE const T* getDerivedPointer(unsigned int classID) const { return const_cast(this)->getDerivedPointer(classID); } protected: /// 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. virtual void preDestroy() {} private: /// Increments the reference counter (for smart pointers). inline void incrementReferenceCount() { ++this->referenceCount_; } /// Decrements the reference counter (for smart pointers). inline void decrementReferenceCount() { --this->referenceCount_; if (this->referenceCount_ == 0 && this->requestedDestruction_) this->destroy(); } /// Register a weak pointer which points to this object. template inline void registerWeakPtr(WeakPtr* pointer) { this->weakPointers_.insert(reinterpret_cast*>(pointer)); } /// Unegister a weak pointer which pointed to this object before. template inline void unregisterWeakPtr(WeakPtr* pointer) { this->weakPointers_.erase(reinterpret_cast*>(pointer)); } Identifier* identifier_; //!< The Identifier of the object std::set* parents_; //!< List of all parents of the object MetaObjectList* metaList_; //!< MetaObjectList, containing all ObjectLists and ObjectListElements the object is registered in int referenceCount_; //!< Counts the references from smart pointers to this object bool requestedDestruction_; //!< Becomes true after someone called delete on this object std::set*> weakPointers_; //!< All weak pointers which point to this object (and like to get notified if it dies) /// 'Fast map' that holds this-pointers of all derived types std::vector > objectPointers_; }; SUPER_FUNCTION(11, OrxonoxClass, clone, false); } #endif /* _OrxonoxClass_H__ */