Changeset 1788 for code/trunk/src/orxonox
- Timestamp:
- Sep 15, 2008, 12:40:40 PM (16 years ago)
- Location:
- code/trunk/src/orxonox/gamestates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/gamestates/GSGraphics.cc
r1764 r1788 46 46 #include "core/CoreIncludes.h" 47 47 #include "core/input/InputManager.h" 48 #include "core/input/KeyBinder.h" 49 #include "core/input/ExtendedInputState.h" 48 50 #include "overlays/console/InGameConsole.h" 49 51 #include "gui/GUIManager.h" … … 62 64 , console_(0) 63 65 , guiManager_(0) 66 , masterKeyBinder_(0) 64 67 , frameCount_(0) 65 68 , statisticsRefreshCycle_(0) … … 108 111 this->renderWindow_->getCustomAttribute("WINDOW", &windowHnd); 109 112 inputManager_->initialise(windowHnd, renderWindow_->getWidth(), renderWindow_->getHeight(), true); 113 // Configure master input state with a KeyBinder 114 //masterKeyBinder_ = new KeyBinder(); 115 //inputManager_->getMasterInputState()->addKeyHandler(masterKeyBinder_); 110 116 111 117 // Load the InGameConsole … … 135 141 delete this->console_; 136 142 143 //inputManager_->getMasterInputState()->removeKeyHandler(this->masterKeyBinder_); 144 //delete this->masterKeyBinder_; 137 145 delete this->inputManager_; 138 146 -
code/trunk/src/orxonox/gamestates/GSGraphics.h
r1755 r1788 77 77 GUIManager* guiManager_; 78 78 79 KeyBinder* masterKeyBinder_; 80 79 81 // variables for time statistics 80 82 unsigned long frameCount_;
Note: See TracChangeset
for help on using the changeset viewer.