X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fplayer.py;h=f502b640ffd94ddd999022931425e77248794141;hb=0cef06f581d48315a59a19ac06ca1d2be14cbb4c;hp=acae919c0c46c0b2d14338ca11d0c87289ab7df4;hpb=3757e52c05b60b636155a3205a579c118ae82cc1;p=naja.git diff --git a/naja/player.py b/naja/player.py index acae919..f502b64 100644 --- a/naja/player.py +++ b/naja/player.py @@ -1,3 +1,4 @@ +from naja.constants import BITS class PlayerBits(object): @@ -33,18 +34,18 @@ class PlayerBits(object): # Operate on sets of bits - def check_bits(self, *bits): + def check_bits(self, bits): return all(self.check_bit(bit) for bit in bits) - def set_bits(self, *bits): + def set_bits(self, bits): for bit in bits: self.set_bit(bit) - def clear_bits(self, *bits): + def clear_bits(self, bits): for bit in bits: self.clear_bit(bit) - def toggle_bits(self, *bits): + def toggle_bits(self, bits): for bit in bits: self.toggle_bit(bit) @@ -57,3 +58,50 @@ class Player(object): def __init__(self, bits, position): self.bits = PlayerBits(bits) self.position = position + + @classmethod + def import_player(cls, definition): + return cls(definition['bits'], tuple(definition['position'])) + + def export(self): + return { + 'bits': self.bits.bits, + 'position': list(self.position), + } + + def get_adjacent_position(self, direction): + x, y = self.position + if direction == BITS.NORTH and y > 0: + return (x, y - 1) + elif direction == BITS.SOUTH and y < 4: + return (x, y + 1) + elif direction == BITS.EAST and x < 4: + return (x + 1, y) + elif direction == BITS.WEST and x > 0: + return (x - 1, y) + else: + # Not a legal space. + return None + + def move(self, direction): + if not self.bits.check_bit(direction): + return False + new_position = self.get_adjacent_position(direction) + if new_position is not None: + self.position = new_position + return True + return False + + def set_position(self, new_position): + if new_position in self.legal_moves(): + self.position = new_position + return True + return False + + def legal_moves(self): + positions = [self.position] + for direction in [BITS.NORTH, BITS.SOUTH, BITS.EAST, BITS.WEST]: + position = self.get_adjacent_position(direction) + if position is not None and self.bits.check_bit(direction): + positions.append(position) + return positions