X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fgameboard.py;h=980a046c4c4f68e690219a2a216f818df018ce9e;hb=852f6ef95f5d1c1738d697f6589d0593afe1db29;hp=123f3be6d6bf059187f4ac97357f306e613cf625;hpb=b3db4400695249420f5f941744c2a2692a1bad98;p=naja.git diff --git a/naja/gameboard.py b/naja/gameboard.py index 123f3be..980a046 100644 --- a/naja/gameboard.py +++ b/naja/gameboard.py @@ -1,6 +1,8 @@ from random import choice -from naja.constants import BITS, DIRECTION_BITS, CONDITION_BITS +from naja.constants import( + BITS, DIRECTION_BITS, CONDITION_BITS, PLAYER_DEFAULTS, + MOVE, ACT) from naja.player import Player from naja import actions @@ -15,12 +17,17 @@ class GameBoard(object): self.wins_required = state['wins_required'] self.health = state['health'] self.wins = state['wins'] - self.locations = self.import_locations(state['locations']) + self.locations = [item.copy() for item in state['locations']] self.player = player self.board_locations = board_locations + self.player_mode = MOVE @classmethod - def new_game(cls, max_health, wins_required, locations_definition): + def new_game(cls, locations_definition, + initial_bits=PLAYER_DEFAULTS.INITIAL_BITS, + initial_pos=PLAYER_DEFAULTS.INITIAL_POS, + max_health=PLAYER_DEFAULTS.MAX_HEALTH, + wins_required=PLAYER_DEFAULTS.WINS_REQUIRED): state = { 'max_health': max_health, 'health': max_health, @@ -28,8 +35,9 @@ class GameBoard(object): 'wins': 0, 'locations': locations_definition, } - player = Player(0x0f, (2, 2)) - board_locations = cls.generate_board(locations_definition) + player = Player(initial_bits, initial_pos) + board_locations = cls.import_board_locations( + cls.generate_board(locations_definition)) return cls(state, player, board_locations) @classmethod @@ -46,14 +54,11 @@ class GameBoard(object): 'health': self.health, 'wins_required': self.wins_required, 'wins': self.wins, - 'locations': self.export_locations(), + 'locations': [item.copy() for item in self.locations], 'player': self.player.export(), 'board_locations': self.export_board_locations(), } - def export_locations(self): - return [location.export() for location in self.locations] - @classmethod def import_locations(cls, locations_definition): return [ @@ -63,7 +68,7 @@ class GameBoard(object): def export_board_locations(self): return dict( (position, location.export()) - for position, location in self.board_locations) + for position, location in self.board_locations.iteritems()) @classmethod def import_board_locations(cls, board_locations_definition): @@ -73,13 +78,27 @@ class GameBoard(object): @classmethod def generate_board(cls, locations_definition): - # TODO: Choose some locations. - return {} + board_locations = {} + for x in range(5): + for y in range(5): + board_location = LocationCard.new_location( + choice(locations_definition).copy()) + board_locations[(x, y)] = board_location.export() + return board_locations def lose_health(self): self.health -= 1 # TODO: Check win/lose + def change_mode(self): + """Advance to the next mode""" + if self.player_mode == MOVE: + self.player_mode = ACT + elif self.player_mode == ACT: + self.player_mode = MOVE + else: + raise RuntimeError("Illegal player mode %s" % self.player_mode) + class LocationCard(object): """ @@ -89,10 +108,10 @@ 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): - # TODO: Import real locations. location_actions = [ cls.build_action(definition) for definition in state['actions']] return cls(state['bitwise_operand'], location_actions) @@ -117,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(): """