42 lines
1.6 KiB
Python
42 lines
1.6 KiB
Python
#!/bin/python
|
|
import time
|
|
# -*- 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):
|
|
pass
|
|
def shutdown(self, environment):
|
|
pass
|
|
def getDescription(self, environment):
|
|
return ''
|
|
|
|
def run(self, environment):
|
|
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'promote', 'enabled'):
|
|
return
|
|
if environment['runtime']['settingsManager'].getSetting(environment, 'promote', 'list').strip(" \t\n") == '':
|
|
return
|
|
if environment['screenData']['newTTY'] != environment['screenData']['oldTTY']:
|
|
return
|
|
if environment['screenData']['newDelta'] == '':
|
|
return
|
|
if int(time.time() - environment['input']['lastInputTime']) < environment['runtime']['settingsManager'].getSettingAsInt(environment, 'promote', 'inactiveTimeoutSec'):
|
|
return
|
|
if len(environment['runtime']['settingsManager'].getSetting(environment, 'promote', 'list')) == 0:
|
|
return
|
|
for promote in environment['runtime']['settingsManager'].getSetting(environment, 'promote', 'list').split(','):
|
|
if promote in environment['screenData']['newDelta']:
|
|
environment['runtime']['outputManager'].playSoundIcon(environment,'PromotedText')
|
|
environment['input']['lastInputTime'] = time.time()
|
|
return
|
|
|
|
def setCallback(self, callback):
|
|
pass
|
|
|