[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 | */ |
---|
| 28 | |
---|
[2261] | 29 | /** |
---|
[7456] | 30 | @file LocalQuest.cc |
---|
[2662] | 31 | @brief Implementation of the LocalQuest class. |
---|
[2261] | 32 | */ |
---|
| 33 | |
---|
[2105] | 34 | #include "LocalQuest.h" |
---|
| 35 | |
---|
[1992] | 36 | #include "core/CoreIncludes.h" |
---|
[3196] | 37 | #include "core/XMLPort.h" |
---|
[7456] | 38 | |
---|
[2261] | 39 | #include "QuestEffect.h" |
---|
| 40 | |
---|
[2662] | 41 | namespace orxonox |
---|
| 42 | { |
---|
[1992] | 43 | CreateFactory(LocalQuest); |
---|
| 44 | |
---|
[2261] | 45 | /** |
---|
| 46 | @brief |
---|
| 47 | Constructor. Registers and initializes the object. |
---|
| 48 | */ |
---|
[2092] | 49 | LocalQuest::LocalQuest(BaseObject* creator) : Quest(creator) |
---|
[2021] | 50 | { |
---|
[2092] | 51 | RegisterObject(LocalQuest); |
---|
[2021] | 52 | } |
---|
[2092] | 53 | |
---|
[1992] | 54 | /** |
---|
| 55 | @brief |
---|
| 56 | Destructor. |
---|
| 57 | */ |
---|
| 58 | LocalQuest::~LocalQuest() |
---|
| 59 | { |
---|
[2092] | 60 | |
---|
[1992] | 61 | } |
---|
[2092] | 62 | |
---|
[2261] | 63 | /** |
---|
| 64 | @brief |
---|
| 65 | Method for creating a LocalQuest object through XML. |
---|
| 66 | */ |
---|
[2076] | 67 | void LocalQuest::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
| 68 | { |
---|
| 69 | SUPER(LocalQuest, XMLPort, xmlelement, mode); |
---|
| 70 | |
---|
[7163] | 71 | COUT(4) << "New LocalQuest {" << this->getId() << "} created." << std::endl; |
---|
[2076] | 72 | } |
---|
[2092] | 73 | |
---|
[2261] | 74 | /** |
---|
| 75 | @brief |
---|
| 76 | Fails the Quest for a given player. |
---|
| 77 | Invokes all the failEffects on the player. |
---|
| 78 | @param player |
---|
| 79 | The player. |
---|
| 80 | @return |
---|
| 81 | Returns true if the Quest could be failed, false if not. |
---|
| 82 | */ |
---|
| 83 | bool LocalQuest::fail(PlayerInfo* player) |
---|
[2068] | 84 | { |
---|
[7456] | 85 | if(!this->isFailable(player)) // Checks whether the quest can be failed. |
---|
[2261] | 86 | { |
---|
[2662] | 87 | COUT(4) << "A non-failable quest was trying to be failed." << std::endl; |
---|
| 88 | return false; |
---|
[2261] | 89 | } |
---|
[6417] | 90 | |
---|
[2662] | 91 | Quest::fail(player); |
---|
[6417] | 92 | |
---|
[7456] | 93 | QuestEffect::invokeEffects(player, this->getFailEffectList()); // Invoke the failEffects. |
---|
[2662] | 94 | return true; |
---|
[2068] | 95 | } |
---|
[2092] | 96 | |
---|
[1992] | 97 | /** |
---|
| 98 | @brief |
---|
[2261] | 99 | Completes the Quest for a given player. |
---|
| 100 | Invokes all the complete QuestEffects on the player. |
---|
[1996] | 101 | @param player |
---|
[2261] | 102 | The player. |
---|
| 103 | @return |
---|
| 104 | Returns true if the Quest could be completed, false if not. |
---|
| 105 | */ |
---|
| 106 | bool LocalQuest::complete(PlayerInfo* player) |
---|
| 107 | { |
---|
[7456] | 108 | if(!this->isCompletable(player)) // Checks whether the Quest can be completed. |
---|
[2261] | 109 | { |
---|
[2662] | 110 | COUT(4) << "A non-completable quest was trying to be completed." << std::endl; |
---|
| 111 | return false; |
---|
[2261] | 112 | } |
---|
[6417] | 113 | |
---|
[2662] | 114 | Quest::complete(player); |
---|
[6417] | 115 | |
---|
[7456] | 116 | QuestEffect::invokeEffects(player, this->getCompleteEffectList()); // Invoke the complete QuestEffects. |
---|
[2662] | 117 | return true; |
---|
[2261] | 118 | } |
---|
| 119 | |
---|
| 120 | /** |
---|
| 121 | @brief |
---|
| 122 | Checks whether the Quest can be started. |
---|
| 123 | @param player |
---|
[1996] | 124 | The player for whom is to be checked. |
---|
| 125 | @return |
---|
[2261] | 126 | Returns true if the Quest can be started, false if not. |
---|
[2068] | 127 | @throws |
---|
[2261] | 128 | Throws an exception if isInactive(PlayerInfo*) throws one. |
---|
[1996] | 129 | */ |
---|
[2261] | 130 | bool LocalQuest::isStartable(const PlayerInfo* player) const |
---|
[1996] | 131 | { |
---|
[2261] | 132 | if(!(this->getParentQuest() == NULL || this->getParentQuest()->isActive(player))) |
---|
| 133 | return false; |
---|
[7456] | 134 | |
---|
[1996] | 135 | return this->isInactive(player); |
---|
| 136 | } |
---|
[2092] | 137 | |
---|
[1996] | 138 | /** |
---|
| 139 | @brief |
---|
[2261] | 140 | Checks whether the Quest can be failed. |
---|
[1996] | 141 | @param player |
---|
| 142 | The player for whom is to be checked. |
---|
| 143 | @return |
---|
[2261] | 144 | Returns true if the Quest can be failed, false if not. |
---|
[2068] | 145 | @throws |
---|
[2261] | 146 | Throws an exception if isActive(PlayerInfo*) throws one. |
---|
[1996] | 147 | */ |
---|
[2261] | 148 | bool LocalQuest::isFailable(const PlayerInfo* player) const |
---|
[1996] | 149 | { |
---|
| 150 | return this->isActive(player); |
---|
| 151 | } |
---|
[2092] | 152 | |
---|
[1996] | 153 | /** |
---|
| 154 | @brief |
---|
[2261] | 155 | Checks whether the Quest can be completed. |
---|
[1996] | 156 | @param player |
---|
| 157 | The player for whom is to be checked. |
---|
| 158 | @return |
---|
[2261] | 159 | Returns true if the Quest can be completed, false if not. |
---|
[2068] | 160 | @throws |
---|
[2261] | 161 | Throws an exception if isInactive(PlayerInfo*) throws one. |
---|
[1996] | 162 | */ |
---|
[2261] | 163 | bool LocalQuest::isCompletable(const PlayerInfo* player) const |
---|
[1996] | 164 | { |
---|
| 165 | return this->isActive(player); |
---|
| 166 | } |
---|
[2092] | 167 | |
---|
[1996] | 168 | /** |
---|
| 169 | @brief |
---|
[2261] | 170 | Returns the status of the Quest for a specific player. |
---|
[1992] | 171 | @param player |
---|
[1996] | 172 | The player. |
---|
| 173 | @return |
---|
[2261] | 174 | Returns the status of the Quest for the input player. |
---|
[2068] | 175 | @throws |
---|
| 176 | Throws an Exception if player is NULL. |
---|
[1992] | 177 | */ |
---|
[3280] | 178 | QuestStatus::Value LocalQuest::getStatus(const PlayerInfo* player) const |
---|
[1992] | 179 | { |
---|
[7456] | 180 | //TODO: Replace with assert. |
---|
| 181 | if(player == NULL) // No player has no defined status. |
---|
[2261] | 182 | ThrowException(Argument, "The input PlayerInfo* is NULL."); |
---|
[2092] | 183 | |
---|
[3280] | 184 | std::map<const PlayerInfo*, QuestStatus::Value>::const_iterator it = this->playerStatus_.find(player); |
---|
[7456] | 185 | if (it != this->playerStatus_.end()) // If there is a player in the map. |
---|
[2093] | 186 | return it->second; |
---|
[6417] | 187 | |
---|
[7456] | 188 | return QuestStatus::Inactive; // If the player is not yet in the map, that means the status of the quest form him is 'inactive'. |
---|
[1992] | 189 | } |
---|
[2092] | 190 | |
---|
[1992] | 191 | /** |
---|
| 192 | @brief |
---|
| 193 | Sets the status for a specific player. |
---|
[2261] | 194 | But be careful wit this one, the status will just be set without checking for its validity. You have to know what you're doing. Really! |
---|
[1992] | 195 | @param player |
---|
[2261] | 196 | The player the status should be set for. |
---|
[1992] | 197 | @param status |
---|
[2261] | 198 | The status to be set. |
---|
[2068] | 199 | @return |
---|
| 200 | Returns false if player is NULL. |
---|
[1992] | 201 | */ |
---|
[3280] | 202 | bool LocalQuest::setStatus(PlayerInfo* player, const QuestStatus::Value & status) |
---|
[1992] | 203 | { |
---|
[7456] | 204 | //TODO: Replace with assert. |
---|
| 205 | if(player == NULL) // We can't set a status for no player. |
---|
[2068] | 206 | return false; |
---|
[6417] | 207 | |
---|
[2021] | 208 | this->playerStatus_[player] = status; |
---|
| 209 | return true; |
---|
[1992] | 210 | } |
---|
| 211 | |
---|
| 212 | } |
---|