2016-08-07 17:00:54 +02:00
|
|
|
#!/bin/python
|
|
|
|
from utils import word_utils
|
|
|
|
|
|
|
|
class command():
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
2016-09-02 21:37:36 +02:00
|
|
|
def initialize(self, environment):
|
|
|
|
return environment
|
|
|
|
def shutdown(self, environment):
|
|
|
|
return environment
|
|
|
|
def getDescription(self):
|
|
|
|
return ''
|
2016-08-07 17:00:54 +02:00
|
|
|
def run(self, environment):
|
|
|
|
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'wordEcho'):
|
|
|
|
return environment
|
|
|
|
|
|
|
|
# just when cursor move worddetection is needed
|
|
|
|
if environment['screenData']['newCursor']['x'] == environment['screenData']['oldCursor']['x']:
|
|
|
|
return environment
|
|
|
|
|
|
|
|
# for now no new line
|
|
|
|
if environment['screenData']['newCursor']['y'] != environment['screenData']['oldCursor']['y']:
|
|
|
|
return environment
|
|
|
|
if len(environment['screenData']['newDelta']) > 1:
|
|
|
|
return environment
|
|
|
|
|
|
|
|
# TTY Change is no new word
|
|
|
|
if environment['screenData']['newTTY'] != environment['screenData']['oldTTY']:
|
|
|
|
return environment
|
|
|
|
|
|
|
|
# first place could not be the end of a word
|
|
|
|
if environment['screenData']['newCursor']['x'] == 0:
|
|
|
|
return environment
|
|
|
|
|
|
|
|
# get the word
|
|
|
|
newContent = environment['screenData']['newContentText'].split('\n')[environment['screenData']['newCursor']['y']]
|
|
|
|
x, y, currWord = word_utils.getCurrentWord(environment['screenData']['newCursor']['x'], 0, newContent)
|
2016-08-08 20:59:07 +02:00
|
|
|
# was this a typed word?
|
|
|
|
if environment['screenData']['newDelta'] != '':
|
2016-08-28 17:45:16 +02:00
|
|
|
if not(newContent[environment['screenData']['oldCursor']['x']].strip() == '' and x != environment['screenData']['oldCursor']['x']):
|
2016-08-08 20:59:07 +02:00
|
|
|
return environment
|
|
|
|
else:
|
|
|
|
# or just arrow arround?
|
2016-08-28 17:45:16 +02:00
|
|
|
if not(newContent[environment['screenData']['newCursor']['x']].strip() == '' and x != environment['screenData']['newCursor']['x']):
|
2016-08-08 20:59:07 +02:00
|
|
|
return environment
|
|
|
|
|
2016-08-07 17:00:54 +02:00
|
|
|
if currWord != '':
|
|
|
|
environment['runtime']['outputManager'].presentText(environment, currWord, interrupt=True)
|
|
|
|
|
|
|
|
return environment
|
|
|
|
def setCallback(self, callback):
|
|
|
|
pass
|
2016-09-02 21:37:36 +02:00
|
|
|
|