/* * 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 LocalQuest.h @brief Definition of the LocalQuest class. @ingroup Questsystem */ #ifndef _LocalQuest_H__ #define _LocalQuest_H__ #include "questsystem/QuestsystemPrereqs.h" #include #include "Quest.h" namespace orxonox { /** @brief Handles @ref orxonox::Quest "Quests" which have different states for different players. LocalQuests have (as opposed to @ref orxonox::GlobalQuest "GlobalQuests") a different state for each player, that means if for one player the status of the @ref orxonox::Quest "Quest" changes it does not for all the other players which also possess this quest. Creating a LocalQuest through XML goes as follows: @code //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 when the Quest is failed, see QuestEffect for the full XML representation. ... //A list of QuestEffects, invoked when the Quest is completed, see QuestEffect for the full XML representation. ... @endcode @author Damian 'Mozork' Frick @ingroup Questsystem */ class _QuestsystemExport LocalQuest : public Quest { public: LocalQuest(Context* context); virtual ~LocalQuest(); virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override; //!< Method for creating a LocalQuest object through XML. virtual bool fail(PlayerInfo* player) override; //!< Fails the Quest. virtual bool complete(PlayerInfo* player) override; //!< Completes the Quest. protected: virtual bool isStartable(const PlayerInfo* player) const override; //!< Checks whether the Quest can be started. virtual bool isFailable(const PlayerInfo* player) const override; //!< Checks whether the Quest can be failed. virtual bool isCompletable(const PlayerInfo* player) const override; //!< Checks whether the Quest can be completed. virtual QuestStatus getStatus(const PlayerInfo* player) const override; //!< Returns the status of the Quest for a specific player. virtual bool setStatus(PlayerInfo* player, const QuestStatus & status) override; //!< Sets the status for a specific player. private: std::map playerStatus_; //!< List of the status for each player, with the Player-pointer as key. }; } #endif /* _LocalQuest_H__ */