make python package and build up class model

This commit is contained in:
chrys
2016-07-07 19:43:31 +02:00
parent 74a4341436
commit a0c936d1e9
23 changed files with 404 additions and 0 deletions

View File

@ -0,0 +1 @@
#!/bin/python

View 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,
}

View File

@ -0,0 +1,9 @@
#!/bin/python
class inputManager():
def __init__(self):
pass
def getCommandQueue(self, runtime):
return[]

View File

@ -0,0 +1 @@
#!/bin/python