[1992] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Damian 'Mozork' Frick |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
[5693] | 28 | |
---|
[2261] | 29 | /** |
---|
[3196] | 30 | @file |
---|
[2662] | 31 | @brief Definition of the QuestHint class. |
---|
[2261] | 32 | */ |
---|
[2092] | 33 | |
---|
[1992] | 34 | #ifndef _QuestHint_H__ |
---|
| 35 | #define _QuestHint_H__ |
---|
| 36 | |
---|
[5722] | 37 | #include "questsystem/QuestsystemPrereqs.h" |
---|
[2095] | 38 | |
---|
[1996] | 39 | #include <map> |
---|
[1992] | 40 | #include "QuestItem.h" |
---|
| 41 | |
---|
[7163] | 42 | namespace orxonox // tolua_export |
---|
| 43 | { // tolua_export |
---|
[3280] | 44 | namespace QuestHintStatus |
---|
[2021] | 45 | { |
---|
[2662] | 46 | //! The state of the hint. |
---|
[3280] | 47 | enum Value |
---|
[2662] | 48 | { |
---|
[3280] | 49 | Inactive, |
---|
| 50 | Active |
---|
[2662] | 51 | }; |
---|
| 52 | } |
---|
[1992] | 53 | |
---|
| 54 | /** |
---|
| 55 | @brief |
---|
| 56 | Represents a hint in the game towards completing a Quest. |
---|
[2261] | 57 | Consists of title and description (which is stored in a QuestDescription object) in textual form and must belong to a quest. |
---|
| 58 | A QuestHint has a defined status (inactive or active, where inactive is default) for each player, which means each a QuestHint exists only once for all players, it doesn't belong to a player, it just has different states for each of them. |
---|
[5693] | 59 | |
---|
[2261] | 60 | Creating a QuestHint through XML goes as follows: |
---|
[5693] | 61 | |
---|
[7401] | 62 | @code |
---|
| 63 | <QuestHint id="hintId"> |
---|
[2261] | 64 | <QuestDesctription title="" description="" /> |
---|
| 65 | </QuestHint> |
---|
[7401] | 66 | @endcode |
---|
[1992] | 67 | @author |
---|
| 68 | Damian 'Mozork' Frick |
---|
| 69 | */ |
---|
[7163] | 70 | class _QuestsystemExport QuestHint // tolua_export |
---|
| 71 | : public QuestItem |
---|
| 72 | { // tolua_export |
---|
[2092] | 73 | |
---|
[2093] | 74 | public: |
---|
[2092] | 75 | QuestHint(BaseObject* creator); |
---|
[2093] | 76 | virtual ~QuestHint(); |
---|
[2092] | 77 | |
---|
[2261] | 78 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a QuestHint object through XML. |
---|
[2092] | 79 | |
---|
[2261] | 80 | bool isActive(const PlayerInfo* player) const; //!< Returns true if the QuestHint is active for the input player. |
---|
[2092] | 81 | |
---|
[2261] | 82 | bool setActive(PlayerInfo* player); //!< Activates the QuestHint for the input player. |
---|
| 83 | bool setQuest(Quest* quest); //!< Sets the Quest the QuestHint belongs to. |
---|
[2092] | 84 | |
---|
[2261] | 85 | /** |
---|
| 86 | @brief Returns the Quest the QuestHint is attached to. |
---|
| 87 | @return Returns a pointer to the Quest the QuestHint is attached to. |
---|
| 88 | */ |
---|
[2093] | 89 | inline Quest* getQuest(void) |
---|
| 90 | { return this->quest_; } |
---|
[2092] | 91 | |
---|
[2021] | 92 | private: |
---|
[2261] | 93 | Quest* quest_; //!< The Quest the QuestHint belongs to. |
---|
[3280] | 94 | std::map<const PlayerInfo*, QuestHintStatus::Value> playerStatus_; //!< List of the states for each player, with the Player-pointer as key. |
---|
[2092] | 95 | |
---|
[7163] | 96 | }; // tolua_export |
---|
[1992] | 97 | |
---|
[7163] | 98 | } // tolua_export |
---|
[1992] | 99 | |
---|
| 100 | #endif /* _QuestHint_H__ */ |
---|