1 | /*! |
---|
2 | * @file base_object.h |
---|
3 | * Definition of the base object class. |
---|
4 | |
---|
5 | This is a global handler for all classes. |
---|
6 | */ |
---|
7 | |
---|
8 | |
---|
9 | #ifndef _BASE_OBJECT_H |
---|
10 | #define _BASE_OBJECT_H |
---|
11 | |
---|
12 | #include "class_id.h" |
---|
13 | #include "debug.h" |
---|
14 | #ifndef NULL |
---|
15 | #define NULL 0 //!< NULL |
---|
16 | #endif |
---|
17 | |
---|
18 | #include "stdincl.h" |
---|
19 | |
---|
20 | class TiXmlNode; |
---|
21 | class TiXmlElement; |
---|
22 | class ClassList; |
---|
23 | |
---|
24 | //! A class all other classes are derived from |
---|
25 | class BaseObject { |
---|
26 | |
---|
27 | public: |
---|
28 | BaseObject (); |
---|
29 | virtual ~BaseObject (); |
---|
30 | |
---|
31 | virtual void loadParams(const TiXmlElement* root); |
---|
32 | void setName (const char* newName); |
---|
33 | /** returns the Name of this Object */ |
---|
34 | inline const char* getName ()const { return this->objectName; }; |
---|
35 | /** @returns the XML-Element with whicht this Object was loaded */ |
---|
36 | inline TiXmlNode* getXmlElem() const { return this->xmlElem; }; |
---|
37 | |
---|
38 | /** @returns the className of the corresponding Object */ |
---|
39 | inline const char* getClassName() const { return this->className; }; |
---|
40 | /** @returns the classID of the corresponding Object */ |
---|
41 | inline int getClassID() const { return this->classID; }; |
---|
42 | ClassID getLeafClassID() const; |
---|
43 | |
---|
44 | bool isA (ClassID classID) const; |
---|
45 | bool isA (const char* className) const; |
---|
46 | void whatIs() const; |
---|
47 | |
---|
48 | bool operator==(const char* objectName); |
---|
49 | /** @param classID comparer for a ClassID @returns true on match, false otherwise */ |
---|
50 | bool operator==(ClassID classID) { return this->isA(classID); }; |
---|
51 | |
---|
52 | int writeState(const byte* data, int length, int sender); |
---|
53 | int readState(byte* data, int maxLength ); |
---|
54 | |
---|
55 | protected: |
---|
56 | void setClassID(ClassID classID, const char* className); |
---|
57 | |
---|
58 | private: |
---|
59 | const char* className; //!< the name of the class |
---|
60 | long classID; //!< this is the id from the class_id.h enumeration |
---|
61 | char* objectName; //!< The name of this object |
---|
62 | |
---|
63 | ClassList* classList; //!< Pointer to the ClassList this Object is inside of |
---|
64 | |
---|
65 | TiXmlNode* xmlElem; //!< The XML Element with wich this Object was loaded(saved). |
---|
66 | }; |
---|
67 | |
---|
68 | #endif /* _BASE_OBJECT_H */ |
---|