2017-06-30 14:08:42 -04:00
|
|
|
#!/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Fenrir TTY screen reader
|
|
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
|
|
|
|
from core import debug
|
|
|
|
|
|
|
|
class command():
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
def initialize(self, environment):
|
|
|
|
self.env = environment
|
|
|
|
def shutdown(self):
|
|
|
|
pass
|
|
|
|
def getDescription(self):
|
|
|
|
return 'No Description found'
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
if not self.env['runtime']['settingsManager'].getSettingAsBool('speech', 'autoReadIncoming'):
|
|
|
|
return
|
|
|
|
# is there something to read?
|
|
|
|
if not self.env['runtime']['screenManager'].isDelta():
|
|
|
|
return
|
2017-06-30 14:19:55 -04:00
|
|
|
if len(self.env['screen']['newDelta']) <=2:
|
2017-06-30 14:08:42 -04:00
|
|
|
return
|
|
|
|
# its a cursor movement (experimental) - maybe also check current shortcut string?
|
|
|
|
|
|
|
|
#if not '$' in self.env['screen']['newDelta'] and
|
|
|
|
# not '#' in self.env['screen']['newDelta']:
|
|
|
|
if abs(self.env['screen']['newCursor']['x'] - self.env['screen']['oldCursor']['x']) == 1:
|
|
|
|
# if len(self.env['screen']['newDelta'].strip(' \n\t0123456789')) <= 2:
|
|
|
|
return
|
|
|
|
if abs(self.env['screen']['newCursor']['y'] - self.env['screen']['oldCursor']['y']) == 1:
|
|
|
|
# if len(self.env['screen']['newDelta'].strip(' \n\t0123456789')) <= 2:
|
|
|
|
return
|
|
|
|
self.env['runtime']['outputManager'].presentText(self.env['screen']['newDelta'], interrupt=False, flush=False)
|
|
|
|
|
|
|
|
def setCallback(self, callback):
|
|
|
|
pass
|
|
|
|
|