2016-07-07 13:43:31 -04:00
|
|
|
#!/bin/python
|
2016-07-08 06:25:27 -04:00
|
|
|
|
|
|
|
class commandManager():
|
|
|
|
def __init__(self):
|
2016-07-08 06:26:00 -04:00
|
|
|
pass
|
2016-07-08 12:33:32 -04:00
|
|
|
def loadCommands(self, environment):
|
|
|
|
return environment
|
|
|
|
def executeCommand(self, environment):
|
|
|
|
print(environment['commandInfo']['currCommand'])
|
|
|
|
if self.isCommandDefined(environment):
|
|
|
|
environment['commands'][environment['commandInfo']['currCommand']].run(environment)
|
|
|
|
environment['commandInfo']['currCommand'] = ''
|
|
|
|
return environment
|
|
|
|
|
|
|
|
def executeNextCommand(self, environment):
|
|
|
|
pass
|
|
|
|
def isShortcutDefined(self, environment):
|
|
|
|
return( environment['input']['currShortcutString'] in environment['bindings'])
|
|
|
|
|
|
|
|
def getCommandForShortcut(self, environment):
|
|
|
|
if not self.isShortcutDefined(environment):
|
|
|
|
return environment
|
|
|
|
environment['commandInfo']['currCommand'] = environment['bindings'][environment['input']['currShortcutString']]
|
|
|
|
return environment
|
|
|
|
|
|
|
|
def isCommandDefined(self, environment):
|
|
|
|
return( environment['commandInfo']['currCommand'] in environment['commands'])
|
|
|
|
|
|
|
|
def enqueueCommand(self, environment):
|
|
|
|
if not self.isCommandDefined(environment):
|
|
|
|
return False
|
|
|
|
return True
|