[4591] | 1 | /*! |
---|
[5039] | 2 | * @file base_object.h |
---|
[9406] | 3 | * @brief Definition of the BaseObject class. |
---|
| 4 | * |
---|
| 5 | * This is a global handler for all classes Object and Class names |
---|
| 6 | * |
---|
| 7 | * BaseObject is the class, that handles object registration and |
---|
| 8 | * is the only write-access member of ClassList, where the Objects |
---|
| 9 | * References are stored. |
---|
| 10 | */ |
---|
[4470] | 11 | |
---|
[3302] | 12 | |
---|
[9406] | 13 | #ifndef __BASE_OBJECT_H_ |
---|
| 14 | #define __BASE_OBJECT_H_ |
---|
[3302] | 15 | |
---|
[9869] | 16 | #include "object_list.h" |
---|
| 17 | #include "util/sigslot/slot.h" |
---|
[3302] | 18 | |
---|
[8035] | 19 | #include <string> |
---|
[3302] | 20 | |
---|
[6517] | 21 | class TiXmlNode; |
---|
[4436] | 22 | class TiXmlElement; |
---|
[6280] | 23 | class ClassList; |
---|
[4436] | 24 | |
---|
[4382] | 25 | //! A class all other classes are derived from |
---|
[9406] | 26 | class BaseObject : public sigslot::has_slots<> |
---|
[8350] | 27 | { |
---|
[9869] | 28 | //! Declare an ObjectList for this Class. |
---|
| 29 | ObjectListDeclaration(BaseObject); |
---|
[8350] | 30 | public: |
---|
| 31 | BaseObject (const std::string& objectName = ""); |
---|
[7779] | 32 | |
---|
[3531] | 33 | virtual ~BaseObject (); |
---|
[3302] | 34 | |
---|
[6512] | 35 | virtual void loadParams(const TiXmlElement* root); |
---|
[7221] | 36 | void setName (const std::string& newName); |
---|
[5113] | 37 | /** returns the Name of this Object */ |
---|
[9406] | 38 | inline const std::string& getName() const { return this->objectName; }; |
---|
| 39 | /** returns the Name of this Object as a C-compliant string (const char*) */ |
---|
| 40 | inline const char* getCName() const { return this->objectName.c_str(); }; |
---|
[6587] | 41 | /** @returns the XML-Element with whicht this Object was loaded */ |
---|
| 42 | inline TiXmlNode* getXmlElem() const { return this->xmlElem; }; |
---|
[4318] | 43 | |
---|
[9869] | 44 | // /** @returns the className of the corresponding Object */ |
---|
| 45 | //inline const std::string& getClassName() const { return this->className; } |
---|
[9406] | 46 | /** @returns the className of the corresponding Object as a C-compliant string (const char*) */ |
---|
[9869] | 47 | inline const char* getClassCName() const { return _classes.front()._objectList->name().c_str(); }; |
---|
| 48 | /** @returns the ClassName of the Topmost Object of the ClassStack */ |
---|
| 49 | inline const std::string& getClassName() const { return _classes.front()._objectList->name(); }; |
---|
[3302] | 50 | |
---|
[9869] | 51 | /** @returns the ClassID of this Object */ |
---|
| 52 | inline const ClassID& getClassID() const { return _classes.front()._objectList->identity(); } |
---|
| 53 | /** @returns the ID of the Topmost object of the ClassStack */ |
---|
| 54 | inline const int& getLeafClassID() const { return _classes.front()._objectList->identity().id(); } |
---|
[4470] | 55 | |
---|
[9869] | 56 | bool isA(const ObjectListBase& objectList) const; |
---|
| 57 | bool isA(const ClassID& classID) const; |
---|
| 58 | bool isA(int classID) const; |
---|
| 59 | bool isA(const std::string& className) const; |
---|
| 60 | |
---|
| 61 | void listInheritance() const; |
---|
| 62 | |
---|
[6077] | 63 | /** @param classID comparer for a ClassID @returns true on match, false otherwise */ |
---|
[9869] | 64 | bool operator==(int classID) const { return this->isA(classID); }; |
---|
| 65 | /** @param objectName: the name to check. * @returns true on match, false otherwise. */ |
---|
| 66 | bool operator==(const std::string& objectName) const { return this->objectName == objectName;}; |
---|
[5626] | 67 | |
---|
[8350] | 68 | protected: |
---|
[9869] | 69 | template<class T> void registerObject(T* object, ObjectList<T>& list); |
---|
[4539] | 70 | |
---|
[8350] | 71 | protected: |
---|
| 72 | std::string objectName; //!< The name of this object |
---|
[6280] | 73 | |
---|
[8350] | 74 | private: |
---|
| 75 | |
---|
[9869] | 76 | TiXmlNode* xmlElem; //!< The XML Element with wich this Object was loaded(saved). |
---|
[8350] | 77 | |
---|
[9869] | 78 | ////////////////////////////// |
---|
| 79 | //// Type Definition Part //// |
---|
| 80 | ////////////////////////////// |
---|
| 81 | //! A ClassEntry so we can store Classes inside of Objects |
---|
| 82 | struct ClassEntry |
---|
| 83 | { |
---|
| 84 | /** Simple Constuctor @param objectList the ObjectList, @param iterator the (intrusive) Iterator inside of the ObjectList */ |
---|
| 85 | inline ClassEntry (ObjectListBase* objectList, ObjectListBase::IteratorBase* iterator) : _objectList(objectList), _iterator(iterator) {} |
---|
| 86 | ObjectListBase* _objectList; //!< An ObjectList this Object is part of |
---|
| 87 | ObjectListBase::IteratorBase* _iterator; //!< An iterator pointing to the position of the Object inside of the List. |
---|
| 88 | }; |
---|
| 89 | typedef std::list<ClassEntry> ClassEntries; //!< Type definition for the List. |
---|
| 90 | |
---|
| 91 | std::string className; //!< the name of the class |
---|
| 92 | ClassEntries _classes; //!< All Classes this object is part of. |
---|
[3302] | 93 | }; |
---|
| 94 | |
---|
[9869] | 95 | |
---|
| 96 | /** |
---|
| 97 | * @brief Registeres an Object of Type T to objectList |
---|
| 98 | * @param object The Object to append to the objectList. |
---|
| 99 | * @param objectList The ObjectList to append the Object to. |
---|
| 100 | * |
---|
| 101 | * This function is essential to integrate objects into their designated ObjectList. |
---|
| 102 | * Remember if you do not want objects to be stored in Lists (less overhead), |
---|
| 103 | * do not attempt to call this function. |
---|
| 104 | */ |
---|
| 105 | template<class T> |
---|
| 106 | inline void BaseObject::registerObject(T* object, ObjectList<T>& objectList) |
---|
| 107 | { |
---|
| 108 | this->_classes.push_front(ClassEntry(&objectList, objectList.registerObject(object))); |
---|
| 109 | } |
---|
| 110 | |
---|
[9406] | 111 | #endif /* __BASE_OBJECT_H_ */ |
---|