[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 | /** |
---|
[2662] | 30 | @file |
---|
| 31 | @brief Implementation of the AddQuest class. |
---|
[2261] | 32 | */ |
---|
| 33 | |
---|
[2105] | 34 | #include "OrxonoxStableHeaders.h" |
---|
| 35 | #include "AddQuest.h" |
---|
| 36 | |
---|
[2021] | 37 | #include <string> |
---|
[2261] | 38 | |
---|
[1992] | 39 | #include "core/CoreIncludes.h" |
---|
[2068] | 40 | #include "util/Exception.h" |
---|
[2021] | 41 | |
---|
[2261] | 42 | #include "orxonox/objects/infos/PlayerInfo.h" |
---|
[2021] | 43 | #include "QuestManager.h" |
---|
| 44 | #include "Quest.h" |
---|
[1992] | 45 | |
---|
[2662] | 46 | namespace orxonox |
---|
| 47 | { |
---|
[1992] | 48 | CreateFactory(AddQuest); |
---|
| 49 | |
---|
[2261] | 50 | /** |
---|
| 51 | @brief |
---|
| 52 | Constructor. Registers the object. |
---|
| 53 | */ |
---|
[2092] | 54 | AddQuest::AddQuest(BaseObject* creator) : ChangeQuestStatus(creator) |
---|
[2021] | 55 | { |
---|
[1992] | 56 | RegisterObject(AddQuest); |
---|
| 57 | } |
---|
[2092] | 58 | |
---|
[1992] | 59 | /** |
---|
| 60 | @brief |
---|
| 61 | Destructor. |
---|
[2092] | 62 | */ |
---|
[1992] | 63 | AddQuest::~AddQuest() |
---|
| 64 | { |
---|
| 65 | } |
---|
[2092] | 66 | |
---|
[2261] | 67 | /** |
---|
| 68 | @brief |
---|
| 69 | Method for creating a AddQuest object through XML. |
---|
| 70 | */ |
---|
[2076] | 71 | void AddQuest::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
| 72 | { |
---|
| 73 | SUPER(AddQuest, XMLPort, xmlelement, mode); |
---|
[2261] | 74 | |
---|
| 75 | COUT(3) << "New AddQuest, with target Quest {" << this->getQuestId() << "}, created." << std::endl; |
---|
[2076] | 76 | } |
---|
[2092] | 77 | |
---|
[1992] | 78 | /** |
---|
| 79 | @brief |
---|
[2261] | 80 | Invokes the QuestEffect. |
---|
[1992] | 81 | @param player |
---|
[2261] | 82 | The player the QuestEffect is invoked on. |
---|
[2068] | 83 | @return |
---|
[2261] | 84 | Returns true if the QuestEffect was successfully invoked. |
---|
[1992] | 85 | */ |
---|
[2261] | 86 | bool AddQuest::invoke(PlayerInfo* player) |
---|
[1992] | 87 | { |
---|
[2261] | 88 | if(player == NULL) //!< Null-pointers are badass. |
---|
[2068] | 89 | { |
---|
| 90 | COUT(2) << "Input player is NULL." << std::endl; |
---|
| 91 | return false; |
---|
| 92 | } |
---|
[2092] | 93 | |
---|
[2261] | 94 | COUT(3) << "AddQuest on player: " << player << " ." << std::endl; |
---|
| 95 | |
---|
[2068] | 96 | try |
---|
| 97 | { |
---|
[2093] | 98 | Quest* quest = QuestManager::findQuest(this->getQuestId()); |
---|
[2261] | 99 | if(quest == NULL || !quest->start(player)) |
---|
[2093] | 100 | { |
---|
| 101 | return false; |
---|
| 102 | } |
---|
| 103 | } |
---|
| 104 | catch(const orxonox::Exception& ex) |
---|
| 105 | { |
---|
[2068] | 106 | COUT(2) << ex.getFullDescription() << std::endl; |
---|
| 107 | return false; |
---|
[2093] | 108 | } |
---|
[2092] | 109 | |
---|
[2662] | 110 | COUT(3) << "Quest {" << this->getQuestId() << "} successfully added to player: " << player << " ." << std::endl; |
---|
[2093] | 111 | return true; |
---|
[1992] | 112 | } |
---|
| 113 | |
---|
| 114 | |
---|
| 115 | } |
---|