130 lines
5.8 KiB
Python
130 lines
5.8 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#Copyright 2008-2010 Steffen Schaumburg
|
|
#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.
|
|
|
|
"""pokerstars-specific summary parsing code"""
|
|
|
|
import L10n
|
|
_ = L10n.get_translation()
|
|
|
|
from decimal import Decimal
|
|
import datetime
|
|
|
|
from Exceptions import FpdbParseError
|
|
from HandHistoryConverter import *
|
|
import PokerStarsToFpdb
|
|
from TourneySummary import *
|
|
|
|
class FullTiltPokerSummary(TourneySummary):
|
|
limits = { 'No Limit':'nl', 'Pot Limit':'pl', 'Limit':'fl', 'LIMIT':'fl' }
|
|
games = { # base, category
|
|
"Hold'em" : ('hold','holdem'),
|
|
'Omaha' : ('hold','omahahi'),
|
|
'Omaha Hi/Lo' : ('hold','omahahilo'),
|
|
'Razz' : ('stud','razz'),
|
|
'RAZZ' : ('stud','razz'),
|
|
'7 Card Stud' : ('stud','studhi'),
|
|
'7 Card Stud Hi/Lo' : ('stud','studhilo'),
|
|
'Badugi' : ('draw','badugi'),
|
|
'Triple Draw 2-7 Lowball' : ('draw','27_3draw'),
|
|
'5 Card Draw' : ('draw','fivedraw')
|
|
}
|
|
|
|
substitutions = {
|
|
'LEGAL_ISO' : "USD|EUR|GBP|CAD|FPP", # legal ISO currency codes
|
|
'LS' : "\$|\xe2\x82\xac|" # legal currency symbols - Euro(cp1252, utf-8)
|
|
}
|
|
|
|
re_SplitTourneys = re.compile("^Full Tilt Poker Tournament Summary")
|
|
|
|
re_TourNo = re.compile("\#(?P<TOURNO>[0-9]+),")
|
|
|
|
re_TourneyInfo = re.compile(u"""
|
|
\s.*
|
|
(?P<TYPE>Tournament|Sit\s\&\sGo)\s\((?P<TOURNO>[0-9]+)\)(\s+)?
|
|
(?P<GAME>Hold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s+
|
|
(?P<LIMIT>No\sLimit|Limit|LIMIT|Pot\sLimit)\s+
|
|
(Buy-In:\s\$(?P<BUYIN>[.\d]+)(\s\+\s\$(?P<FEE>[.\d]+))?\s+)?
|
|
(Buy-In\sChips:\s(?P<CHIPS>\d+)\s+)?
|
|
(?P<ENTRIES>[0-9]+)\sEntries\s+
|
|
(\$?(?P<ADDED>[.\d]+)\sadded\sto\sthe\sprize\spool\sby\sPokerStars\.com\s+)?
|
|
(Total\sPrize\sPool:\s\$?(?P<PRIZEPOOL>[.0-9]+)\s+)?
|
|
(Target\sTournament\s.*)?
|
|
Tournament\sstarted:\s
|
|
(?P<Y>[\d]{4})\/(?P<M>[\d]{2})\/(?P<D>[\d]+)\s+(?P<H>[\d]+):(?P<MIN>[\d]+):(?P<S>[\d]+)\s??(?P<TZ>[A-Z]+)\s
|
|
""" % substitutions ,re.VERBOSE|re.MULTILINE|re.DOTALL)
|
|
|
|
re_Currency = re.compile(u"""(?P<CURRENCY>[%(LS)s]|FPP)""" % substitutions)
|
|
|
|
re_Player = re.compile(u"""(?P<RANK>[\d]+):\s(?P<NAME>[^,\r\n]{2,15})(,(\s)?\$(?P<WINNINGS>[.\d]+))?""")
|
|
|
|
re_DateTime = re.compile("\[(?P<Y>[0-9]{4})\/(?P<M>[0-9]{2})\/(?P<D>[0-9]{2})[\- ]+(?P<H>[0-9]+):(?P<MIN>[0-9]+):(?P<S>[0-9]+)")
|
|
|
|
codepage = ["utf-16", "cp1252", "utf-8"]
|
|
|
|
def parseSummary(self):
|
|
m = self.re_TourneyInfo.search(self.summaryText)
|
|
if m == None:
|
|
tmp = self.summaryText[0:200]
|
|
log.error(_("parseSummary: Unable to recognise Tourney Info: '%s'") % tmp)
|
|
log.error(_("parseSummary: Raising FpdbParseError"))
|
|
raise FpdbParseError(_("Unable to recognise Tourney Info: '%s'") % tmp)
|
|
|
|
print "DEBUG: m.groupdict(): %s" % m.groupdict()
|
|
|
|
mg = m.groupdict()
|
|
if 'TOURNO' in mg: self.tourNo = mg['TOURNO']
|
|
if 'LIMIT' in mg: self.gametype['limitType'] = self.limits[mg['LIMIT']]
|
|
if 'GAME' in mg: self.gametype['category'] = self.games[mg['GAME']][1]
|
|
if mg['BUYIN'] != None:
|
|
self.buyin = int(100*Decimal(mg['BUYIN']))
|
|
if mg['FEE'] != None:
|
|
self.fee = int(100*Decimal(mg['FEE']))
|
|
if 'PRIZEPOOL' in mg: self.prizepool = mg['PRIZEPOOL']
|
|
if 'ENTRIES' in mg: self.entries = mg['ENTRIES']
|
|
|
|
datetimestr = "%s/%s/%s %s:%s:%s" % (mg['Y'], mg['M'], mg['D'], mg['H'], mg['MIN'], mg['S'])
|
|
self.startTime = datetime.datetime.strptime(datetimestr, "%Y/%m/%d %H:%M:%S")
|
|
|
|
if 'TZ' in mg:
|
|
self.startTime = HandHistoryConverter.changeTimezone(self.startTime, mg['TZ'], "UTC")
|
|
|
|
|
|
m = self.re_Currency.search(self.summaryText)
|
|
if m == None:
|
|
log.error(_("parseSummary: Unable to locate currency"))
|
|
log.error(_("parseSummary: Raising FpdbParseError"))
|
|
raise FpdbParseError(_("Unable to locate currency"))
|
|
#print "DEBUG: m.groupdict(): %s" % m.groupdict()
|
|
|
|
mg = m.groupdict()
|
|
if mg['CURRENCY'] == "$": self.currency = "USD"
|
|
elif mg['CURRENCY'] == u"€": self.currency="EUR"
|
|
elif mg['CURRENCY'] == "FPP": self.currency="PSFP"
|
|
|
|
m = self.re_Player.finditer(self.summaryText)
|
|
for a in m:
|
|
mg = a.groupdict()
|
|
print "DEBUG: a.groupdict(): %s" % mg
|
|
name = mg['NAME']
|
|
rank = mg['RANK']
|
|
winnings = 0
|
|
|
|
if 'WINNINGS' in mg and mg['WINNINGS'] != None:
|
|
winnings = int(100*Decimal(mg['WINNINGS']))
|
|
self.addPlayer(rank, name, winnings, self.currency, None, None, None)
|
|
|