89 lines
4.5 KiB
Python
Executable File
89 lines
4.5 KiB
Python
Executable File
#!/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
import os, sys, signal, time
|
|
|
|
if not os.getcwd() in sys.path:
|
|
sys.path.append(os.getcwd())
|
|
|
|
from core import settingsManager
|
|
from utils import debug
|
|
|
|
class fenrir():
|
|
def __init__(self):
|
|
self.environment = settingsManager.settingsManager().initFenrirConfig()
|
|
if not self.environment:
|
|
|
|
signal.signal(signal.SIGINT, self.captureSignal)
|
|
|
|
def proceed(self):
|
|
self.environment['runtime']['outputManager'].presentText(self.environment, "Start Fenrir", soundIcon='ScreenReaderOn', interrupt=True)
|
|
while(self.environment['generalInformation']['running']):
|
|
try:
|
|
self.handleProcess()
|
|
except Exception as e:
|
|
print(e)
|
|
self.environment['runtime']['debug'].writeDebugOut(self.environment,str(e),debug.debugLevel.ERROR)
|
|
self.shutdown()
|
|
|
|
def handleProcess(self):
|
|
self.environment, timeout = self.environment['runtime']['inputManager'].proceedInputEvent(self.environment)
|
|
timeout = True
|
|
try:
|
|
self.environment = self.environment['runtime']['screenManager'].update(self.environment)
|
|
except Exception as e:
|
|
print(e)
|
|
self.environment['runtime']['debug'].writeDebugOut(self.environment, str(e),debug.debugLevel.ERROR)
|
|
if not (self.environment['input']['keyForeward'] or timeout):
|
|
#currShortcut = self.environment['runtime']['inputManager'].getCurrShortcut(self.environment)
|
|
currShortcut = ''
|
|
currCommand = self.environment['runtime']['commandManager'].getCommandForShortcut(self.environment, currShortcut)
|
|
self.environment = self.environment['runtime']['commandManager'].setCurrCommandForExec(self.environment, currCommand)
|
|
if not timeout:
|
|
self.environment = self.environment['runtime']['commandManager'].executeTriggerCommands(self.environment, 'onInput')
|
|
self.environment = self.environment['runtime']['commandManager'].executeTriggerCommands(self.environment, 'onScreenChanged')
|
|
if not self.environment['input']['keyForeward']:
|
|
if self.environment['commandInfo']['currCommand'] != '':
|
|
self.handleCommands()
|
|
|
|
def handleCommands(self):
|
|
if (self.environment['commandInfo']['currCommand'] != ''):
|
|
self.environment = self.environment['runtime']['commandManager'].executeCommand(self.environment, self.environment['commandInfo']['currCommand'], 'commands')
|
|
|
|
def shutdownRequest(self):
|
|
self.environment['generalInformation']['running'] = False
|
|
|
|
def captureSignal(self, siginit, frame):
|
|
self.shutdownRequest()
|
|
|
|
def shutdown(self):
|
|
self.environment['runtime']['inputManager'].releaseDevices(self.environment)
|
|
self.environment['runtime']['outputManager'].presentText(self.environment, "Quit Fenrir", soundIcon='ScreenReaderOff', interrupt=True)
|
|
if self.environment['runtime']['screenManager']:
|
|
self.environment['runtime']['screenManager'].shutdown(self.environment)
|
|
if self.environment['runtime']['commandManager']:
|
|
self.environment['runtime']['commandManager'].shutdown(self.environment)
|
|
if self.environment['runtime']['inputManager']:
|
|
self.environment['runtime']['inputManager'].shutdown(self.environment)
|
|
if self.environment['runtime']['outputManager']:
|
|
self.environment['runtime']['outputManager'].shutdown(self.environment)
|
|
if self.environment['runtime']['screenDriver']:
|
|
self.environment['runtime']['screenDriver'].shutdown(self.environment)
|
|
if self.environment['runtime']['inputDriver']:
|
|
self.environment['runtime']['inputDriver'].shutdown(self.environment)
|
|
if self.environment['runtime']['soundDriver']:
|
|
self.environment['runtime']['soundDriver'].shutdown(self.environment)
|
|
if self.environment['runtime']['speechDriver']:
|
|
self.environment['runtime']['speechDriver'].shutdown(self.environment)
|
|
if self.environment['runtime']['debug']:
|
|
self.environment['runtime']['debug'].closeDebugFile()
|
|
time.sleep(0.8) # wait a little before splatter it :)
|
|
self.environment = None
|
|
|
|
if __name__ == "__main__":
|
|
app = fenrir()
|
|
app.proceed()
|