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 | |
---|
29 | #include "GSMainMenu.h" |
---|
30 | |
---|
31 | #include <OgreSceneManager.h> |
---|
32 | |
---|
33 | #include "core/input/InputManager.h" |
---|
34 | #include "core/input/InputState.h" |
---|
35 | #include "core/input/KeyBinderManager.h" |
---|
36 | #include "core/Game.h" |
---|
37 | #include "core/ConsoleCommand.h" |
---|
38 | #include "core/GraphicsManager.h" |
---|
39 | #include "core/GUIManager.h" |
---|
40 | #include "Scene.h" |
---|
41 | #include "sound/AmbientSound.h" |
---|
42 | |
---|
43 | namespace orxonox |
---|
44 | { |
---|
45 | DeclareGameState(GSMainMenu, "mainMenu", false, true); |
---|
46 | |
---|
47 | GSMainMenu::GSMainMenu(const GameStateInfo& info) |
---|
48 | : GameState(info) |
---|
49 | , inputState_(0) |
---|
50 | { |
---|
51 | inputState_ = InputManager::getInstance().createInputState("mainMenu"); |
---|
52 | inputState_->setMouseMode(MouseMode::Nonexclusive); |
---|
53 | inputState_->setHandler(GUIManager::getInstancePtr()); |
---|
54 | inputState_->setKeyHandler(KeyBinderManager::getInstance().getDefaultAsHandler()); |
---|
55 | inputState_->setJoyStickHandler(&InputHandler::EMPTY); |
---|
56 | |
---|
57 | // create an empty Scene |
---|
58 | this->scene_ = new Scene(NULL); |
---|
59 | this->scene_->setSyncMode( 0x0 ); |
---|
60 | // and a Camera |
---|
61 | this->camera_ = this->scene_->getSceneManager()->createCamera("mainMenu/Camera"); |
---|
62 | if (GameMode::playsSound()) |
---|
63 | { |
---|
64 | // Load sound |
---|
65 | this->ambient_ = new AmbientSound(0); |
---|
66 | this->ambient_->setSource("ambient/mainmenu.wav"); |
---|
67 | } |
---|
68 | } |
---|
69 | |
---|
70 | GSMainMenu::~GSMainMenu() |
---|
71 | { |
---|
72 | if (GameMode::playsSound()) |
---|
73 | delete this->ambient_; |
---|
74 | |
---|
75 | InputManager::getInstance().destroyState("mainMenu"); |
---|
76 | |
---|
77 | this->scene_->getSceneManager()->destroyCamera(this->camera_); |
---|
78 | this->scene_->destroy(); |
---|
79 | } |
---|
80 | |
---|
81 | void GSMainMenu::activate() |
---|
82 | { |
---|
83 | // show main menu |
---|
84 | GUIManager::getInstance().showGUI("MainMenu", true, false); |
---|
85 | GUIManager::getInstance().setCamera(this->camera_); |
---|
86 | GUIManager::getInstance().setBackground("MainMenuBackground"); |
---|
87 | // GUIManager::getInstance().setBackground(""); |
---|
88 | GraphicsManager::getInstance().setCamera(this->camera_); |
---|
89 | |
---|
90 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startStandalone), "startGame")); |
---|
91 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startServer), "startServer")); |
---|
92 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startClient), "startClient")); |
---|
93 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startDedicated), "startDedicated")); |
---|
94 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startMainMenu), "startMainMenu")); |
---|
95 | CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(createFunctor(&GSMainMenu::startIOConsole), "startIOConsole")); |
---|
96 | |
---|
97 | KeyBinderManager::getInstance().setToDefault(); |
---|
98 | InputManager::getInstance().enterState("mainMenu"); |
---|
99 | |
---|
100 | if (GameMode::playsSound()) |
---|
101 | { |
---|
102 | this->ambient_->setLoop(true); |
---|
103 | this->ambient_->play(); |
---|
104 | } |
---|
105 | } |
---|
106 | |
---|
107 | void GSMainMenu::deactivate() |
---|
108 | { |
---|
109 | if (GameMode::playsSound()) |
---|
110 | { |
---|
111 | this->ambient_->stop(); |
---|
112 | } |
---|
113 | |
---|
114 | InputManager::getInstance().leaveState("mainMenu"); |
---|
115 | |
---|
116 | GUIManager::getInstance().setCamera(0); |
---|
117 | GUIManager::getInstance().setBackground(""); |
---|
118 | GUIManager::hideGUI("MainMenu"); |
---|
119 | GraphicsManager::getInstance().setCamera(0); |
---|
120 | } |
---|
121 | |
---|
122 | void GSMainMenu::update(const Clock& time) |
---|
123 | { |
---|
124 | } |
---|
125 | |
---|
126 | void GSMainMenu::startStandalone() |
---|
127 | { |
---|
128 | // HACK - HACK |
---|
129 | Game::getInstance().popState(); |
---|
130 | Game::getInstance().requestStates("standalone, level"); |
---|
131 | } |
---|
132 | |
---|
133 | void GSMainMenu::startServer() |
---|
134 | { |
---|
135 | // HACK - HACK |
---|
136 | Game::getInstance().popState(); |
---|
137 | Game::getInstance().requestStates("server, level"); |
---|
138 | } |
---|
139 | |
---|
140 | void GSMainMenu::startClient() |
---|
141 | { |
---|
142 | // HACK - HACK |
---|
143 | Game::getInstance().popState(); |
---|
144 | Game::getInstance().requestStates("client, level"); |
---|
145 | } |
---|
146 | |
---|
147 | void GSMainMenu::startDedicated() |
---|
148 | { |
---|
149 | // HACK - HACK |
---|
150 | Game::getInstance().popState(); |
---|
151 | Game::getInstance().popState(); |
---|
152 | Game::getInstance().requestStates("dedicated, level"); |
---|
153 | } |
---|
154 | void GSMainMenu::startMainMenu() |
---|
155 | { |
---|
156 | // HACK - HACK |
---|
157 | Game::getInstance().popState(); |
---|
158 | Game::getInstance().popState(); |
---|
159 | Game::getInstance().requestStates("mainmenu"); |
---|
160 | } |
---|
161 | void GSMainMenu::startIOConsole() |
---|
162 | { |
---|
163 | // HACK - HACK |
---|
164 | Game::getInstance().popState(); |
---|
165 | Game::getInstance().popState(); |
---|
166 | Game::getInstance().requestStates("ioConsole"); |
---|
167 | } |
---|
168 | } |
---|