| 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 |  *      Benjamin Knecht | 
|---|
| 25 |  *   Co-authors: | 
|---|
| 26 |  *      ... | 
|---|
| 27 |  * | 
|---|
| 28 |  */ | 
|---|
| 29 |  | 
|---|
| 30 | #include "GUIManager.h" | 
|---|
| 31 |  | 
|---|
| 32 | #include <memory> | 
|---|
| 33 | extern "C" { | 
|---|
| 34 | #include <lua.h> | 
|---|
| 35 | } | 
|---|
| 36 | #include <CEGUIDefaultLogger.h> | 
|---|
| 37 | #include <CEGUIExceptions.h> | 
|---|
| 38 | #include <CEGUIInputEvent.h> | 
|---|
| 39 | #include <CEGUIMouseCursor.h> | 
|---|
| 40 | #include <CEGUIResourceProvider.h> | 
|---|
| 41 | #include <CEGUISystem.h> | 
|---|
| 42 | #include <ogreceguirenderer/OgreCEGUIRenderer.h> | 
|---|
| 43 |  | 
|---|
| 44 | #include "SpecialConfig.h" // Configures the macro below | 
|---|
| 45 | #ifdef CEGUILUA_USE_INTERNAL_LIBRARY | 
|---|
| 46 | #   include <ceguilua/CEGUILua.h> | 
|---|
| 47 | #else | 
|---|
| 48 | #   include <CEGUILua.h> | 
|---|
| 49 | #endif | 
|---|
| 50 |  | 
|---|
| 51 | #include "util/Debug.h" | 
|---|
| 52 | #include "util/Exception.h" | 
|---|
| 53 | #include "util/OrxAssert.h" | 
|---|
| 54 | #include "Core.h" | 
|---|
| 55 | #include "Clock.h" | 
|---|
| 56 | #include "LuaState.h" | 
|---|
| 57 | #include "Resource.h" | 
|---|
| 58 |  | 
|---|
| 59 | namespace orxonox | 
|---|
| 60 | { | 
|---|
| 61 |     class CEGUILogger : public CEGUI::DefaultLogger | 
|---|
| 62 |     { | 
|---|
| 63 |     public: | 
|---|
| 64 |             void logEvent(const CEGUI::String& message, CEGUI::LoggingLevel level = CEGUI::Standard) | 
|---|
| 65 |         { | 
|---|
| 66 |             int orxonoxLevel = CEGUI::Standard; | 
|---|
| 67 |             switch (level) | 
|---|
| 68 |             { | 
|---|
| 69 |                 case CEGUI::Errors:      orxonoxLevel = 1; break; | 
|---|
| 70 |                 case CEGUI::Warnings:    orxonoxLevel = 2; break; | 
|---|
| 71 |                 case CEGUI::Standard:    orxonoxLevel = 4; break; | 
|---|
| 72 |                 case CEGUI::Informative: orxonoxLevel = 5; break; | 
|---|
| 73 |                 case CEGUI::Insane:      orxonoxLevel = 6; break; | 
|---|
| 74 |                 default: OrxAssert(false, "CEGUI log level out of range, inpect immediately!"); | 
|---|
| 75 |             } | 
|---|
| 76 |             OutputHandler::getOutStream().setOutputLevel(orxonoxLevel) | 
|---|
| 77 |                 << "CEGUI: " << message << std::endl; | 
|---|
| 78 |  | 
|---|
| 79 |             CEGUI::DefaultLogger::logEvent(message, level); | 
|---|
| 80 |         } | 
|---|
| 81 |     }; | 
|---|
| 82 |  | 
|---|
| 83 |     static CEGUI::MouseButton convertButton(MouseButtonCode::ByEnum button); | 
|---|
| 84 |  | 
|---|
| 85 |     GUIManager* GUIManager::singletonPtr_s = 0; | 
|---|
| 86 |  | 
|---|
| 87 |     /** | 
|---|
| 88 |     @brief | 
|---|
| 89 |         Constructs the GUIManager by starting up CEGUI | 
|---|
| 90 |  | 
|---|
| 91 |         Creates the interface to Ogre, sets up the CEGUI renderer and the Lua script module together with the Lua engine. | 
|---|
| 92 |         The log is set up and connected to the CEGUILogger. | 
|---|
| 93 |         After Lua setup tolua++-elements are linked to Lua-state to give Lua access to C++-code. | 
|---|
| 94 |         Finally initial Lua code is executed (maybe we can do this with the CEGUI startup script automatically). | 
|---|
| 95 |     @param renderWindow | 
|---|
| 96 |         Ogre's render window. Without this, the GUI cannot be displayed. | 
|---|
| 97 |     @return true if success, otherwise false | 
|---|
| 98 |     */ | 
|---|
| 99 |     GUIManager::GUIManager(Ogre::RenderWindow* renderWindow, const std::pair<int, int>& mousePosition, bool bFullScreen) | 
|---|
| 100 |         : renderWindow_(renderWindow) | 
|---|
| 101 |         , resourceProvider_(0) | 
|---|
| 102 |     { | 
|---|
| 103 |         using namespace CEGUI; | 
|---|
| 104 |  | 
|---|
| 105 |         COUT(3) << "Initialising CEGUI." << std::endl; | 
|---|
| 106 |  | 
|---|
| 107 |         // Note: No SceneManager specified yet | 
|---|
| 108 |         guiRenderer_.reset(new OgreCEGUIRenderer(renderWindow_, Ogre::RENDER_QUEUE_OVERLAY, false, 3000)); | 
|---|
| 109 |         resourceProvider_ = guiRenderer_->createResourceProvider(); | 
|---|
| 110 |         resourceProvider_->setDefaultResourceGroup("GUI"); | 
|---|
| 111 |  | 
|---|
| 112 |         // setup scripting | 
|---|
| 113 |         luaState_.reset(new LuaState()); | 
|---|
| 114 |         scriptModule_.reset(new LuaScriptModule(luaState_->getInternalLuaState())); | 
|---|
| 115 |  | 
|---|
| 116 |         // Create our own logger to specify the filepath | 
|---|
| 117 |         std::auto_ptr<CEGUILogger> ceguiLogger(new CEGUILogger()); | 
|---|
| 118 |         ceguiLogger->setLogFilename(Core::getLogPathString() + "cegui.log"); | 
|---|
| 119 |         // set the log level according to ours (translate by subtracting 1) | 
|---|
| 120 |         ceguiLogger->setLoggingLevel( | 
|---|
| 121 |             static_cast<LoggingLevel>(Core::getSoftDebugLevel(OutputHandler::LD_Logfile) - 1)); | 
|---|
| 122 |         this->ceguiLogger_ = ceguiLogger.release(); | 
|---|
| 123 |  | 
|---|
| 124 |         // create the CEGUI system singleton | 
|---|
| 125 |         guiSystem_.reset(new System(guiRenderer_.get(), resourceProvider_, 0, scriptModule_.get())); | 
|---|
| 126 |  | 
|---|
| 127 |         // Initialise the basic lua code | 
|---|
| 128 |         rootFileInfo_ = Resource::getInfo("InitialiseGUI.lua", "GUI"); | 
|---|
| 129 |         this->luaState_->doFile("InitialiseGUI.lua", "GUI", false); | 
|---|
| 130 |  | 
|---|
| 131 |         // Align CEGUI mouse with OIS mouse | 
|---|
| 132 |         guiSystem_->injectMousePosition(mousePosition.first, mousePosition.second); | 
|---|
| 133 |  | 
|---|
| 134 |         // Hide the mouse cursor unless playing in fullscreen mode | 
|---|
| 135 |         if (!bFullScreen) | 
|---|
| 136 |             CEGUI::MouseCursor::getSingleton().hide(); | 
|---|
| 137 |     } | 
|---|
| 138 |  | 
|---|
| 139 |     /** | 
|---|
| 140 |     @brief | 
|---|
| 141 |         Basically shuts down CEGUI (member smart pointers) but first unloads our Tolua modules. | 
|---|
| 142 |     */ | 
|---|
| 143 |     GUIManager::~GUIManager() | 
|---|
| 144 |     { | 
|---|
| 145 |     } | 
|---|
| 146 |  | 
|---|
| 147 |     /** | 
|---|
| 148 |     @brief | 
|---|
| 149 |         used to tick the GUI | 
|---|
| 150 |     @param time | 
|---|
| 151 |         clock which provides time value for the GUI System | 
|---|
| 152 |  | 
|---|
| 153 |         Ticking the GUI means updating it with a certain regularity. | 
|---|
| 154 |         The elapsed time since the last call is given in the time value provided by the clock. | 
|---|
| 155 |         This time value is then used to provide a fluent animation of the GUI. | 
|---|
| 156 |     */ | 
|---|
| 157 |     void GUIManager::update(const Clock& time) | 
|---|
| 158 |     { | 
|---|
| 159 |         assert(guiSystem_); | 
|---|
| 160 |         guiSystem_->injectTimePulse(time.getDeltaTime()); | 
|---|
| 161 |     } | 
|---|
| 162 |  | 
|---|
| 163 |     /** | 
|---|
| 164 |     @brief | 
|---|
| 165 |         Tells the GUIManager which SceneManager to use | 
|---|
| 166 |     @param camera | 
|---|
| 167 |         The current camera on which the GUI should be displayed on. | 
|---|
| 168 |  | 
|---|
| 169 |         In fact the GUIManager needs the SceneManager and not the Camera to display the GUI. | 
|---|
| 170 |         This means the GUI is not bound to a camera but rather to the SceneManager. | 
|---|
| 171 |         Hiding the GUI when needed can therefore not be resolved by just NOT setting the current camera. | 
|---|
| 172 |     */ | 
|---|
| 173 |     void GUIManager::setCamera(Ogre::Camera* camera) | 
|---|
| 174 |     { | 
|---|
| 175 |         if (camera == NULL) | 
|---|
| 176 |             this->guiRenderer_->setTargetSceneManager(0); | 
|---|
| 177 |         else | 
|---|
| 178 |             this->guiRenderer_->setTargetSceneManager(camera->getSceneManager()); | 
|---|
| 179 |     } | 
|---|
| 180 |  | 
|---|
| 181 |     /** | 
|---|
| 182 |     @brief | 
|---|
| 183 |         Executes Lua code | 
|---|
| 184 |     @param str | 
|---|
| 185 |         reference to string object holding the Lua code which is to be executed | 
|---|
| 186 |  | 
|---|
| 187 |         This function gives total access to the GUI. You can execute ANY Lua code here. | 
|---|
| 188 |     */ | 
|---|
| 189 |     void GUIManager::executeCode(const std::string& str) | 
|---|
| 190 |     { | 
|---|
| 191 |         this->luaState_->doString(str, rootFileInfo_); | 
|---|
| 192 |     } | 
|---|
| 193 |  | 
|---|
| 194 |     /** | 
|---|
| 195 |     @brief | 
|---|
| 196 |         Displays specified GUI on screen | 
|---|
| 197 |     @param name | 
|---|
| 198 |         The name of the GUI | 
|---|
| 199 |  | 
|---|
| 200 |         The function executes the Lua function with the same name in case the GUIManager is ready. | 
|---|
| 201 |         For more details check out loadGUI_2.lua where the function presides. | 
|---|
| 202 |     */ | 
|---|
| 203 |     void GUIManager::showGUI(const std::string& name) | 
|---|
| 204 |     { | 
|---|
| 205 |         this->luaState_->doString("showGUI(\"" + name + "\")", rootFileInfo_); | 
|---|
| 206 |     } | 
|---|
| 207 |  | 
|---|
| 208 |     void GUIManager::keyPressed(const KeyEvent& evt) | 
|---|
| 209 |     { | 
|---|
| 210 |         guiSystem_->injectKeyDown(evt.getKeyCode()); | 
|---|
| 211 |         guiSystem_->injectChar(evt.getText()); | 
|---|
| 212 |     } | 
|---|
| 213 |     void GUIManager::keyReleased(const KeyEvent& evt) | 
|---|
| 214 |     { | 
|---|
| 215 |         guiSystem_->injectKeyUp(evt.getKeyCode()); | 
|---|
| 216 |     } | 
|---|
| 217 |  | 
|---|
| 218 |     /** | 
|---|
| 219 |     @brief | 
|---|
| 220 |         Function receiving a mouse button pressed event. | 
|---|
| 221 |     @param id | 
|---|
| 222 |         ID of the mouse button which got pressed | 
|---|
| 223 |  | 
|---|
| 224 |         This function is inherited by MouseHandler and injects the event into CEGUI. | 
|---|
| 225 |         It is for CEGUI to process the event. | 
|---|
| 226 |     */ | 
|---|
| 227 |     void GUIManager::buttonPressed(MouseButtonCode::ByEnum id) | 
|---|
| 228 |     { | 
|---|
| 229 |         try | 
|---|
| 230 |         { | 
|---|
| 231 |             guiSystem_->injectMouseButtonDown(convertButton(id)); | 
|---|
| 232 |         } | 
|---|
| 233 |         catch (CEGUI::ScriptException& ex) | 
|---|
| 234 |         { | 
|---|
| 235 |             // We simply ignore the exception and proceed | 
|---|
| 236 |             COUT(1) << ex.getMessage() << std::endl; | 
|---|
| 237 |         } | 
|---|
| 238 |     } | 
|---|
| 239 |  | 
|---|
| 240 |     /** | 
|---|
| 241 |     @brief | 
|---|
| 242 |         Function receiving a mouse button released event. | 
|---|
| 243 |     @param id | 
|---|
| 244 |         ID of the mouse button which got released | 
|---|
| 245 |  | 
|---|
| 246 |         This function is inherited by MouseHandler and injects the event into CEGUI. | 
|---|
| 247 |         It is for CEGUI to process the event. | 
|---|
| 248 |     */ | 
|---|
| 249 |     void GUIManager::buttonReleased(MouseButtonCode::ByEnum id) | 
|---|
| 250 |     { | 
|---|
| 251 |         try | 
|---|
| 252 |         { | 
|---|
| 253 |             guiSystem_->injectMouseButtonUp(convertButton(id)); | 
|---|
| 254 |         } | 
|---|
| 255 |         catch (CEGUI::ScriptException& ex) | 
|---|
| 256 |         { | 
|---|
| 257 |             // We simply ignore the exception and proceed | 
|---|
| 258 |             COUT(1) << ex.getMessage() << std::endl; | 
|---|
| 259 |         } | 
|---|
| 260 |     } | 
|---|
| 261 |  | 
|---|
| 262 |     void GUIManager::mouseMoved(IntVector2 abs, IntVector2 rel, IntVector2 clippingSize) | 
|---|
| 263 |     { | 
|---|
| 264 |         guiSystem_->injectMousePosition(static_cast<float>(abs.x), static_cast<float>(abs.y)); | 
|---|
| 265 |     } | 
|---|
| 266 |     void GUIManager::mouseScrolled(int abs, int rel) | 
|---|
| 267 |     { | 
|---|
| 268 |         guiSystem_->injectMouseWheelChange(static_cast<float>(rel)); | 
|---|
| 269 |     } | 
|---|
| 270 |  | 
|---|
| 271 |     /** | 
|---|
| 272 |     @brief | 
|---|
| 273 |         converts mouse event code to CEGUI event code | 
|---|
| 274 |     @param button | 
|---|
| 275 |         code of the mouse button as we use it in Orxonox | 
|---|
| 276 |     @return | 
|---|
| 277 |         code of the mouse button as it is used by CEGUI | 
|---|
| 278 |  | 
|---|
| 279 |         Simple convertion from mouse event code in Orxonox to the one used in CEGUI. | 
|---|
| 280 |      */ | 
|---|
| 281 |     static inline CEGUI::MouseButton convertButton(MouseButtonCode::ByEnum button) | 
|---|
| 282 |     { | 
|---|
| 283 |         switch (button) | 
|---|
| 284 |         { | 
|---|
| 285 |         case MouseButtonCode::Left: | 
|---|
| 286 |             return CEGUI::LeftButton; | 
|---|
| 287 |  | 
|---|
| 288 |         case MouseButtonCode::Right: | 
|---|
| 289 |             return CEGUI::RightButton; | 
|---|
| 290 |  | 
|---|
| 291 |         case MouseButtonCode::Middle: | 
|---|
| 292 |             return CEGUI::MiddleButton; | 
|---|
| 293 |  | 
|---|
| 294 |         case MouseButtonCode::Button3: | 
|---|
| 295 |             return CEGUI::X1Button; | 
|---|
| 296 |  | 
|---|
| 297 |         case MouseButtonCode::Button4: | 
|---|
| 298 |             return CEGUI::X2Button; | 
|---|
| 299 |  | 
|---|
| 300 |         default: | 
|---|
| 301 |             return CEGUI::NoButton; | 
|---|
| 302 |         } | 
|---|
| 303 |     } | 
|---|
| 304 | } | 
|---|