2016-07-07 13:43:31 -04:00
|
|
|
#!/bin/python
|
2016-09-19 16:15:58 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-07-07 13:43:31 -04:00
|
|
|
|
2016-09-19 16:15:58 -04:00
|
|
|
# Fenrir TTY screen reader
|
|
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
|
|
|
|
from core import debug
|
2016-07-08 05:08:12 -04:00
|
|
|
from core import settings
|
2016-07-08 05:13:27 -04:00
|
|
|
from core import runtime
|
|
|
|
from core import screenData
|
|
|
|
from core import generalInformation
|
2016-07-08 12:33:32 -04:00
|
|
|
from core import commands
|
2016-09-17 17:38:40 -04:00
|
|
|
from core import inputEvent
|
2016-07-08 04:59:40 -04:00
|
|
|
|
2016-07-08 05:13:27 -04:00
|
|
|
environment = {
|
2016-07-08 08:29:35 -04:00
|
|
|
'screenData': screenData.screenData,
|
|
|
|
'runtime': runtime.runtime,
|
|
|
|
'generalInformation': generalInformation.generalInformation,
|
|
|
|
'settings': settings.settings,
|
2016-07-08 12:33:32 -04:00
|
|
|
'commands': commands.commands,
|
|
|
|
'commandInfo': commands.commandInfo,
|
2016-08-22 18:51:39 -04:00
|
|
|
'commandBuffer': commands.commandBuffer,
|
2016-09-17 17:38:40 -04:00
|
|
|
'input': inputEvent.input,
|
2016-08-22 18:51:39 -04:00
|
|
|
'soundIcons': {},
|
|
|
|
'bindings': {},
|
2016-07-07 13:56:46 -04:00
|
|
|
}
|