Orxonox  0.0.5 Codename: Arcturus
LinuxInputManager.h
Go to the documentation of this file.
1 /*
2 The zlib/libpng License
3 
4 Copyright (c) 2005-2007 Phillip Castaneda (pjcast -- www.wreckedgames.com)
5 
6 This software is provided 'as-is', without any express or implied warranty. In no event will
7 the authors be held liable for any damages arising from the use of this software.
8 
9 Permission is granted to anyone to use this software for any purpose, including commercial
10 applications, and to alter it and redistribute it freely, subject to the following
11 restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not claim that
14  you wrote the original software. If you use this software in a product,
15  an acknowledgment in the product documentation would be appreciated but is
16  not required.
17 
18  2. Altered source versions must be plainly marked as such, and must not be
19  misrepresented as being the original software.
20 
21  3. This notice may not be removed or altered from any source distribution.
22 */
23 #ifndef OIS_LinuxInputManager_H
24 #define OIS_LinuxInputManager_H
25 
26 #include "linux/LinuxPrereqs.h"
27 #include "OISFactoryCreator.h"
28 #include "OISInputManager.h"
29 #include <X11/Xlib.h>
30 
31 namespace OIS
32 {
37  {
38  public:
40  virtual ~LinuxInputManager();
41 
42  //InputManager Overrides
44  void _initialize( ParamList &paramList );
45 
46  //FactoryCreator Overrides
49 
51  int totalDevices(Type iType);
52 
54  int freeDevices(Type iType);
55 
57  bool vendorExist(Type iType, const std::string & vendor);
58 
60  Object* createObject(InputManager *creator, Type iType, bool bufferMode, const std::string & vendor = "");
61 
63  void destroyObject(Object* obj);
64 
65  //Internal Items
67  Window _getWindow() {return window;}
68 
70  void _setGrabState(bool grab) {mGrabs = grab;}
71  bool _getGrabState() {return mGrabs;}
72 
74  void _setKeyboardUsed(bool used) {keyboardUsed = used; }
75 
77  void _setMouseUsed(bool used) { mouseUsed = used; }
78 
79  protected:
81  void _parseConfigSettings( ParamList &paramList );
83  void _enumerateDevices();
84 
88  char joySticks;
89 
92 
94  bool mouseUsed;
95 
97  Window window;
98 
101  bool mGrabs;
102  bool hideMouse;
103  };
104 }
105 #endif
void _parseConfigSettings(ParamList &paramList)
internal class method for dealing with param list
Definition: LinuxInputManager.cpp:65
bool mGrabs
Definition: LinuxInputManager.h:101
std::vector< JoyStickInfo > JoyStickInfoList
Definition: LinuxPrereqs.h:79
LinuxInputManager()
Definition: LinuxInputManager.cpp:33
bool vendorExist(Type iType, const std::string &vendor)
Definition: LinuxInputManager.cpp:142
::std::string string
Definition: gtest-port.h:756
void _enumerateDevices()
internal class method for finding attached devices
Definition: LinuxInputManager.cpp:93
void _setGrabState(bool grab)
Internal method for checking if regrabbing is needed.
Definition: LinuxInputManager.h:70
void destroyObject(Object *obj)
Definition: LinuxInputManager.cpp:201
Object * createObject(InputManager *creator, Type iType, bool bufferMode, const std::string &vendor="")
Definition: LinuxInputManager.cpp:159
void _setKeyboardUsed(bool used)
Internal method, used for flaggin keyboard as available/unavailable for creation. ...
Definition: LinuxInputManager.h:74
bool grabMouse
Keyboard, Mouse Settings.
Definition: LinuxInputManager.h:100
DeviceList freeDeviceList()
Definition: LinuxInputManager.cpp:101
char joySticks
Number of joysticks found.
Definition: LinuxInputManager.h:88
Interface for creating devices - all devices ultimately get enumerated/created via a factory...
Definition: OISFactoryCreator.h:34
Linux X11 InputManager specialization - Using lowlevel joys.
Definition: LinuxInputManager.h:36
int freeDevices(Type iType)
Definition: LinuxInputManager.cpp:130
bool mouseUsed
Used to know if we used up mouse.
Definition: LinuxInputManager.h:94
Window _getWindow()
Method for retrieving the XWindow Handle.
Definition: LinuxInputManager.h:67
The base class of all input types.
Definition: OISObject.h:32
void _initialize(ParamList &paramList)
Definition: LinuxInputManager.cpp:56
Window window
X11 Stuff.
Definition: LinuxInputManager.h:97
void _setMouseUsed(bool used)
Internal method, used for flaggin mouse as available/unavailable for creation.
Definition: LinuxInputManager.h:77
Type
Each Input class has a General Type variable, a form of RTTI.
Definition: OISPrereqs.h:138
int totalDevices(Type iType)
Definition: LinuxInputManager.cpp:118
bool _getGrabState()
Definition: LinuxInputManager.h:71
Base Manager class.
Definition: OISInputManager.h:38
std::multimap< Type, std::string > DeviceList
Map of device objects connected and their respective vendors.
Definition: OISPrereqs.h:149
Definition: EventHelpers.h:31
JoyStickInfoList unusedJoyStickList
List of unused joysticks ready to be used.
Definition: LinuxInputManager.h:86
virtual ~LinuxInputManager()
Definition: LinuxInputManager.cpp:49
bool keyboardUsed
Used to know if we used up keyboard.
Definition: LinuxInputManager.h:91
bool grabKeyboard
Definition: LinuxInputManager.h:100
std::multimap< std::string, std::string > ParamList
Way to send OS nuetral parameters.. ie OS Window handles, modes, flags.
Definition: OISPrereqs.h:126
bool hideMouse
Definition: LinuxInputManager.h:102