[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: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
[2850] | 29 | #include "GSMainMenu.h" |
---|
[1661] | 30 | |
---|
[2850] | 31 | #include <OgreSceneManager.h> |
---|
[3196] | 32 | |
---|
| 33 | #include "core/input/InputManager.h" |
---|
[3327] | 34 | #include "core/input/InputState.h" |
---|
[5863] | 35 | #include "core/input/KeyBinderManager.h" |
---|
[3196] | 36 | #include "core/Game.h" |
---|
[2844] | 37 | #include "core/ConsoleCommand.h" |
---|
[5956] | 38 | #include "core/ConfigValueIncludes.h" |
---|
[3370] | 39 | #include "core/GraphicsManager.h" |
---|
| 40 | #include "core/GUIManager.h" |
---|
[5735] | 41 | #include "Scene.h" |
---|
[5896] | 42 | #include "sound/AmbientSound.h" |
---|
[1661] | 43 | |
---|
| 44 | namespace orxonox |
---|
| 45 | { |
---|
[3280] | 46 | DeclareGameState(GSMainMenu, "mainMenu", false, true); |
---|
[2844] | 47 | |
---|
[3370] | 48 | GSMainMenu::GSMainMenu(const GameStateInfo& info) |
---|
| 49 | : GameState(info) |
---|
[2850] | 50 | , inputState_(0) |
---|
[1661] | 51 | { |
---|
[6072] | 52 | RegisterRootObject(GSMainMenu); |
---|
[3327] | 53 | inputState_ = InputManager::getInstance().createInputState("mainMenu"); |
---|
[5910] | 54 | inputState_->setMouseMode(MouseMode::Nonexclusive); |
---|
[2850] | 55 | inputState_->setHandler(GUIManager::getInstancePtr()); |
---|
[5863] | 56 | inputState_->setKeyHandler(KeyBinderManager::getInstance().getDefaultAsHandler()); |
---|
[3327] | 57 | inputState_->setJoyStickHandler(&InputHandler::EMPTY); |
---|
[1688] | 58 | |
---|
[2850] | 59 | // create an empty Scene |
---|
[5876] | 60 | this->scene_ = new Scene(NULL); |
---|
[5918] | 61 | this->scene_->setSyncMode( 0x0 ); |
---|
[2850] | 62 | // and a Camera |
---|
| 63 | this->camera_ = this->scene_->getSceneManager()->createCamera("mainMenu/Camera"); |
---|
[5878] | 64 | if (GameMode::playsSound()) |
---|
| 65 | { |
---|
| 66 | // Load sound |
---|
[5896] | 67 | this->ambient_ = new AmbientSound(0); |
---|
[5878] | 68 | } |
---|
[3370] | 69 | } |
---|
[2850] | 70 | |
---|
[3370] | 71 | GSMainMenu::~GSMainMenu() |
---|
| 72 | { |
---|
[5878] | 73 | if (GameMode::playsSound()) |
---|
[5892] | 74 | delete this->ambient_; |
---|
[5878] | 75 | |
---|
[3370] | 76 | InputManager::getInstance().destroyState("mainMenu"); |
---|
| 77 | |
---|
| 78 | this->scene_->getSceneManager()->destroyCamera(this->camera_); |
---|
[5799] | 79 | this->scene_->destroy(); |
---|
[3370] | 80 | } |
---|
| 81 | |
---|
| 82 | void GSMainMenu::activate() |
---|
| 83 | { |
---|
[1661] | 84 | // show main menu |
---|
[5695] | 85 | GUIManager::getInstance().showGUI("MainMenu"); |
---|
[2850] | 86 | GUIManager::getInstance().setCamera(this->camera_); |
---|
| 87 | GraphicsManager::getInstance().setCamera(this->camera_); |
---|
[2844] | 88 | |
---|
[5920] | 89 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startStandalone), "startGame")); |
---|
| 90 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startServer), "startServer")); |
---|
| 91 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startClient), "startClient")); |
---|
| 92 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startDedicated), "startDedicated")); |
---|
| 93 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startMainMenu), "startMainMenu")); |
---|
| 94 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startIOConsole), "startIOConsole")); |
---|
[6072] | 95 | |
---|
| 96 | // create command to change sound path |
---|
| 97 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::setMainMenuSoundPath, this), "setMMSoundPath")); |
---|
[2853] | 98 | |
---|
[5863] | 99 | KeyBinderManager::getInstance().setToDefault(); |
---|
[3327] | 100 | InputManager::getInstance().enterState("mainMenu"); |
---|
[3060] | 101 | |
---|
[5878] | 102 | if (GameMode::playsSound()) |
---|
| 103 | { |
---|
[6071] | 104 | this->ambient_->setLooping(true); |
---|
| 105 | this->ambient_->play(); // works without source |
---|
[5878] | 106 | } |
---|
[5956] | 107 | |
---|
[6072] | 108 | this->setConfigValues(); |
---|
[1661] | 109 | } |
---|
| 110 | |
---|
[2850] | 111 | void GSMainMenu::deactivate() |
---|
[1661] | 112 | { |
---|
[5878] | 113 | if (GameMode::playsSound()) |
---|
| 114 | { |
---|
| 115 | this->ambient_->stop(); |
---|
| 116 | } |
---|
[3060] | 117 | |
---|
[3327] | 118 | InputManager::getInstance().leaveState("mainMenu"); |
---|
[2850] | 119 | |
---|
[2927] | 120 | GUIManager::getInstance().setCamera(0); |
---|
| 121 | GraphicsManager::getInstance().setCamera(0); |
---|
[1661] | 122 | } |
---|
| 123 | |
---|
[2850] | 124 | void GSMainMenu::update(const Clock& time) |
---|
[1661] | 125 | { |
---|
[2844] | 126 | } |
---|
[1661] | 127 | |
---|
[6072] | 128 | void GSMainMenu::setConfigValues() |
---|
[5956] | 129 | { |
---|
[6031] | 130 | SetConfigValue(soundPathMain_, "mainmenu.wav") |
---|
[5956] | 131 | .description("Contains the path to the main menu sound file.") |
---|
[6072] | 132 | .callback(this, &GSMainMenu::reloadSound); |
---|
[5956] | 133 | } |
---|
| 134 | |
---|
[6072] | 135 | void GSMainMenu::reloadSound() |
---|
| 136 | { |
---|
| 137 | if (GameMode::playsSound()) |
---|
[5956] | 138 | { |
---|
[6071] | 139 | this->ambient_->setAmbientSource(soundPathMain_); |
---|
[6072] | 140 | } |
---|
| 141 | } |
---|
[5956] | 142 | |
---|
[6072] | 143 | const std::string& GSMainMenu::getMainMenuSoundPath() |
---|
| 144 | { |
---|
| 145 | return soundPathMain_; |
---|
| 146 | } |
---|
[5956] | 147 | |
---|
[6072] | 148 | void GSMainMenu::setMainMenuSoundPath(const std::string& path) |
---|
| 149 | { |
---|
| 150 | ModifyConfigValue(soundPathMain_, set, path); |
---|
| 151 | } |
---|
[5956] | 152 | |
---|
[3094] | 153 | void GSMainMenu::startStandalone() |
---|
[2844] | 154 | { |
---|
| 155 | // HACK - HACK |
---|
| 156 | Game::getInstance().popState(); |
---|
[2850] | 157 | Game::getInstance().requestStates("standalone, level"); |
---|
[1661] | 158 | } |
---|
[3094] | 159 | |
---|
| 160 | void GSMainMenu::startServer() |
---|
| 161 | { |
---|
| 162 | // HACK - HACK |
---|
| 163 | Game::getInstance().popState(); |
---|
| 164 | Game::getInstance().requestStates("server, level"); |
---|
| 165 | } |
---|
| 166 | |
---|
| 167 | void GSMainMenu::startClient() |
---|
| 168 | { |
---|
| 169 | // HACK - HACK |
---|
| 170 | Game::getInstance().popState(); |
---|
| 171 | Game::getInstance().requestStates("client, level"); |
---|
| 172 | } |
---|
| 173 | |
---|
| 174 | void GSMainMenu::startDedicated() |
---|
| 175 | { |
---|
| 176 | // HACK - HACK |
---|
| 177 | Game::getInstance().popState(); |
---|
| 178 | Game::getInstance().popState(); |
---|
| 179 | Game::getInstance().requestStates("dedicated, level"); |
---|
| 180 | } |
---|
[5817] | 181 | void GSMainMenu::startMainMenu() |
---|
| 182 | { |
---|
| 183 | // HACK - HACK |
---|
| 184 | Game::getInstance().popState(); |
---|
| 185 | Game::getInstance().popState(); |
---|
| 186 | Game::getInstance().requestStates("mainmenu"); |
---|
| 187 | } |
---|
[5918] | 188 | void GSMainMenu::startIOConsole() |
---|
| 189 | { |
---|
| 190 | // HACK - HACK |
---|
| 191 | Game::getInstance().popState(); |
---|
| 192 | Game::getInstance().popState(); |
---|
| 193 | Game::getInstance().requestStates("ioConsole"); |
---|
| 194 | } |
---|
[1661] | 195 | } |
---|