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