/* * 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: * Damian 'Mozork' Frick * Co-authors: * ... * */ #ifndef _PickupRepresentation_H__ #define _PickupRepresentation_H__ #include "PickupPrereqs.h" #include "core/XMLPort.h" #include "interfaces/Pickupable.h" #include "pickup/PickupIdentifier.h" #include "worldentities/StaticEntity.h" #include "PickupSpawner.h" #include "core/BaseObject.h" namespace orxonox { /** @brief The PickupRepresentation class represents a specific pickup type (identified by its PickupIdentifier). It defines the information displayed in the GUI and how PickupSpawners that spawn the pickup type look like. They are created through XML and are registered with the PickupManager. */ class _PickupExport PickupRepresentation : public BaseObject { public: PickupRepresentation(); //!< Constructor PickupRepresentation(BaseObject* creator); //!< Default constructor. virtual ~PickupRepresentation(); //!< Destructor. virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); /** @brief Set the name of the Pickupable represented by this PickupRepresentation. @param name The name. */ inline void setName(const std::string& name) { this->name_ = name; } /** @brief Set the description of the Pickupable represented by this PickupRepresentation. @param description The Description. */ inline void setDescription(const std::string& description) { this->description_ = description; } /** @brief Set the spawnerTemplate of the Pickupable represented by this PickupRepresentation. The spawnerTemplate is a name of a template defined in XML that defines the StaticEntity that is the spawnerRepresentation of this PickupRepresentation. @param spawnerTemplate The name of the template. */ inline void setSpawnerTemplate(const std::string& spawnerTemplate) { this->spawnerTemplate_ = spawnerTemplate; } /** @brief Set the StaticEntity that defines how the PickupSpawner of the Pickupable represented by this PickupRepresentation looks like. This will be set by the spawnerTemplate. Setting it when creating the PickupRepresentation without creating a template and specifying its name will be futile, because through the course of the game many PickupSpawners for one specific pickup type may have to be created, thus the StaticEntity that is the spawnerRepresentation has to be generated (with the template) for every new PickupSpawner spawning the Pickupable represented by this PickupRepresentation. The spawnerRepresentation that is set here, however can only be used once. @param representation A pointer to the StaticEntity that is the spawnerRepresentation of this PickupRepresentation. */ inline void setSpawnerRepresentation(StaticEntity* representation) { this->spawnerRepresentation_ = representation; } /** @brief Set the Pickupable that is represented by this PickupRepresentation. @param pickup A pointer to the Pickupable. */ inline void setPickup(Pickupable* pickup) { this->pickup_ = pickup; } /** @brief Get the name of the Pickupable represented by this PickupRepresentation. @return Returns the name. */ inline const std::string& getName(void) { return this->name_; } /** @brief Get the description of the Pickupable represented by this PickupRepresentation. @return Returns the description. */ inline const std::string& getDescription(void) { return this->description_; } /** @brief Get the name of spawnerTemplate the Pickupable represented by this PickupRepresentation. @return Returns the name of the spawnerTemplate. */ inline const std::string& getSpawnerTemplate(void) { return this->spawnerTemplate_; } /** @brief Get the StaticEntity that defines how the PickupSpawner of the Pickupable represented by this PickupRepresentation looks like. @param index The index. @return Returns (for index = 0) a pointer to the StaticEntity. For index > 0 it returns NULL. */ inline const StaticEntity* getSpawnerRepresentationIndex(unsigned int index) { if(index == 0) return this->spawnerRepresentation_; return NULL; } /** @brief Get the Pickupable represented by this PickupRepresentation. @param index The index. @return Returns (for index = 0) a pointer to the Pickupable. For index > 0 it returns NULL. */ inline const Pickupable* getPickup(unsigned int index) { if(index == 0) return this->pickup_; return NULL; } StaticEntity* getSpawnerRepresentation(PickupSpawner* spawner); //!< Get a spawnerRepresentation for a specific PickupSpawner. private: void initialize(void); //!< Initializes the member variables of this PickupRepresentation. StaticEntity* getDefaultSpawnerRepresentation(PickupSpawner* spawner); //!< Get the default spawnerRepresentation for a specific PickupSpawner. std::string name_; //!< The name of the Pickupable represented by this PickupRepresentation. std::string description_; //!< The description of the Pickupable represented by this PickupRepresentation. std::string spawnerTemplate_; //!< The name of the template of this PickupRepresentation. StaticEntity* spawnerRepresentation_; //!< The spawnerRepresentation of this PickupRepresentation. Pickupable* pickup_; //!< The Pickupable that is represented by this PickupRepresentation. }; } #endif // _PickupRepresentation_H__