[1996] | 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 | /** |
---|
[3196] | 30 | @file |
---|
[2662] | 31 | @brief Implementation of the QuestManager class. |
---|
[2261] | 32 | */ |
---|
| 33 | |
---|
[2105] | 34 | #include "QuestManager.h" |
---|
| 35 | |
---|
[5748] | 36 | #include <CEGUIWindow.h> |
---|
| 37 | |
---|
[3196] | 38 | #include "util/Exception.h" |
---|
[1996] | 39 | #include "core/CoreIncludes.h" |
---|
[5693] | 40 | #include "core/GUIManager.h" |
---|
[5745] | 41 | #include "core/ConsoleCommand.h" |
---|
[5755] | 42 | #include "core/LuaState.h" |
---|
[5929] | 43 | #include "core/ScopedSingletonManager.h" |
---|
[5748] | 44 | #include "infos/PlayerInfo.h" |
---|
[5745] | 45 | #include "overlays/GUIOverlay.h" |
---|
[2105] | 46 | |
---|
[5755] | 47 | #include "ToluaBindQuestsystem.h" |
---|
[2095] | 48 | #include "Quest.h" |
---|
| 49 | #include "QuestHint.h" |
---|
[5748] | 50 | #include "QuestItem.h" |
---|
[1996] | 51 | |
---|
[2662] | 52 | namespace orxonox |
---|
| 53 | { |
---|
[5755] | 54 | // Register tolua_open function when loading the library |
---|
| 55 | DeclareToluaInterface(Questsystem); |
---|
| 56 | |
---|
[5929] | 57 | ManageScopedSingleton(QuestManager, ScopeID::Root, false); |
---|
[1996] | 58 | |
---|
[2261] | 59 | /** |
---|
| 60 | @brief |
---|
| 61 | Constructor. Registers the object. |
---|
[2911] | 62 | @todo |
---|
| 63 | Is inheriting from BaseObject proper? |
---|
[2261] | 64 | */ |
---|
[2911] | 65 | QuestManager::QuestManager() |
---|
[1996] | 66 | { |
---|
[2911] | 67 | RegisterRootObject(QuestManager); |
---|
[1996] | 68 | } |
---|
[2092] | 69 | |
---|
[2261] | 70 | /** |
---|
| 71 | @brief |
---|
| 72 | Destructor. |
---|
| 73 | */ |
---|
[1996] | 74 | QuestManager::~QuestManager() |
---|
| 75 | { |
---|
[5745] | 76 | for(std::map<PlayerInfo*, QuestGUI*>::iterator it = this->questGUIs_.begin(); it != this->questGUIs_.end(); it++) |
---|
| 77 | { |
---|
[6400] | 78 | it->second->destroy(); |
---|
[5745] | 79 | } |
---|
| 80 | this->questGUIs_.clear(); |
---|
[1996] | 81 | } |
---|
| 82 | |
---|
| 83 | /** |
---|
| 84 | @brief |
---|
[5745] | 85 | Retreive all Quests. |
---|
| 86 | @return |
---|
| 87 | Returns a map with all Quests indexed by their id's. |
---|
| 88 | */ |
---|
| 89 | std::map<std::string, Quest*> & QuestManager::getQuests(void) |
---|
| 90 | { |
---|
| 91 | return this->questMap_; |
---|
| 92 | } |
---|
| 93 | |
---|
| 94 | /** |
---|
| 95 | @brief |
---|
[2261] | 96 | Registers a Quest with the QuestManager to make it globally accessable. |
---|
| 97 | Uses it's id to make sure to be able to be identify and retrieve it later. |
---|
[1996] | 98 | @param quest |
---|
[2261] | 99 | The Quest that is to be registered. |
---|
[1996] | 100 | @return |
---|
| 101 | Returns true if successful, false if not. |
---|
| 102 | */ |
---|
[2911] | 103 | bool QuestManager::registerQuest(Quest* quest) |
---|
[1996] | 104 | { |
---|
[2261] | 105 | if(quest == NULL) //!< Doh! Just as if there were actual quests behind NULL-pointers. |
---|
[2068] | 106 | { |
---|
| 107 | COUT(2) << "Registration of Quest in QuestManager failed, because inserted Quest-pointer was NULL." << std::endl; |
---|
| 108 | return false; |
---|
[2093] | 109 | } |
---|
[2092] | 110 | |
---|
[2261] | 111 | std::pair<std::map<std::string, Quest*>::iterator,bool> result; |
---|
[2911] | 112 | result = this->questMap_.insert( std::pair<std::string,Quest*>(quest->getId(),quest) ); //!< Inserting the Quest. |
---|
[2092] | 113 | |
---|
[2261] | 114 | if(result.second) //!< If inserting was a success. |
---|
[2068] | 115 | { |
---|
| 116 | COUT(3) << "Quest with questId {" << quest->getId() << "} successfully inserted." << std::endl; |
---|
| 117 | return true; |
---|
[2093] | 118 | } |
---|
| 119 | else |
---|
| 120 | { |
---|
| 121 | COUT(2) << "Quest with the same id was already present." << std::endl; |
---|
| 122 | return false; |
---|
| 123 | } |
---|
[1996] | 124 | } |
---|
[2092] | 125 | |
---|
[1996] | 126 | /** |
---|
| 127 | @brief |
---|
| 128 | Registers a QuestHint with the QuestManager to make it globally accessable. |
---|
[2261] | 129 | Uses it's id to make sure to be able to be identify and retrieve it later. |
---|
[1996] | 130 | @param hint |
---|
| 131 | The QuestHint to be registered. |
---|
| 132 | @return |
---|
| 133 | Returns true if successful, false if not. |
---|
| 134 | */ |
---|
[2911] | 135 | bool QuestManager::registerHint(QuestHint* hint) |
---|
[1996] | 136 | { |
---|
[2261] | 137 | if(hint == NULL) //!< Still not liking NULL-pointers. |
---|
[2068] | 138 | { |
---|
| 139 | COUT(2) << "Registration of QuestHint in QuestManager failed, because inserted QuestHint-pointer was NULL." << std::endl; |
---|
| 140 | return false; |
---|
| 141 | } |
---|
[2092] | 142 | |
---|
[2261] | 143 | std::pair<std::map<std::string, QuestHint*>::iterator,bool> result; |
---|
[2911] | 144 | result = this->hintMap_.insert ( std::pair<std::string,QuestHint*>(hint->getId(),hint) ); //!< Inserting the QuestHSint. |
---|
[2092] | 145 | |
---|
[2261] | 146 | if(result.second) //!< If inserting was a success. |
---|
[2068] | 147 | { |
---|
| 148 | COUT(3) << "QuestHint with hintId {" << hint->getId() << "} successfully inserted." << std::endl; |
---|
| 149 | return true; |
---|
[2093] | 150 | } |
---|
| 151 | else |
---|
| 152 | { |
---|
| 153 | COUT(2) << "QuestHint with the same id was already present." << std::endl; |
---|
| 154 | return false; |
---|
| 155 | } |
---|
[1996] | 156 | } |
---|
[2092] | 157 | |
---|
[1996] | 158 | /** |
---|
| 159 | @brief |
---|
[2261] | 160 | Finds a Quest with the given id. |
---|
[1996] | 161 | @param questId |
---|
[2261] | 162 | The id of the Quest sought for. |
---|
[1996] | 163 | @return |
---|
[2261] | 164 | Returns a pointer to the Quest with the input id. |
---|
| 165 | Returns NULL if there is no Quest with the given questId. |
---|
[2068] | 166 | @throws |
---|
| 167 | Throws an exception if the given questId is invalid. |
---|
[1996] | 168 | */ |
---|
[2911] | 169 | Quest* QuestManager::findQuest(const std::string & questId) |
---|
[1996] | 170 | { |
---|
[2261] | 171 | if(!QuestItem::isId(questId)) //!< Check vor validity of the given id. |
---|
[2093] | 172 | { |
---|
[2068] | 173 | ThrowException(Argument, "Invalid questId."); |
---|
[2093] | 174 | } |
---|
[2092] | 175 | |
---|
[1996] | 176 | Quest* quest; |
---|
[2911] | 177 | std::map<std::string, Quest*>::iterator it = this->questMap_.find(questId); |
---|
| 178 | if (it != this->questMap_.end()) //!< If the Quest is registered. |
---|
[2093] | 179 | { |
---|
| 180 | quest = it->second; |
---|
| 181 | } |
---|
| 182 | else |
---|
| 183 | { |
---|
| 184 | quest = NULL; |
---|
| 185 | COUT(2) << "The quest with id {" << questId << "} is nowhere to be found." << std::endl; |
---|
| 186 | } |
---|
[2092] | 187 | |
---|
[2093] | 188 | return quest; |
---|
[1996] | 189 | |
---|
| 190 | } |
---|
[2092] | 191 | |
---|
[1996] | 192 | /** |
---|
| 193 | @brief |
---|
[2261] | 194 | Finds a QuestHint with the given id. |
---|
[1996] | 195 | @param hintId |
---|
[2261] | 196 | The id of the QuestHint sought for. |
---|
[1996] | 197 | @return |
---|
[2261] | 198 | Returns a pointer to the QuestHint with the input id. |
---|
| 199 | Returns NULL if there is no QuestHint with the given hintId. |
---|
[2068] | 200 | @throws |
---|
| 201 | Throws an exception if the given hintId is invalid. |
---|
[1996] | 202 | */ |
---|
[2911] | 203 | QuestHint* QuestManager::findHint(const std::string & hintId) |
---|
[1996] | 204 | { |
---|
[2261] | 205 | if(!QuestItem::isId(hintId)) //!< Check vor validity of the given id. |
---|
[2093] | 206 | { |
---|
[2068] | 207 | ThrowException(Argument, "Invalid hintId."); |
---|
[2093] | 208 | } |
---|
[2092] | 209 | |
---|
[1996] | 210 | QuestHint* hint; |
---|
[2911] | 211 | std::map<std::string, QuestHint*>::iterator it = this->hintMap_.find(hintId); |
---|
| 212 | if (it != this->hintMap_.end()) //!< If the QuestHint is registered. |
---|
[2093] | 213 | { |
---|
| 214 | hint = it->second; |
---|
| 215 | } |
---|
| 216 | else |
---|
| 217 | { |
---|
| 218 | hint = NULL; |
---|
| 219 | COUT(2) << "The hint with id {" << hintId << "} is nowhere to be found." << std::endl; |
---|
| 220 | } |
---|
[2092] | 221 | |
---|
[2093] | 222 | return hint; |
---|
[1996] | 223 | |
---|
| 224 | } |
---|
| 225 | |
---|
[2993] | 226 | /** |
---|
| 227 | @brief |
---|
[5745] | 228 | Retreive the main window for the GUI. |
---|
| 229 | This is for the use in the lua script tu start the QuestGUI. |
---|
| 230 | @param guiName |
---|
| 231 | The name of the GUI. |
---|
[2993] | 232 | @return |
---|
[5745] | 233 | Returns a CEGUI Window. |
---|
[2993] | 234 | */ |
---|
[5745] | 235 | CEGUI::Window* QuestManager::getQuestGUI(const std::string & guiName) |
---|
[2963] | 236 | { |
---|
[5745] | 237 | PlayerInfo* player = this->retreivePlayer(guiName); |
---|
[5693] | 238 | |
---|
[5745] | 239 | if(this->questGUIs_.find(player) == this->questGUIs_.end()) //!< Create a new GUI, if there is none, yet. |
---|
| 240 | this->questGUIs_[player] = new QuestGUI(player); |
---|
[5693] | 241 | |
---|
[5745] | 242 | return this->questGUIs_[player]->getGUI(); |
---|
[2963] | 243 | } |
---|
| 244 | |
---|
[2993] | 245 | /** |
---|
| 246 | @brief |
---|
[5745] | 247 | Retrieve the player for a certain GUI. |
---|
| 248 | @param guiName |
---|
| 249 | The name of the GUI the player is retrieved for. |
---|
[2993] | 250 | @return |
---|
[5745] | 251 | Returns the player. |
---|
| 252 | @todo |
---|
| 253 | This very well might be outdated. So: Check if still needed, and update if necessary. |
---|
[2993] | 254 | */ |
---|
[5745] | 255 | PlayerInfo* QuestManager::retreivePlayer(const std::string & guiName) |
---|
[2963] | 256 | { |
---|
[5745] | 257 | PlayerInfo* player = GUIManager::getInstance().getPlayer(guiName); |
---|
| 258 | if(player == NULL) |
---|
[2963] | 259 | { |
---|
[5745] | 260 | COUT(1) << "Error: GUIOverlay with name '" << guiName << "' has no player." << std::endl; |
---|
[2993] | 261 | return NULL; |
---|
| 262 | } |
---|
[5693] | 263 | |
---|
[5745] | 264 | return player; |
---|
[2963] | 265 | } |
---|
| 266 | |
---|
[1996] | 267 | } |
---|