[4591] | 1 | /*! |
---|
[5039] | 2 | * @file base_object.h |
---|
[4836] | 3 | * Definition of the base object class. |
---|
[4470] | 4 | |
---|
| 5 | This is a global handler for all classes. |
---|
[3302] | 6 | */ |
---|
| 7 | |
---|
| 8 | |
---|
| 9 | #ifndef _BASE_OBJECT_H |
---|
| 10 | #define _BASE_OBJECT_H |
---|
| 11 | |
---|
[4742] | 12 | #include "class_id.h" |
---|
[5511] | 13 | #include "debug.h" |
---|
[4436] | 14 | #ifndef NULL |
---|
[5279] | 15 | #define NULL 0 //!< NULL |
---|
[4436] | 16 | #endif |
---|
[3302] | 17 | |
---|
[7221] | 18 | #include <string> |
---|
[6341] | 19 | #include "stdincl.h" |
---|
| 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 |
---|
[3302] | 26 | class BaseObject { |
---|
| 27 | |
---|
| 28 | public: |
---|
[7661] | 29 | BaseObject (const std::string& objectName = ""); |
---|
[3531] | 30 | virtual ~BaseObject (); |
---|
[3302] | 31 | |
---|
[6512] | 32 | virtual void loadParams(const TiXmlElement* root); |
---|
[7221] | 33 | void setName (const std::string& newName); |
---|
[5113] | 34 | /** returns the Name of this Object */ |
---|
[7221] | 35 | inline const char* getName ()const { return this->objectName.c_str(); }; |
---|
[6587] | 36 | /** @returns the XML-Element with whicht this Object was loaded */ |
---|
| 37 | inline TiXmlNode* getXmlElem() const { return this->xmlElem; }; |
---|
[4318] | 38 | |
---|
[4836] | 39 | /** @returns the className of the corresponding Object */ |
---|
[7221] | 40 | inline const char* getClassName() const { return this->className.c_str(); }; |
---|
[4836] | 41 | /** @returns the classID of the corresponding Object */ |
---|
[4933] | 42 | inline int getClassID() const { return this->classID; }; |
---|
[6280] | 43 | ClassID getLeafClassID() const; |
---|
[3302] | 44 | |
---|
[6077] | 45 | bool isA (ClassID classID) const; |
---|
[7221] | 46 | bool isA (const std::string& className) const; |
---|
[4746] | 47 | void whatIs() const; |
---|
[4470] | 48 | |
---|
[7221] | 49 | bool operator==(const std::string& objectName); |
---|
[6077] | 50 | /** @param classID comparer for a ClassID @returns true on match, false otherwise */ |
---|
| 51 | bool operator==(ClassID classID) { return this->isA(classID); }; |
---|
[5626] | 52 | |
---|
[6341] | 53 | int writeState(const byte* data, int length, int sender); |
---|
| 54 | int readState(byte* data, int maxLength ); |
---|
[6517] | 55 | |
---|
[4539] | 56 | protected: |
---|
[7221] | 57 | void setClassID(ClassID classID, const std::string& className); |
---|
[4539] | 58 | |
---|
[6517] | 59 | private: |
---|
[7221] | 60 | std::string className; //!< the name of the class |
---|
[4744] | 61 | long classID; //!< this is the id from the class_id.h enumeration |
---|
[7221] | 62 | std::string objectName; //!< The name of this object |
---|
[6280] | 63 | |
---|
| 64 | ClassList* classList; //!< Pointer to the ClassList this Object is inside of |
---|
[6517] | 65 | |
---|
| 66 | TiXmlNode* xmlElem; //!< The XML Element with wich this Object was loaded(saved). |
---|
[3302] | 67 | }; |
---|
| 68 | |
---|
| 69 | #endif /* _BASE_OBJECT_H */ |
---|