From b0fe6a9e6e7cdf8bc3b864b22649e5ef7c9f24c6 Mon Sep 17 00:00:00 2001 From: Jeremy Thurgood Date: Tue, 13 May 2014 18:54:49 +0200 Subject: [PATCH] Default default action. --- naja/gameboard.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/naja/gameboard.py b/naja/gameboard.py index 33afc5d..980a046 100644 --- a/naja/gameboard.py +++ b/naja/gameboard.py @@ -108,6 +108,7 @@ class LocationCard(object): def __init__(self, bitwise_operand, location_actions): self.bitwise_operand = bitwise_operand self.actions = location_actions + self.check_actions() @classmethod def import_location(cls, state): @@ -135,6 +136,19 @@ class LocationCard(object): 'actions': [action.export() for action in self.actions], } + def check_actions(self): + if not self.actions: + print "Warning: Location has no actions." + self.insert_default_default_action() + if self.actions[0].required_bits: + self.insert_default_default_action() + + def insert_default_default_action(self): + self.actions.insert(0, self.build_action({ + 'action_class': 'DoNothing', + 'required_bits': [], + })) + @staticmethod def generate_bitwise_operand(): """ -- 2.34.1