First pass at turning file from pokerstats into class
This commit is contained in:
parent
7bc686c859
commit
d6706a5bdf
|
@ -8,6 +8,9 @@
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation, version 3 of the License.
|
# the Free Software Foundation, version 3 of the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# Modified for use in fpdb by Carl Gherardi
|
||||||
|
|
||||||
from errors import *
|
from errors import *
|
||||||
import re
|
import re
|
||||||
import regex
|
import regex
|
||||||
|
@ -22,6 +25,10 @@ import regex
|
||||||
# the hand history title line. Hence, to allow these strangely saved
|
# the hand history title line. Hence, to allow these strangely saved
|
||||||
# hands to be parsed and imported, there is a conditional "one extra
|
# hands to be parsed and imported, there is a conditional "one extra
|
||||||
# character" allowed at the start of the new hand regex.
|
# character" allowed at the start of the new hand regex.
|
||||||
|
|
||||||
|
|
||||||
|
class FpdbRegex:
|
||||||
|
def __init__(self):
|
||||||
__NEW_HAND_REGEX='^.?PokerStars Game #\d+:\s+Hold\'em'
|
__NEW_HAND_REGEX='^.?PokerStars Game #\d+:\s+Hold\'em'
|
||||||
__HAND_INFO_REGEX='^.*#(\d+):\s+(\S+)\s([\s\S]+)\s\(\$?([.0-9]+)/\$?([.0-9]+)\)\s-\s(\S+)\s-?\s?(\S+)\s\(?(\w+)\)?'
|
__HAND_INFO_REGEX='^.*#(\d+):\s+(\S+)\s([\s\S]+)\s\(\$?([.0-9]+)/\$?([.0-9]+)\)\s-\s(\S+)\s-?\s?(\S+)\s\(?(\w+)\)?'
|
||||||
__TABLE_INFO_REGEX='^\S+\s+\'.*\'\s+(\d+)-max\s+Seat\s#(\d+)'
|
__TABLE_INFO_REGEX='^\S+\s+\'.*\'\s+(\d+)-max\s+Seat\s#(\d+)'
|
||||||
|
@ -46,10 +53,12 @@ __ACTION_STEP_REGEX='^(.*):\s(bets|checks|raises|calls|folds)((\s\$([.\d]+))?(\s
|
||||||
__SHOWDOWN_ACTION_REGEX='^(.*):\s(shows|mucks)'
|
__SHOWDOWN_ACTION_REGEX='^(.*):\s(shows|mucks)'
|
||||||
__SUMMARY_CARDS_REGEX='^Seat\s\d+:\s(.*)\s(showed|mucked)\s\[(\S{2})\s(\S{2})\]'
|
__SUMMARY_CARDS_REGEX='^Seat\s\d+:\s(.*)\s(showed|mucked)\s\[(\S{2})\s(\S{2})\]'
|
||||||
__SUMMARY_CARDS_EXTRA_REGEX='^Seat\s\d+:\s(.*)\s(\(.*\)\s)(showed|mucked)\s\[(\S{2})\s(\S{2})\]'
|
__SUMMARY_CARDS_EXTRA_REGEX='^Seat\s\d+:\s(.*)\s(\(.*\)\s)(showed|mucked)\s\[(\S{2})\s(\S{2})\]'
|
||||||
|
self.m = regex.RegexMatch()
|
||||||
|
|
||||||
|
def getRegexes():
|
||||||
|
return self.m
|
||||||
|
|
||||||
def regexes():
|
def compileRegexes():
|
||||||
m = regex.RegexMatch()
|
|
||||||
### Compile the regexes
|
### Compile the regexes
|
||||||
m.hand_start_re = re.compile(__NEW_HAND_REGEX)
|
m.hand_start_re = re.compile(__NEW_HAND_REGEX)
|
||||||
m.hand_info_re = re.compile(__HAND_INFO_REGEX)
|
m.hand_info_re = re.compile(__HAND_INFO_REGEX)
|
||||||
|
@ -74,6 +83,75 @@ def regexes():
|
||||||
m.action_re = re.compile(__ACTION_STEP_REGEX)
|
m.action_re = re.compile(__ACTION_STEP_REGEX)
|
||||||
m.rake_re = re.compile(__POT_AND_RAKE_REGEX)
|
m.rake_re = re.compile(__POT_AND_RAKE_REGEX)
|
||||||
m.showdown_action_re = re.compile(__SHOWDOWN_ACTION_REGEX)
|
m.showdown_action_re = re.compile(__SHOWDOWN_ACTION_REGEX)
|
||||||
###
|
|
||||||
return m
|
# Set methods for plugins to override
|
||||||
|
|
||||||
|
def setNewHandRegex(self, string):
|
||||||
|
__NEW_HAND_REGEX = string
|
||||||
|
|
||||||
|
def setHandInfoRegex(self, string):
|
||||||
|
__HAND_INFO_REGEX = string
|
||||||
|
|
||||||
|
def setTableInfoRegex(self, string):
|
||||||
|
__TABLE_INFO_REGEX = string
|
||||||
|
|
||||||
|
def setPlayerInfoRegex(self, string):
|
||||||
|
__PLAYER_INFO_REGEX = string
|
||||||
|
|
||||||
|
def setPostSbRegex(self, string):
|
||||||
|
__POST_SB_REGEX = string
|
||||||
|
|
||||||
|
def setPostBbRegex(self, string):
|
||||||
|
__POST_BB_REGEX = string
|
||||||
|
|
||||||
|
def setPostBothRegex(self, string):
|
||||||
|
__POST_BOTH_REGEX = string
|
||||||
|
|
||||||
|
def setHandStageRegex(self, string):
|
||||||
|
__HAND_STAGE_REGEX = string
|
||||||
|
|
||||||
|
def setHoleCardRegex(self, string):
|
||||||
|
__HOLE_CARD_REGEX = string
|
||||||
|
|
||||||
|
def setFlopCardRegex(self, string):
|
||||||
|
__FLOP_CARD_REGEX = string
|
||||||
|
|
||||||
|
def setTurnCardRegex(self, string):
|
||||||
|
__TURN_CARD_REGEX = string
|
||||||
|
|
||||||
|
def setRiverCardRegex(self, string):
|
||||||
|
__RIVER_CARD_REGEX = string
|
||||||
|
|
||||||
|
def setShowdownRegex(self, string):
|
||||||
|
__SHOWDOWN_REGEX = string
|
||||||
|
|
||||||
|
def setSummaryRegex(self, string):
|
||||||
|
__SUMMARY_REGEX = string
|
||||||
|
|
||||||
|
def setUncalledBetRegex(self, string):
|
||||||
|
__UNCALLED_BET_REGEX = string
|
||||||
|
|
||||||
|
def setCollectPotRegex(self, string):
|
||||||
|
__COLLECT_POT_REGEX = string
|
||||||
|
|
||||||
|
def setPocketCardsRegex(self, string):
|
||||||
|
__POCKET_CARDS_REGEX = string
|
||||||
|
|
||||||
|
def setShownCardsRegex(self, string):
|
||||||
|
__SHOWN_CARDS_REGEX = string
|
||||||
|
|
||||||
|
def setSummaryCardsRegex(self, string):
|
||||||
|
__SUMMARY_CARDS_REGEX = string
|
||||||
|
|
||||||
|
def setSummaryCardsExtraRegex(self, string):
|
||||||
|
__SUMMARY_CARDS_EXTRA_REGEX = string
|
||||||
|
|
||||||
|
def setActionStepRegex(self, string):
|
||||||
|
__ACTION_STEP_REGEX = string
|
||||||
|
|
||||||
|
def setPotAndRakeRegex(self, string):
|
||||||
|
__POT_AND_RAKE_REGEX = string
|
||||||
|
|
||||||
|
def setShowdownActionRegex(self, string):
|
||||||
|
__SHOWDOWN_ACTION_REGEX = string
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user