Multiple glyphs in a word.
[naja.git] / naja / actions.py
index 0535c8be1b37964d752773636d2538c877adc78b..88f539f256dc98e2184c92ebbca62e8cc4f714bf 100644 (file)
@@ -1,4 +1,4 @@
-from naja.constants import BITS
+from naja.constants import BITS, CHESS_PIECES
 
 
 class LocationAction(object):
@@ -15,6 +15,7 @@ class LocationAction(object):
 
     def get_text(self):
         substitutions = self.data.copy()
+
         if 'direction' in self.data:
             substitutions['rowcol'] = {
                 'NORTH': 'column',
@@ -22,13 +23,18 @@ class LocationAction(object):
                 'EAST': 'row',
                 'WEST': 'row',
             }[self.data['direction']]
+
+        if 'chesspiece' in self.data:
+            substitutions['chesspiece_name'] = self.data['chesspiece'].lower()
+
         return self.TEXT % substitutions
 
     def check_available(self, player):
         return player.bits.check_bits(self.required_bits)
 
     def perform_action(self, board, location):
-        raise NotImplementedError("TODO")
+        raise NotImplementedError(
+            "%s does not implement perform_action()." % (type(self).__name__,))
 
     def check_and_clear_MSB(self, player):
         if player.bits.check_bit(BITS.MSB):
@@ -51,7 +57,7 @@ class DoNothing(LocationAction):
 
 
 class LoseHealthOrMSB(LocationAction):
-    TEXT = "Lose health or MSB."
+    TEXT = "Lose HEALTH or MSB."
     USES_MSB = True
 
     def perform_action(self, board, location):
@@ -74,7 +80,7 @@ class ToggleBits(LocationAction):
 
 
 class LoseHealthOrMSBAndSetBits(LocationAction):
-    TEXT = "Lose health or MSB, then set bits specified by this location."
+    TEXT = "Lose HEALTH or MSB, then set bits specified by this location."
     USES_MSB = True
 
     def perform_action(self, board, location):
@@ -84,7 +90,7 @@ class LoseHealthOrMSBAndSetBits(LocationAction):
 
 
 class AcquireWinToken(LocationAction):
-    TEXT = "Acquire a win token, then clear all key bits."
+    TEXT = "Gain WINTOKEN, then clear {REDKEY,GREENKEY,BLUEKEY}."
 
     def perform_action(self, board, location):
         board.acquire_win_token()
@@ -94,7 +100,7 @@ class AcquireWinToken(LocationAction):
 
 
 class GainHealthAndClearBitsOrMSB(LocationAction):
-    TEXT = "Gain health, then clear bits specified by this location or MSB."
+    TEXT = "Gain HEALTH, then clear bits specified by this location or MSB."
     USES_MSB = True
 
     def perform_action(self, board, location):
@@ -108,3 +114,12 @@ class ShiftLocations(LocationAction):
 
     def perform_action(self, board, location):
         board.shift_locations(self.data['direction'])
+
+
+class AllowChessMove(LocationAction):
+    TEXT = "Move like a %(chesspiece_name)s for one turn."
+
+    def perform_action(self, board, location):
+        if self.data['chesspiece'] in CHESS_PIECES:
+            chesspiece = CHESS_PIECES[self.data['chesspiece']]
+            board.allow_chess_move(chesspiece)