fenrir/src/fenrir-package/fenrir.py

68 lines
3.1 KiB
Python
Raw Normal View History

#!/bin/python
2016-07-08 19:01:00 -04:00
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
2016-08-30 16:41:14 -04:00
import os, sys, signal, time
if not os.getcwd() in sys.path:
sys.path.append(os.getcwd())
from core import environment
2016-07-11 05:40:09 -04:00
from core import settingsManager
2016-08-30 16:52:54 -04:00
from utils import debug
2016-07-07 15:40:10 -04:00
class fenrir():
def __init__(self):
2016-07-14 16:15:10 -04:00
self.environment = settingsManager.settingsManager().initFenrirConfig()
signal.signal(signal.SIGINT, self.captureSignal)
2016-07-14 16:15:10 -04:00
def proceed(self):
self.environment['runtime']['outputManager'].presentText(self.environment, "Start Fenrir", soundIcon='ScreenReaderOn', interrupt=True)
2016-07-18 13:42:49 -04:00
#self.threadonInput.start()
while(self.environment['generalInformation']['running']):
2016-08-21 16:23:53 -04:00
self.handleProcess()
2016-08-30 16:52:54 -04:00
self.environment['runtime']['debug'].writeDebugOut(self.environment,'happy loop at'+str(time.time()),debug.debugLevel.ERROR)
2016-08-30 16:41:14 -04:00
2016-07-07 15:53:37 -04:00
self.shutdown()
2016-08-21 16:23:53 -04:00
def handleProcess(self):
self.environment, timeout = self.environment['runtime']['inputManager'].proceedInputEvents(self.environment)
2016-08-30 17:51:17 -04:00
try:
self.environment = self.environment['runtime']['screenDriver'].analyzeScreen(self.environment)
except Exception as e:
self.environment['runtime']['debug'].writeDebugOut(self.environment, str(e)+' error happy loop at'+str(time.time()),debug.debugLevel.ERROR)
2016-08-26 04:53:24 -04:00
if not self.environment['input']['keyForeward']:
self.environment = self.environment['runtime']['commandManager'].getCommandForShortcut(self.environment)
if not timeout:
self.environment = self.environment['runtime']['commandManager'].executeTriggerCommands(self.environment, 'onInput')
self.environment = self.environment['runtime']['commandManager'].executeTriggerCommands(self.environment, 'onScreenChanged')
2016-08-26 04:53:24 -04:00
if not self.environment['input']['keyForeward']:
2016-08-13 18:11:37 -04:00
if self.environment['commandInfo']['currCommand'] != '':
self.handleCommands()
2016-07-07 17:59:21 -04:00
2016-07-08 12:33:32 -04:00
def handleCommands(self):
if (self.environment['commandInfo']['currCommand'] != ''):
2016-07-10 17:02:17 -04:00
self.environment = self.environment['runtime']['commandManager'].executeCommand(self.environment, self.environment['commandInfo']['currCommand'], 'commands')
2016-08-21 16:23:53 -04:00
2016-08-10 09:30:43 -04:00
def shutdownRequest(self):
self.environment['generalInformation']['running'] = False
2016-08-21 16:23:53 -04:00
def captureSignal(self, siginit, frame):
self.shutdownRequest()
2016-08-10 09:30:43 -04:00
def shutdown(self):
self.environment['runtime']['outputManager'].presentText(self.environment, "Quit Fenrir", soundIcon='ScreenReaderOff', interrupt=True)
2016-07-07 18:07:03 -04:00
2016-07-08 05:29:50 -04:00
if self.environment['runtime']['debug'] != None:
self.environment['runtime']['debug'].closeDebugFile()
2016-07-08 06:30:47 -04:00
if self.environment['runtime']['soundDriver'] != None:
self.environment['runtime']['soundDriver'].shutdown()
2016-08-10 09:30:43 -04:00
if self.environment['runtime']['speechDriver'] != None:
self.environment['runtime']['speechDriver'].shutdown()
2016-08-11 08:37:46 -04:00
self.environment['runtime']['inputManager'].freeDevices()
app = fenrir()
app.proceed()