mau_mau_bot/player.py

131 lines
4 KiB
Python
Raw Normal View History

2016-02-29 08:53:59 +08:00
import logging
2016-02-29 06:57:24 +08:00
2016-02-29 19:16:12 +08:00
import card as c
2016-02-29 06:57:24 +08:00
class Player(object):
2016-03-08 09:50:24 +08:00
"""
This class represents a player.
It is basically a doubly-linked ring list with the option to reverse the
direction. On initialization, it will connect itself to a game and its
other players by placing itself behind the current player.
"""
2016-02-29 06:57:24 +08:00
def __init__(self, game, user):
self.cards = list()
self.game = game
self.user = user
2016-02-29 08:53:59 +08:00
self.logger = logging.getLogger(__name__)
2016-03-08 09:50:24 +08:00
# Check if this player is the first player in this game.
2016-02-29 06:57:24 +08:00
if game.current_player:
self.next = game.current_player
self.prev = game.current_player.prev
game.current_player.prev.next = self
game.current_player.prev = self
else:
self._next = self
self._prev = self
game.current_player = self
2016-03-01 08:25:26 +08:00
for i in range(7):
2016-02-29 06:57:24 +08:00
self.cards.append(self.game.deck.draw())
2016-03-01 08:25:26 +08:00
self.bluffing = False
self.drew = False
2016-04-19 07:26:38 +08:00
self.anti_cheat = 0
2016-03-01 08:25:26 +08:00
2016-02-29 19:16:12 +08:00
def leave(self):
2016-03-08 09:50:24 +08:00
""" Leave the current game """
2016-02-29 19:16:12 +08:00
self.next.prev = self.prev
self.prev.next = self.next
self.next = None
self.prev = None
2016-02-29 06:57:24 +08:00
def __repr__(self):
return repr(self.user)
def __str__(self):
return str(self.user)
@property
def next(self):
return self._next if not self.game.reversed else self._prev
@next.setter
def next(self, player):
if not self.game.reversed:
self._next = player
else:
self._prev = player
@property
def prev(self):
return self._prev if not self.game.reversed else self._next
@prev.setter
def prev(self, player):
if not self.game.reversed:
self._prev = player
else:
self._next = player
def playable_cards(self):
2016-03-08 09:50:24 +08:00
""" Returns a list of the cards this player can play right now """
2016-02-29 06:57:24 +08:00
playable = list()
last = self.game.last_card
2016-03-08 09:50:24 +08:00
self.logger.debug("Last card was " + str(last))
2016-02-29 08:53:59 +08:00
cards = self.cards
if self.drew:
cards = self.cards[-1:]
for card in cards:
2016-03-01 08:25:26 +08:00
if self.card_playable(card, playable):
self.logger.debug("Matching!")
playable.append(card)
2016-04-19 06:40:57 +08:00
# You may only play a +4 if you have no cards of the correct color
self.bluffing = False
for card in playable:
if card.color == last.color:
self.bluffing = True
break
2016-02-29 06:57:24 +08:00
# You may not play a chooser or +4 as your last card
2016-04-19 06:40:57 +08:00
if len(self.cards) == 1 and (self.cards[0].special == c.DRAW_FOUR or
self.cards[0].special == c.CHOOSE):
return list()
2016-02-29 06:57:24 +08:00
return playable
2016-03-01 08:25:26 +08:00
def card_playable(self, card, playable):
2016-03-08 09:50:24 +08:00
""" Check a single card if it can be played """
2016-03-01 08:25:26 +08:00
is_playable = True
last = self.game.last_card
self.logger.debug("Checking card " + str(card))
if (card.color != last.color and card.value != last.value and
not card.special):
self.logger.debug("Card's color or value doesn't match")
is_playable = False
if last.value == c.DRAW_TWO and not \
2016-03-08 19:54:16 +08:00
card.value == c.DRAW_TWO and self.game.draw_counter:
2016-03-01 08:25:26 +08:00
self.logger.debug("Player has to draw and can't counter")
is_playable = False
2016-03-31 22:07:35 +08:00
if last.special == c.DRAW_FOUR and self.game.draw_counter:
2016-03-01 08:25:26 +08:00
self.logger.debug("Player has to draw and can't counter")
is_playable = False
2016-03-31 22:07:35 +08:00
if (last.special == c.CHOOSE or last.special == c.DRAW_FOUR) and \
(card.special == c.CHOOSE or card.special == c.DRAW_FOUR):
self.logger.debug("Can't play colorchooser on another one")
is_playable = False
2016-03-01 08:25:26 +08:00
if not last.color or card in playable:
self.logger.debug("Last card has no color or the card was "
"already added to the list")
is_playable = False
return is_playable