2016-07-07 13:43:31 -04:00
|
|
|
#!/bin/python
|
|
|
|
|
2016-07-08 05:08:12 -04:00
|
|
|
from core import settings
|
|
|
|
from core import soundIcons
|
|
|
|
from core import bindings
|
2016-07-08 04:59:40 -04:00
|
|
|
|
2016-07-07 13:43:31 -04:00
|
|
|
runtime = {
|
|
|
|
'running':True,
|
2016-07-07 15:40:10 -04:00
|
|
|
'debug':None,
|
2016-07-07 13:43:31 -04:00
|
|
|
'columns': 0,
|
|
|
|
'lines': 0,
|
|
|
|
'delta': '',
|
|
|
|
'oldCursor':{'x':0,'y':0},
|
|
|
|
'oldContentBytes': b'',
|
|
|
|
'oldContentText': '',
|
|
|
|
'oldContentAttrib': b'',
|
|
|
|
'newCursor':{'x':0,'y':0},
|
|
|
|
'newContentBytes': b'',
|
|
|
|
'newContentText': '',
|
|
|
|
'newContentAttrib': b'',
|
2016-07-08 04:55:48 -04:00
|
|
|
'oldTTY':'-1', #to get shure that the first loop is a chagne
|
2016-07-07 13:43:31 -04:00
|
|
|
'newTTY':'0',
|
|
|
|
'speechDriverString':'',
|
|
|
|
'speechDriver': None,
|
|
|
|
'screenDriverString': '',
|
|
|
|
'screenDriver': None,
|
|
|
|
'soundDriverString': '',
|
|
|
|
'soundDriver': None,
|
2016-07-08 04:55:48 -04:00
|
|
|
'inputManager': None,
|
|
|
|
'settings' = settings,
|
2016-07-08 04:59:40 -04:00
|
|
|
'bindings' = bindings,
|
|
|
|
'autospeak' = ['speak_delta'],
|
|
|
|
'soundIcons' = soundIcons
|
2016-07-07 13:56:46 -04:00
|
|
|
}
|