[1638] | 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 |
---|
[2896] | 24 | * Benjamin Knecht |
---|
[1638] | 25 | * Co-authors: |
---|
[3196] | 26 | * ... |
---|
[1638] | 27 | * |
---|
| 28 | */ |
---|
| 29 | |
---|
| 30 | #include "GUIManager.h" |
---|
| 31 | |
---|
[6746] | 32 | #include <boost/bind.hpp> |
---|
[3338] | 33 | #include <memory> |
---|
[3196] | 34 | extern "C" { |
---|
| 35 | #include <lua.h> |
---|
| 36 | } |
---|
[2710] | 37 | #include <CEGUIDefaultLogger.h> |
---|
[3196] | 38 | #include <CEGUIExceptions.h> |
---|
| 39 | #include <CEGUIInputEvent.h> |
---|
[5695] | 40 | #include <CEGUIMouseCursor.h> |
---|
[3196] | 41 | #include <CEGUIResourceProvider.h> |
---|
| 42 | #include <CEGUISystem.h> |
---|
[6417] | 43 | #include <CEGUIWindow.h> |
---|
[6746] | 44 | #include <CEGUIWindowManager.h> |
---|
[2710] | 45 | #include <ogreceguirenderer/OgreCEGUIRenderer.h> |
---|
[3196] | 46 | |
---|
[2710] | 47 | #include "SpecialConfig.h" // Configures the macro below |
---|
| 48 | #ifdef CEGUILUA_USE_INTERNAL_LIBRARY |
---|
| 49 | # include <ceguilua/CEGUILua.h> |
---|
| 50 | #else |
---|
| 51 | # include <CEGUILua.h> |
---|
| 52 | #endif |
---|
| 53 | |
---|
[5929] | 54 | #include "util/Clock.h" |
---|
[6417] | 55 | #include "util/Convert.h" |
---|
[3280] | 56 | #include "util/Debug.h" |
---|
[1764] | 57 | #include "util/Exception.h" |
---|
[3280] | 58 | #include "util/OrxAssert.h" |
---|
[6417] | 59 | #include "Core.h" |
---|
[6746] | 60 | #include "GraphicsManager.h" |
---|
[5695] | 61 | #include "LuaState.h" |
---|
[5929] | 62 | #include "PathConfig.h" |
---|
[5695] | 63 | #include "Resource.h" |
---|
[7284] | 64 | #include "command/ConsoleCommand.h" |
---|
[6746] | 65 | #include "input/InputManager.h" |
---|
| 66 | #include "input/InputState.h" |
---|
| 67 | #include "input/KeyBinderManager.h" |
---|
[1638] | 68 | |
---|
| 69 | namespace orxonox |
---|
| 70 | { |
---|
[6417] | 71 | static void key_esc() |
---|
| 72 | { GUIManager::getInstance().keyESC(); } |
---|
[7284] | 73 | SetConsoleCommand("keyESC", &key_esc); |
---|
[6417] | 74 | |
---|
[3280] | 75 | class CEGUILogger : public CEGUI::DefaultLogger |
---|
| 76 | { |
---|
| 77 | public: |
---|
[5929] | 78 | void logEvent(const CEGUI::String& message, CEGUI::LoggingLevel level = CEGUI::Standard) |
---|
[3280] | 79 | { |
---|
[3327] | 80 | int orxonoxLevel = CEGUI::Standard; |
---|
[3280] | 81 | switch (level) |
---|
| 82 | { |
---|
| 83 | case CEGUI::Errors: orxonoxLevel = 1; break; |
---|
| 84 | case CEGUI::Warnings: orxonoxLevel = 2; break; |
---|
| 85 | case CEGUI::Standard: orxonoxLevel = 4; break; |
---|
| 86 | case CEGUI::Informative: orxonoxLevel = 5; break; |
---|
| 87 | case CEGUI::Insane: orxonoxLevel = 6; break; |
---|
| 88 | default: OrxAssert(false, "CEGUI log level out of range, inpect immediately!"); |
---|
| 89 | } |
---|
[6105] | 90 | OutputHandler::getOutStream(orxonoxLevel) |
---|
[3280] | 91 | << "CEGUI: " << message << std::endl; |
---|
| 92 | |
---|
| 93 | CEGUI::DefaultLogger::logEvent(message, level); |
---|
| 94 | } |
---|
| 95 | }; |
---|
| 96 | |
---|
[3196] | 97 | static CEGUI::MouseButton convertButton(MouseButtonCode::ByEnum button); |
---|
[3339] | 98 | |
---|
[3366] | 99 | GUIManager* GUIManager::singletonPtr_s = 0; |
---|
[1646] | 100 | |
---|
[7403] | 101 | SetConsoleCommand("showGUI", &GUIManager::showGUI).defaultValue(1, false).defaultValue(2, false); |
---|
[7284] | 102 | SetConsoleCommand("hideGUI", &GUIManager::hideGUI); |
---|
[6417] | 103 | |
---|
[2896] | 104 | /** |
---|
| 105 | @brief |
---|
[3338] | 106 | Constructs the GUIManager by starting up CEGUI |
---|
[2896] | 107 | |
---|
| 108 | Creates the interface to Ogre, sets up the CEGUI renderer and the Lua script module together with the Lua engine. |
---|
| 109 | The log is set up and connected to the CEGUILogger. |
---|
| 110 | After Lua setup tolua++-elements are linked to Lua-state to give Lua access to C++-code. |
---|
| 111 | Finally initial Lua code is executed (maybe we can do this with the CEGUI startup script automatically). |
---|
[3338] | 112 | @return true if success, otherwise false |
---|
[2896] | 113 | */ |
---|
[6746] | 114 | GUIManager::GUIManager(const std::pair<int, int>& mousePosition) |
---|
| 115 | : resourceProvider_(NULL) |
---|
[5929] | 116 | , camera_(NULL) |
---|
[1638] | 117 | { |
---|
| 118 | using namespace CEGUI; |
---|
| 119 | |
---|
[3338] | 120 | COUT(3) << "Initialising CEGUI." << std::endl; |
---|
[1638] | 121 | |
---|
[5695] | 122 | // Note: No SceneManager specified yet |
---|
[6746] | 123 | guiRenderer_.reset(new OgreCEGUIRenderer(GraphicsManager::getInstance().getRenderWindow(), Ogre::RENDER_QUEUE_OVERLAY, false, 3000)); |
---|
[5695] | 124 | resourceProvider_ = guiRenderer_->createResourceProvider(); |
---|
| 125 | resourceProvider_->setDefaultResourceGroup("GUI"); |
---|
[1776] | 126 | |
---|
[6749] | 127 | // Setup scripting |
---|
[5695] | 128 | luaState_.reset(new LuaState()); |
---|
[6417] | 129 | rootFileInfo_ = Resource::getInfo("InitialiseGUI.lua"); |
---|
| 130 | // This is necessary to ensure that input events also use the right resource info when triggering lua functions |
---|
| 131 | luaState_->setDefaultResourceInfo(this->rootFileInfo_); |
---|
[5695] | 132 | scriptModule_.reset(new LuaScriptModule(luaState_->getInternalLuaState())); |
---|
[6763] | 133 | scriptModule_->setDefaultPCallErrorHandler(LuaState::ERROR_HANDLER_NAME); |
---|
[1638] | 134 | |
---|
[5695] | 135 | // Create our own logger to specify the filepath |
---|
| 136 | std::auto_ptr<CEGUILogger> ceguiLogger(new CEGUILogger()); |
---|
[5929] | 137 | ceguiLogger->setLogFilename(PathConfig::getLogPathString() + "cegui.log"); |
---|
[5695] | 138 | // set the log level according to ours (translate by subtracting 1) |
---|
| 139 | ceguiLogger->setLoggingLevel( |
---|
[6105] | 140 | static_cast<LoggingLevel>(OutputHandler::getInstance().getSoftDebugLevel("logFile") - 1)); |
---|
[5695] | 141 | this->ceguiLogger_ = ceguiLogger.release(); |
---|
[2710] | 142 | |
---|
[6749] | 143 | // Create the CEGUI system singleton |
---|
[5695] | 144 | guiSystem_.reset(new System(guiRenderer_.get(), resourceProvider_, 0, scriptModule_.get())); |
---|
[1776] | 145 | |
---|
[5695] | 146 | // Align CEGUI mouse with OIS mouse |
---|
[6502] | 147 | guiSystem_->injectMousePosition((float)mousePosition.first, (float)mousePosition.second); |
---|
[5695] | 148 | |
---|
[6746] | 149 | // Initialise the Lua framework and load the schemes |
---|
| 150 | this->luaState_->doFile("InitialiseGUI.lua"); |
---|
| 151 | |
---|
| 152 | // Create the root nodes |
---|
| 153 | this->rootWindow_ = CEGUI::WindowManager::getSingleton().createWindow("MenuWidgets/StaticImage", "AbsoluteRootWindow"); |
---|
| 154 | this->rootWindow_->setProperty("FrameEnabled", "False"); |
---|
| 155 | this->hudRootWindow_ = CEGUI::WindowManager::getSingleton().createWindow("DefaultWindow", "HUDRootWindow"); |
---|
| 156 | this->menuRootWindow_ = CEGUI::WindowManager::getSingleton().createWindow("DefaultWindow", "MenuRootWindow"); |
---|
| 157 | // And connect them |
---|
| 158 | CEGUI::System::getSingleton().setGUISheet(this->rootWindow_); |
---|
| 159 | this->rootWindow_->addChildWindow(this->hudRootWindow_); |
---|
| 160 | this->rootWindow_->addChildWindow(this->menuRootWindow_); |
---|
| 161 | |
---|
[6749] | 162 | // No background to start with (sets the alpha value to 0) |
---|
| 163 | this->setBackgroundImage(""); |
---|
| 164 | |
---|
[6746] | 165 | // Set up the sheet manager in the Lua framework |
---|
| 166 | this->luaState_->doFile("SheetManager.lua"); |
---|
[3338] | 167 | } |
---|
[1776] | 168 | |
---|
[3338] | 169 | /** |
---|
| 170 | @brief |
---|
[3339] | 171 | Basically shuts down CEGUI (member smart pointers) but first unloads our Tolua modules. |
---|
[3338] | 172 | */ |
---|
| 173 | GUIManager::~GUIManager() |
---|
| 174 | { |
---|
[1638] | 175 | } |
---|
| 176 | |
---|
[2896] | 177 | /** |
---|
| 178 | @brief |
---|
| 179 | used to tick the GUI |
---|
| 180 | @param time |
---|
| 181 | clock which provides time value for the GUI System |
---|
| 182 | |
---|
| 183 | Ticking the GUI means updating it with a certain regularity. |
---|
| 184 | The elapsed time since the last call is given in the time value provided by the clock. |
---|
| 185 | This time value is then used to provide a fluent animation of the GUI. |
---|
| 186 | */ |
---|
[6417] | 187 | void GUIManager::preUpdate(const Clock& time) |
---|
[1638] | 188 | { |
---|
[2896] | 189 | assert(guiSystem_); |
---|
[6746] | 190 | this->protectedCall(boost::bind(&CEGUI::System::injectTimePulse, _1, time.getDeltaTime())); |
---|
[2896] | 191 | } |
---|
[1638] | 192 | |
---|
[2896] | 193 | /** |
---|
| 194 | @brief |
---|
| 195 | Tells the GUIManager which SceneManager to use |
---|
| 196 | @param camera |
---|
| 197 | The current camera on which the GUI should be displayed on. |
---|
| 198 | |
---|
| 199 | In fact the GUIManager needs the SceneManager and not the Camera to display the GUI. |
---|
| 200 | This means the GUI is not bound to a camera but rather to the SceneManager. |
---|
[3337] | 201 | Hiding the GUI when needed can therefore not be resolved by just NOT setting the current camera. |
---|
[2896] | 202 | */ |
---|
| 203 | void GUIManager::setCamera(Ogre::Camera* camera) |
---|
[1638] | 204 | { |
---|
[5929] | 205 | this->camera_ = camera; |
---|
[2927] | 206 | if (camera == NULL) |
---|
| 207 | this->guiRenderer_->setTargetSceneManager(0); |
---|
| 208 | else |
---|
| 209 | this->guiRenderer_->setTargetSceneManager(camera->getSceneManager()); |
---|
[2896] | 210 | } |
---|
| 211 | |
---|
| 212 | /** |
---|
| 213 | @brief |
---|
[3338] | 214 | Executes Lua code |
---|
| 215 | @param str |
---|
| 216 | reference to string object holding the Lua code which is to be executed |
---|
| 217 | */ |
---|
| 218 | void GUIManager::executeCode(const std::string& str) |
---|
| 219 | { |
---|
[5695] | 220 | this->luaState_->doString(str, rootFileInfo_); |
---|
[3338] | 221 | } |
---|
| 222 | |
---|
[6746] | 223 | /** Loads a GUI sheet by Lua script |
---|
| 224 | @param name |
---|
| 225 | The name of the GUI (like the script name, but without the extension) |
---|
| 226 | */ |
---|
| 227 | void GUIManager::loadGUI(const std::string& name) |
---|
| 228 | { |
---|
| 229 | this->executeCode("loadSheet(\"" + name + "\")"); |
---|
| 230 | } |
---|
| 231 | |
---|
[3338] | 232 | /** |
---|
| 233 | @brief |
---|
[2896] | 234 | Displays specified GUI on screen |
---|
| 235 | @param name |
---|
| 236 | The name of the GUI |
---|
[7401] | 237 | @param bHidePrevious |
---|
| 238 | If true all displayed GUIs on the stack, that are below this GUI are hidden. |
---|
[7403] | 239 | @param bNoInput |
---|
| 240 | If true the GUI is transparent to input. |
---|
[2896] | 241 | |
---|
| 242 | The function executes the Lua function with the same name in case the GUIManager is ready. |
---|
| 243 | */ |
---|
[7403] | 244 | /*static*/ void GUIManager::showGUI(const std::string& name, bool bHidePrevious, bool bNoInput) |
---|
[2896] | 245 | { |
---|
[7403] | 246 | GUIManager::getInstance().executeCode("showMenuSheet(\"" + name + "\", " + multi_cast<std::string>(bHidePrevious) + ", " + multi_cast<std::string>(bNoInput) + ")"); |
---|
[1638] | 247 | } |
---|
| 248 | |
---|
[6417] | 249 | /** |
---|
| 250 | @brief |
---|
| 251 | Hack-ish. Needed for GUIOverlay. |
---|
| 252 | */ |
---|
[7403] | 253 | void GUIManager::showGUIExtra(const std::string& name, const std::string& ptr, bool bHidePrevious, bool bNoInput) |
---|
[6417] | 254 | { |
---|
[7403] | 255 | this->executeCode("showMenuSheet(\"" + name + "\", " + multi_cast<std::string>(bHidePrevious) + ", " + multi_cast<std::string>(bNoInput) + ", " + ptr + ")"); |
---|
[6417] | 256 | } |
---|
| 257 | |
---|
| 258 | /** |
---|
| 259 | @brief |
---|
| 260 | Hides specified GUI. |
---|
| 261 | @param name |
---|
| 262 | The name of the GUI. |
---|
| 263 | */ |
---|
| 264 | /*static*/ void GUIManager::hideGUI(const std::string& name) |
---|
| 265 | { |
---|
[6746] | 266 | GUIManager::getInstance().executeCode("hideMenuSheet(\"" + name + "\")"); |
---|
[6417] | 267 | } |
---|
| 268 | |
---|
[6746] | 269 | const std::string& GUIManager::createInputState(const std::string& name, TriBool::Value showCursor, TriBool::Value useKeyboard, bool bBlockJoyStick) |
---|
| 270 | { |
---|
| 271 | InputState* state = InputManager::getInstance().createInputState(name); |
---|
| 272 | |
---|
| 273 | /* Table that maps isFullScreen() and showCursor to mouseExclusive |
---|
| 274 | isFullscreen / showCursor | True | False | Dontcare |
---|
| 275 | ---------------------------------------------------- |
---|
| 276 | true | True | True | Dontcare |
---|
| 277 | ---------------------------------------------------- |
---|
| 278 | false | False | True | Dontcare |
---|
| 279 | */ |
---|
| 280 | if (showCursor == TriBool::Dontcare) |
---|
| 281 | state->setMouseExclusive(TriBool::Dontcare); |
---|
| 282 | else if (GraphicsManager::getInstance().isFullScreen() || showCursor == TriBool::False) |
---|
| 283 | state->setMouseExclusive(TriBool::True); |
---|
| 284 | else |
---|
| 285 | state->setMouseExclusive(TriBool::False); |
---|
| 286 | |
---|
| 287 | if (showCursor == TriBool::True) |
---|
| 288 | state->setMouseHandler(this); |
---|
| 289 | else if (showCursor == TriBool::False) |
---|
| 290 | state->setMouseHandler(&InputHandler::EMPTY); |
---|
| 291 | |
---|
| 292 | if (useKeyboard == TriBool::True) |
---|
| 293 | state->setKeyHandler(this); |
---|
| 294 | else if (useKeyboard == TriBool::False) |
---|
| 295 | state->setKeyHandler(&InputHandler::EMPTY); |
---|
| 296 | |
---|
| 297 | if (bBlockJoyStick) |
---|
| 298 | state->setJoyStickHandler(&InputHandler::EMPTY); |
---|
| 299 | |
---|
| 300 | return state->getName(); |
---|
| 301 | } |
---|
| 302 | |
---|
[6417] | 303 | void GUIManager::keyESC() |
---|
| 304 | { |
---|
| 305 | this->executeCode("keyESC()"); |
---|
| 306 | } |
---|
| 307 | |
---|
[6746] | 308 | void GUIManager::setBackgroundImage(const std::string& imageSet, const std::string imageName) |
---|
[6417] | 309 | { |
---|
[6746] | 310 | if (imageSet.empty() || imageName.empty()) |
---|
| 311 | this->setBackgroundImage(""); |
---|
| 312 | else |
---|
| 313 | this->setBackgroundImage("set: " + imageSet + " image: " + imageName); |
---|
[6417] | 314 | } |
---|
| 315 | |
---|
[6746] | 316 | void GUIManager::setBackgroundImage(const std::string& image) |
---|
| 317 | { |
---|
| 318 | if (image.empty()) |
---|
| 319 | this->rootWindow_->setProperty("Alpha", "0.0"); |
---|
| 320 | else |
---|
| 321 | this->rootWindow_->setProperty("Alpha", "1.0"); |
---|
| 322 | this->rootWindow_->setProperty("Image", image); |
---|
| 323 | } |
---|
| 324 | |
---|
[7163] | 325 | void GUIManager::buttonPressed(const KeyEvent& evt) |
---|
[3196] | 326 | { |
---|
[6746] | 327 | this->protectedCall(boost::bind(&CEGUI::System::injectKeyDown, _1, evt.getKeyCode())); |
---|
| 328 | this->protectedCall(boost::bind(&CEGUI::System::injectChar, _1, evt.getText())); |
---|
[3196] | 329 | } |
---|
[6746] | 330 | |
---|
[7163] | 331 | void GUIManager::buttonReleased(const KeyEvent& evt) |
---|
[3196] | 332 | { |
---|
[6746] | 333 | this->protectedCall(boost::bind(&CEGUI::System::injectKeyUp, _1, evt.getKeyCode())); |
---|
[3196] | 334 | } |
---|
| 335 | |
---|
[2896] | 336 | /** |
---|
| 337 | @brief |
---|
| 338 | Function receiving a mouse button pressed event. |
---|
| 339 | @param id |
---|
| 340 | ID of the mouse button which got pressed |
---|
[1638] | 341 | |
---|
[2896] | 342 | This function is inherited by MouseHandler and injects the event into CEGUI. |
---|
| 343 | It is for CEGUI to process the event. |
---|
| 344 | */ |
---|
[3327] | 345 | void GUIManager::buttonPressed(MouseButtonCode::ByEnum id) |
---|
[1638] | 346 | { |
---|
[6746] | 347 | this->protectedCall(boost::bind(&CEGUI::System::injectMouseButtonDown, _1, convertButton(id))); |
---|
[1638] | 348 | } |
---|
| 349 | |
---|
[2896] | 350 | /** |
---|
| 351 | @brief |
---|
| 352 | Function receiving a mouse button released event. |
---|
| 353 | @param id |
---|
| 354 | ID of the mouse button which got released |
---|
| 355 | |
---|
| 356 | This function is inherited by MouseHandler and injects the event into CEGUI. |
---|
| 357 | It is for CEGUI to process the event. |
---|
| 358 | */ |
---|
[3327] | 359 | void GUIManager::buttonReleased(MouseButtonCode::ByEnum id) |
---|
[1638] | 360 | { |
---|
[6746] | 361 | this->protectedCall(boost::bind(&CEGUI::System::injectMouseButtonUp, _1, convertButton(id))); |
---|
[1638] | 362 | } |
---|
| 363 | |
---|
[3196] | 364 | void GUIManager::mouseMoved(IntVector2 abs, IntVector2 rel, IntVector2 clippingSize) |
---|
| 365 | { |
---|
[6746] | 366 | this->protectedCall(boost::bind(&CEGUI::System::injectMousePosition, _1, (float)abs.x, (float)abs.y)); |
---|
[3196] | 367 | } |
---|
[6746] | 368 | |
---|
[3196] | 369 | void GUIManager::mouseScrolled(int abs, int rel) |
---|
| 370 | { |
---|
[6746] | 371 | this->protectedCall(boost::bind(&CEGUI::System::injectMouseWheelChange, _1, (float)rel)); |
---|
[3196] | 372 | } |
---|
| 373 | |
---|
[2896] | 374 | /** |
---|
| 375 | @brief |
---|
| 376 | converts mouse event code to CEGUI event code |
---|
| 377 | @param button |
---|
| 378 | code of the mouse button as we use it in Orxonox |
---|
| 379 | @return |
---|
| 380 | code of the mouse button as it is used by CEGUI |
---|
[1638] | 381 | |
---|
[6105] | 382 | Simple conversion from mouse event code in Orxonox to the one used in CEGUI. |
---|
[2896] | 383 | */ |
---|
[3196] | 384 | static inline CEGUI::MouseButton convertButton(MouseButtonCode::ByEnum button) |
---|
[1638] | 385 | { |
---|
| 386 | switch (button) |
---|
| 387 | { |
---|
[1887] | 388 | case MouseButtonCode::Left: |
---|
[1638] | 389 | return CEGUI::LeftButton; |
---|
| 390 | |
---|
[1887] | 391 | case MouseButtonCode::Right: |
---|
[1638] | 392 | return CEGUI::RightButton; |
---|
| 393 | |
---|
[1887] | 394 | case MouseButtonCode::Middle: |
---|
[1638] | 395 | return CEGUI::MiddleButton; |
---|
| 396 | |
---|
[1887] | 397 | case MouseButtonCode::Button3: |
---|
[1638] | 398 | return CEGUI::X1Button; |
---|
| 399 | |
---|
[1887] | 400 | case MouseButtonCode::Button4: |
---|
[1638] | 401 | return CEGUI::X2Button; |
---|
| 402 | |
---|
| 403 | default: |
---|
| 404 | return CEGUI::NoButton; |
---|
| 405 | } |
---|
| 406 | } |
---|
[6417] | 407 | |
---|
[6746] | 408 | /** Executes a CEGUI function normally, but catches CEGUI::ScriptException. |
---|
| 409 | When a ScriptException occurs, the error message will be displayed and |
---|
| 410 | the program carries on. |
---|
| 411 | @remarks |
---|
| 412 | The exception behaviour may pose problems if the code is not written |
---|
| 413 | exception-safe (and you can forget about that in Lua). The program might |
---|
| 414 | be left in an undefined state. But otherwise one script error would |
---|
| 415 | terminate the whole program... |
---|
| 416 | @note |
---|
| 417 | Your life gets easier if you use boost::bind to create the object/function. |
---|
| 418 | @param function |
---|
| 419 | Any callable object/function that takes this->guiSystem_ as its only parameter. |
---|
| 420 | @return |
---|
| 421 | True if input was handled, false otherwise. A caught exception yields true. |
---|
| 422 | */ |
---|
| 423 | template <typename FunctionType> |
---|
| 424 | bool GUIManager::protectedCall(FunctionType function) |
---|
| 425 | { |
---|
| 426 | try |
---|
| 427 | { |
---|
| 428 | return function(this->guiSystem_); |
---|
| 429 | } |
---|
| 430 | catch (CEGUI::ScriptException& ex) |
---|
| 431 | { |
---|
| 432 | // Display the error and proceed. See @remarks why this can be dangerous. |
---|
| 433 | COUT(1) << ex.getMessage() << std::endl; |
---|
| 434 | return true; |
---|
| 435 | } |
---|
| 436 | } |
---|
| 437 | |
---|
[6417] | 438 | void GUIManager::subscribeEventHelper(CEGUI::Window* window, const std::string& event, const std::string& function) |
---|
| 439 | { |
---|
| 440 | window->subscribeScriptedEvent(event, function); |
---|
| 441 | } |
---|
[1638] | 442 | } |
---|