2016-07-07 13:43:31 -04:00
|
|
|
#!/bin/python
|
2016-09-19 16:15:58 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Fenrir TTY screen reader
|
|
|
|
# By Chrys, Storm Dragon, and contributers.
|
2016-07-07 13:43:31 -04:00
|
|
|
|
2016-08-11 08:37:46 -04:00
|
|
|
import time
|
2016-09-19 16:15:58 -04:00
|
|
|
from core import debug
|
2016-09-17 17:38:40 -04:00
|
|
|
from core import inputEvent
|
2016-07-07 15:40:10 -04:00
|
|
|
|
2016-07-07 13:43:31 -04:00
|
|
|
class inputManager():
|
|
|
|
def __init__(self):
|
2016-09-02 15:37:36 -04:00
|
|
|
pass
|
|
|
|
def initialize(self, environment):
|
2016-09-16 19:04:03 -04:00
|
|
|
environment['runtime']['settingsManager'].loadDriver(environment,\
|
|
|
|
environment['runtime']['settingsManager'].getSetting(environment,'keyboard', 'driver'), 'inputDriver')
|
2016-09-18 07:13:58 -04:00
|
|
|
# init LEDs with current state
|
|
|
|
environment['input']['newNumLock'] = environment['runtime']['inputDriver'].getNumlock(environment)
|
|
|
|
environment['input']['oldNumLock'] = environment['input']['newNumLock']
|
|
|
|
environment['input']['newCapsLock'] = environment['runtime']['inputDriver'].getCapslock(environment)
|
|
|
|
environment['input']['oldCapsLock'] = environment['input']['newCapsLock']
|
|
|
|
environment['input']['newScrollLock'] = environment['runtime']['inputDriver'].getScrollLock(environment)
|
|
|
|
environment['input']['oldScrollLock'] = environment['input']['newScrollLock']
|
2016-09-18 09:13:24 -04:00
|
|
|
self.grabDevices(environment)
|
2016-09-16 19:04:03 -04:00
|
|
|
|
2016-09-02 15:37:36 -04:00
|
|
|
def shutdown(self, environment):
|
2016-09-16 19:04:03 -04:00
|
|
|
environment['runtime']['inputManager'].releaseDevices(environment)
|
|
|
|
if environment['runtime']['inputDriver']:
|
|
|
|
environment['runtime']['inputDriver'].shutdown(environment)
|
|
|
|
|
2016-09-02 16:13:33 -04:00
|
|
|
def proceedInputEvent(self, environment):
|
2016-09-02 20:22:56 -04:00
|
|
|
timeout = True
|
2016-09-18 09:13:24 -04:00
|
|
|
mEvent = environment['runtime']['inputDriver'].getInput(environment)
|
|
|
|
if mEvent:
|
2016-09-17 17:38:40 -04:00
|
|
|
if mEvent['EventValue'] == 0:
|
2016-09-17 21:22:54 -04:00
|
|
|
return True
|
2016-09-12 18:05:29 -04:00
|
|
|
timeout = False
|
2016-09-17 17:38:40 -04:00
|
|
|
if mEvent['EventState'] == 0:
|
|
|
|
if self.isFenrirKey(environment, mEvent):
|
|
|
|
environment['input']['currInput'].remove('KEY_FENRIR')
|
2016-09-17 21:32:24 -04:00
|
|
|
elif mEvent['EventName'] in ['KEY_RIGHTCTRL','KEY_LEFTCTRL'] :
|
|
|
|
environment['input']['currInput'].remove('KEY_CTRL')
|
|
|
|
elif mEvent['EventName'] in ['KEY_RIGHTSHIFT','KEY_LEFTSHIFT'] :
|
|
|
|
environment['input']['currInput'].remove('KEY_SHIFT')
|
2016-09-17 17:38:40 -04:00
|
|
|
else:
|
|
|
|
environment['input']['currInput'].remove(mEvent['EventName'])
|
|
|
|
environment['input']['currInput'] = sorted(environment['input']['currInput'])
|
|
|
|
elif mEvent['EventState'] == 1:
|
|
|
|
if self.isFenrirKey(environment, mEvent):
|
2016-09-18 09:13:24 -04:00
|
|
|
if not self.isFenrirKeyPressed(environment):
|
2016-09-17 21:41:45 -04:00
|
|
|
environment['input']['currInput'].append('KEY_FENRIR')
|
2016-09-17 21:32:24 -04:00
|
|
|
elif mEvent['EventName'] in ['KEY_RIGHTCTRL','KEY_LEFTCTRL'] :
|
2016-09-17 21:41:45 -04:00
|
|
|
if not 'KEY_CTRL' in environment['input']['currInput']:
|
|
|
|
environment['input']['currInput'].append('KEY_CTRL')
|
2016-09-17 21:32:24 -04:00
|
|
|
elif mEvent['EventName'] in ['KEY_RIGHTSHIFT','KEY_LEFTSHIFT'] :
|
2016-09-17 21:41:45 -04:00
|
|
|
if not 'KEY_SHIFT' in environment['input']['currInput']:
|
|
|
|
environment['input']['currInput'].append('KEY_SHIFT')
|
|
|
|
else:
|
|
|
|
if not mEvent['EventName'] in environment['input']['currInput']:
|
|
|
|
environment['input']['currInput'].append(mEvent['EventName'])
|
2016-09-17 17:38:40 -04:00
|
|
|
environment['input']['currInput'] = sorted(environment['input']['currInput'])
|
|
|
|
elif mEvent['EventState'] == 2:
|
|
|
|
pass
|
|
|
|
else:
|
2016-09-17 21:22:54 -04:00
|
|
|
pass
|
|
|
|
environment['input']['oldNumLock'] = environment['input']['newNumLock']
|
|
|
|
environment['input']['newNumLock'] = environment['runtime']['inputDriver'].getNumlock(environment)
|
|
|
|
environment['input']['oldCapsLock'] = environment['input']['newCapsLock']
|
|
|
|
environment['input']['newCapsLock'] = environment['runtime']['inputDriver'].getCapslock(environment)
|
|
|
|
environment['input']['oldScrollLock'] = environment['input']['newScrollLock']
|
|
|
|
environment['input']['newScrollLock'] = environment['runtime']['inputDriver'].getScrollLock(environment)
|
2016-09-17 17:38:40 -04:00
|
|
|
environment['input']['lastInputTime'] = time.time()
|
|
|
|
environment['input']['shortcutRepeat'] = 1
|
2016-09-16 19:04:03 -04:00
|
|
|
return timeout
|
2016-09-12 17:29:16 -04:00
|
|
|
|
2016-09-02 15:37:36 -04:00
|
|
|
def grabDevices(self, environment):
|
2016-09-16 20:30:34 -04:00
|
|
|
if environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'grabDevices'):
|
|
|
|
environment['runtime']['inputDriver'].grabDevices(environment)
|
2016-09-02 15:37:36 -04:00
|
|
|
|
|
|
|
def releaseDevices(self, environment):
|
2016-09-18 09:13:24 -04:00
|
|
|
environment['runtime']['inputDriver'].releaseDevices(environment)
|
2016-09-02 15:37:36 -04:00
|
|
|
|
|
|
|
def isConsumeInput(self, environment):
|
2016-09-18 09:13:24 -04:00
|
|
|
return environment['runtime']['commandManager'].isCommandQueued(environment) and \
|
|
|
|
not environment['input']['keyForeward']
|
|
|
|
#and
|
|
|
|
# not (environment['input']['keyForeward'] or \
|
|
|
|
# environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'grabDevices'))
|
|
|
|
|
|
|
|
def clearEventBuffer(self, environment):
|
|
|
|
environment['runtime']['inputDriver'].clearEventBuffer(environment)
|
2016-09-02 15:37:36 -04:00
|
|
|
|
2016-09-18 09:13:24 -04:00
|
|
|
def writeEventBuffer(self, environment):
|
2016-08-31 07:27:04 -04:00
|
|
|
try:
|
2016-09-18 09:13:24 -04:00
|
|
|
environment['runtime']['inputDriver'].writeEventBuffer(environment)
|
2016-09-02 12:08:44 -04:00
|
|
|
except Exception as e:
|
2016-09-18 09:13:24 -04:00
|
|
|
print(e)
|
2016-09-02 12:08:44 -04:00
|
|
|
environment['runtime']['debug'].writeDebugOut(environment,"Error while writeUInput",debug.debugLevel.ERROR)
|
2016-09-02 15:37:36 -04:00
|
|
|
environment['runtime']['debug'].writeDebugOut(environment, str(e),debug.debugLevel.ERROR)
|
2016-09-18 09:13:24 -04:00
|
|
|
def isFenrirKeyPressed(self, environment):
|
|
|
|
return 'KEY_FENRIR' in environment['input']['currInput']
|
2016-09-12 17:29:16 -04:00
|
|
|
|
2016-09-18 09:13:24 -04:00
|
|
|
def noKeyPressed(self, environment):
|
|
|
|
return environment['input']['currInput'] == []
|
2016-09-16 19:59:38 -04:00
|
|
|
def getPrevDeepestInput(self, environment):
|
|
|
|
shortcut = []
|
|
|
|
shortcut.append(environment['input']['shortcutRepeat'])
|
|
|
|
shortcut.append(sorted(environment['input']['prevDeepestInput']))
|
|
|
|
|
|
|
|
def getPrevShortcut(self, environment):
|
|
|
|
shortcut = []
|
|
|
|
shortcut.append(environment['input']['shortcutRepeat'])
|
|
|
|
shortcut.append(sorted(environment['input']['prevInput']))
|
2016-09-17 17:38:40 -04:00
|
|
|
return str(shortcut)
|
2016-09-16 19:59:38 -04:00
|
|
|
|
2016-09-17 17:38:40 -04:00
|
|
|
def getCurrShortcut(self, environment):
|
2016-09-16 19:59:38 -04:00
|
|
|
shortcut = []
|
|
|
|
shortcut.append(environment['input']['shortcutRepeat'])
|
2016-09-17 17:38:40 -04:00
|
|
|
shortcut.append(sorted(environment['input']['currInput']))
|
|
|
|
return str(shortcut)
|
2016-09-02 15:37:36 -04:00
|
|
|
|
2016-09-17 17:38:40 -04:00
|
|
|
def isFenrirKey(self,environment, mEvent):
|
|
|
|
return str(mEvent['EventName']) in environment['input']['fenrirKey']
|
2016-09-16 19:04:03 -04:00
|
|
|
|
|
|
|
def getCommandForShortcut(self, environment, shortcut):
|
|
|
|
shortcut = shortcut.upper()
|
2016-09-16 19:59:38 -04:00
|
|
|
if not self.shortcutExists(environment, shortcut):
|
2016-09-16 19:04:03 -04:00
|
|
|
return ''
|
2016-09-16 19:59:38 -04:00
|
|
|
return environment['bindings'][shortcut].upper()
|
2016-09-16 19:04:03 -04:00
|
|
|
|
2016-09-16 19:59:38 -04:00
|
|
|
def shortcutExists(self, environment, shortcut):
|
|
|
|
return( str(shortcut).upper() in environment['bindings'])
|
|
|
|
|