| [4597] | 1 | /* | 
|---|
| [4250] | 2 |    orxonox - the future of 3D-vertical-scrollers | 
|---|
 | 3 |  | 
|---|
 | 4 |    Copyright (C) 2004 orx | 
|---|
 | 5 |  | 
|---|
 | 6 |    This program is free software; you can redistribute it and/or modify | 
|---|
 | 7 |    it under the terms of the GNU General Public License as published by | 
|---|
 | 8 |    the Free Software Foundation; either version 2, or (at your option) | 
|---|
 | 9 |    any later version. | 
|---|
 | 10 |  | 
|---|
 | 11 |    ### File Specific: | 
|---|
 | 12 |    main-programmer: Christian Meyer | 
|---|
 | 13 |    co-programmer: Benjamin Grauer | 
|---|
 | 14 | */ | 
|---|
 | 15 |  | 
|---|
| [4597] | 16 | /*! | 
|---|
| [4885] | 17 |  * @file factory.h | 
|---|
 | 18 |  * @brief A loadable object handler | 
|---|
| [3940] | 19 | */ | 
|---|
 | 20 |  | 
|---|
| [4250] | 21 |  | 
|---|
| [3940] | 22 | #ifndef _FACTORY_H | 
|---|
 | 23 | #define _FACTORY_H | 
|---|
 | 24 |  | 
|---|
 | 25 | class BaseObject; | 
|---|
 | 26 |  | 
|---|
| [5944] | 27 | #include "parser/tinyxml/tinyxml.h" | 
|---|
| [4597] | 28 | #include "base_object.h" | 
|---|
| [4171] | 29 | #include "debug.h" | 
|---|
| [5982] | 30 | #include <vector> | 
|---|
| [3940] | 31 |  | 
|---|
| [4597] | 32 | /** | 
|---|
| [4885] | 33 |  * Creates a factory to a Loadable Class. | 
|---|
 | 34 |  * this should be used at the beginning of all the Classes that should be loadable (in the cc-file) | 
|---|
| [4004] | 35 | */ | 
|---|
| [5750] | 36 | #define CREATE_FACTORY(CLASS_NAME, CLASS_ID) \ | 
|---|
 | 37 |     tFactory<CLASS_NAME>* global_##CLASS_NAME##_Factory = new tFactory<CLASS_NAME>(#CLASS_NAME, CLASS_ID) | 
|---|
| [4487] | 38 |  | 
|---|
 | 39 | //! The Factory is a loadable object handler | 
|---|
| [4597] | 40 | class Factory : public BaseObject { | 
|---|
| [3940] | 41 |  | 
|---|
 | 42 |  public: | 
|---|
| [5982] | 43 |   Factory (const char* factoryName, ClassID classID); | 
|---|
| [5156] | 44 |   virtual ~Factory (); | 
|---|
| [3940] | 45 |  | 
|---|
| [5982] | 46 |   static void deleteFactories(); | 
|---|
| [4739] | 47 |  | 
|---|
| [5982] | 48 |   static  BaseObject* fabricate(const char* className); | 
|---|
 | 49 |   static  BaseObject* fabricate(ClassID classID); | 
|---|
 | 50 |   static  BaseObject* fabricate(const TiXmlElement* root = NULL); | 
|---|
| [4597] | 51 |  | 
|---|
| [5984] | 52 |  | 
|---|
 | 53 |   bool operator==(ClassID classID) const; | 
|---|
| [5982] | 54 |   bool operator==(const char* className) const; | 
|---|
 | 55 |  | 
|---|
| [4932] | 56 |   protected: | 
|---|
| [5982] | 57 |     virtual BaseObject* fabricateObject(const TiXmlElement* root = NULL) const = 0; | 
|---|
| [4932] | 58 |  | 
|---|
| [5750] | 59 |   protected: | 
|---|
| [5982] | 60 |     ClassID                       classID;              //!< The Class-Identifyer of the Factory. | 
|---|
 | 61 |     const char*                   className;            //!< The name of the Class. | 
|---|
 | 62 |     static std::list<Factory*>*   factoryList;          //!< List of Registered Factories | 
|---|
| [3940] | 63 | }; | 
|---|
 | 64 |  | 
|---|
| [4487] | 65 | /** | 
|---|
| [4836] | 66 |  *  a factory that is able to load any kind of Object | 
|---|
| [5750] | 67 |  * (this is a Functor) | 
|---|
 | 68 |  */ | 
|---|
| [4004] | 69 | template<class T> class tFactory : public Factory | 
|---|
 | 70 | { | 
|---|
| [5982] | 71 |  public: | 
|---|
| [5984] | 72 |  /** | 
|---|
 | 73 |   * creates a new type Factory to enable the loading of T | 
|---|
 | 74 |   * @param factoryName the Name of the Factory to load. | 
|---|
 | 75 |   * @param classID the ID of the Class to be created. | 
|---|
 | 76 |   */ | 
|---|
| [5982] | 77 |   tFactory (const char* factoryName, ClassID classID) | 
|---|
 | 78 |    : Factory(factoryName, classID) | 
|---|
| [5984] | 79 |   {  } | 
|---|
| [4597] | 80 |  | 
|---|
| [4004] | 81 |   private: | 
|---|
| [5982] | 82 |    /** | 
|---|
 | 83 |     * fabricates an Object of type T, with the constructor T::T(const TiXmlElemnt*) | 
|---|
 | 84 |     * @param root the TiXmlElement T should load parameters from. | 
|---|
 | 85 |     * @return the newly fabricated T. | 
|---|
 | 86 |     */ | 
|---|
 | 87 |     virtual BaseObject* fabricateObject(const TiXmlElement* root = NULL) const | 
|---|
 | 88 |     { | 
|---|
 | 89 |       return new T(root); | 
|---|
 | 90 |     } | 
|---|
| [4004] | 91 | }; | 
|---|
 | 92 |  | 
|---|
| [3940] | 93 | #endif /* _FACTORY_H */ | 
|---|
 | 94 |  | 
|---|