2008-12-12 15:29:45 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
#Copyright 2008 Carl Gherardi
|
|
|
|
#This program is free software: you can redistribute it and/or modify
|
|
|
|
#it under the terms of the GNU Affero General Public License as published by
|
|
|
|
#the Free Software Foundation, version 3 of the License.
|
|
|
|
#
|
|
|
|
#This program is distributed in the hope that it will be useful,
|
|
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
#GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
#You should have received a copy of the GNU Affero General Public License
|
|
|
|
#along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#In the "official" distribution you can find the license in
|
|
|
|
#agpl-3.0.txt in the docs folder of the package.
|
|
|
|
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
import traceback
|
2009-03-04 17:46:01 +01:00
|
|
|
import logging
|
2008-12-12 15:29:45 +01:00
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
from decimal import Decimal
|
|
|
|
import operator
|
2008-12-17 00:23:33 +01:00
|
|
|
import time
|
2008-12-16 05:29:11 +01:00
|
|
|
from copy import deepcopy
|
2009-02-27 19:42:53 +01:00
|
|
|
from Exceptions import *
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-03-14 12:40:27 +01:00
|
|
|
import DerivedStats
|
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
class Hand:
|
2008-12-17 01:30:31 +01:00
|
|
|
UPS = {'a':'A', 't':'T', 'j':'J', 'q':'Q', 'k':'K', 'S':'s', 'C':'c', 'H':'h', 'D':'d'}
|
2009-03-13 18:51:10 +01:00
|
|
|
LCS = {'H':'h', 'D':'d', 'C':'c', 'S':'s'}
|
2009-03-14 12:40:27 +01:00
|
|
|
def __init__(self, sitename, gametype, handText, builtFrom = "HHC"):
|
2008-12-12 15:29:45 +01:00
|
|
|
self.sitename = sitename
|
2009-03-14 12:40:27 +01:00
|
|
|
self.stats = DerivedStats.DerivedStats(self)
|
2008-12-12 15:29:45 +01:00
|
|
|
self.gametype = gametype
|
2009-03-04 16:10:08 +01:00
|
|
|
self.handText = handText
|
2008-12-12 15:29:45 +01:00
|
|
|
self.handid = 0
|
|
|
|
self.tablename = "Slartibartfast"
|
|
|
|
self.hero = "Hiro"
|
|
|
|
self.maxseats = 10
|
|
|
|
self.counted_seats = 0
|
|
|
|
self.buttonpos = 0
|
|
|
|
self.seating = []
|
|
|
|
self.players = []
|
|
|
|
self.posted = []
|
|
|
|
self.involved = True
|
|
|
|
|
|
|
|
# Collections indexed by street names
|
2009-03-02 00:22:47 +01:00
|
|
|
self.bets = {}
|
|
|
|
self.lastBet = {}
|
|
|
|
self.streets = {}
|
|
|
|
self.actions = {} # [['mct','bets','$10'],['mika','folds'],['carlg','raises','$20']]
|
2009-03-03 19:45:02 +01:00
|
|
|
self.board = {} # dict from street names to community cards
|
2009-03-02 00:22:47 +01:00
|
|
|
for street in self.streetList:
|
|
|
|
self.streets[street] = "" # portions of the handText, filled by markStreets()
|
|
|
|
self.bets[street] = {}
|
|
|
|
self.lastBet[street] = 0
|
|
|
|
self.actions[street] = []
|
2009-03-03 19:45:02 +01:00
|
|
|
self.board[street] = []
|
2008-12-16 05:29:11 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
# Collections indexed by player names
|
2009-03-02 22:48:30 +01:00
|
|
|
self.holecards = {} # dict from player names to dicts by street ... of tuples ... of holecards
|
2009-03-14 11:48:34 +01:00
|
|
|
self.discards = {} # dict from player names to dicts by street ... of tuples ... of discarded holecards
|
2008-12-16 05:29:11 +01:00
|
|
|
self.stacks = {}
|
2009-03-07 16:43:33 +01:00
|
|
|
self.collected = [] #list of ?
|
2009-03-02 00:22:47 +01:00
|
|
|
self.collectees = {} # dict from player names to amounts collected (?)
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
# Sets of players
|
|
|
|
self.shown = set()
|
|
|
|
self.folded = set()
|
|
|
|
|
2009-03-02 22:48:30 +01:00
|
|
|
# self.action = []
|
|
|
|
# Things to do with money
|
|
|
|
self.pot = Pot()
|
2008-12-12 15:29:45 +01:00
|
|
|
self.totalpot = None
|
2008-12-14 20:25:04 +01:00
|
|
|
self.totalcollected = None
|
2008-12-12 15:29:45 +01:00
|
|
|
self.rake = None
|
|
|
|
|
|
|
|
|
2009-03-14 13:19:20 +01:00
|
|
|
def insert(self, db):
|
|
|
|
""" Function to insert Hand into database
|
|
|
|
Should not commit, and do minimal selects. Callers may want to cache commits
|
|
|
|
db: a connected fpdb_db object"""
|
|
|
|
# TODO:
|
|
|
|
# Players - base playerid and siteid tuple
|
|
|
|
# HudCache data to come from DerivedStats class
|
|
|
|
# HandsActions - all actions for all players for all streets - self.actions
|
|
|
|
# BoardCards - ?
|
|
|
|
# Hands - Summary information of hand indexed by handId - gameinfo
|
|
|
|
# HandsPlayers - ? ... Do we fix winnings?
|
|
|
|
# Tourneys ?
|
|
|
|
# TourneysPlayers
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
def select(self, handId):
|
|
|
|
""" Function to create Hand object from database """
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
def addPlayer(self, seat, name, chips):
|
|
|
|
"""\
|
|
|
|
Adds a player to the hand, and initialises data structures indexed by player.
|
|
|
|
seat (int) indicating the seat
|
|
|
|
name (string) player name
|
|
|
|
chips (string) the chips the player has at the start of the hand (can be None)
|
|
|
|
If a player has None chips he won't be added."""
|
2009-03-06 02:24:38 +01:00
|
|
|
logging.debug("addPlayer: %s %s (%s)" % (seat, name, chips))
|
2008-12-12 15:29:45 +01:00
|
|
|
if chips is not None:
|
|
|
|
self.players.append([seat, name, chips])
|
2008-12-16 05:29:11 +01:00
|
|
|
self.stacks[name] = Decimal(chips)
|
2009-03-02 00:22:47 +01:00
|
|
|
self.holecards[name] = []
|
2009-03-14 11:48:34 +01:00
|
|
|
self.discards[name] = []
|
2008-12-20 17:48:25 +01:00
|
|
|
self.pot.addPlayer(name)
|
2008-12-12 15:29:45 +01:00
|
|
|
for street in self.streetList:
|
|
|
|
self.bets[street][name] = []
|
2009-03-03 19:45:02 +01:00
|
|
|
self.holecards[name] = {} # dict from street names.
|
2009-03-14 11:48:34 +01:00
|
|
|
self.discards[name] = {} # dict from street names.
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
|
2008-12-14 23:05:51 +01:00
|
|
|
def addStreets(self, match):
|
|
|
|
# go through m and initialise actions to empty list for each street.
|
2009-03-04 17:46:01 +01:00
|
|
|
if match:
|
2009-03-02 00:22:47 +01:00
|
|
|
self.streets.update(match.groupdict())
|
2009-03-03 19:45:02 +01:00
|
|
|
logging.debug("markStreets:\n"+ str(self.streets))
|
2008-12-14 23:05:51 +01:00
|
|
|
else:
|
2009-03-04 17:46:01 +01:00
|
|
|
logging.error("markstreets didn't match")
|
2008-12-14 23:05:51 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
def checkPlayerExists(self,player):
|
|
|
|
if player not in [p[1] for p in self.players]:
|
2009-02-20 08:44:06 +01:00
|
|
|
print "checkPlayerExists", player, "fail"
|
2008-12-12 15:29:45 +01:00
|
|
|
raise FpdbParseError
|
|
|
|
|
2009-03-06 02:24:38 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
def setCommunityCards(self, street, cards):
|
2009-03-04 17:46:01 +01:00
|
|
|
logging.debug("setCommunityCards %s %s" %(street, cards))
|
2008-12-12 15:29:45 +01:00
|
|
|
self.board[street] = [self.card(c) for c in cards]
|
|
|
|
|
|
|
|
def card(self,c):
|
|
|
|
"""upper case the ranks but not suits, 'atjqk' => 'ATJQK'"""
|
|
|
|
for k,v in self.UPS.items():
|
|
|
|
c = c.replace(k,v)
|
|
|
|
return c
|
|
|
|
|
2009-02-25 16:45:46 +01:00
|
|
|
def addAnte(self, player, ante):
|
2009-03-11 19:40:17 +01:00
|
|
|
logging.debug("%s %s antes %s" % ('ANTES', player, ante))
|
2009-02-25 16:45:46 +01:00
|
|
|
if player is not None:
|
|
|
|
self.bets['ANTES'][player].append(Decimal(ante))
|
|
|
|
self.stacks[player] -= Decimal(ante)
|
|
|
|
act = (player, 'posts', "ante", ante, self.stacks[player]==0)
|
|
|
|
self.actions['ANTES'].append(act)
|
2009-03-11 17:51:58 +01:00
|
|
|
#~ self.lastBet['ANTES'] = Decimal(ante)
|
2009-02-25 16:45:46 +01:00
|
|
|
self.pot.addMoney(player, Decimal(ante))
|
|
|
|
|
2008-12-14 23:05:51 +01:00
|
|
|
def addBlind(self, player, blindtype, amount):
|
2008-12-12 15:29:45 +01:00
|
|
|
# if player is None, it's a missing small blind.
|
2008-12-20 17:48:25 +01:00
|
|
|
# The situation we need to cover are:
|
|
|
|
# Player in small blind posts
|
|
|
|
# - this is a bet of 1 sb, as yet uncalled.
|
|
|
|
# Player in the big blind posts
|
2009-03-02 00:22:47 +01:00
|
|
|
# - this is a call of 1 sb and a raise to 1 bb
|
2009-03-14 11:48:34 +01:00
|
|
|
#
|
|
|
|
|
2009-03-04 17:46:01 +01:00
|
|
|
logging.debug("addBlind: %s posts %s, %s" % (player, blindtype, amount))
|
2008-12-12 15:29:45 +01:00
|
|
|
if player is not None:
|
|
|
|
self.bets['PREFLOP'][player].append(Decimal(amount))
|
2008-12-16 05:29:11 +01:00
|
|
|
self.stacks[player] -= Decimal(amount)
|
2008-12-16 22:08:10 +01:00
|
|
|
#print "DEBUG %s posts, stack %s" % (player, self.stacks[player])
|
2008-12-20 17:48:25 +01:00
|
|
|
act = (player, 'posts', blindtype, amount, self.stacks[player]==0)
|
2009-03-02 00:22:47 +01:00
|
|
|
self.actions['BLINDSANTES'].append(act)
|
2008-12-20 17:48:25 +01:00
|
|
|
self.pot.addMoney(player, Decimal(amount))
|
2008-12-14 23:05:51 +01:00
|
|
|
if blindtype == 'big blind':
|
2009-03-14 11:48:34 +01:00
|
|
|
self.lastBet['PREFLOP'] = Decimal(amount)
|
2009-02-21 15:26:37 +01:00
|
|
|
elif blindtype == 'both':
|
2008-12-14 23:05:51 +01:00
|
|
|
# extra small blind is 'dead'
|
|
|
|
self.lastBet['PREFLOP'] = Decimal(self.bb)
|
2009-02-21 16:22:25 +01:00
|
|
|
self.posted = self.posted + [[player,blindtype]]
|
2009-02-22 06:37:38 +01:00
|
|
|
#print "DEBUG: self.posted: %s" %(self.posted)
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-02-25 17:23:46 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
def addCall(self, street, player=None, amount=None):
|
2009-03-11 19:40:17 +01:00
|
|
|
logging.debug("%s %s calls %s" %(street, player, amount))
|
2008-12-12 15:29:45 +01:00
|
|
|
# Potentially calculate the amount of the call if not supplied
|
|
|
|
# corner cases include if player would be all in
|
|
|
|
if amount is not None:
|
|
|
|
self.bets[street][player].append(Decimal(amount))
|
|
|
|
#self.lastBet[street] = Decimal(amount)
|
2008-12-16 05:29:11 +01:00
|
|
|
self.stacks[player] -= Decimal(amount)
|
2009-02-22 06:37:38 +01:00
|
|
|
#print "DEBUG %s calls %s, stack %s" % (player, amount, self.stacks[player])
|
2008-12-20 17:48:25 +01:00
|
|
|
act = (player, 'calls', amount, self.stacks[player]==0)
|
|
|
|
self.actions[street].append(act)
|
|
|
|
self.pot.addMoney(player, Decimal(amount))
|
2008-12-16 05:29:11 +01:00
|
|
|
|
2008-12-17 12:54:26 +01:00
|
|
|
def addRaiseBy(self, street, player, amountBy):
|
2008-12-12 15:29:45 +01:00
|
|
|
"""\
|
2008-12-17 12:54:26 +01:00
|
|
|
Add a raise by amountBy on [street] by [player]
|
2008-12-12 15:29:45 +01:00
|
|
|
"""
|
2008-12-17 12:54:26 +01:00
|
|
|
#Given only the amount raised by, the amount of the raise can be calculated by
|
2008-12-12 15:29:45 +01:00
|
|
|
# working out how much this player has already in the pot
|
|
|
|
# (which is the sum of self.bets[street][player])
|
|
|
|
# and how much he needs to call to match the previous player
|
|
|
|
# (which is tracked by self.lastBet)
|
2008-12-17 12:54:26 +01:00
|
|
|
# let Bp = previous bet
|
|
|
|
# Bc = amount player has committed so far
|
|
|
|
# Rb = raise by
|
|
|
|
# then: C = Bp - Bc (amount to call)
|
|
|
|
# Rt = Bp + Rb (raise to)
|
|
|
|
#
|
|
|
|
self.checkPlayerExists(player)
|
|
|
|
Rb = Decimal(amountBy)
|
|
|
|
Bp = self.lastBet[street]
|
|
|
|
Bc = reduce(operator.add, self.bets[street][player], 0)
|
|
|
|
C = Bp - Bc
|
|
|
|
Rt = Bp + Rb
|
|
|
|
|
2009-03-11 19:40:17 +01:00
|
|
|
self._addRaise(street, player, C, Rb, Rt)
|
|
|
|
#~ self.bets[street][player].append(C + Rb)
|
|
|
|
#~ self.stacks[player] -= (C + Rb)
|
|
|
|
#~ self.actions[street] += [(player, 'raises', Rb, Rt, C, self.stacks[player]==0)]
|
|
|
|
#~ self.lastBet[street] = Rt
|
2008-12-17 12:54:26 +01:00
|
|
|
|
|
|
|
def addCallandRaise(self, street, player, amount):
|
|
|
|
"""\
|
|
|
|
For sites which by "raises x" mean "calls and raises putting a total of x in the por". """
|
|
|
|
self.checkPlayerExists(player)
|
|
|
|
CRb = Decimal(amount)
|
|
|
|
Bp = self.lastBet[street]
|
|
|
|
Bc = reduce(operator.add, self.bets[street][player], 0)
|
|
|
|
C = Bp - Bc
|
|
|
|
Rb = CRb - C
|
|
|
|
Rt = Bp + Rb
|
|
|
|
|
|
|
|
self._addRaise(street, player, C, Rb, Rt)
|
2008-12-20 17:48:25 +01:00
|
|
|
|
2008-12-17 12:54:26 +01:00
|
|
|
def addRaiseTo(self, street, player, amountTo):
|
|
|
|
"""\
|
|
|
|
Add a raise on [street] by [player] to [amountTo]
|
|
|
|
"""
|
2009-02-19 18:26:29 +01:00
|
|
|
#CG - No idea if this function has been test/verified
|
2008-12-12 15:29:45 +01:00
|
|
|
self.checkPlayerExists(player)
|
2009-02-19 17:37:48 +01:00
|
|
|
Bp = self.lastBet[street]
|
2008-12-17 12:54:26 +01:00
|
|
|
Bc = reduce(operator.add, self.bets[street][player], 0)
|
|
|
|
Rt = Decimal(amountTo)
|
|
|
|
C = Bp - Bc
|
|
|
|
Rb = Rt - C
|
|
|
|
self._addRaise(street, player, C, Rb, Rt)
|
2008-12-20 17:48:25 +01:00
|
|
|
|
|
|
|
def _addRaise(self, street, player, C, Rb, Rt):
|
2009-03-11 19:40:17 +01:00
|
|
|
logging.debug("%s %s raise %s" %(street, player, Rt))
|
2008-12-20 17:48:25 +01:00
|
|
|
self.bets[street][player].append(C + Rb)
|
|
|
|
self.stacks[player] -= (C + Rb)
|
|
|
|
act = (player, 'raises', Rb, Rt, C, self.stacks[player]==0)
|
|
|
|
self.actions[street].append(act)
|
|
|
|
self.lastBet[street] = Rt # TODO check this is correct
|
|
|
|
self.pot.addMoney(player, C+Rb)
|
|
|
|
|
2008-12-16 05:29:11 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
def addBet(self, street, player, amount):
|
2009-03-11 19:40:17 +01:00
|
|
|
logging.debug("%s %s bets %s" %(street, player, amount))
|
2008-12-12 15:29:45 +01:00
|
|
|
self.checkPlayerExists(player)
|
|
|
|
self.bets[street][player].append(Decimal(amount))
|
2008-12-16 05:29:11 +01:00
|
|
|
self.stacks[player] -= Decimal(amount)
|
2009-02-22 06:37:38 +01:00
|
|
|
#print "DEBUG %s bets %s, stack %s" % (player, amount, self.stacks[player])
|
2008-12-20 17:48:25 +01:00
|
|
|
act = (player, 'bets', amount, self.stacks[player]==0)
|
|
|
|
self.actions[street].append(act)
|
2008-12-14 23:05:51 +01:00
|
|
|
self.lastBet[street] = Decimal(amount)
|
2008-12-20 17:48:25 +01:00
|
|
|
self.pot.addMoney(player, Decimal(amount))
|
2009-03-14 11:48:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
def addStandsPat(self, street, player):
|
|
|
|
self.checkPlayerExists(player)
|
|
|
|
act = (player, 'stands pat')
|
|
|
|
self.actions[street].append(act)
|
2008-12-16 05:29:11 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
def addFold(self, street, player):
|
2009-03-11 19:40:17 +01:00
|
|
|
logging.debug("%s %s folds" % (street, player))
|
2008-12-12 15:29:45 +01:00
|
|
|
self.checkPlayerExists(player)
|
|
|
|
self.folded.add(player)
|
2008-12-20 17:48:25 +01:00
|
|
|
self.pot.addFold(player)
|
|
|
|
self.actions[street].append((player, 'folds'))
|
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
def addCheck(self, street, player):
|
2009-02-22 06:37:38 +01:00
|
|
|
#print "DEBUG: %s %s checked" % (street, player)
|
2008-12-12 15:29:45 +01:00
|
|
|
self.checkPlayerExists(player)
|
2008-12-20 17:48:25 +01:00
|
|
|
self.actions[street].append((player, 'checks'))
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-02-20 09:33:25 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
def addCollectPot(self,player, pot):
|
2009-03-11 19:40:17 +01:00
|
|
|
logging.debug("%s collected %s" % (player, pot))
|
2008-12-12 15:29:45 +01:00
|
|
|
self.checkPlayerExists(player)
|
2009-02-21 17:17:06 +01:00
|
|
|
self.collected = self.collected + [[player, pot]]
|
|
|
|
if player not in self.collectees:
|
|
|
|
self.collectees[player] = Decimal(pot)
|
2008-12-12 15:29:45 +01:00
|
|
|
else:
|
2009-02-21 17:17:06 +01:00
|
|
|
self.collectees[player] += Decimal(pot)
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
def totalPot(self):
|
2008-12-16 00:56:19 +01:00
|
|
|
"""If all bets and blinds have been added, totals up the total pot size"""
|
2008-12-20 17:57:12 +01:00
|
|
|
|
|
|
|
# This gives us the total amount put in the pot
|
2008-12-12 15:29:45 +01:00
|
|
|
if self.totalpot is None:
|
2008-12-20 17:48:25 +01:00
|
|
|
self.pot.end()
|
2008-12-20 17:57:12 +01:00
|
|
|
self.totalpot = self.pot.total
|
|
|
|
|
|
|
|
# This gives us the amount collected, i.e. after rake
|
2008-12-14 20:25:04 +01:00
|
|
|
if self.totalcollected is None:
|
|
|
|
self.totalcollected = 0;
|
2009-02-21 17:17:06 +01:00
|
|
|
#self.collected looks like [[p1,amount][px,amount]]
|
|
|
|
for entry in self.collected:
|
|
|
|
self.totalcollected += Decimal(entry[1])
|
2008-12-14 20:25:04 +01:00
|
|
|
|
2008-12-14 23:05:51 +01:00
|
|
|
|
|
|
|
|
2008-12-14 20:25:04 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
def getGameTypeAsString(self):
|
|
|
|
"""\
|
|
|
|
Map the tuple self.gametype onto the pokerstars string describing it
|
|
|
|
"""
|
|
|
|
# currently it appears to be something like ["ring", "hold", "nl", sb, bb]:
|
2009-03-10 17:17:54 +01:00
|
|
|
gs = {"holdem" : "Hold'em",
|
2009-02-22 10:07:11 +01:00
|
|
|
"omahahi" : "Omaha",
|
2008-12-12 15:29:45 +01:00
|
|
|
"omahahilo" : "FIXME",
|
|
|
|
"razz" : "Razz",
|
2009-03-06 02:24:38 +01:00
|
|
|
"studhi" : "7 Card Stud",
|
2008-12-12 15:29:45 +01:00
|
|
|
"studhilo" : "FIXME",
|
|
|
|
"fivedraw" : "5 Card Draw",
|
|
|
|
"27_1draw" : "FIXME",
|
|
|
|
"27_3draw" : "Triple Draw 2-7 Lowball",
|
2009-03-14 11:48:34 +01:00
|
|
|
"badugi" : "Badugi"
|
2008-12-12 15:29:45 +01:00
|
|
|
}
|
|
|
|
ls = {"nl" : "No Limit",
|
|
|
|
"pl" : "Pot Limit",
|
|
|
|
"fl" : "Limit",
|
|
|
|
"cn" : "Cap No Limit",
|
|
|
|
"cp" : "Cap Pot Limit"
|
|
|
|
}
|
|
|
|
|
2009-03-04 17:46:01 +01:00
|
|
|
logging.debug("gametype: %s" %(self.gametype))
|
2009-03-10 17:17:54 +01:00
|
|
|
retstring = "%s %s" %(gs[self.gametype['category']], ls[self.gametype['limitType']])
|
|
|
|
|
2009-03-04 17:46:01 +01:00
|
|
|
return retstring
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-03-01 17:52:52 +01:00
|
|
|
|
2008-12-16 00:56:19 +01:00
|
|
|
def writeHand(self, fh=sys.__stdout__):
|
2009-02-27 19:42:53 +01:00
|
|
|
print >>fh, "Override me"
|
|
|
|
|
|
|
|
def printHand(self):
|
|
|
|
self.writeHand(sys.stdout)
|
|
|
|
|
|
|
|
def printActionLine(self, act, fh):
|
|
|
|
if act[1] == 'folds':
|
|
|
|
print >>fh, _("%s: folds " %(act[0]))
|
|
|
|
elif act[1] == 'checks':
|
|
|
|
print >>fh, _("%s: checks " %(act[0]))
|
2009-03-02 00:22:47 +01:00
|
|
|
elif act[1] == 'calls':
|
2009-02-27 19:42:53 +01:00
|
|
|
print >>fh, _("%s: calls $%s%s" %(act[0], act[2], ' and is all-in' if act[3] else ''))
|
2009-03-02 00:22:47 +01:00
|
|
|
elif act[1] == 'bets':
|
2009-02-27 19:42:53 +01:00
|
|
|
print >>fh, _("%s: bets $%s%s" %(act[0], act[2], ' and is all-in' if act[3] else ''))
|
2009-03-02 00:22:47 +01:00
|
|
|
elif act[1] == 'raises':
|
2009-02-27 19:42:53 +01:00
|
|
|
print >>fh, _("%s: raises $%s to $%s%s" %(act[0], act[2], act[3], ' and is all-in' if act[5] else ''))
|
2009-03-11 17:51:58 +01:00
|
|
|
elif act[1] == 'completea':
|
|
|
|
print >>fh, _("%s: completes to $%s%s" %(act[0], act[2], ' and is all-in' if act[3] else ''))
|
2009-03-02 00:22:47 +01:00
|
|
|
elif act[1] == 'posts':
|
|
|
|
if(act[2] == "small blind"):
|
|
|
|
print >>fh, _("%s: posts small blind $%s" %(act[0], act[3]))
|
|
|
|
elif(act[2] == "big blind"):
|
|
|
|
print >>fh, _("%s: posts big blind $%s" %(act[0], act[3]))
|
|
|
|
elif(act[2] == "both"):
|
|
|
|
print >>fh, _("%s: posts small & big blinds $%s" %(act[0], act[3]))
|
2009-03-11 17:51:58 +01:00
|
|
|
elif act[1] == 'bringin':
|
|
|
|
print >>fh, _("%s: brings in for $%s%s" %(act[0], act[2], ' and is all-in' if act[3] else ''))
|
2009-03-14 11:48:34 +01:00
|
|
|
elif act[1] == 'discards':
|
|
|
|
print >>fh, _("%s: discards %s %s%s" %(act[0], act[2], 'card' if act[2] == 1 else 'cards' , " [" + " ".join(self.discards[act[0]]['DRAWONE']) + "]" if self.hero == act[0] else ''))
|
|
|
|
elif act[1] == 'stands pat':
|
|
|
|
print >>fh, _("%s: stands pat" %(act[0]))
|
|
|
|
|
|
|
|
|
2009-02-27 19:42:53 +01:00
|
|
|
class HoldemOmahaHand(Hand):
|
2009-03-14 12:40:27 +01:00
|
|
|
def __init__(self, hhc, sitename, gametype, handText, builtFrom = "HHC"):
|
2009-03-10 17:17:54 +01:00
|
|
|
if gametype['base'] != 'hold':
|
2009-02-27 19:42:53 +01:00
|
|
|
pass # or indeed don't pass and complain instead
|
2009-03-03 19:45:02 +01:00
|
|
|
logging.debug("HoldemOmahaHand")
|
2009-03-14 11:48:34 +01:00
|
|
|
self.streetList = ['BLINDSANTES', 'DEAL', 'PREFLOP','FLOP','TURN','RIVER'] # a list of the observed street names in order
|
2009-03-02 00:22:47 +01:00
|
|
|
self.communityStreets = ['FLOP', 'TURN', 'RIVER']
|
|
|
|
self.actionStreets = ['PREFLOP','FLOP','TURN','RIVER']
|
2009-03-14 12:40:27 +01:00
|
|
|
Hand.__init__(self, sitename, gametype, handText, builtFrom = "HHC")
|
2009-03-06 19:10:04 +01:00
|
|
|
self.sb = gametype['sb']
|
|
|
|
self.bb = gametype['bb']
|
2009-02-27 19:42:53 +01:00
|
|
|
|
2009-03-02 22:48:30 +01:00
|
|
|
#Populate a HoldemOmahaHand
|
|
|
|
#Generally, we call 'read' methods here, which get the info according to the particular filter (hhc)
|
|
|
|
# which then invokes a 'addXXX' callback
|
2009-03-14 15:01:40 +01:00
|
|
|
if builtFrom == "HHC":
|
|
|
|
hhc.readHandInfo(self)
|
|
|
|
hhc.readPlayerStacks(self)
|
|
|
|
hhc.compilePlayerRegexs(self)
|
|
|
|
hhc.markStreets(self)
|
|
|
|
hhc.readBlinds(self)
|
|
|
|
hhc.readButton(self)
|
|
|
|
hhc.readHeroCards(self)
|
|
|
|
hhc.readShowdownActions(self)
|
|
|
|
# Read actions in street order
|
|
|
|
for street in self.communityStreets:
|
|
|
|
if self.streets[street]:
|
|
|
|
hhc.readCommunityCards(self, street)
|
|
|
|
for street in self.actionStreets:
|
|
|
|
if self.streets[street]:
|
|
|
|
hhc.readAction(self, street)
|
|
|
|
hhc.readCollectPot(self)
|
|
|
|
hhc.readShownCards(self)
|
|
|
|
self.totalPot() # finalise it (total the pot)
|
|
|
|
hhc.getRake(self)
|
|
|
|
elif builtFrom == "DB":
|
|
|
|
self.select("dummy") # Will need a handId
|
2009-03-07 16:43:33 +01:00
|
|
|
|
2009-03-13 17:45:32 +01:00
|
|
|
def addHoleCards(self, cards, player, shown=False):
|
2009-03-02 22:48:30 +01:00
|
|
|
"""\
|
|
|
|
Assigns observed holecards to a player.
|
|
|
|
cards list of card bigrams e.g. ['2h','Jc']
|
|
|
|
player (string) name of player
|
|
|
|
"""
|
2009-03-03 19:45:02 +01:00
|
|
|
logging.debug("addHoleCards %s %s" % (cards, player))
|
2009-03-02 22:48:30 +01:00
|
|
|
try:
|
|
|
|
self.checkPlayerExists(player)
|
2009-03-03 19:45:02 +01:00
|
|
|
cardset = set(self.card(c) for c in cards)
|
2009-03-13 17:45:32 +01:00
|
|
|
if shown and len(cardset) > 0:
|
|
|
|
self.shown.add(player)
|
2009-03-03 19:45:02 +01:00
|
|
|
if 'PREFLOP' in self.holecards[player]:
|
|
|
|
self.holecards[player]['PREFLOP'].update(cardset)
|
|
|
|
else:
|
|
|
|
self.holecards[player]['PREFLOP'] = cardset
|
2009-03-02 22:48:30 +01:00
|
|
|
except FpdbParseError, e:
|
|
|
|
print "[ERROR] Tried to add holecards for unknown player: %s" % (player,)
|
|
|
|
|
|
|
|
def addShownCards(self, cards, player, holeandboard=None):
|
|
|
|
"""\
|
|
|
|
For when a player shows cards for any reason (for showdown or out of choice).
|
|
|
|
Card ranks will be uppercased
|
|
|
|
"""
|
2009-03-03 19:45:02 +01:00
|
|
|
logging.debug("addShownCards %s hole=%s all=%s" % (player, cards, holeandboard))
|
2009-03-02 22:48:30 +01:00
|
|
|
if cards is not None:
|
|
|
|
self.shown.add(player)
|
|
|
|
self.addHoleCards(cards,player)
|
|
|
|
elif holeandboard is not None:
|
|
|
|
holeandboard = set([self.card(c) for c in holeandboard])
|
|
|
|
board = set([c for s in self.board.values() for c in s])
|
2009-03-13 17:45:32 +01:00
|
|
|
self.addHoleCards(holeandboard.difference(board),player,shown=True)
|
2009-02-25 13:34:05 +01:00
|
|
|
|
|
|
|
|
2009-02-27 19:42:53 +01:00
|
|
|
def writeHand(self, fh=sys.__stdout__):
|
2008-12-12 15:29:45 +01:00
|
|
|
# PokerStars format.
|
2008-12-17 00:23:33 +01:00
|
|
|
print >>fh, _("%s Game #%s: %s ($%s/$%s) - %s" %("PokerStars", self.handid, self.getGameTypeAsString(), self.sb, self.bb, time.strftime('%Y/%m/%d - %H:%M:%S (ET)', self.starttime)))
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, _("Table '%s' %d-max Seat #%s is the button" %(self.tablename, self.maxseats, self.buttonpos))
|
|
|
|
|
2009-03-11 15:07:38 +01:00
|
|
|
players_who_act_preflop = set(([x[0] for x in self.actions['PREFLOP']]+[x[0] for x in self.actions['BLINDSANTES']]))
|
2009-03-11 15:05:38 +01:00
|
|
|
logging.debug(self.actions['PREFLOP'])
|
2008-12-16 00:56:19 +01:00
|
|
|
for player in [x for x in self.players if x[1] in players_who_act_preflop]:
|
|
|
|
#Only print stacks of players who do something preflop
|
2009-03-06 02:24:38 +01:00
|
|
|
print >>fh, _("Seat %s: %s ($%s in chips) " %(player[0], player[1], player[2]))
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-03-02 00:22:47 +01:00
|
|
|
if self.actions['BLINDSANTES']:
|
|
|
|
for act in self.actions['BLINDSANTES']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, _("*** HOLE CARDS ***")
|
2008-12-12 15:29:45 +01:00
|
|
|
if self.involved:
|
2009-03-03 19:45:02 +01:00
|
|
|
print >>fh, _("Dealt to %s [%s]" %(self.hero , " ".join(self.holecards[self.hero]['PREFLOP'])))
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-03-02 00:22:47 +01:00
|
|
|
if self.actions['PREFLOP']:
|
2008-12-12 15:29:45 +01:00
|
|
|
for act in self.actions['PREFLOP']:
|
2008-12-16 00:56:19 +01:00
|
|
|
self.printActionLine(act, fh)
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-03-03 19:45:02 +01:00
|
|
|
if self.board['FLOP']:
|
2008-12-16 15:48:49 +01:00
|
|
|
print >>fh, _("*** FLOP *** [%s]" %( " ".join(self.board['FLOP'])))
|
2009-03-03 19:45:02 +01:00
|
|
|
if self.actions['FLOP']:
|
2008-12-12 15:29:45 +01:00
|
|
|
for act in self.actions['FLOP']:
|
2008-12-16 00:56:19 +01:00
|
|
|
self.printActionLine(act, fh)
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-03-03 19:45:02 +01:00
|
|
|
if self.board['TURN']:
|
2008-12-16 15:48:49 +01:00
|
|
|
print >>fh, _("*** TURN *** [%s] [%s]" %( " ".join(self.board['FLOP']), " ".join(self.board['TURN'])))
|
2009-03-03 19:45:02 +01:00
|
|
|
if self.actions['TURN']:
|
2008-12-12 15:29:45 +01:00
|
|
|
for act in self.actions['TURN']:
|
2008-12-16 00:56:19 +01:00
|
|
|
self.printActionLine(act, fh)
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-03-03 19:45:02 +01:00
|
|
|
if self.board['RIVER']:
|
2008-12-16 15:48:49 +01:00
|
|
|
print >>fh, _("*** RIVER *** [%s] [%s]" %(" ".join(self.board['FLOP']+self.board['TURN']), " ".join(self.board['RIVER']) ))
|
2009-03-03 19:45:02 +01:00
|
|
|
if self.actions['RIVER']:
|
2008-12-12 15:29:45 +01:00
|
|
|
for act in self.actions['RIVER']:
|
2008-12-16 00:56:19 +01:00
|
|
|
self.printActionLine(act, fh)
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
#Some sites don't have a showdown section so we have to figure out if there should be one
|
|
|
|
# The logic for a showdown is: at the end of river action there are at least two players in the hand
|
|
|
|
# we probably don't need a showdown section in pseudo stars format for our filtering purposes
|
|
|
|
if 'SHOWDOWN' in self.actions:
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, _("*** SHOW DOWN ***")
|
2009-03-04 15:29:13 +01:00
|
|
|
#TODO: Complete SHOWDOWN
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2009-02-21 12:24:11 +01:00
|
|
|
# Current PS format has the lines:
|
2009-02-21 13:37:47 +01:00
|
|
|
# Uncalled bet ($111.25) returned to s0rrow
|
2009-02-21 12:24:11 +01:00
|
|
|
# s0rrow collected $5.15 from side pot
|
|
|
|
# stervels: shows [Ks Qs] (two pair, Kings and Queens)
|
|
|
|
# stervels collected $45.35 from main pot
|
|
|
|
# Immediately before the summary.
|
|
|
|
# The current importer uses those lines for importing winning rather than the summary
|
2009-02-21 13:37:47 +01:00
|
|
|
for name in self.pot.returned:
|
|
|
|
print >>fh, _("Uncalled bet ($%s) returned to %s" %(self.pot.returned[name],name))
|
2009-02-21 17:17:06 +01:00
|
|
|
for entry in self.collected:
|
|
|
|
print >>fh, _("%s collected $%s from x pot" %(entry[0], entry[1]))
|
2009-02-21 12:24:11 +01:00
|
|
|
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, _("*** SUMMARY ***")
|
2008-12-19 04:01:45 +01:00
|
|
|
print >>fh, "%s | Rake $%.2f" % (self.pot, self.rake)
|
2008-12-14 23:05:51 +01:00
|
|
|
|
2008-12-12 15:29:45 +01:00
|
|
|
board = []
|
|
|
|
for s in self.board.values():
|
|
|
|
board += s
|
|
|
|
if board: # sometimes hand ends preflop without a board
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, _("Board [%s]" % (" ".join(board)))
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2008-12-16 22:49:04 +01:00
|
|
|
for player in [x for x in self.players if x[1] in players_who_act_preflop]:
|
2008-12-12 15:29:45 +01:00
|
|
|
seatnum = player[0]
|
|
|
|
name = player[1]
|
2009-02-21 17:17:06 +01:00
|
|
|
if name in self.collectees and name in self.shown:
|
2009-03-03 19:45:02 +01:00
|
|
|
print >>fh, _("Seat %d: %s showed [%s] and won ($%s)" % (seatnum, name, " ".join(self.holecards[name]['PREFLOP']), self.collectees[name]))
|
2009-02-21 17:17:06 +01:00
|
|
|
elif name in self.collectees:
|
2009-02-25 13:34:05 +01:00
|
|
|
print >>fh, _("Seat %d: %s collected ($%s)" % (seatnum, name, self.collectees[name]))
|
2009-03-13 17:50:46 +01:00
|
|
|
#~ elif name in self.shown:
|
|
|
|
#~ print >>fh, _("Seat %d: %s showed [%s]" % (seatnum, name, " ".join(self.holecards[name]['PREFLOP'])))
|
2009-02-25 13:34:05 +01:00
|
|
|
elif name in self.folded:
|
|
|
|
print >>fh, _("Seat %d: %s folded" % (seatnum, name))
|
|
|
|
else:
|
2009-03-13 17:50:46 +01:00
|
|
|
if name in self.shown:
|
|
|
|
print >>fh, _("Seat %d: %s showed [%s] and lost with..." % (seatnum, name, " ".join(self.holecards[name]['PREFLOP'])))
|
|
|
|
else:
|
|
|
|
print >>fh, _("Seat %d: %s mucked" % (seatnum, name))
|
2009-02-25 13:34:05 +01:00
|
|
|
|
|
|
|
print >>fh, "\n\n"
|
2009-03-06 02:24:38 +01:00
|
|
|
|
|
|
|
class DrawHand(Hand):
|
2009-03-14 12:40:27 +01:00
|
|
|
def __init__(self, hhc, sitename, gametype, handText, builtFrom = "HHC"):
|
2009-03-10 17:17:54 +01:00
|
|
|
if gametype['base'] != 'draw':
|
2009-03-06 02:24:38 +01:00
|
|
|
pass # or indeed don't pass and complain instead
|
2009-03-14 11:48:34 +01:00
|
|
|
self.streetList = ['BLINDSANTES', 'DEAL', 'DRAWONE', 'DRAWTWO', 'DRAWTHREE']
|
|
|
|
self.holeStreets = ['DEAL', 'DRAWONE', 'DRAWTWO', 'DRAWTHREE']
|
|
|
|
self.actionStreets = ['PREDEAL', 'DEAL', 'DRAWONE', 'DRAWTWO', 'DRAWTHREE']
|
|
|
|
Hand.__init__(self, sitename, gametype, handText)
|
|
|
|
self.sb = gametype['sb']
|
|
|
|
self.bb = gametype['bb']
|
|
|
|
# Populate the draw hand.
|
2009-03-14 15:01:40 +01:00
|
|
|
if builtFrom == "HHC":
|
|
|
|
hhc.readHandInfo(self)
|
|
|
|
hhc.readPlayerStacks(self)
|
|
|
|
hhc.compilePlayerRegexs(self)
|
|
|
|
hhc.markStreets(self)
|
|
|
|
hhc.readBlinds(self)
|
|
|
|
hhc.readButton(self)
|
|
|
|
hhc.readShowdownActions(self)
|
|
|
|
# Read actions in street order
|
|
|
|
for street in self.streetList:
|
|
|
|
if self.streets[street]:
|
|
|
|
# hhc.readCommunityCards(self, street)
|
|
|
|
hhc.readDrawCards(self, street)
|
|
|
|
hhc.readAction(self, street)
|
|
|
|
hhc.readCollectPot(self)
|
|
|
|
hhc.readShownCards(self)
|
|
|
|
self.totalPot() # finalise it (total the pot)
|
|
|
|
hhc.getRake(self)
|
|
|
|
elif builtFrom == "DB":
|
|
|
|
self.select("dummy") # Will need a handId
|
2009-03-14 11:48:34 +01:00
|
|
|
|
|
|
|
# Draw games (at least Badugi has blinds - override default Holdem addBlind
|
|
|
|
def addBlind(self, player, blindtype, amount):
|
|
|
|
# if player is None, it's a missing small blind.
|
|
|
|
# The situation we need to cover are:
|
|
|
|
# Player in small blind posts
|
|
|
|
# - this is a bet of 1 sb, as yet uncalled.
|
|
|
|
# Player in the big blind posts
|
|
|
|
# - this is a call of 1 sb and a raise to 1 bb
|
|
|
|
#
|
|
|
|
|
|
|
|
logging.debug("addBlind: %s posts %s, %s" % (player, blindtype, amount))
|
|
|
|
if player is not None:
|
|
|
|
self.bets['DEAL'][player].append(Decimal(amount))
|
|
|
|
self.stacks[player] -= Decimal(amount)
|
|
|
|
#print "DEBUG %s posts, stack %s" % (player, self.stacks[player])
|
|
|
|
act = (player, 'posts', blindtype, amount, self.stacks[player]==0)
|
|
|
|
self.actions['BLINDSANTES'].append(act)
|
|
|
|
self.pot.addMoney(player, Decimal(amount))
|
|
|
|
if blindtype == 'big blind':
|
|
|
|
self.lastBet['DEAL'] = Decimal(amount)
|
|
|
|
elif blindtype == 'both':
|
|
|
|
# extra small blind is 'dead'
|
|
|
|
self.lastBet['DEAL'] = Decimal(self.bb)
|
|
|
|
self.posted = self.posted + [[player,blindtype]]
|
|
|
|
#print "DEBUG: self.posted: %s" %(self.posted)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def addDrawHoleCards(self, newcards, oldcards, player, street, shown=False):
|
|
|
|
"""\
|
|
|
|
Assigns observed holecards to a player.
|
|
|
|
cards list of card bigrams e.g. ['2h','Jc']
|
|
|
|
player (string) name of player
|
|
|
|
"""
|
2009-03-06 02:24:38 +01:00
|
|
|
try:
|
|
|
|
self.checkPlayerExists(player)
|
2009-03-14 11:48:34 +01:00
|
|
|
# if shown and len(cardset) > 0:
|
|
|
|
# self.shown.add(player)
|
|
|
|
self.holecards[player][street] = (newcards,oldcards)
|
2009-03-06 02:24:38 +01:00
|
|
|
except FpdbParseError, e:
|
2009-03-14 11:48:34 +01:00
|
|
|
print "[ERROR] Tried to add holecards for unknown player: %s" % (player,)
|
|
|
|
|
2009-03-14 14:23:30 +01:00
|
|
|
|
2009-03-14 11:48:34 +01:00
|
|
|
def discardDrawHoleCards(self, cards, player, street):
|
|
|
|
logging.debug("discardDrawHoleCards '%s' '%s' '%s'" % (cards, player, street))
|
|
|
|
self.discards[player][street] = set([cards])
|
|
|
|
|
2009-03-14 14:23:30 +01:00
|
|
|
|
|
|
|
def addDiscard(self, street, player, num, cards):
|
|
|
|
self.checkPlayerExists(player)
|
|
|
|
if cards:
|
|
|
|
act = (player, 'discards', num, cards)
|
|
|
|
self.discardDrawHoleCards(cards, player, street)
|
|
|
|
else:
|
|
|
|
act = (player, 'discards', num)
|
|
|
|
self.actions[street].append(act)
|
|
|
|
|
|
|
|
|
2009-03-14 11:48:34 +01:00
|
|
|
def addShownCards(self, cards, player, holeandboard=None):
|
|
|
|
"""\
|
|
|
|
For when a player shows cards for any reason (for showdown or out of choice).
|
|
|
|
Card ranks will be uppercased
|
|
|
|
"""
|
|
|
|
logging.debug("addShownCards %s hole=%s all=%s" % (player, cards, holeandboard))
|
|
|
|
# if cards is not None:
|
|
|
|
# self.shown.add(player)
|
|
|
|
# self.addHoleCards(cards,player)
|
|
|
|
# elif holeandboard is not None:
|
|
|
|
# holeandboard = set([self.card(c) for c in holeandboard])
|
|
|
|
# board = set([c for s in self.board.values() for c in s])
|
|
|
|
# self.addHoleCards(holeandboard.difference(board),player,shown=True)
|
|
|
|
|
2009-03-14 14:23:30 +01:00
|
|
|
|
2009-03-14 11:48:34 +01:00
|
|
|
def writeHand(self, fh=sys.__stdout__):
|
|
|
|
# PokerStars format.
|
|
|
|
print >>fh, _("%s Game #%s: %s ($%s/$%s) - %s" %("PokerStars", self.handid, self.getGameTypeAsString(), self.sb, self.bb, time.strftime('%Y/%m/%d - %H:%M:%S (ET)', self.starttime)))
|
|
|
|
print >>fh, _("Table '%s' %d-max Seat #%s is the button" %(self.tablename, self.maxseats, self.buttonpos))
|
|
|
|
|
|
|
|
players_who_act_ondeal = set(([x[0] for x in self.actions['DEAL']]+[x[0] for x in self.actions['BLINDSANTES']]))
|
|
|
|
|
|
|
|
for player in [x for x in self.players if x[1] in players_who_act_ondeal]:
|
|
|
|
#Only print stacks of players who do something on deal
|
|
|
|
print >>fh, _("Seat %s: %s ($%s)" %(player[0], player[1], player[2]))
|
|
|
|
|
|
|
|
if 'BLINDSANTES' in self.actions:
|
|
|
|
for act in self.actions['BLINDSANTES']:
|
|
|
|
print >>fh, _("%s: %s %s $%s" %(act[0], act[1], act[2], act[3]))
|
|
|
|
|
|
|
|
if 'DEAL' in self.actions:
|
|
|
|
print >>fh, _("*** DEALING HANDS ***")
|
|
|
|
for player in [x[1] for x in self.players if x[1] in players_who_act_ondeal]:
|
|
|
|
if 'DEAL' in self.holecards[player]:
|
|
|
|
(nc,oc) = self.holecards[player]['DEAL']
|
|
|
|
print >>fh, _("Dealt to %s: [%s]") % (player, " ".join(nc))
|
|
|
|
for act in self.actions['DEAL']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
|
|
|
|
if 'DRAWONE' in self.actions:
|
|
|
|
print >>fh, _("*** FIRST DRAW ***")
|
|
|
|
for act in self.actions['DRAWONE']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
if act[0] == self.hero and act[1] == 'discards':
|
|
|
|
(nc,oc) = self.holecards[act[0]]['DRAWONE']
|
|
|
|
dc = self.discards[act[0]]['DRAWONE']
|
|
|
|
kc = oc - dc
|
|
|
|
print >>fh, _("Dealt to %s [%s] [%s]" % (act[0], " ".join(kc), " ".join(nc)))
|
|
|
|
|
|
|
|
if 'DRAWTWO' in self.actions:
|
|
|
|
print >>fh, _("*** SECOND DRAW ***")
|
|
|
|
for act in self.actions['DRAWTWO']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
if act[0] == self.hero and act[1] == 'discards':
|
|
|
|
(nc,oc) = self.holecards[act[0]]['DRAWTWO']
|
|
|
|
dc = self.discards[act[0]]['DRAWTWO']
|
|
|
|
kc = oc - dc
|
|
|
|
print >>fh, _("Dealt to %s [%s] [%s]" % (act[0], " ".join(kc), " ".join(nc)))
|
|
|
|
|
|
|
|
if 'DRAWTHREE' in self.actions:
|
|
|
|
print >>fh, _("*** THIRD DRAW ***")
|
|
|
|
for act in self.actions['DRAWTHREE']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
if act[0] == self.hero and act[1] == 'discards':
|
|
|
|
(nc,oc) = self.holecards[act[0]]['DRAWTHREE']
|
|
|
|
dc = self.discards[act[0]]['DRAWTHREE']
|
|
|
|
kc = oc - dc
|
|
|
|
print >>fh, _("Dealt to %s [%s] [%s]" % (act[0], " ".join(kc), " ".join(nc)))
|
|
|
|
|
|
|
|
if 'SHOWDOWN' in self.actions:
|
|
|
|
print >>fh, _("*** SHOW DOWN ***")
|
|
|
|
#TODO: Complete SHOWDOWN
|
|
|
|
|
|
|
|
# Current PS format has the lines:
|
|
|
|
# Uncalled bet ($111.25) returned to s0rrow
|
|
|
|
# s0rrow collected $5.15 from side pot
|
|
|
|
# stervels: shows [Ks Qs] (two pair, Kings and Queens)
|
|
|
|
# stervels collected $45.35 from main pot
|
|
|
|
# Immediately before the summary.
|
|
|
|
# The current importer uses those lines for importing winning rather than the summary
|
|
|
|
for name in self.pot.returned:
|
|
|
|
print >>fh, _("Uncalled bet ($%s) returned to %s" %(self.pot.returned[name],name))
|
|
|
|
for entry in self.collected:
|
|
|
|
print >>fh, _("%s collected $%s from x pot" %(entry[0], entry[1]))
|
|
|
|
|
|
|
|
print >>fh, _("*** SUMMARY ***")
|
|
|
|
print >>fh, "%s | Rake $%.2f" % (self.pot, self.rake)
|
|
|
|
print >>fh, "\n\n"
|
|
|
|
|
|
|
|
|
2009-02-27 19:42:53 +01:00
|
|
|
|
|
|
|
class StudHand(Hand):
|
2009-03-14 12:40:27 +01:00
|
|
|
def __init__(self, hhc, sitename, gametype, handText, builtFrom = "HHC"):
|
2009-03-10 17:17:54 +01:00
|
|
|
if gametype['base'] != 'stud':
|
2009-02-27 19:42:53 +01:00
|
|
|
pass # or indeed don't pass and complain instead
|
|
|
|
self.streetList = ['ANTES','THIRD','FOURTH','FIFTH','SIXTH','SEVENTH'] # a list of the observed street names in order
|
2009-03-02 22:48:30 +01:00
|
|
|
self.holeStreets = ['ANTES','THIRD','FOURTH','FIFTH','SIXTH','SEVENTH']
|
2009-03-02 00:22:47 +01:00
|
|
|
Hand.__init__(self, sitename, gametype, handText)
|
2009-03-06 19:10:04 +01:00
|
|
|
self.sb = gametype['sb']
|
|
|
|
self.bb = gametype['bb']
|
2009-03-02 22:48:30 +01:00
|
|
|
#Populate the StudHand
|
|
|
|
#Generally, we call a 'read' method here, which gets the info according to the particular filter (hhc)
|
|
|
|
# which then invokes a 'addXXX' callback
|
2009-03-14 15:01:40 +01:00
|
|
|
if builtFrom == "HHC":
|
|
|
|
hhc.readHandInfo(self)
|
|
|
|
hhc.readPlayerStacks(self)
|
|
|
|
hhc.compilePlayerRegexs(self)
|
|
|
|
hhc.markStreets(self)
|
|
|
|
hhc.readAntes(self)
|
|
|
|
hhc.readBringIn(self)
|
|
|
|
#hhc.readShowdownActions(self) # not done yet
|
|
|
|
# Read actions in street order
|
|
|
|
for street in self.streetList:
|
|
|
|
if self.streets[street]:
|
|
|
|
logging.debug(street)
|
|
|
|
logging.debug(self.streets[street])
|
|
|
|
hhc.readStudPlayerCards(self, street)
|
|
|
|
hhc.readAction(self, street)
|
|
|
|
hhc.readCollectPot(self)
|
|
|
|
#hhc.readShownCards(self) # not done yet
|
|
|
|
self.totalPot() # finalise it (total the pot)
|
|
|
|
hhc.getRake(self)
|
|
|
|
elif builtFrom == "DB":
|
|
|
|
self.select("dummy") # Will need a handId
|
2009-03-02 00:22:47 +01:00
|
|
|
|
2009-03-02 22:48:30 +01:00
|
|
|
def addPlayerCards(self, player, street, open=[], closed=[]):
|
|
|
|
"""\
|
|
|
|
Assigns observed cards to a player.
|
|
|
|
player (string) name of player
|
|
|
|
street (string) the street name (in streetList)
|
|
|
|
open list of card bigrams e.g. ['2h','Jc'], dealt face up
|
|
|
|
closed likewise, but known only to player
|
|
|
|
"""
|
|
|
|
logging.debug("addPlayerCards %s, o%s x%s" % (player, open, closed))
|
|
|
|
try:
|
|
|
|
self.checkPlayerExists(player)
|
|
|
|
self.holecards[player][street] = (open, closed)
|
|
|
|
# cards = set([self.card(c) for c in cards])
|
|
|
|
# self.holecards[player].update(cards)
|
|
|
|
except FpdbParseError, e:
|
|
|
|
print "[ERROR] Tried to add holecards for unknown player: %s" % (player,)
|
|
|
|
|
2009-03-11 17:51:58 +01:00
|
|
|
# TODO: def addComplete(self, player, amount):
|
|
|
|
def addComplete(self, street, player, amountTo):
|
|
|
|
# assert street=='THIRD'
|
|
|
|
# This needs to be called instead of addRaiseTo, and it needs to take account of self.lastBet['THIRD'] to determine the raise-by size
|
|
|
|
"""\
|
|
|
|
Add a complete on [street] by [player] to [amountTo]
|
|
|
|
"""
|
2009-03-11 19:40:17 +01:00
|
|
|
logging.debug("%s %s completes %s" % (street, player, amountTo))
|
2009-03-11 17:51:58 +01:00
|
|
|
self.checkPlayerExists(player)
|
|
|
|
Bp = self.lastBet['THIRD']
|
|
|
|
Bc = reduce(operator.add, self.bets[street][player], 0)
|
|
|
|
Rt = Decimal(amountTo)
|
|
|
|
C = Bp - Bc
|
|
|
|
Rb = Rt - C
|
|
|
|
self._addRaise(street, player, C, Rb, Rt)
|
|
|
|
#~ self.bets[street][player].append(C + Rb)
|
|
|
|
#~ self.stacks[player] -= (C + Rb)
|
|
|
|
#~ act = (player, 'raises', Rb, Rt, C, self.stacks[player]==0)
|
|
|
|
#~ self.actions[street].append(act)
|
|
|
|
#~ self.lastBet[street] = Rt # TODO check this is correct
|
|
|
|
#~ self.pot.addMoney(player, C+Rb)
|
|
|
|
|
2009-03-02 22:48:30 +01:00
|
|
|
def addBringIn(self, player, bringin):
|
2009-03-02 00:22:47 +01:00
|
|
|
if player is not None:
|
2009-03-02 22:48:30 +01:00
|
|
|
logging.debug("Bringin: %s, %s" % (player , bringin))
|
|
|
|
self.bets['THIRD'][player].append(Decimal(bringin))
|
|
|
|
self.stacks[player] -= Decimal(bringin)
|
2009-03-11 17:51:58 +01:00
|
|
|
act = (player, 'bringin', bringin, self.stacks[player]==0)
|
2009-03-02 00:22:47 +01:00
|
|
|
self.actions['THIRD'].append(act)
|
2009-03-11 17:51:58 +01:00
|
|
|
self.lastBet['THIRD'] = Decimal(bringin)
|
2009-03-02 22:48:30 +01:00
|
|
|
self.pot.addMoney(player, Decimal(bringin))
|
2009-02-27 19:42:53 +01:00
|
|
|
|
2009-03-02 22:48:30 +01:00
|
|
|
def writeHand(self, fh=sys.__stdout__):
|
2009-02-25 13:34:05 +01:00
|
|
|
# PokerStars format.
|
|
|
|
print >>fh, _("%s Game #%s: %s ($%s/$%s) - %s" %("PokerStars", self.handid, self.getGameTypeAsString(), self.sb, self.bb, time.strftime('%Y/%m/%d - %H:%M:%S (ET)', self.starttime)))
|
|
|
|
print >>fh, _("Table '%s' %d-max Seat #%s is the button" %(self.tablename, self.maxseats, self.buttonpos))
|
|
|
|
|
|
|
|
players_who_post_antes = set([x[0] for x in self.actions['ANTES']])
|
|
|
|
|
|
|
|
for player in [x for x in self.players if x[1] in players_who_post_antes]:
|
|
|
|
#Only print stacks of players who do something preflop
|
|
|
|
print >>fh, _("Seat %s: %s ($%s)" %(player[0], player[1], player[2]))
|
|
|
|
|
2009-02-25 16:45:46 +01:00
|
|
|
if 'ANTES' in self.actions:
|
|
|
|
for act in self.actions['ANTES']:
|
|
|
|
print >>fh, _("%s: posts the ante $%s" %(act[0], act[3]))
|
|
|
|
|
2009-02-25 13:34:05 +01:00
|
|
|
if 'THIRD' in self.actions:
|
2009-03-11 17:51:58 +01:00
|
|
|
dealt = 0
|
|
|
|
#~ print >>fh, _("*** 3RD STREET ***")
|
2009-03-02 22:48:30 +01:00
|
|
|
for player in [x[1] for x in self.players if x[1] in players_who_post_antes]:
|
2009-03-10 18:25:49 +01:00
|
|
|
if 'THIRD' in self.holecards[player]:
|
2009-03-11 17:51:58 +01:00
|
|
|
(open, closed) = self.holecards[player]['THIRD']
|
|
|
|
dealt+=1
|
|
|
|
if dealt==1:
|
|
|
|
print >>fh, _("*** 3RD STREET ***")
|
|
|
|
print >>fh, _("Dealt to %s:%s%s") % (player, " [" + " ".join(closed) + "] " if closed else " ", "[" + " ".join(open) + "]" if open else "")
|
2009-02-25 13:34:05 +01:00
|
|
|
for act in self.actions['THIRD']:
|
2009-02-25 17:23:46 +01:00
|
|
|
#FIXME: Need some logic here for bringin vs completes
|
2009-02-25 13:34:05 +01:00
|
|
|
self.printActionLine(act, fh)
|
|
|
|
|
|
|
|
if 'FOURTH' in self.actions:
|
2009-03-11 17:51:58 +01:00
|
|
|
dealt = 0
|
|
|
|
#~ print >>fh, _("*** 4TH STREET ***")
|
|
|
|
for player in [x[1] for x in self.players if x[1] in players_who_post_antes]:
|
|
|
|
if 'FOURTH' in self.holecards[player]:
|
|
|
|
old = []
|
|
|
|
(o,c) = self.holecards[player]['THIRD']
|
|
|
|
if o:old.extend(o)
|
|
|
|
if c:old.extend(c)
|
|
|
|
new = self.holecards[player]['FOURTH'][0]
|
|
|
|
dealt+=1
|
|
|
|
if dealt==1:
|
|
|
|
print >>fh, _("*** 4TH STREET ***")
|
|
|
|
print >>fh, _("Dealt to %s:%s%s") % (player, " [" + " ".join(old) + "] " if old else " ", "[" + " ".join(new) + "]" if new else "")
|
2009-02-25 13:34:05 +01:00
|
|
|
for act in self.actions['FOURTH']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
|
|
|
|
if 'FIFTH' in self.actions:
|
2009-03-11 17:51:58 +01:00
|
|
|
dealt = 0
|
|
|
|
#~ print >>fh, _("*** 5TH STREET ***")
|
|
|
|
for player in [x[1] for x in self.players if x[1] in players_who_post_antes]:
|
|
|
|
if 'FIFTH' in self.holecards[player]:
|
|
|
|
old = []
|
|
|
|
for street in ('THIRD','FOURTH'):
|
|
|
|
(o,c) = self.holecards[player][street]
|
|
|
|
if o:old.extend(o)
|
|
|
|
if c:old.extend(c)
|
|
|
|
new = self.holecards[player]['FIFTH'][0]
|
|
|
|
dealt+=1
|
|
|
|
if dealt==1:
|
|
|
|
print >>fh, _("*** 5TH STREET ***")
|
|
|
|
print >>fh, _("Dealt to %s:%s%s") % (player, " [" + " ".join(old) + "] " if old else " ", "[" + " ".join(new) + "]" if new else "")
|
2009-02-25 13:34:05 +01:00
|
|
|
for act in self.actions['FIFTH']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
|
|
|
|
if 'SIXTH' in self.actions:
|
2009-03-11 17:51:58 +01:00
|
|
|
dealt = 0
|
|
|
|
#~ print >>fh, _("*** 6TH STREET ***")
|
|
|
|
for player in [x[1] for x in self.players if x[1] in players_who_post_antes]:
|
|
|
|
if 'SIXTH' in self.holecards[player]:
|
|
|
|
old = []
|
|
|
|
for street in ('THIRD','FOURTH','FIFTH'):
|
|
|
|
(o,c) = self.holecards[player][street]
|
|
|
|
if o:old.extend(o)
|
|
|
|
if c:old.extend(c)
|
|
|
|
new = self.holecards[player]['SIXTH'][0]
|
|
|
|
dealt += 1
|
|
|
|
if dealt == 1:
|
|
|
|
print >>fh, _("*** 6TH STREET ***")
|
|
|
|
print >>fh, _("Dealt to %s:%s%s") % (player, " [" + " ".join(old) + "] " if old else " ", "[" + " ".join(new) + "]" if new else "")
|
2009-02-25 13:34:05 +01:00
|
|
|
for act in self.actions['SIXTH']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
|
|
|
|
if 'SEVENTH' in self.actions:
|
2009-03-11 17:51:58 +01:00
|
|
|
# OK. It's possible that they're all in at an earlier street, but only closed cards are dealt.
|
|
|
|
# Then we have no 'dealt to' lines, no action lines, but still 7th street should appear.
|
|
|
|
# The only way I can see to know whether to print this line is by knowing the state of the hand
|
|
|
|
# i.e. are all but one players folded; is there an allin showdown; and all that.
|
2009-02-25 13:34:05 +01:00
|
|
|
print >>fh, _("*** 7TH STREET ***")
|
2009-03-11 17:51:58 +01:00
|
|
|
for player in [x[1] for x in self.players if x[1] in players_who_post_antes]:
|
|
|
|
if 'SEVENTH' in self.holecards[player]:
|
|
|
|
old = []
|
|
|
|
for street in ('THIRD','FOURTH','FIFTH','SIXTH'):
|
|
|
|
(o,c) = self.holecards[player][street]
|
|
|
|
if o:old.extend(o)
|
|
|
|
if c:old.extend(c)
|
|
|
|
new = self.holecards[player]['SEVENTH'][0]
|
|
|
|
if new:
|
|
|
|
print >>fh, _("Dealt to %s:%s%s") % (player, " [" + " ".join(old) + "] " if old else " ", "[" + " ".join(new) + "]" if new else "")
|
2009-02-25 13:34:05 +01:00
|
|
|
for act in self.actions['SEVENTH']:
|
|
|
|
self.printActionLine(act, fh)
|
|
|
|
|
|
|
|
#Some sites don't have a showdown section so we have to figure out if there should be one
|
|
|
|
# The logic for a showdown is: at the end of river action there are at least two players in the hand
|
|
|
|
# we probably don't need a showdown section in pseudo stars format for our filtering purposes
|
|
|
|
if 'SHOWDOWN' in self.actions:
|
|
|
|
print >>fh, _("*** SHOW DOWN ***")
|
2009-03-04 15:29:13 +01:00
|
|
|
# TODO: print showdown lines.
|
2009-02-25 13:34:05 +01:00
|
|
|
|
|
|
|
# Current PS format has the lines:
|
|
|
|
# Uncalled bet ($111.25) returned to s0rrow
|
|
|
|
# s0rrow collected $5.15 from side pot
|
|
|
|
# stervels: shows [Ks Qs] (two pair, Kings and Queens)
|
|
|
|
# stervels collected $45.35 from main pot
|
|
|
|
# Immediately before the summary.
|
|
|
|
# The current importer uses those lines for importing winning rather than the summary
|
|
|
|
for name in self.pot.returned:
|
|
|
|
print >>fh, _("Uncalled bet ($%s) returned to %s" %(self.pot.returned[name],name))
|
|
|
|
for entry in self.collected:
|
|
|
|
print >>fh, _("%s collected $%s from x pot" %(entry[0], entry[1]))
|
|
|
|
|
|
|
|
print >>fh, _("*** SUMMARY ***")
|
|
|
|
print >>fh, "%s | Rake $%.2f" % (self.pot, self.rake)
|
|
|
|
#print >>fh, _("Total pot $%s | Rake $%.2f" % (self.totalpot, self.rake)) # TODO: side pots
|
|
|
|
|
|
|
|
board = []
|
|
|
|
for s in self.board.values():
|
|
|
|
board += s
|
|
|
|
if board: # sometimes hand ends preflop without a board
|
|
|
|
print >>fh, _("Board [%s]" % (" ".join(board)))
|
|
|
|
|
|
|
|
for player in [x for x in self.players if x[1] in players_who_post_antes]:
|
|
|
|
seatnum = player[0]
|
|
|
|
name = player[1]
|
|
|
|
if name in self.collectees and name in self.shown:
|
|
|
|
print >>fh, _("Seat %d: %s showed [%s] and won ($%s)" % (seatnum, name, " ".join(self.holecards[name]), self.collectees[name]))
|
|
|
|
elif name in self.collectees:
|
2009-02-21 17:17:06 +01:00
|
|
|
print >>fh, _("Seat %d: %s collected ($%s)" % (seatnum, name, self.collectees[name]))
|
2008-12-16 22:08:10 +01:00
|
|
|
elif name in self.shown:
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, _("Seat %d: %s showed [%s]" % (seatnum, name, " ".join(self.holecards[name])))
|
2008-12-16 22:08:10 +01:00
|
|
|
elif name in self.folded:
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, _("Seat %d: %s folded" % (seatnum, name))
|
2008-12-12 15:29:45 +01:00
|
|
|
else:
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, _("Seat %d: %s mucked" % (seatnum, name))
|
2008-12-12 15:29:45 +01:00
|
|
|
|
2008-12-16 00:56:19 +01:00
|
|
|
print >>fh, "\n\n"
|
2008-12-12 15:29:45 +01:00
|
|
|
|
|
|
|
|
2008-12-19 04:01:45 +01:00
|
|
|
|
|
|
|
class Pot(object):
|
|
|
|
|
2008-12-20 17:48:25 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.contenders = set()
|
|
|
|
self.committed = {}
|
|
|
|
self.total = None
|
2009-02-21 13:37:47 +01:00
|
|
|
self.returned = {}
|
2008-12-20 17:48:25 +01:00
|
|
|
|
|
|
|
def addPlayer(self,player):
|
|
|
|
self.committed[player] = Decimal(0)
|
|
|
|
|
2008-12-19 04:01:45 +01:00
|
|
|
def addFold(self, player):
|
2008-12-20 17:48:25 +01:00
|
|
|
# addFold must be called when a player folds
|
|
|
|
self.contenders.discard(player)
|
2008-12-19 04:01:45 +01:00
|
|
|
|
|
|
|
def addMoney(self, player, amount):
|
2008-12-20 17:48:25 +01:00
|
|
|
# addMoney must be called for any actions that put money in the pot, in the order they occur
|
|
|
|
self.contenders.add(player)
|
2008-12-19 04:01:45 +01:00
|
|
|
self.committed[player] += amount
|
2008-12-20 17:48:25 +01:00
|
|
|
|
|
|
|
def end(self):
|
2008-12-19 04:01:45 +01:00
|
|
|
self.total = sum(self.committed.values())
|
2008-12-20 17:48:25 +01:00
|
|
|
|
|
|
|
# Return any uncalled bet.
|
2008-12-19 04:01:45 +01:00
|
|
|
committed = sorted([ (v,k) for (k,v) in self.committed.items()])
|
|
|
|
lastbet = committed[-1][0] - committed[-2][0]
|
|
|
|
if lastbet > 0: # uncalled
|
|
|
|
returnto = committed[-1][1]
|
2009-02-21 13:37:47 +01:00
|
|
|
#print "DEBUG: returning %f to %s" % (lastbet, returnto)
|
2008-12-19 04:01:45 +01:00
|
|
|
self.total -= lastbet
|
|
|
|
self.committed[returnto] -= lastbet
|
2009-02-21 13:37:47 +01:00
|
|
|
self.returned[returnto] = lastbet
|
2009-02-20 09:22:58 +01:00
|
|
|
|
|
|
|
|
2008-12-20 17:48:25 +01:00
|
|
|
# Work out side pots
|
2008-12-19 04:01:45 +01:00
|
|
|
commitsall = sorted([(v,k) for (k,v) in self.committed.items() if v >0])
|
2009-02-20 09:22:58 +01:00
|
|
|
|
2008-12-20 17:48:25 +01:00
|
|
|
self.pots = []
|
2008-12-19 04:01:45 +01:00
|
|
|
while len(commitsall) > 0:
|
|
|
|
commitslive = [(v,k) for (v,k) in commitsall if k in self.contenders]
|
|
|
|
v1 = commitslive[0][0]
|
2008-12-20 17:48:25 +01:00
|
|
|
self.pots += [sum([min(v,v1) for (v,k) in commitsall])]
|
2008-12-19 04:01:45 +01:00
|
|
|
commitsall = [((v-v1),k) for (v,k) in commitsall if v-v1 >0]
|
|
|
|
|
|
|
|
# TODO: I think rake gets taken out of the pots.
|
|
|
|
# so it goes:
|
|
|
|
# total pot x. main pot y, side pot z. | rake r
|
|
|
|
# and y+z+r = x
|
|
|
|
# for example:
|
|
|
|
# Total pot $124.30 Main pot $98.90. Side pot $23.40. | Rake $2
|
2008-12-20 17:48:25 +01:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
if self.total is None:
|
|
|
|
print "call Pot.end() before printing pot total"
|
|
|
|
# NB if I'm sure end() is idempotent, call it here.
|
|
|
|
raise FpdbParseError
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if len(self.pots) == 1: # (only use Total pot)
|
2008-12-20 03:22:21 +01:00
|
|
|
return "Total pot $%.2f" % (self.total,)
|
2008-12-20 17:48:25 +01:00
|
|
|
elif len(self.pots) == 2:
|
|
|
|
return "Total pot $%.2f Main pot $%.2f. Side pot $%2.f." % (self.total, self.pots[0], self.pots[1])
|
|
|
|
elif len(self.pots) == 3:
|
|
|
|
return "Total pot $%.2f Main pot $%.2f. Side pot-1 $%2.2f. Side pot-2 $%.2f." % (self.total, self.pots[0], self.pots[1], self.pots[2])
|
2009-02-21 14:31:57 +01:00
|
|
|
elif len(self.pots) == 0:
|
|
|
|
# no small blind and walk in bb (hopefully)
|
|
|
|
return "Total pot $%.2f" % (self.total,)
|
2008-12-19 04:01:45 +01:00
|
|
|
else:
|
2009-02-21 14:31:57 +01:00
|
|
|
return _("too many pots.. no small blind and walk in bb?. self.pots: %s" %(self.pots))
|
2008-12-20 23:52:47 +01:00
|
|
|
# I don't know stars format for a walk in the bb when sb doesn't post.
|
|
|
|
# The thing to do here is raise a Hand error like fpdb import does and file it into errors.txt
|