merge
[naja.git] / naja / actions.py
1 from naja.constants import BITS
2
3
4 class LocationAction(object):
5     """
6     An action that may be performed on a location.
7     """
8
9     TEXT = None
10
11     def __init__(self, required_bits, **data):
12         self.required_bits = frozenset(required_bits)
13         self.data = data
14
15     def check_available(self, player):
16         return player.bits.check_bits(self.required_bits)
17
18     def perform_action(self, player, board):
19         raise NotImplementedError("TODO")
20
21     def check_and_clear_MSB(self, player):
22         if player.bits.check_bit(BITS.MSB):
23             player.bits.clear_bit(BITS.MSB)
24             return True
25         else:
26             return False
27
28
29 class DoNothing(LocationAction):
30     TEXT = "No effect."
31
32     def perform_action(self, player, board):
33         pass
34
35
36 class LoseHeathOrMSB(LocationAction):
37     TEXT = "Lose health. If MSB is set, it will be cleared instead."
38
39     def perform_action(self, player, board):
40         if not self.check_and_clear_MSB(player):
41             board.lose_health()