51 lines
2.2 KiB
Python
51 lines
2.2 KiB
Python
#!/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
from core import debug
|
|
import time
|
|
|
|
class screenManager():
|
|
def __init__(self):
|
|
self.autoIgnoreScreens = []
|
|
|
|
def initialize(self, environment):
|
|
self.env = environment
|
|
self.env['runtime']['settingsManager'].loadDriver(\
|
|
self.env['runtime']['settingsManager'].getSetting('screen', 'driver'), 'screenDriver')
|
|
if self.env['runtime']['settingsManager'].getSettingAsBool('screen', 'autodetectSuspendingScreen'):
|
|
self.autoIgnoreScreens = self.env['runtime']['screenDriver'].getIgnoreScreens()
|
|
|
|
def shutdown(self):
|
|
self.env['runtime']['settingsManager'].shutdownDriver('screenDriver')
|
|
|
|
def update(self, trigger = 'onUpdate'):
|
|
self.env['runtime']['screenDriver'].getCurrScreen()
|
|
|
|
if not self.isSuspendingScreen():
|
|
if trigger == 'onUpdate':
|
|
self.env['runtime']['applicationManager'].getCurrentApplication()
|
|
self.env['runtime']['screenDriver'].update(trigger)
|
|
self.env['screenData']['lastScreenUpdate'] = time.time()
|
|
|
|
def isSuspendingScreen(self):
|
|
return ((self.env['screenData']['newTTY'] in \
|
|
self.env['runtime']['settingsManager'].getSetting('screen', 'suspendingScreen').split(',')) or
|
|
(self.env['screenData']['newTTY'] in self.autoIgnoreScreens))
|
|
|
|
def isScreenChange(self):
|
|
return self.env['screenData']['newTTY'] != self.env['screenData']['oldTTY']
|
|
|
|
def getWindowAreaInText(self, text):
|
|
if not self.env['runtime']['cursorManager'].isApplicationWindowSet():
|
|
return text
|
|
windowText = ''
|
|
windowList = text.split('\n')
|
|
windowList = windowList[self.env['commandBuffer']['windowArea'][self.env['screenData']['newApplication']]['1']['y']:self.env['commandBuffer']['windowArea'][currApp]['2']['y'] + 1]
|
|
for line in windowList:
|
|
windowText += line[self.env['commandBuffer']['windowArea'][self.env['screenData']['newApplication']]['1']['x']:self.env['commandBuffer']['windowArea'][currApp]['2']['x'] + 1] + '\n'
|
|
return windowText
|
|
|