/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Fabian 'x3n' Landau * Co-authors: * ... * */ /** @file Identifier.h @brief Definition of the Identifier, ClassIdentifier and SubclassIdentifier classes, implementation of the ClassIdentifier and SubclassIdentifier classes. The Identifier contains all needed informations about the class it belongs to: - the name - a list with all objects - parents and children - the factory (if available) - the networkID that can be synchronised with the server - all configurable variables (if available) Every object has a pointer to the Identifier of its class. This allows the use isA(...), isExactlyA(...), isChildOf(...) and isParentOf(...). To create the class-hierarchy, the Identifier has some intern functions and variables. Every Identifier is in fact a ClassIdentifier, but they are derived from Identifier. SubclassIdentifier is a separated class, acting like an Identifier, but has a given class. You can only assign Identifiers of exactly the given class or of a derivative to a SubclassIdentifier. */ #ifndef _Identifier_H__ #define _Identifier_H__ #include "CorePrereqs.h" #include #include #include #include #include "ObjectList.h" #include "Debug.h" #include "Iterator.h" #include "MetaObjectList.h" #include "util/String.h" namespace orxonox { // ############################### // ### Identifier ### // ############################### //! The Identifier is used to identify the class of an object and to store informations about the class. /** The Identifier contains all needed informations about the class it belongs to: - the name - a list with all objects - parents and childs - the factory (if available) - the networkID that can be synchronised with the server - all configurable variables (if available) Every object has a pointer to the Identifier of its class. This allows the use isA(...), isExactlyA(...), isChildOf(...) and isParentOf(...). You can't directly create an Identifier, it's just the base-class for ClassIdentifier. */ class _CoreExport Identifier { template friend class ClassIdentifier; template friend class SubclassIdentifier; friend class Factory; public: /** @brief Sets the Factory. @param factory The factory to assign */ inline void addFactory(BaseFactory* factory) { this->factory_ = factory; } BaseObject* fabricate(); bool isA(const Identifier* identifier) const; bool isExactlyA(const Identifier* identifier) const; bool isChildOf(const Identifier* identifier) const; bool isDirectChildOf(const Identifier* identifier) const; bool isParentOf(const Identifier* identifier) const; bool isDirectParentOf(const Identifier* identifier) const; virtual const ObjectList* getObjectList() const = 0; virtual void updateConfigValues() const = 0; /** @brief Returns the name of the class the Identifier belongs to. @return The name */ inline const std::string& getName() const { return this->name_; } /** @brief Returns the parents of the class the Identifier belongs to. @return The list of all parents */ inline const std::set& getParents() const { return this->parents_; } /** @brief Returns the begin-iterator of the parents-list. @return The begin-iterator */ inline std::set::const_iterator getParentsBegin() const { return this->parents_.begin(); } /** @brief Returns the end-iterator of the parents-list. @return The end-iterator */ inline std::set::const_iterator getParentsEnd() const { return this->parents_.end(); } /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */ inline const std::set& getChildren() const { return (*this->children_); } /** @brief Returns the begin-iterator of the children-list. @return The begin-iterator */ inline std::set::const_iterator getChildrenBegin() const { return this->children_->begin(); } /** @brief Returns the end-iterator of the children-list. @return The end-iterator */ inline std::set::const_iterator getChildrenEnd() const { return this->children_->end(); } /** @brief Returns the direct parents of the class the Identifier belongs to. @return The list of all direct parents */ inline const std::set& getDirectParents() const { return this->directParents_; } /** @brief Returns the begin-iterator of the direct-parents-list. @return The begin-iterator */ inline std::set::const_iterator getDirectParentsBegin() const { return this->directParents_.begin(); } /** @brief Returns the end-iterator of the direct-parents-list. @return The end-iterator */ inline std::set::const_iterator getDirectParentsEnd() const { return this->directParents_.end(); } /** @brief Returns the direct children the class the Identifier belongs to. @return The list of all direct children */ inline const std::set& getDirectChildren() const { return (*this->directChildren_); } /** @brief Returns the begin-iterator of the direct-children-list. @return The begin-iterator */ inline std::set::const_iterator getDirectChildrenBegin() const { return this->directChildren_->begin(); } /** @brief Returns the end-iterator of the direct-children-list. @return The end-iterator */ inline std::set::const_iterator getDirectChildrenEnd() const { return this->directChildren_->end(); } /** @brief Returns the map that stores all Identifiers. @return The map */ static inline const std::map& getIdentifierMap() { return Identifier::getIdentifierMapIntern(); } /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers. @return The const_iterator */ static inline std::map::const_iterator getIdentifierMapBegin() { return Identifier::getIdentifierMap().begin(); } /** @brief Returns a const_iterator to the end of the map that stores all Identifiers. @return The const_iterator */ static inline std::map::const_iterator getIdentifierMapEnd() { return Identifier::getIdentifierMap().end(); } /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */ static inline const std::map& getLowercaseIdentifierMap() { return Identifier::getLowercaseIdentifierMapIntern(); } /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */ static inline std::map::const_iterator getLowercaseIdentifierMapBegin() { return Identifier::getLowercaseIdentifierMap().begin(); } /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */ static inline std::map::const_iterator getLowercaseIdentifierMapEnd() { return Identifier::getLowercaseIdentifierMap().end(); } /** @brief Returns the map that stores all config values. @return The const_iterator */ inline const std::map& getConfigValueMap() const { return this->configValues_; } /** @brief Returns a const_iterator to the beginning of the map that stores all config values. @return The const_iterator */ inline std::map::const_iterator getConfigValueMapBegin() const { return this->configValues_.begin(); } /** @brief Returns a const_iterator to the end of the map that stores all config values. @return The const_iterator */ inline std::map::const_iterator getConfigValueMapEnd() const { return this->configValues_.end(); } /** @brief Returns the map that stores all config values with their names in lowercase. @return The const_iterator */ inline const std::map& getLowercaseConfigValueMap() const { return this->configValues_LC_; } /** @brief Returns a const_iterator to the beginning of the map that stores all config values with their names in lowercase. @return The const_iterator */ inline std::map::const_iterator getLowercaseConfigValueMapBegin() const { return this->configValues_LC_.begin(); } /** @brief Returns a const_iterator to the end of the map that stores all config values with their names in lowercase. @return The const_iterator */ inline std::map::const_iterator getLowercaseConfigValueMapEnd() const { return this->configValues_LC_.end(); } /** @brief Returns the map that stores all console commands. @return The const_iterator */ inline const std::map& getConsoleCommandMap() const { return this->consoleCommands_; } /** @brief Returns a const_iterator to the beginning of the map that stores all console commands. @return The const_iterator */ inline std::map::const_iterator getConsoleCommandMapBegin() const { return this->consoleCommands_.begin(); } /** @brief Returns a const_iterator to the end of the map that stores all console commands. @return The const_iterator */ inline std::map::const_iterator getConsoleCommandMapEnd() const { return this->consoleCommands_.end(); } /** @brief Returns the map that stores all console commands with their names in lowercase. @return The const_iterator */ inline const std::map& getLowercaseConsoleCommandMap() const { return this->consoleCommands_LC_; } /** @brief Returns a const_iterator to the beginning of the map that stores all console commands with their names in lowercase. @return The const_iterator */ inline std::map::const_iterator getLowercaseConsoleCommandMapBegin() const { return this->consoleCommands_LC_.begin(); } /** @brief Returns a const_iterator to the end of the map that stores all console commands with their names in lowercase. @return The const_iterator */ inline std::map::const_iterator getLowercaseConsoleCommandMapEnd() const { return this->consoleCommands_LC_.end(); } /** @brief Returns true if this class has at least one config value. @return True if this class has at least one config value */ inline bool hasConfigValues() const { return this->bHasConfigValues_; } /** @brief Returns true if this class has at least one console command. @return True if this class has at least one console command */ inline bool hasConsoleCommands() const { return this->bHasConsoleCommands_; } /** @brief Returns true, if a branch of the class-hierarchy is being created, causing all new objects to store their parents. @return The status of the class-hierarchy creation */ inline static bool isCreatingHierarchy() { return (hierarchyCreatingCounter_s > 0); } /** @brief Returns the network ID to identify a class through the network. @return the network ID */ inline const unsigned int getNetworkID() const { return this->classID_; } /** @brief Sets the network ID to a new value. @param id The new value */ void setNetworkID(unsigned int id); void addConfigValueContainer(const std::string& varname, ConfigValueContainer* container); ConfigValueContainer* getConfigValueContainer(const std::string& varname); ConfigValueContainer* getLowercaseConfigValueContainer(const std::string& varname); virtual void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container) = 0; virtual XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname) = 0; virtual void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container) = 0; virtual XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname) = 0; ConsoleCommand& addConsoleCommand(ConsoleCommand* command, bool bCreateShortcut); ConsoleCommand* getConsoleCommand(const std::string& name) const; ConsoleCommand* getLowercaseConsoleCommand(const std::string& name) const; protected: /** @brief Returns the map that stores all Identifiers. @return The map */ static std::map& getIdentifierMapIntern(); /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */ static std::map& getLowercaseIdentifierMapIntern(); private: Identifier(); Identifier(const Identifier& identifier); // don't copy virtual ~Identifier(); void initialize(std::set* parents); /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */ inline std::set& getChildrenIntern() const { return (*this->children_); } /** @brief Returns the direct children of the class the Identifier belongs to. @return The list of all direct children */ inline std::set& getDirectChildrenIntern() const { return (*this->directChildren_); } /** @brief Increases the hierarchyCreatingCounter_s variable, causing all new objects to store their parents. */ inline static void startCreatingHierarchy() { hierarchyCreatingCounter_s++; COUT(4) << "*** Identifier: Increased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl; } /** @brief Decreases the hierarchyCreatingCounter_s variable, causing the objects to stop storing their parents. */ inline static void stopCreatingHierarchy() { hierarchyCreatingCounter_s--; COUT(4) << "*** Identifier: Decreased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl; } std::set parents_; //!< The parents of the class the Identifier belongs to std::set* children_; //!< The children of the class the Identifier belongs to std::set directParents_; //!< The direct parents of the class the Identifier belongs to std::set* directChildren_; //!< The direct children of the class the Identifier belongs to std::string name_; //!< The name of the class the Identifier belongs to BaseFactory* factory_; //!< The Factory, able to create new objects of the given class (if available) bool bCreatedOneObject_; //!< True if at least one object of the given type was created (used to determine the need of storing the parents) static int hierarchyCreatingCounter_s; //!< Bigger than zero if at least one Identifier stores its parents (its an int instead of a bool to avoid conflicts with multithreading) unsigned int classID_; //!< The network ID to identify a class through the network bool bHasConfigValues_; //!< True if this class has at least one assigned config value std::map configValues_; //!< A map to link the string of configurable variables with their ConfigValueContainer std::map configValues_LC_; //!< A map to link the string of configurable variables with their ConfigValueContainer bool bHasConsoleCommands_; //!< True if this class has at least one assigned console command std::map consoleCommands_; //!< All console commands of this class std::map consoleCommands_LC_; //!< All console commands of this class with their names in lowercase }; _CoreExport std::ostream& operator<<(std::ostream& out, const std::set& list); // ############################### // ### ClassIdentifier ### // ############################### //! The ClassIdentifier is derived from Identifier and holds all class-specific functions and variables the Identifier cannot have. /** ClassIdentifier is a Singleton, which means that only one object of a given type T exists. This makes it possible to store informations about a class, sharing them with all objects of that class without defining static variables in every class. To be really sure that not more than exactly one object exists (even with libraries), ClassIdentifiers are only created by IdentifierDistributor. You can access the ClassIdentifiers created by IdentifierDistributor through the ClassManager singletons. */ template class ClassIdentifier : public Identifier { template friend class ClassManager; public: ClassIdentifier* registerClass(std::set* parents, const std::string& name, bool bRootClass); void addObject(T* object); void setName(const std::string& name); /** @brief Returns the list of all existing objects of this class. @return The list */ inline ObjectList* getObjects() const { return this->objects_; } /** @brief Returns a list of all existing objects of this class. @return The list */ inline ObjectList* getObjectList() const { return (ObjectList*)this->objects_; } void updateConfigValues() const; XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname); void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container); XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname); void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container); private: ClassIdentifier(); ClassIdentifier(const ClassIdentifier& identifier) {} // don't copy ~ClassIdentifier() {} // don't delete ObjectList* objects_; //!< The ObjectList, containing all objects of type T bool bSetName_; //!< True if the name is set std::map*> xmlportParamContainers_; //!< All loadable parameters std::map*> xmlportObjectContainers_; //!< All attachable objects }; /** @brief Constructor: Creates the ObjectList. */ template ClassIdentifier::ClassIdentifier() { // this->objects_ = ObjectList::getList(); this->objects_ = new ObjectList(); this->bSetName_ = false; } /** @brief Registers a class, which means that the name and the parents get stored. @param parents A list, containing the Identifiers of all parents of the class @param name A string, containing exactly the name of the class @param bRootClass True if the class is either an Interface or the BaseObject itself @return The ClassIdentifier itself */ template ClassIdentifier* ClassIdentifier::registerClass(std::set* parents, const std::string& name, bool bRootClass) { this->setName(name); // Check if at least one object of the given type was created if (!this->bCreatedOneObject_ && Identifier::isCreatingHierarchy()) { // If no: We have to store the informations and initialize the Identifier COUT(4) << "*** ClassIdentifier: Register Class in " << name << "-Singleton -> Initialize Singleton." << std::endl; if (bRootClass) this->initialize(NULL); // If a class is derived from two interfaces, the second interface might think it's derived from the first because of the order of constructor-calls. Thats why we set parents to zero in that case. else this->initialize(parents); } return this; } /** @brief Sets the name of the class. @param name The name */ template void ClassIdentifier::setName(const std::string& name) { if (!this->bSetName_) { this->name_ = name; this->bSetName_ = true; Identifier::getIdentifierMapIntern()[name] = this; Identifier::getLowercaseIdentifierMapIntern()[getLowercase(name)] = this; } } /** @brief Adds an object of the given type to the ObjectList. @param object The object to add */ template void ClassIdentifier::addObject(T* object) { COUT(5) << "*** ClassIdentifier: Added object to " << this->getName() << "-list." << std::endl; object->getMetaList().add(this->objects_, this->objects_->add(object)); } /** @brief Updates the config-values of all existing objects of this class by calling their setConfigValues() function. */ template void ClassIdentifier::updateConfigValues() const { for (Iterator it = this->objects_->start(); it; ++it) ((T*)*it)->setConfigValues(); } /** @brief Returns a XMLPortParamContainer that loads a parameter of this class. @param paramname The name of the parameter @return The container */ template XMLPortParamContainer* ClassIdentifier::getXMLPortParamContainer(const std::string& paramname) { typename std::map*>::const_iterator it = xmlportParamContainers_.find(paramname); if (it != xmlportParamContainers_.end()) return (XMLPortParamContainer*)((*it).second); else return 0; } /** @brief Adds a new XMLPortParamContainer that loads a parameter of this class. @param paramname The name of the parameter @param container The container */ template void ClassIdentifier::addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container) { this->xmlportParamContainers_[paramname] = (XMLPortClassParamContainer*)container; } /** @brief Returns a XMLPortObjectContainer that attaches an object to this class. @param sectionname The name of the section that contains the attachable objects @return The container */ template XMLPortObjectContainer* ClassIdentifier::getXMLPortObjectContainer(const std::string& sectionname) { typename std::map*>::const_iterator it = xmlportObjectContainers_.find(sectionname); if (it != xmlportObjectContainers_.end()) return (XMLPortObjectContainer*)((*it).second); else return 0; } /** @brief Adds a new XMLPortObjectContainer that attaches an object to this class. @param sectionname The name of the section that contains the attachable objects @param container The container */ template void ClassIdentifier::addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container) { this->xmlportObjectContainers_[sectionname] = (XMLPortClassObjectContainer*)container; } // ############################### // ### SubclassIdentifier ### // ############################### //! The SubclassIdentifier acts almost like an Identifier, but has some prerequisites. /** You can only assign an Identifier that belongs to a class T (or derived) to a SubclassIdentifier. If you assign something else, the program aborts. Because we know the minimal type, a dynamic_cast is done, which makes it easier to create a new object. */ template class SubclassIdentifier { public: /** @brief Constructor: Automaticaly assigns the Identifier of the given class. */ SubclassIdentifier() { this->identifier_ = ClassManager::getIdentifier(); } /** @brief Copyconstructor: Assigns the given Identifier. @param identifier The Identifier */ SubclassIdentifier(Identifier* identifier) { this->identifier_ = identifier; } /** @brief Overloading of the = operator: assigns the identifier and checks its type. @param identifier The Identifier to assign @return The SubclassIdentifier itself */ SubclassIdentifier& operator=(Identifier* identifier) { if (!identifier->isA(ClassManager::getIdentifier())) { COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl; COUT(1) << "Error: Class " << identifier->getName() << " is not a " << ClassManager::getIdentifier()->getName() << "!" << std::endl; COUT(1) << "Error: SubclassIdentifier<" << ClassManager::getIdentifier()->getName() << "> = Class(" << identifier->getName() << ") is forbidden." << std::endl; COUT(1) << "Aborting..." << std::endl; abort(); } this->identifier_ = identifier; return *this; } /** @brief Overloading of the * operator: returns the assigned identifier. @return The assigned identifier */ Identifier* operator*() { return this->identifier_; } /** @brief Overloading of the -> operator: returns the assigned identifier. @return The assigned identifier */ Identifier* operator->() const { return this->identifier_; } /** @brief Creates a new object of the type of the assigned Identifier and dynamic_casts it to the minimal type given by T. @return The new object */ T* fabricate() { BaseObject* newObject = this->identifier_->fabricate(); // Check if the creation was successful if (newObject) { // Do a dynamic_cast, because an object of type T is much better than of type BaseObject return (T*)(newObject); } else { // Something went terribly wrong if (this->identifier_) { COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl; COUT(1) << "Error: Class " << this->identifier_->getName() << " is not a " << ClassManager::getIdentifier()->getName() << "!" << std::endl; COUT(1) << "Error: Couldn't fabricate a new Object." << std::endl; COUT(1) << "Aborting..." << std::endl; } else { COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl; COUT(1) << "Error: Couldn't fabricate a new Object - Identifier is undefined." << std::endl; COUT(1) << "Aborting..." << std::endl; } abort(); } } /** @brief Returns the assigned identifier. @return The identifier */ inline const Identifier* getIdentifier() const { return this->identifier_; } /** @brief Returns true, if the assigned identifier is at least of the given type. @param identifier The identifier to compare with */ inline bool isA(const Identifier* identifier) const { return this->identifier_->isA(identifier); } /** @brief Returns true, if the assigned identifier is exactly of the given type. @param identifier The identifier to compare with */ inline bool isExactlyA(const Identifier* identifier) const { return this->identifier_->isExactlyA(identifier); } /** @brief Returns true, if the assigned identifier is a child of the given identifier. @param identifier The identifier to compare with */ inline bool isChildOf(const Identifier* identifier) const { return this->identifier_->isChildOf(identifier); } /** @brief Returns true, if the assigned identifier is a direct child of the given identifier. @param identifier The identifier to compare with */ inline bool isDirectChildOf(const Identifier* identifier) const { return this->identifier_->isDirectChildOf(identifier); } /** @brief Returns true, if the assigned identifier is a parent of the given identifier. @param identifier The identifier to compare with */ inline bool isParentOf(const Identifier* identifier) const { return this->identifier_->isParentOf(identifier); } /** @brief Returns true, if the assigned identifier is a direct parent of the given identifier. @param identifier The identifier to compare with */ inline bool isDirectParentOf(const Identifier* identifier) const { return this->identifier_->isDirectParentOf(identifier); } private: Identifier* identifier_; //!< The assigned identifier }; } #endif /* _Identifier_H__ */