clean up stateMachine syntax

This commit is contained in:
petrucci4prez 2017-06-03 19:11:06 -04:00
parent 276eb2fb1a
commit 9fb26a95c1
1 changed files with 10 additions and 22 deletions

View File

@ -79,9 +79,7 @@ class StateMachine:
self._timer.stop()
self._timer = None
States = namedtuple('States', ['disarmed', 'disarmedCountdown', 'armed', 'armedCountdown', 'triggered'])
self.states = States(
stateObjs = [
State(
self,
name = 'disarmed',
@ -108,7 +106,9 @@ class StateMachine:
name = 'triggered',
entryCallbacks = [intruderAlert]
)
)
]
self.states = namedtuple('States', [s.name for s in stateObjs])(*stateObjs)
self.currentState = getattr(self.states, stateFile['state'])
@ -203,20 +203,8 @@ class StateMachine:
logger.info('state changed to %s', self.currentState)
def __del__(self):
if hasattr(self, 'LED'):
self.LED.__del__()
if hasattr(self, 'camera'):
self.camera.__del__()
if hasattr(self, 'fileDump'):
self.fileDump.__del__()
if hasattr(self, 'soundLib'):
self.soundLib.__del__()
if hasattr(self, 'secretListener'):
self.secretListener.__del__()
if hasattr(self, 'keypadListener'):
self.keypadListener.__del__()
for i in ['LED', 'camera', 'fileDump', 'soundLib', 'secretListener', 'keypadListener']:
try:
getattr(self, i).__del__()
except AttributeError:
pass