fix typos
This commit is contained in:
parent
5f77198e80
commit
9c571ba032
@ -31,9 +31,9 @@ class inputManager():
|
|||||||
|
|
||||||
def getInputEvent(self, environment):
|
def getInputEvent(self, environment):
|
||||||
eventReceived = False
|
eventReceived = False
|
||||||
mEvent = environment['runtime']['inputDriver'].getInput(environment)
|
mEvent = environment['runtime']['inputDriver'].getInputEvent(environment)
|
||||||
mEvent['EventName'] = self.convertEventName(mEvent['EventName'])
|
|
||||||
if mEvent:
|
if mEvent:
|
||||||
|
mEvent['EventName'] = self.convertEventName(environment, mEvent['EventName'])
|
||||||
if mEvent['EventValue'] == 0:
|
if mEvent['EventValue'] == 0:
|
||||||
return False
|
return False
|
||||||
eventReceived = True
|
eventReceived = True
|
||||||
@ -66,7 +66,9 @@ class inputManager():
|
|||||||
def releaseDevices(self, environment):
|
def releaseDevices(self, environment):
|
||||||
environment['runtime']['inputDriver'].releaseDevices(environment)
|
environment['runtime']['inputDriver'].releaseDevices(environment)
|
||||||
|
|
||||||
def convertEventName(self, eventName):
|
def convertEventName(self, environment, eventName):
|
||||||
|
if not eventName:
|
||||||
|
return ''
|
||||||
if eventName == 'KEY_LEFTCTRL':
|
if eventName == 'KEY_LEFTCTRL':
|
||||||
eventName == 'KEY_CTRL'
|
eventName == 'KEY_CTRL'
|
||||||
elif eventName == 'KEY_RIGHTCTRL':
|
elif eventName == 'KEY_RIGHTCTRL':
|
||||||
@ -100,6 +102,7 @@ class inputManager():
|
|||||||
print(e)
|
print(e)
|
||||||
environment['runtime']['debug'].writeDebugOut(environment,"Error while writeUInput",debug.debugLevel.ERROR)
|
environment['runtime']['debug'].writeDebugOut(environment,"Error while writeUInput",debug.debugLevel.ERROR)
|
||||||
environment['runtime']['debug'].writeDebugOut(environment, str(e),debug.debugLevel.ERROR)
|
environment['runtime']['debug'].writeDebugOut(environment, str(e),debug.debugLevel.ERROR)
|
||||||
|
|
||||||
def isFenrirKeyPressed(self, environment):
|
def isFenrirKeyPressed(self, environment):
|
||||||
return 'KEY_FENRIR' in environment['input']['currInput']
|
return 'KEY_FENRIR' in environment['input']['currInput']
|
||||||
|
|
||||||
@ -133,4 +136,3 @@ class inputManager():
|
|||||||
|
|
||||||
def shortcutExists(self, environment, shortcut):
|
def shortcutExists(self, environment, shortcut):
|
||||||
return( str(shortcut).upper() in environment['bindings'])
|
return( str(shortcut).upper() in environment['bindings'])
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ class driver():
|
|||||||
self.getInputDevices(environment)
|
self.getInputDevices(environment)
|
||||||
def shutdown(self, environment):
|
def shutdown(self, environment):
|
||||||
pass
|
pass
|
||||||
def getInput(self, environment):
|
def getInputEvent(self, environment):
|
||||||
event = None
|
event = None
|
||||||
r, w, x = select(self.iDevices, [], [], environment['runtime']['settingsManager'].getSettingAsFloat(environment, 'screen', 'screenUpdateDelay'))
|
r, w, x = select(self.iDevices, [], [], environment['runtime']['settingsManager'].getSettingAsFloat(environment, 'screen', 'screenUpdateDelay'))
|
||||||
if r != []:
|
if r != []:
|
||||||
|
Loading…
Reference in New Issue
Block a user