Setting defaults shouldn't be restricted to puzzles
[naja.git] / naja / gameboard.py
1 from random import choice
2
3 from naja.constants import(
4     BITS, DIRECTION_BITS, CONDITION_BITS, PLAYER_DEFAULTS,
5     ACT, EXAMINE, ROTATION)
6 from naja.options import options
7 from naja.player import Player
8 from naja import actions
9 from naja.sound import sound
10 from naja.utils import parse_bits
11 import random
12
13
14 class GameBoard(object):
15     """
16     A representation of the game board.
17     """
18
19     def __init__(self, state, player, board_locations):
20         self.max_health = state['max_health']
21         self.wins_required = state['wins_required']
22         self.health = state['health']
23         self.wins = state['wins']
24         self.locations = [item.copy() for item in state['locations']]
25         self.puzzle = state.get('puzzle', False)
26         self.player = player
27         self.board_locations = board_locations
28         self.player_mode = state.get('player_mode', EXAMINE)
29         self.has_cheated = state.get('cheater', options.cheat_enabled)
30         self.clock_count = state.get('clock_count', 0)
31         self.replacement_params = state.get('replacement_params', None)
32
33     @classmethod
34     def new_game(cls, deck, initial_bits=None, initial_pos=None,
35                  max_health=None, wins_required=None):
36
37         defaults = {
38             'initial_bits': PLAYER_DEFAULTS.INITIAL_BITS,
39             'initial_pos': PLAYER_DEFAULTS.INITIAL_POS,
40             'max_health': PLAYER_DEFAULTS.MAX_HEALTH,
41             'wins_required': PLAYER_DEFAULTS.WINS_REQUIRED,
42         }
43
44         deck_defaults = deck.get('defaults', {})
45         for k, v in deck_defaults.iteritems():
46             if isinstance(v, list):
47                 deck_defaults[k] = tuple(v)
48         defaults.update(deck_defaults)
49
50         if initial_bits is None:
51             initial_bits = defaults['initial_bits']
52         if initial_pos is None:
53             initial_pos = defaults['initial_pos']
54         if max_health is None:
55             max_health = defaults['max_health']
56         if wins_required is None:
57             wins_required = defaults['wins_required']
58
59         # Overriden by command line
60         if options.initial_bits:
61             initial_bits = options.initial_bits
62
63         state = {
64             'max_health': max_health,
65             'health': max_health,
66             'wins_required': wins_required,
67             'wins': 0,
68             'locations': deck['cards'],
69             'puzzle': deck.get('puzzle', False),
70             'clock_count': 0,
71             'replacement_params': deck.get('replacement_params', None),
72         }
73         player = Player(initial_bits, initial_pos)
74         board_locations = cls.import_board_locations(
75             cls.generate_board(deck))
76         board = cls(state, player, board_locations)
77         player.set_gameboard(board)
78         return board
79
80     @classmethod
81     def import_game(cls, definition):
82         state = definition.copy()
83         player = Player.import_player(state.pop('player'))
84         board_locations = cls.import_board_locations(
85             state.pop('board_locations'))
86         board = cls(state, player, board_locations)
87         player.set_gameboard(board)
88         return board
89
90     def export(self):
91         data = {
92             'max_health': self.max_health,
93             'health': self.health,
94             'wins_required': self.wins_required,
95             'wins': self.wins,
96             'locations': [item.copy() for item in self.locations],
97             'puzzle': self.puzzle,
98             'player': self.player.export(),
99             'board_locations': self.export_board_locations(),
100             'player_mode': self.player_mode,
101             'clock_count': self.clock_count,
102             'replacement_params': self.replacement_params,
103         }
104         if options.cheat_enabled:
105             self.has_cheated = True
106         if self.has_cheated:
107             data['cheater'] = True
108         return data
109
110     @classmethod
111     def import_locations(cls, locations_definition):
112         return [
113             LocationCard.import_location(definition)
114             for definition in locations_definition]
115
116     def export_board_locations(self):
117         return sorted(
118             (position, location.export())
119             for position, location in self.board_locations.iteritems())
120
121     @classmethod
122     def import_board_locations(cls, board_locations_definition):
123         return dict(
124             (tuple(position), LocationCard.import_location(definition))
125             for position, definition in board_locations_definition)
126
127     @classmethod
128     def generate_board(cls, deck):
129         if deck.get('puzzle', False):
130             return cls.generate_puzzle_board(deck)
131         else:
132             return cls.generate_random_board(deck)
133
134     @classmethod
135     def generate_puzzle_board(cls, deck):
136         assert len(deck['cards']) == 5 * 5
137         replacement_params = deck.get('replacement_params', None)
138         board_locations = [
139             [(i % 5, i // 5),
140              LocationCard.new_location(
141                  card.copy(), replacement_params, puzzle=True).export()]
142             for i, card in enumerate(deck['cards'])
143         ]
144         return board_locations
145
146     @classmethod
147     def generate_random_board(cls, deck):
148         board_locations = []
149         replacement_params = deck.get('replacement_params', None)
150         for x in range(5):
151             for y in range(5):
152                 new_choice = cls.choose_card(deck['cards'], board_locations)
153                 board_location = LocationCard.new_location(
154                     new_choice.copy(), replacement_params)
155                 board_locations.append([(x, y), board_location.export()])
156         return board_locations
157
158     def lose_health(self):
159         self.health -= 1
160         if self.health <= 0:
161             self.end_game(win=False)
162
163     def gain_health(self):
164         if self.health < self.max_health:
165             self.health += 1
166
167     def acquire_win_token(self):
168         self.wins += 1
169         if self.wins >= self.wins_required:
170             self.end_game(win=True)
171
172     def card_used(self, position):
173         if not self.puzzle:
174             self.replace_card(position)
175
176     def replace_card(self, position):
177         new_choice = self.choose_card(self.locations,
178                                       self.board_locations.items(),
179                                       position)
180         location = LocationCard.new_location(new_choice.copy(),
181                                              self.replacement_params)
182         self.board_locations[position] = location
183
184     @classmethod
185     def choose_card(cls, cards, board_locations, position=None):
186         # Find which cards are at their maximum and exclude them from
187         # the choice list
188         counts = {}
189         choices = {card['card_name']: card for card in cards}
190         for pos, card in board_locations:
191             if pos == position:
192                 # skip the card we're replacing if appropriate
193                 continue
194             if isinstance(card, LocationCard):
195                 key = card.card_name
196                 max_num = card.max_number
197             else:
198                 key = card['card_name']
199                 max_num = card.get('max_number', 25)
200             counts.setdefault(key, 0)
201             counts[key] += 1
202             if counts[key] >= max_num:
203                 if key in choices:
204                     del choices[key]
205         return choice(choices.values())
206
207     def shift_location_row(self, change, is_vertical):
208         px, py = self.player.position
209         shifted_locations = {}
210         mkpos = lambda i: (px, i) if is_vertical else (i, py)
211
212         for i in range(5):
213             if (px, py) == mkpos(i):
214                 continue
215             new_i = (i + change) % 5
216             if (px, py) == mkpos(new_i):
217                 new_i = (new_i + change) % 5
218             shifted_locations[mkpos(new_i)] = self.board_locations[mkpos(i)]
219
220         self.board_locations.update(shifted_locations)
221
222     def shift_locations(self, direction):
223         if BITS[direction] == BITS.NORTH:
224             self.shift_location_row(-1, is_vertical=True)
225         elif BITS[direction] == BITS.SOUTH:
226             self.shift_location_row(1, is_vertical=True)
227         elif BITS[direction] == BITS.EAST:
228             self.shift_location_row(1, is_vertical=False)
229         elif BITS[direction] == BITS.WEST:
230             self.shift_location_row(-1, is_vertical=False)
231
232     def rotate_locations(self, direction):
233         px, py = self.player.position
234         locations_to_rotate = []
235         rotated_locations = {}
236
237         if py > 0:
238             for i in range(max(0, px - 1), min(5, px + 2)):
239                 locations_to_rotate.append((i, py - 1))
240
241         if px < 4:
242             locations_to_rotate.append((px + 1, py))
243
244         if py < 4:
245             for i in reversed(range(max(0, px - 1), min(5, px + 2))):
246                 locations_to_rotate.append((i, py + 1))
247
248         if px > 0:
249             locations_to_rotate.append((px - 1, py))
250
251         if ROTATION[direction] == ROTATION.CLOCKWISE:
252             new_positions = locations_to_rotate[1:] + [locations_to_rotate[0]]
253         elif ROTATION[direction] == ROTATION.ANTICLOCKWISE:
254             new_positions = (
255                 [locations_to_rotate[-1]] + locations_to_rotate[:-1])
256
257         for old, new in zip(locations_to_rotate, new_positions):
258             rotated_locations[new] = self.board_locations[old]
259
260         self.board_locations.update(rotated_locations)
261
262     def allow_chess_move(self, chesspiece):
263         self.player.allow_chess_move(chesspiece)
264
265     def change_mode(self, new_mode):
266         """Advance to the next mode"""
267         if new_mode == self.player_mode:
268             raise RuntimeError("Inconsistent state. Setting mode %s to itself"
269                                % self.player_mode)
270         elif new_mode in (ACT, EXAMINE):
271             self.player_mode = new_mode
272             if new_mode is EXAMINE:
273                 self.board_update()
274         else:
275             raise RuntimeError("Illegal player mode %s" % self.player_mode)
276
277     def board_update(self):
278         self.clock_count += 1
279         for position, location in self.board_locations.iteritems():
280             location.timer_action(position, self)
281
282     def end_game(self, win):
283         # TODO: Find a way to not have UI stuff in game logic stuff.
284         from naja.events import SceneChangeEvent
285         from naja.scenes.lose import LoseScene
286         from naja.scenes.win import WinScene
287         sound.stop()
288         if win:
289             SceneChangeEvent.post(WinScene)
290         else:
291             SceneChangeEvent.post(LoseScene)
292
293
294 class LocationCard(object):
295     """
296     A particular set of options available on a location.
297     """
298
299     def __init__(self, card_name, bitwise_operand, location_actions,
300                  replacement_time=None, max_number=25):
301         self.card_name = card_name
302         self.bitwise_operand = bitwise_operand
303         self.actions = location_actions
304         self.max_number = max_number
305         self.replacement_time = replacement_time
306
307     @classmethod
308     def import_location(cls, state):
309         location_actions = [
310             cls.build_action(definition) for definition in state['actions']]
311         return cls(state['card_name'], state['bitwise_operand'],
312                    location_actions, state['replacement_time'],
313                    state['max_number'])
314
315     @classmethod
316     def build_action(cls, definition):
317         action_class = getattr(actions, definition['action_class'])
318         required_bits = parse_bits(definition['required_bits'])
319         data = definition.get('data', {})
320         return action_class(required_bits, **data)
321
322     @classmethod
323     def new_location(cls, definition, replacement_params=None, puzzle=False):
324         if 'bits' in definition:
325             bits = parse_bits(definition['bits'])
326         else:
327             bits = cls.generate_bitwise_operand()
328
329         if 'replacement_time' in definition:
330             replacement_time = definition['replacement_time']
331         else:
332             replacement_time = cls.generate_replacement_time(
333                 replacement_params)
334
335         max_number = definition.get('max_number', 25)
336         card_name = definition['card_name']
337         location = cls.import_location({
338             'bitwise_operand': bits,
339             'actions': definition['actions'],
340             'max_number': max_number,
341             'card_name': card_name,
342             'replacement_time': replacement_time,
343         })
344         if not puzzle:
345             location.check_actions()
346         return location
347
348     def export(self):
349         return {
350             'bitwise_operand': sorted(self.bitwise_operand),
351             'actions': [action.export() for action in self.actions],
352             'max_number': self.max_number,
353             'card_name': self.card_name,
354             'replacement_time': self.replacement_time,
355         }
356
357     def check_actions(self):
358         if not self.actions:
359             print "Warning: Location has no actions."
360             self.insert_default_default_action()
361         if self.actions[0].required_bits:
362             self.insert_default_default_action()
363
364     def insert_default_default_action(self):
365         self.actions.insert(0, self.build_action({
366             'action_class': 'DoNothing',
367             'required_bits': [],
368         }))
369
370     @staticmethod
371     def generate_bitwise_operand():
372         """
373         Generate a set of two or three bits. At least one direction and one
374         condition bit will be included. There is a low probability of choosing
375         a third bit from the complete set.
376         """
377         bits = set()
378         bits.add(choice(DIRECTION_BITS.values()))
379         bits.add(choice(CONDITION_BITS.values()))
380         # One in three chance of adding a third bit, with a further one in four
381         # chance that it will match a bit already chosen.
382         if choice(range(3)) == 0:
383             bits.add(choice(BITS.values()))
384         return frozenset(bits)
385
386     @staticmethod
387     def generate_replacement_time(replacement_params):
388         if replacement_params is None:
389             return None
390         else:
391             if replacement_params['chance'] > random.random():
392                 return random.randint(replacement_params['min'],
393                                       replacement_params['max'])
394             else:
395                 return None
396
397     def timer_action(self, position, board):
398         if self.replacement_time is not None:
399             self.replacement_time -= 1
400             if self.replacement_time <= 0:
401                 board.replace_card(position)