[1661] | 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 | * Reto Grieder |
---|
| 24 | * Co-authors: |
---|
[1662] | 25 | * Fabian 'x3n' Landau |
---|
[2896] | 26 | * Benjamin Knecht |
---|
[1661] | 27 | * |
---|
| 28 | */ |
---|
| 29 | |
---|
| 30 | #include "OrxonoxStableHeaders.h" |
---|
| 31 | #include "GSLevel.h" |
---|
| 32 | |
---|
| 33 | #include "core/input/InputManager.h" |
---|
| 34 | #include "core/input/SimpleInputState.h" |
---|
| 35 | #include "core/input/KeyBinder.h" |
---|
[1662] | 36 | #include "core/Loader.h" |
---|
[2087] | 37 | #include "core/XMLFile.h" |
---|
[1887] | 38 | #include "core/CommandExecutor.h" |
---|
| 39 | #include "core/ConsoleCommand.h" |
---|
[1934] | 40 | #include "core/CommandLine.h" |
---|
[1887] | 41 | #include "core/ConfigValueIncludes.h" |
---|
[2896] | 42 | #include "core/Core.h" |
---|
[1887] | 43 | #include "core/CoreIncludes.h" |
---|
[2896] | 44 | #include "core/Game.h" |
---|
| 45 | #include "core/GameMode.h" |
---|
[1694] | 46 | #include "objects/Tickable.h" |
---|
[1819] | 47 | #include "objects/Radar.h" |
---|
[2087] | 48 | #include "CameraManager.h" |
---|
[2896] | 49 | #include "GraphicsManager.h" |
---|
[2087] | 50 | #include "LevelManager.h" |
---|
[2662] | 51 | #include "PlayerManager.h" |
---|
[2896] | 52 | #include "gui/GUIManager.h" |
---|
[2911] | 53 | #include "objects/quest/QuestManager.h" |
---|
| 54 | #include "overlays/notifications/NotificationManager.h" |
---|
[1661] | 55 | |
---|
| 56 | namespace orxonox |
---|
| 57 | { |
---|
[2896] | 58 | AddGameState(GSLevel, "level"); |
---|
| 59 | |
---|
[2826] | 60 | SetCommandLineArgument(level, "presentation_dm.oxw").shortcut("l"); |
---|
[2896] | 61 | SetConsoleCommand(GSLevel, showIngameGUI, true); |
---|
[1934] | 62 | |
---|
[2896] | 63 | GSLevel::GSLevel(const std::string& name) |
---|
| 64 | : GameState(name) |
---|
| 65 | , keyBinder_(0) |
---|
| 66 | , gameInputState_(0) |
---|
| 67 | , guiMouseOnlyInputState_(0) |
---|
| 68 | , guiKeysOnlyInputState_(0) |
---|
[1662] | 69 | , radar_(0) |
---|
[2087] | 70 | , startFile_(0) |
---|
| 71 | , cameraManager_(0) |
---|
| 72 | , levelManager_(0) |
---|
[1661] | 73 | { |
---|
[1887] | 74 | RegisterObject(GSLevel); |
---|
[2662] | 75 | |
---|
| 76 | this->ccKeybind_ = 0; |
---|
| 77 | this->ccTkeybind_ = 0; |
---|
[1661] | 78 | } |
---|
| 79 | |
---|
| 80 | GSLevel::~GSLevel() |
---|
| 81 | { |
---|
| 82 | } |
---|
| 83 | |
---|
[1887] | 84 | void GSLevel::setConfigValues() |
---|
| 85 | { |
---|
| 86 | SetConfigValue(keyDetectorCallbackCode_, "KeybindBindingStringKeyName="); |
---|
| 87 | } |
---|
| 88 | |
---|
[2896] | 89 | void GSLevel::activate() |
---|
[1661] | 90 | { |
---|
[2896] | 91 | setConfigValues(); |
---|
| 92 | |
---|
| 93 | if (GameMode::showsGraphics()) |
---|
[2087] | 94 | { |
---|
[2896] | 95 | gameInputState_ = InputManager::getInstance().createInputState<SimpleInputState>("game"); |
---|
[2087] | 96 | keyBinder_ = new KeyBinder(); |
---|
[2710] | 97 | keyBinder_->loadBindings("keybindings.ini"); |
---|
[2896] | 98 | gameInputState_->setHandler(keyBinder_); |
---|
[1661] | 99 | |
---|
[2896] | 100 | guiMouseOnlyInputState_ = InputManager::getInstance().createInputState<SimpleInputState>("guiMouseOnly"); |
---|
| 101 | guiMouseOnlyInputState_->setMouseHandler(GUIManager::getInstancePtr()); |
---|
| 102 | |
---|
| 103 | guiKeysOnlyInputState_ = InputManager::getInstance().createInputState<SimpleInputState>("guiKeysOnly"); |
---|
| 104 | guiKeysOnlyInputState_->setKeyHandler(GUIManager::getInstancePtr()); |
---|
| 105 | |
---|
[2087] | 106 | // create the global CameraManager |
---|
[2896] | 107 | this->cameraManager_ = new CameraManager(GraphicsManager::getInstance().getViewport()); |
---|
[1688] | 108 | |
---|
[2087] | 109 | // Start the Radar |
---|
| 110 | this->radar_ = new Radar(); |
---|
| 111 | } |
---|
[1662] | 112 | |
---|
[2662] | 113 | this->playerManager_ = new PlayerManager(); |
---|
| 114 | |
---|
[2911] | 115 | this->questManager_ = new QuestManager(); |
---|
| 116 | |
---|
| 117 | this->notificationManager_ = new NotificationManager(); |
---|
| 118 | |
---|
[2896] | 119 | if (GameMode::isMaster()) |
---|
[2087] | 120 | { |
---|
| 121 | // create the global LevelManager |
---|
| 122 | this->levelManager_ = new LevelManager(); |
---|
[1662] | 123 | |
---|
[2087] | 124 | this->loadLevel(); |
---|
| 125 | } |
---|
[1755] | 126 | |
---|
[2896] | 127 | if (GameMode::showsGraphics()) |
---|
[2087] | 128 | { |
---|
| 129 | // keybind console command |
---|
| 130 | FunctorMember<GSLevel>* functor1 = createFunctor(&GSLevel::keybind); |
---|
| 131 | functor1->setObject(this); |
---|
[2662] | 132 | ccKeybind_ = createConsoleCommand(functor1, "keybind"); |
---|
| 133 | CommandExecutor::addConsoleCommandShortcut(ccKeybind_); |
---|
[2087] | 134 | FunctorMember<GSLevel>* functor2 = createFunctor(&GSLevel::tkeybind); |
---|
| 135 | functor2->setObject(this); |
---|
[2662] | 136 | ccTkeybind_ = createConsoleCommand(functor2, "tkeybind"); |
---|
| 137 | CommandExecutor::addConsoleCommandShortcut(ccTkeybind_); |
---|
[2087] | 138 | // set our console command as callback for the key detector |
---|
| 139 | InputManager::getInstance().setKeyDetectorCallback(std::string("keybind ") + keyDetectorCallbackCode_); |
---|
| 140 | |
---|
| 141 | // level is loaded: we can start capturing the input |
---|
| 142 | InputManager::getInstance().requestEnterState("game"); |
---|
| 143 | } |
---|
[2662] | 144 | } |
---|
[2087] | 145 | |
---|
[2896] | 146 | void GSLevel::showIngameGUI(bool show) |
---|
[2662] | 147 | { |
---|
[2896] | 148 | if (show) |
---|
| 149 | { |
---|
| 150 | GUIManager::getInstancePtr()->showGUI("inGameTest"); |
---|
| 151 | GUIManager::getInstancePtr()->executeCode("showCursor()"); |
---|
| 152 | InputManager::getInstance().requestEnterState("guiMouseOnly"); |
---|
| 153 | } |
---|
| 154 | else |
---|
| 155 | { |
---|
| 156 | GUIManager::getInstancePtr()->executeCode("hideGUI(\"inGameTest\")"); |
---|
| 157 | GUIManager::getInstancePtr()->executeCode("hideCursor()"); |
---|
| 158 | InputManager::getInstance().requestLeaveState("guiMouseOnly"); |
---|
| 159 | } |
---|
| 160 | } |
---|
| 161 | |
---|
| 162 | void GSLevel::deactivate() |
---|
| 163 | { |
---|
[2928] | 164 | /* |
---|
[2662] | 165 | // destroy console commands |
---|
| 166 | if (this->ccKeybind_) |
---|
[2087] | 167 | { |
---|
[2662] | 168 | delete this->ccKeybind_; |
---|
| 169 | this->ccKeybind_ = 0; |
---|
[2087] | 170 | } |
---|
[2662] | 171 | if (this->ccTkeybind_) |
---|
| 172 | { |
---|
| 173 | delete this->ccTkeybind_; |
---|
| 174 | this->ccTkeybind_ = 0; |
---|
| 175 | } |
---|
[2928] | 176 | */ |
---|
[1661] | 177 | |
---|
[2896] | 178 | |
---|
[1662] | 179 | // this call will delete every BaseObject! |
---|
| 180 | // But currently this will call methods of objects that exist no more |
---|
| 181 | // The only 'memory leak' is the ParticleSpawer. They would be deleted here |
---|
| 182 | // and call a sceneNode method that has already been destroy by the corresponding space ship. |
---|
| 183 | //Loader::close(); |
---|
| 184 | |
---|
[2896] | 185 | if (GameMode::showsGraphics()) |
---|
[2087] | 186 | InputManager::getInstance().requestLeaveState("game"); |
---|
[1662] | 187 | |
---|
[2896] | 188 | if (GameMode::isMaster()) |
---|
[2087] | 189 | this->unloadLevel(); |
---|
[1662] | 190 | |
---|
[2087] | 191 | if (this->radar_) |
---|
[2662] | 192 | { |
---|
[2087] | 193 | delete this->radar_; |
---|
[2662] | 194 | this->radar_ = 0; |
---|
| 195 | } |
---|
[2087] | 196 | |
---|
| 197 | if (this->cameraManager_) |
---|
[2662] | 198 | { |
---|
[2087] | 199 | delete this->cameraManager_; |
---|
[2662] | 200 | this->cameraManager_ = 0; |
---|
| 201 | } |
---|
[2087] | 202 | |
---|
| 203 | if (this->levelManager_) |
---|
[2662] | 204 | { |
---|
[2087] | 205 | delete this->levelManager_; |
---|
[2662] | 206 | this->levelManager_ = 0; |
---|
| 207 | } |
---|
[2087] | 208 | |
---|
[2662] | 209 | if (this->playerManager_) |
---|
| 210 | { |
---|
| 211 | delete this->playerManager_; |
---|
| 212 | this->playerManager_ = 0; |
---|
| 213 | } |
---|
| 214 | |
---|
[2911] | 215 | if (this->questManager_) |
---|
| 216 | { |
---|
| 217 | delete this->questManager_; |
---|
| 218 | this->questManager_ = NULL; |
---|
| 219 | } |
---|
| 220 | |
---|
| 221 | if (this->notificationManager_) |
---|
| 222 | { |
---|
| 223 | delete this->notificationManager_; |
---|
| 224 | this->notificationManager_ = NULL; |
---|
| 225 | } |
---|
| 226 | |
---|
[2896] | 227 | if (GameMode::showsGraphics()) |
---|
[2087] | 228 | { |
---|
[2896] | 229 | gameInputState_->setHandler(0); |
---|
| 230 | guiMouseOnlyInputState_->setHandler(0); |
---|
| 231 | guiKeysOnlyInputState_->setHandler(0); |
---|
[2087] | 232 | InputManager::getInstance().requestDestroyState("game"); |
---|
| 233 | if (this->keyBinder_) |
---|
[2662] | 234 | { |
---|
[2087] | 235 | delete this->keyBinder_; |
---|
[2662] | 236 | this->keyBinder_ = 0; |
---|
| 237 | } |
---|
[2087] | 238 | } |
---|
[1661] | 239 | } |
---|
| 240 | |
---|
[2896] | 241 | void GSLevel::update(const Clock& time) |
---|
[1661] | 242 | { |
---|
[2896] | 243 | // Note: Temporarily moved to GSGraphics. |
---|
[2087] | 244 | //// Call the scene objects |
---|
| 245 | //for (ObjectList<Tickable>::iterator it = ObjectList<Tickable>::begin(); it; ++it) |
---|
| 246 | // it->tick(time.getDeltaTime() * this->timeFactor_); |
---|
[1661] | 247 | } |
---|
| 248 | |
---|
[1670] | 249 | void GSLevel::loadLevel() |
---|
| 250 | { |
---|
| 251 | // call the loader |
---|
| 252 | COUT(0) << "Loading level..." << std::endl; |
---|
[1934] | 253 | std::string levelName; |
---|
| 254 | CommandLine::getValue("level", &levelName); |
---|
[2759] | 255 | startFile_ = new XMLFile(Core::getMediaPathString() + "levels" + '/' + levelName); |
---|
[2087] | 256 | Loader::open(startFile_); |
---|
[1670] | 257 | } |
---|
| 258 | |
---|
| 259 | void GSLevel::unloadLevel() |
---|
| 260 | { |
---|
[2087] | 261 | ////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 262 | // TODO // TODO // TODO // TODO // TODO // TODO // TODO // TODO // TODO // TODO // TODO // |
---|
| 263 | ////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 264 | // Loader::unload(startFile_); // TODO: REACTIVATE THIS IF LOADER::UNLOAD WORKS PROPERLY / |
---|
| 265 | ////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 266 | |
---|
| 267 | delete this->startFile_; |
---|
[1670] | 268 | } |
---|
[1887] | 269 | |
---|
| 270 | void GSLevel::keybind(const std::string &command) |
---|
| 271 | { |
---|
| 272 | this->keybindInternal(command, false); |
---|
| 273 | } |
---|
| 274 | |
---|
| 275 | void GSLevel::tkeybind(const std::string &command) |
---|
| 276 | { |
---|
| 277 | this->keybindInternal(command, true); |
---|
| 278 | } |
---|
| 279 | |
---|
| 280 | /** |
---|
| 281 | @brief |
---|
| 282 | Assigns a command string to a key/button/axis. The name is determined via KeyDetector. |
---|
| 283 | @param command |
---|
| 284 | Command string that can be executed by the CommandExecutor |
---|
| 285 | OR: Internal string "KeybindBindingStringKeyName=" used for the second call to identify |
---|
[2896] | 286 | the key/button/axis that has been activated. This is configured above in activate(). |
---|
[1887] | 287 | */ |
---|
| 288 | void GSLevel::keybindInternal(const std::string& command, bool bTemporary) |
---|
| 289 | { |
---|
[2896] | 290 | if (GameMode::showsGraphics()) |
---|
[1887] | 291 | { |
---|
[2087] | 292 | static std::string bindingString = ""; |
---|
| 293 | static bool bTemporarySaved = false; |
---|
| 294 | static bool bound = true; |
---|
| 295 | // note: We use a long name to make 'sure' that the user doesn't use it accidentally. |
---|
| 296 | // Howerver there will be no real issue if it happens anyway. |
---|
| 297 | if (command.find(keyDetectorCallbackCode_) != 0) |
---|
[1887] | 298 | { |
---|
[2087] | 299 | if (bound) |
---|
| 300 | { |
---|
| 301 | COUT(0) << "Press any button/key or move a mouse/joystick axis" << std::endl; |
---|
| 302 | InputManager::getInstance().requestEnterState("detector"); |
---|
| 303 | bindingString = command; |
---|
| 304 | bTemporarySaved = bTemporary; |
---|
| 305 | bound = false; |
---|
| 306 | } |
---|
| 307 | //else: We're still in a keybind command. ignore this call. |
---|
[1887] | 308 | } |
---|
[2087] | 309 | else |
---|
[1887] | 310 | { |
---|
[2087] | 311 | if (!bound) |
---|
| 312 | { |
---|
| 313 | // user has pressed the key |
---|
| 314 | std::string name = command.substr(this->keyDetectorCallbackCode_.size()); |
---|
| 315 | COUT(0) << "Binding string \"" << bindingString << "\" on key '" << name << "'" << std::endl; |
---|
| 316 | this->keyBinder_->setBinding(bindingString, name, bTemporarySaved); |
---|
| 317 | InputManager::getInstance().requestLeaveState("detector"); |
---|
| 318 | bound = true; |
---|
| 319 | } |
---|
| 320 | // else: A key was pressed within the same tick, ignore it. |
---|
[1887] | 321 | } |
---|
| 322 | } |
---|
| 323 | } |
---|
[1661] | 324 | } |
---|