[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 |
---|
| 24 | * Co-authors: |
---|
[2896] | 25 | * Benjamin Knecht |
---|
[1638] | 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
| 30 | @file |
---|
| 31 | @brief Declaration of the GUIManager class. |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | #ifndef _GUIManager_H__ |
---|
| 35 | #define _GUIManager_H__ |
---|
| 36 | |
---|
| 37 | #include "OrxonoxPrereqs.h" |
---|
| 38 | #include <OgrePrerequisites.h> |
---|
| 39 | #include <CEGUIForwardRefs.h> |
---|
| 40 | #include <CEGUIInputEvent.h> |
---|
| 41 | #include <CEGUISystem.h> |
---|
| 42 | #include "core/input/InputInterfaces.h" |
---|
| 43 | |
---|
[2710] | 44 | // Forward declaration |
---|
| 45 | namespace CEGUI { class DefaultLogger; } |
---|
| 46 | |
---|
| 47 | // tolua_begin |
---|
| 48 | namespace orxonox |
---|
| 49 | { |
---|
[1638] | 50 | /** |
---|
[2896] | 51 | @class GUIManager |
---|
[1638] | 52 | @brief |
---|
[2896] | 53 | Provides a simple interface to CEGUI with tolua methods and console commands. It also acts as a key and mouse handler. |
---|
| 54 | |
---|
| 55 | The GUIManager is a singleton and can be called anywhere when access on the GUI is needed. |
---|
| 56 | Creation of the GUIManager is therefore not possible and the cunstructor is private. |
---|
| 57 | |
---|
| 58 | Since the GUI needs user input, the GUIManager implements the functions needed to act as a key and/or mouse handler. |
---|
| 59 | Those input events are then injected into CEGUI in Lua. |
---|
[1638] | 60 | */ |
---|
[2710] | 61 | class _OrxonoxExport GUIManager |
---|
| 62 | // tolua_end |
---|
| 63 | : public KeyHandler, public MouseHandler |
---|
| 64 | // tolua_begin |
---|
[1638] | 65 | { |
---|
[2710] | 66 | // tolua_end |
---|
[1638] | 67 | public: |
---|
[2896] | 68 | /** |
---|
| 69 | @enum State |
---|
| 70 | The current state of the GUIManager. There should maybe be more (or we can omit this totally). |
---|
| 71 | */ |
---|
[1638] | 72 | enum State |
---|
| 73 | { |
---|
[2896] | 74 | Uninitialised, //!< Initial state of the GUIManager |
---|
| 75 | Ready, //!< State after initialisation if ready |
---|
| 76 | OnDisplay //!< State if GUI is displayed |
---|
[1638] | 77 | }; |
---|
| 78 | |
---|
[1646] | 79 | GUIManager(); |
---|
| 80 | ~GUIManager(); |
---|
| 81 | |
---|
[1686] | 82 | bool initialise(Ogre::RenderWindow* renderWindow); |
---|
[1638] | 83 | |
---|
[2896] | 84 | void update(const Clock& time); |
---|
[1640] | 85 | |
---|
[2896] | 86 | void showGUI(const std::string& name); |
---|
| 87 | void executeCode(const std::string& str); |
---|
[1638] | 88 | |
---|
[2896] | 89 | void setCamera(Ogre::Camera* camera); |
---|
| 90 | |
---|
[1646] | 91 | static GUIManager& getInstance() { assert(singletonRef_s); return *singletonRef_s; } // tolua_export |
---|
| 92 | static GUIManager* getInstancePtr() { return singletonRef_s; } |
---|
| 93 | |
---|
[1638] | 94 | private: |
---|
[2896] | 95 | GUIManager(const GUIManager& instance); //!< private constructor (this is a singleton class) |
---|
[1638] | 96 | |
---|
[2896] | 97 | void loadLuaCode(); |
---|
| 98 | |
---|
| 99 | // keyHandler functions |
---|
[1638] | 100 | void keyPressed (const KeyEvent& evt) |
---|
[2896] | 101 | { guiSystem_->injectKeyDown(evt.key); guiSystem_->injectChar(evt.text); } |
---|
[1638] | 102 | void keyReleased(const KeyEvent& evt) |
---|
[2896] | 103 | { guiSystem_->injectKeyUp(evt.key); } |
---|
| 104 | void keyHeld (const KeyEvent& evt) { } |
---|
[1638] | 105 | |
---|
[2896] | 106 | // mouseHandler functions |
---|
[1887] | 107 | void mouseButtonPressed (MouseButtonCode::ByEnum id); |
---|
| 108 | void mouseButtonReleased(MouseButtonCode::ByEnum id); |
---|
[2896] | 109 | void mouseButtonHeld (MouseButtonCode::ByEnum id) { } |
---|
[1638] | 110 | void mouseMoved (IntVector2 abs, IntVector2 rel, IntVector2 clippingSize) |
---|
[2896] | 111 | { guiSystem_->injectMouseMove(rel.x, rel.y); } |
---|
[1638] | 112 | void mouseScrolled (int abs, int rel) |
---|
[2896] | 113 | { guiSystem_->injectMouseWheelChange(rel);} |
---|
[1638] | 114 | |
---|
[2896] | 115 | void updateInput(float dt) { } |
---|
| 116 | void updateKey (float dt) { } |
---|
| 117 | void updateMouse(float dt) { } |
---|
[1638] | 118 | |
---|
[2896] | 119 | static CEGUI::MouseButton convertButton(MouseButtonCode::ByEnum button); |
---|
[1638] | 120 | |
---|
[2896] | 121 | Ogre::RenderWindow* renderWindow_; //!< Ogre's render window to give CEGUI access to it |
---|
| 122 | CEGUI::OgreCEGUIRenderer* guiRenderer_; //!< CEGUI's interface to the Ogre Engine |
---|
| 123 | CEGUI::ResourceProvider* resourceProvider_; //!< CEGUI's resource provider |
---|
| 124 | CEGUI::LuaScriptModule* scriptModule_; //!< CEGUI's script module to use Lua |
---|
| 125 | CEGUI::DefaultLogger* ceguiLogger_; //!< CEGUI's logger to be able to log CEGUI errors in our log |
---|
| 126 | CEGUI::System* guiSystem_; //!< CEGUI's main system |
---|
| 127 | lua_State* luaState_; //!< Lua state, access point to the Lua engine |
---|
[1638] | 128 | |
---|
[2896] | 129 | State state_; //!< reflects state of the GUIManager |
---|
[1638] | 130 | |
---|
[2896] | 131 | static GUIManager* singletonRef_s; //!< Singleton reference to GUIManager |
---|
[1638] | 132 | }; // tolua_export |
---|
| 133 | } // tolua_export |
---|
| 134 | |
---|
| 135 | #endif /* _GUIManager_H__ */ |
---|