initial say prev,curr,next line

This commit is contained in:
chrys 2016-07-13 21:40:19 +02:00
parent 311e653893
commit 333232d7ce
9 changed files with 38 additions and 22 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,8 @@
2-KEY_LEFTCTRL,1-KEY_LEFTSHIFT=curr_line #2-KEY_LEFTCTRL,1-KEY_LEFTSHIFT=curr_line
2-KEY_LEFTCTRL,1-KEY_A=shut_up #2-KEY_LEFTCTRL,1-KEY_S=next_line
#2-KEY_LEFTCTRL,1-KEY_W=prev_line
2-KEY_LEFTCTRL,1-KEY_E=shut_up
1-KEY_KP8=curr_line
1-KEY_KP7=prev_line
1-KEY_KP9=next_line

View File

@ -5,10 +5,15 @@ class command():
pass pass
def run(self, environment): def run(self, environment):
environment['runtime']['speechDriver'].cancel() environment['runtime']['speechDriver'].cancel()
environment['screenData']['oldCursorReview'] = environment['screenData']['newCursorReview']
if environment['screenData']['newCursorReview']['y'] == -1:
environment['screenData']['newCursorReview'] = environment['screenData']['newCursor'].copy()
if environment['screenData']['newContentText'].replace(" ","") == '': if environment['screenData']['newContentText'].replace(" ","") == '':
environment['runtime']['speechDriver'].speak("empty screen") environment['runtime']['speechDriver'].speak("empty line")
else: else:
environment['runtime']['speechDriver'].speak(environment['screenData']['newContentText'].split('\n')[environment['screenData']['newCursor']['y']]) environment['runtime']['speechDriver'].speak(environment['screenData']['newContentText'].split('\n')[environment['screenData']['newCursorReview']['y']])
return environment
def setCallback(self, callback): def setCallback(self, callback):
pass pass
def shutdown(self): def shutdown(self):

View File

@ -29,6 +29,7 @@ class commandManager():
for cmd in sorted(environment['commands'][trigger]): for cmd in sorted(environment['commands'][trigger]):
environment = environment['commands'][trigger][cmd].run(environment) environment = environment['commands'][trigger][cmd].run(environment)
return environment return environment
def executeCommand(self, environment, currCommand, section = 'commands'): def executeCommand(self, environment, currCommand, section = 'commands'):
if self.isCommandDefined(environment): if self.isCommandDefined(environment):
try: try:

View File

@ -11,6 +11,7 @@ class inputManager():
#for dev in self.devices.values(): print(dev) #for dev in self.devices.values(): print(dev)
def getKeyPressed(self, environment): def getKeyPressed(self, environment):
try:
r, w, x = select(self.devices, [], []) r, w, x = select(self.devices, [], [])
currShortcut = environment['input']['currShortcut'] currShortcut = environment['input']['currShortcut']
if r != []: if r != []:
@ -24,6 +25,8 @@ class inputManager():
del(currShortcut[str(event.code)]) del(currShortcut[str(event.code)])
except: except:
pass pass
except:
pass
environment['input']['currShortcut'] = currShortcut environment['input']['currShortcut'] = currShortcut
environment['input']['currShortcutString'] = self.getShortcutString(environment) environment['input']['currShortcutString'] = self.getShortcutString(environment)
return environment return environment

View File

@ -4,13 +4,13 @@ screenData = {
'columns': 0, 'columns': 0,
'lines': 0, 'lines': 0,
'oldDelta': '', 'oldDelta': '',
'oldCursorReview':{'x':0,'y':0}, 'oldCursorReview':{'x':-1,'y':-1},
'oldCursor':{'x':0,'y':0}, 'oldCursor':{'x':0,'y':0},
'oldContentBytes': b'', 'oldContentBytes': b'',
'oldContentText': '', 'oldContentText': '',
'oldContentAttrib': b'', 'oldContentAttrib': b'',
'newDelta': '', 'newDelta': '',
'newCursorReview':{'x':0,'y':0}, 'newCursorReview':{'x':-1,'y':-1},
'newCursor':{'x':0,'y':0}, 'newCursor':{'x':0,'y':0},
'newContentBytes': b'', 'newContentBytes': b'',
'newContentText': '', 'newContentText': '',

View File

@ -41,6 +41,7 @@ class fenrir():
def proceed(self): def proceed(self):
self.threadHandleInput = Thread(target=self.handleInput, args=()) self.threadHandleInput = Thread(target=self.handleInput, args=())
self.threadHandleInput.start() self.threadHandleInput.start()
self.updateScreen()
while(self.environment['generalInformation']['running']): while(self.environment['generalInformation']['running']):
self.updateScreen() self.updateScreen()
self.shutdown() self.shutdown()