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