make python package and build up class model
This commit is contained in:
1
src/fenrir-package/core/commandManager.py
Normal file
1
src/fenrir-package/core/commandManager.py
Normal file
@ -0,0 +1 @@
|
||||
#!/bin/python
|
25
src/fenrir-package/core/environment.py
Normal file
25
src/fenrir-package/core/environment.py
Normal file
@ -0,0 +1,25 @@
|
||||
#!/bin/python
|
||||
|
||||
runtime = {
|
||||
'running':True,
|
||||
'columns': 0,
|
||||
'lines': 0,
|
||||
'screenDriver': '/dev/vcsa',
|
||||
'delta': '',
|
||||
'oldCursor':{'x':0,'y':0},
|
||||
'oldContentBytes': b'',
|
||||
'oldContentText': '',
|
||||
'oldContentAttrib': b'',
|
||||
'newCursor':{'x':0,'y':0},
|
||||
'newContentBytes': b'',
|
||||
'newContentText': '',
|
||||
'newContentAttrib': b'',
|
||||
'oldTTY':'0',
|
||||
'newTTY':'0',
|
||||
'speechDriverString':'',
|
||||
'speechDriver': None,
|
||||
'screenDriverString': '',
|
||||
'screenDriver': None,
|
||||
'soundDriverString': '',
|
||||
'soundDriver': None,
|
||||
}
|
9
src/fenrir-package/core/inputManager.py
Normal file
9
src/fenrir-package/core/inputManager.py
Normal file
@ -0,0 +1,9 @@
|
||||
#!/bin/python
|
||||
|
||||
class inputManager():
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def getCommandQueue(self, runtime):
|
||||
return[]
|
||||
|
1
src/fenrir-package/core/settingsManager.py
Normal file
1
src/fenrir-package/core/settingsManager.py
Normal file
@ -0,0 +1 @@
|
||||
#!/bin/python
|
Reference in New Issue
Block a user