fenrir/src/fenrir-package/core/inputManager.py

51 lines
1.9 KiB
Python
Raw Normal View History

#!/bin/python
2016-08-11 08:37:46 -04:00
import time
2016-08-23 18:41:16 -04:00
from utils import debug
2016-07-07 15:40:10 -04:00
class inputManager():
def __init__(self):
pass
def initialize(self, environment):
return environment
def shutdown(self, environment):
return environment
def proceedInputEvent(self, environment):
2016-09-02 20:22:56 -04:00
timeout = True
2016-09-12 18:05:29 -04:00
event = environment['runtime']['inputDriver'].getInput(environment)
if event:
timeout = False
print(event)
2016-09-12 17:29:16 -04:00
return environment, timeout
def grabDevices(self, environment):
environment['runtime']['inputDriver'].grabDevices(environment)
def releaseDevices(self, environment):
environment['runtime']['inputDriver'].releaseDevices()
def isConsumeInput(self, environment):
return environment['input']['consumeKey'] and \
not environment['input']['keyForeward'] or \
not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'grabDevices')
def passInput(self, environment):
2016-08-31 07:27:04 -04:00
try:
environment['runtime']['inputDriver']
2016-09-02 12:08:44 -04:00
except Exception as e:
environment['runtime']['debug'].writeDebugOut(environment,"Error while writeUInput",debug.debugLevel.ERROR)
environment['runtime']['debug'].writeDebugOut(environment, str(e),debug.debugLevel.ERROR)
return environment
2016-09-12 17:29:16 -04:00
2016-07-08 12:33:32 -04:00
def getShortcutString(self, environment):
if environment['input']['currShortcut'] == {}:
return ''
currShortcutStringList = []
2016-07-10 12:34:44 -04:00
for key in environment['input']['currShortcut']:
2016-08-11 17:16:44 -04:00
currShortcutStringList.append("%s-%s" % (environment['input']['currShortcut'][key], key))
2016-07-10 12:34:44 -04:00
currShortcutStringList = sorted(currShortcutStringList)
2016-07-08 12:33:32 -04:00
return str(currShortcutStringList)[1:-1].replace(" ","").replace("'","")
2016-08-11 17:16:44 -04:00
def isFenrirKey(self,environment, event):
return str(event.code) in environment['input']['fenrirKey']