2008-11-07 09:47:00 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Copyright 2008, Carl Gherardi
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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 General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
########################################################################
|
|
|
|
|
2008-11-11 09:54:24 +01:00
|
|
|
import sys
|
2008-11-09 00:49:05 +01:00
|
|
|
import Configuration
|
2008-11-09 12:57:58 +01:00
|
|
|
from HandHistoryConverter import *
|
|
|
|
|
|
|
|
# Everleaf HH format
|
|
|
|
|
2008-11-12 05:12:18 +01:00
|
|
|
# Everleaf Gaming Game #55208539
|
|
|
|
# ***** Hand history for game #55208539 *****
|
|
|
|
# Blinds $0.50/$1 NL Hold'em - 2008/09/01 - 13:35:01
|
|
|
|
# Table Speed Kuala
|
|
|
|
# Seat 1 is the button
|
|
|
|
# Total number of players: 9
|
|
|
|
# Seat 1: BadBeatBox ( $ 98.97 USD )
|
|
|
|
# Seat 3: EricBlade ( $ 73.96 USD )
|
|
|
|
# Seat 4: randy888 ( $ 196.50 USD )
|
|
|
|
# Seat 5: BaronSengir ( $ 182.80 USD )
|
|
|
|
# Seat 6: dogge ( $ 186.06 USD )
|
|
|
|
# Seat 7: wings ( $ 50 USD )
|
|
|
|
# Seat 8: schoffeltje ( $ 282.05 USD )
|
|
|
|
# Seat 9: harrydebeng ( $ 109.45 USD )
|
|
|
|
# Seat 10: smaragdar ( $ 96.50 USD )
|
|
|
|
# EricBlade: posts small blind [$ 0.50 USD]
|
|
|
|
# randy888: posts big blind [$ 1 USD]
|
|
|
|
# wings: posts big blind [$ 1 USD]
|
|
|
|
# ** Dealing down cards **
|
|
|
|
# Dealt to EricBlade [ qc, 3c ]
|
|
|
|
# BaronSengir folds
|
|
|
|
# dogge folds
|
|
|
|
# wings raises [$ 2.50 USD]
|
|
|
|
# schoffeltje folds
|
|
|
|
# harrydebeng calls [$ 3.50 USD]
|
|
|
|
# smaragdar raises [$ 15.50 USD]
|
|
|
|
# BadBeatBox folds
|
|
|
|
# EricBlade folds
|
|
|
|
# randy888 folds
|
|
|
|
# wings calls [$ 12 USD]
|
|
|
|
# harrydebeng folds
|
|
|
|
# ** Dealing Flop ** [ qs, 3d, 8h ]
|
|
|
|
# wings: bets [$ 34.50 USD]
|
|
|
|
# smaragdar calls [$ 34.50 USD]
|
|
|
|
# ** Dealing Turn ** [ 2d ]
|
|
|
|
# ** Dealing River ** [ 6c ]
|
2008-12-06 15:13:38 +01:00
|
|
|
# dogge shows [ 9h, 9c ]a pair of nines
|
|
|
|
# spicybum shows [ 5d, 6d ]a straight, eight high
|
|
|
|
# harrydebeng does not show cards
|
2008-11-12 05:12:18 +01:00
|
|
|
# smaragdar wins $ 102 USD from main pot with a pair of aces [ ad, ah, qs, 8h, 6c ]
|
2008-11-09 12:57:58 +01:00
|
|
|
|
2008-11-07 11:19:18 +01:00
|
|
|
class Everleaf(HandHistoryConverter):
|
2008-12-06 15:15:41 +01:00
|
|
|
def __init__(self, config, file):
|
|
|
|
print "Initialising Everleaf converter class"
|
2008-12-08 07:23:50 +01:00
|
|
|
HandHistoryConverter.__init__(self, config, file, sitename="Everleaf") # Call super class init.
|
2008-12-06 15:15:41 +01:00
|
|
|
self.sitename = "Everleaf"
|
2008-12-10 17:30:57 +01:00
|
|
|
self.setFileType("text", "cp1252")
|
2008-12-06 15:15:41 +01:00
|
|
|
self.rexx.setGameInfoRegex('.*Blinds \$?(?P<SB>[.0-9]+)/\$?(?P<BB>[.0-9]+)')
|
2008-12-10 00:30:58 +01:00
|
|
|
self.rexx.setSplitHandRegex('\n\n+')
|
2008-12-06 15:15:41 +01:00
|
|
|
self.rexx.setHandInfoRegex('.*#(?P<HID>[0-9]+)\n.*\nBlinds \$?(?P<SB>[.0-9]+)/\$?(?P<BB>[.0-9]+) (?P<GAMETYPE>.*) - (?P<YEAR>[0-9]+)/(?P<MON>[0-9]+)/(?P<DAY>[0-9]+) - (?P<HR>[0-9]+):(?P<MIN>[0-9]+):(?P<SEC>[0-9]+)\nTable (?P<TABLE>[ a-zA-Z]+)\nSeat (?P<BUTTON>[0-9]+)')
|
2008-12-10 00:58:38 +01:00
|
|
|
self.rexx.setPlayerInfoRegex('Seat (?P<SEAT>[0-9]+): (?P<PNAME>.*) \(\s+(\$ (?P<CASH>[.0-9]+) USD|new player|All-in) \)')
|
2008-12-06 15:15:41 +01:00
|
|
|
self.rexx.setPostSbRegex('.*\n(?P<PNAME>.*): posts small blind \[\$? (?P<SB>[.0-9]+)')
|
|
|
|
self.rexx.setPostBbRegex('.*\n(?P<PNAME>.*): posts big blind \[\$? (?P<BB>[.0-9]+)')
|
|
|
|
# mct : what about posting small & big blinds simultaneously?
|
|
|
|
self.rexx.setHeroCardsRegex('.*\nDealt\sto\s(?P<PNAME>.*)\s\[ (?P<HOLE1>\S\S), (?P<HOLE2>\S\S) \]')
|
2008-12-10 00:58:38 +01:00
|
|
|
self.rexx.setActionStepRegex('.*\n(?P<PNAME>.*)(?P<ATYPE>: bets| checks| raises| calls| folds)(\s\[\$ (?P<BET>[.\d]+) USD\])?')
|
2008-12-08 07:23:50 +01:00
|
|
|
self.rexx.setShowdownActionRegex('.*\n(?P<PNAME>.*) shows \[ (?P<CARDS>.*) \]')
|
2008-12-11 18:31:58 +01:00
|
|
|
self.rexx.setCollectPotRegex('.*\n(?P<PNAME>.*) wins \$ (?P<POT>[.\d]+) USD(.*\[ (?P<HAND>.*) \])?')
|
2008-12-06 15:15:41 +01:00
|
|
|
self.rexx.compileRegexes()
|
|
|
|
|
|
|
|
def readSupportedGames(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def determineGameType(self):
|
|
|
|
# Cheating with this regex, only support nlhe at the moment
|
|
|
|
gametype = ["ring", "hold", "nl"]
|
|
|
|
|
|
|
|
m = self.rexx.game_info_re.search(self.obs)
|
|
|
|
gametype = gametype + [m.group('SB')]
|
|
|
|
gametype = gametype + [m.group('BB')]
|
|
|
|
|
|
|
|
return gametype
|
|
|
|
|
|
|
|
def readHandInfo(self, hand):
|
|
|
|
m = self.rexx.hand_info_re.search(hand.string)
|
|
|
|
hand.handid = m.group('HID')
|
|
|
|
hand.tablename = m.group('TABLE')
|
2008-11-12 05:12:18 +01:00
|
|
|
# These work, but the info is already in the Hand class - should be used for tourneys though.
|
2008-11-10 14:02:56 +01:00
|
|
|
# m.group('SB')
|
|
|
|
# m.group('BB')
|
|
|
|
# m.group('GAMETYPE')
|
|
|
|
|
|
|
|
# Believe Everleaf time is GMT/UTC, no transation necessary
|
2008-11-14 06:02:38 +01:00
|
|
|
# Stars format (Nov 10 2008): 2008/11/07 12:38:49 CET [2008/11/07 7:38:49 ET]
|
|
|
|
# or : 2008/11/07 12:38:49 ET
|
2008-11-10 14:02:56 +01:00
|
|
|
# Not getting it in my HH files yet, so using
|
|
|
|
# 2008/11/10 3:58:52 ET
|
|
|
|
#TODO: Do conversion from GMT to ET
|
|
|
|
#TODO: Need some date functions to convert to different timezones (Date::Manip for perl rocked for this)
|
2008-12-06 15:15:41 +01:00
|
|
|
hand.starttime = "%d/%02d/%02d %d:%02d:%02d ET" %(int(m.group('YEAR')), int(m.group('MON')), int(m.group('DAY')),
|
|
|
|
int(m.group('HR')), int(m.group('MIN')), int(m.group('SEC')))
|
|
|
|
hand.buttonpos = int(m.group('BUTTON'))
|
2008-11-10 14:02:56 +01:00
|
|
|
|
2008-12-06 15:15:41 +01:00
|
|
|
def readPlayerStacks(self, hand):
|
|
|
|
m = self.rexx.player_info_re.finditer(hand.string)
|
|
|
|
players = []
|
|
|
|
for a in m:
|
2008-12-08 07:23:50 +01:00
|
|
|
hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'), a.group('CASH'))
|
2008-11-07 11:19:18 +01:00
|
|
|
|
2008-12-06 15:15:41 +01:00
|
|
|
def markStreets(self, hand):
|
|
|
|
# PREFLOP = ** Dealing down cards **
|
2008-12-10 00:30:58 +01:00
|
|
|
# This re fails if, say, river is missing; then we don't get the ** that starts the river.
|
|
|
|
#m = re.search('(\*\* Dealing down cards \*\*\n)(?P<PREFLOP>.*?\n\*\*)?( Dealing Flop \*\* \[ (?P<FLOP1>\S\S), (?P<FLOP2>\S\S), (?P<FLOP3>\S\S) \])?(?P<FLOP>.*?\*\*)?( Dealing Turn \*\* \[ (?P<TURN1>\S\S) \])?(?P<TURN>.*?\*\*)?( Dealing River \*\* \[ (?P<RIVER1>\S\S) \])?(?P<RIVER>.*)', hand.string,re.DOTALL)
|
|
|
|
|
|
|
|
m = re.search(r"\*\* Dealing down cards \*\*(?P<PREFLOP>.+(?=\*\* Dealing Flop \*\*)|.+)"
|
2008-12-10 01:58:10 +01:00
|
|
|
r"(\*\* Dealing Flop \*\* \[ \S\S, \S\S, \S\S \](?P<FLOP>.+(?=\*\* Dealing Turn \*\*)|.+))?"
|
|
|
|
r"(\*\* Dealing Turn \*\* \[ \S\S \](?P<TURN>.+(?=\*\* Dealing River \*\*)|.+))?"
|
|
|
|
r"(\*\* Dealing River \*\* \[ \S\S \](?P<RIVER>.+))?", hand.string,re.DOTALL)
|
2008-12-10 17:30:57 +01:00
|
|
|
|
2008-12-06 15:15:41 +01:00
|
|
|
hand.streets = m
|
|
|
|
|
2008-12-08 07:23:50 +01:00
|
|
|
def readCommunityCards(self, hand):
|
|
|
|
# currently regex in wrong place pls fix my brain's fried
|
|
|
|
re_board = re.compile('\*\* Dealing (?P<STREET>.*) \*\* \[ (?P<CARDS>.*) \]')
|
|
|
|
m = re_board.finditer(hand.string)
|
|
|
|
for street in m:
|
|
|
|
#print street.groups()
|
|
|
|
re_card = re.compile('(?P<CARD>[0-9tjqka][schd])') # look that's weird, hole cards have a capital rank but board cards are lower case?
|
|
|
|
cardsmatch = re_card.finditer(street.group('CARDS'))
|
|
|
|
hand.setCommunityCards(street.group('STREET'), [card.group('CARD') for card in cardsmatch])
|
|
|
|
|
2008-12-06 15:15:41 +01:00
|
|
|
def readBlinds(self, hand):
|
|
|
|
try:
|
|
|
|
m = self.rexx.small_blind_re.search(hand.string)
|
|
|
|
hand.addBlind(m.group('PNAME'), m.group('SB'))
|
|
|
|
#hand.posted = [m.group('PNAME')]
|
|
|
|
except:
|
|
|
|
hand.addBlind(None, 0)
|
|
|
|
#hand.posted = ["FpdbNBP"]
|
|
|
|
m = self.rexx.big_blind_re.finditer(hand.string)
|
|
|
|
for a in m:
|
|
|
|
hand.addBlind(a.group('PNAME'), a.group('BB'))
|
|
|
|
#hand.posted = hand.posted + [a.group('PNAME')]
|
|
|
|
|
|
|
|
def readHeroCards(self, hand):
|
|
|
|
m = self.rexx.hero_cards_re.search(hand.string)
|
|
|
|
if(m == None):
|
|
|
|
#Not involved in hand
|
|
|
|
hand.involved = False
|
|
|
|
else:
|
|
|
|
hand.hero = m.group('PNAME')
|
2008-12-08 07:23:50 +01:00
|
|
|
hand.addHoleCards([m.group('HOLE1'), m.group('HOLE2')], m.group('PNAME'))
|
2008-12-06 15:15:41 +01:00
|
|
|
|
|
|
|
def readAction(self, hand, street):
|
|
|
|
m = self.rexx.action_re.finditer(hand.streets.group(street))
|
|
|
|
hand.actions[street] = []
|
|
|
|
for action in m:
|
2008-12-10 01:48:45 +01:00
|
|
|
if action.group('ATYPE') == ' raises':
|
2008-12-06 15:15:41 +01:00
|
|
|
hand.addRaiseTo( street, action.group('PNAME'), action.group('BET') )
|
2008-12-10 01:48:45 +01:00
|
|
|
elif action.group('ATYPE') == ' calls':
|
2008-12-06 15:15:41 +01:00
|
|
|
hand.addCall( street, action.group('PNAME'), action.group('BET') )
|
2008-12-10 01:48:45 +01:00
|
|
|
elif action.group('ATYPE') == ': bets':
|
2008-12-06 15:15:41 +01:00
|
|
|
hand.addBet( street, action.group('PNAME'), action.group('BET') )
|
2008-12-10 01:48:45 +01:00
|
|
|
elif action.group('ATYPE') == ' folds':
|
|
|
|
hand.addFold( street, action.group('PNAME'))
|
|
|
|
elif action.group('ATYPE') == ' checks':
|
|
|
|
hand.addCheck( street, action.group('PNAME'))
|
2008-12-06 15:15:41 +01:00
|
|
|
else:
|
2008-12-10 01:48:45 +01:00
|
|
|
print "DEBUG: unimplemented readAction: %s %s" %(action.group('PNAME'),action.group('ATYPE'),)
|
|
|
|
#hand.actions[street] += [[action.group('PNAME'), action.group('ATYPE')]]
|
2008-12-06 15:15:41 +01:00
|
|
|
|
|
|
|
|
2008-12-08 07:23:50 +01:00
|
|
|
def readShowdownActions(self, hand):
|
|
|
|
for shows in self.rexx.showdown_action_re.finditer(hand.string):
|
|
|
|
print shows.groups()
|
|
|
|
re_card = re.compile('(?P<CARD>[0-9tjqka][schd])') # copied from earlier
|
|
|
|
cards = [card.group('CARD') for card in re_card.finditer(shows.group('CARDS'))]
|
|
|
|
print cards
|
2008-12-10 17:30:57 +01:00
|
|
|
hand.addShownCards(cards, shows.group('PNAME'))
|
|
|
|
|
2008-12-09 16:32:37 +01:00
|
|
|
def readCollectPot(self,hand):
|
2008-12-14 20:25:04 +01:00
|
|
|
for m in self.rexx.collect_pot_re.finditer(hand.string):
|
2008-12-11 18:31:58 +01:00
|
|
|
if m.group('HAND') is not None:
|
|
|
|
re_card = re.compile('(?P<CARD>[0-9tjqka][schd])') # copied from earlier
|
|
|
|
cards = set([hand.card(card.group('CARD')) for card in re_card.finditer(m.group('HAND'))])
|
|
|
|
hand.addShownCards(cards=None, player=m.group('PNAME'), holeandboard=cards)
|
2008-12-10 01:05:12 +01:00
|
|
|
hand.addCollectPot(player=m.group('PNAME'),pot=m.group('POT'))
|
2008-12-14 20:25:04 +01:00
|
|
|
|
2008-12-08 07:23:50 +01:00
|
|
|
|
2008-12-06 15:15:41 +01:00
|
|
|
def getRake(self, hand):
|
2008-12-14 20:25:04 +01:00
|
|
|
hand.rake = hand.totalpot - hand.totalcollected # * Decimal('0.05') # probably not quite right
|
2008-12-06 15:13:38 +01:00
|
|
|
|
2008-11-07 11:19:18 +01:00
|
|
|
if __name__ == "__main__":
|
2008-12-06 15:15:41 +01:00
|
|
|
c = Configuration.Config()
|
2008-12-11 18:31:58 +01:00
|
|
|
e = Everleaf(c, "regression-test-files/everleaf/Speed_Kuala_full.txt")
|
2008-12-06 15:15:41 +01:00
|
|
|
e.processFile()
|
|
|
|
print str(e)
|
|
|
|
|