| 
                Last change
                  on this file since 6385 was
                  6077,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
orxonox/trunk: better and faster BaseObject/ClassList 
 
           | 
        
        | 
            File size:
            1.5 KB
           | 
      
      
        
  | Line |   | 
|---|
| 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 | class TiXmlElement; | 
|---|
| 19 |  | 
|---|
| 20 | //! A class all other classes are derived from | 
|---|
| 21 | class BaseObject { | 
|---|
| 22 |  | 
|---|
| 23 |  public: | 
|---|
| 24 |   BaseObject (const TiXmlElement* root = NULL); | 
|---|
| 25 |   virtual ~BaseObject (); | 
|---|
| 26 |  | 
|---|
| 27 |   void loadParams(const TiXmlElement* root); | 
|---|
| 28 |   void setName (const char* newName); | 
|---|
| 29 |   /** returns the Name of this Object */ | 
|---|
| 30 |   inline const char* getName ()const { return this->objectName; }; | 
|---|
| 31 |  | 
|---|
| 32 |   /** @returns the className of the corresponding Object */ | 
|---|
| 33 |   inline const char* getClassName() const { return this->className; }; | 
|---|
| 34 |   /** @returns the classID of the corresponding Object */ | 
|---|
| 35 |   inline int getClassID() const { return this->classID; }; | 
|---|
| 36 |  | 
|---|
| 37 |   bool isA (ClassID classID) const; | 
|---|
| 38 |   bool isA (const char* className) const; | 
|---|
| 39 |   void whatIs() const; | 
|---|
| 40 |  | 
|---|
| 41 |   bool operator==(const char* objectName); | 
|---|
| 42 |   /** @param classID comparer for a ClassID @returns true on match, false otherwise */ | 
|---|
| 43 |   bool operator==(ClassID classID) { return this->isA(classID); }; | 
|---|
| 44 |  | 
|---|
| 45 |  protected: | 
|---|
| 46 |   void setClassID(ClassID classID, const char* className); | 
|---|
| 47 |  | 
|---|
| 48 |   private: | 
|---|
| 49 |     const char*        className;        //!< the name of the class | 
|---|
| 50 |     long               classID;          //!< this is the id from the class_id.h enumeration | 
|---|
| 51 |     char*              objectName;       //!< The name of this object | 
|---|
| 52 | }; | 
|---|
| 53 |  | 
|---|
| 54 | #endif /* _BASE_OBJECT_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.