/* * 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: * ... * */ /** @file GlobalQuest.h @brief Definition of the GlobalQuest class. */ #ifndef _GlobalQuest_H__ #define _GlobalQuest_H__ #include "OrxonoxPrereqs.h" #include #include #include "core/XMLPort.h" #include "Quest.h" namespace orxonox { /** @brief GlobalQuests are Quests, that have the same status for all players. This means, that when a player successfully completes a GlobalQuest, it is completed for all players that have it. Creating a GlobalQuest through XML goes as follows: //Where questId is a GUID, see http://en.wikipedia.org/wiki/Globally_Unique_Identifier#Basic_structure for more information //The description of the quest. //A list of n subquest, be aware, each of the tags must have a description and so on and so forth as well. ... //A list of n QuestHints, see QuestHint for the full XML representation of those. ... //A list of QuestEffects, invoked on all players possessing this quest, when the Quest is failed, see QuestEffect for the full XML representation. ... //A list of QuestEffects, invoked on all players possessing this quest, when the Quest is completed, see QuestEffect for the full XML representation. ... //A list of QuestEffects, invoked on the player completing this quest. See QuestEffect for the full XML representation. ... @author Damian 'Mozork' Frick */ class _OrxonoxExport GlobalQuest : public Quest { public: GlobalQuest(BaseObject* creator); virtual ~GlobalQuest(); virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a GlobalQuest object through XML. virtual bool fail(ControllableEntity* player); //!< Fails the Quest. virtual bool complete(ControllableEntity* player); //!< Completes the Quest. protected: virtual bool isStartable(const ControllableEntity* player) const; //!< Checks whether the Quest can be started. virtual bool isFailable(const ControllableEntity* player) const; //!< Checks whether the Quest can be failed. virtual bool isCompletable(const ControllableEntity* player) const; //!< Checks whether the Quest can be completed. virtual questStatus::Enum getStatus(const ControllableEntity* player) const; //!< Returns the status of the Quest for a specific player. virtual bool setStatus(ControllableEntity* player, const questStatus::Enum & status); //!< Sets the status for a specific player. private: std::set players_; //!< The set of players which possess this Quest. questStatus::Enum status_; //!< The status of this Quest. std::list rewards_; //!< Reward QuestEffects only invoked on the player completing the Quest. bool addRewardEffect(QuestEffect* effect); //!< Adds a reward QuestEffect to the list of reward QuestEffects. const QuestEffect* getRewardEffects(unsigned int index) const; //!< Returns the reward QuestEffect at the given index. }; } #endif /* _GlobalQuest_H__ */