PKR: Make note about actions
This commit is contained in:
parent
e24e722141
commit
1acbe15b34
|
@ -239,6 +239,7 @@ class Pkr(HandHistoryConverter):
|
||||||
if players.has_key(a.group('PNAME')):
|
if players.has_key(a.group('PNAME')):
|
||||||
pass # Ignore
|
pass # Ignore
|
||||||
else:
|
else:
|
||||||
|
#print "DEBUG: addPlayer(%s, %s, %s)" % (a.group('SEAT'), a.group('PNAME'), a.group('CASH'))
|
||||||
hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'), a.group('CASH'))
|
hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'), a.group('CASH'))
|
||||||
players[a.group('PNAME')] = True
|
players[a.group('PNAME')] = True
|
||||||
|
|
||||||
|
@ -335,9 +336,16 @@ class Pkr(HandHistoryConverter):
|
||||||
m = self.re_Action.finditer(hand.streets[street])
|
m = self.re_Action.finditer(hand.streets[street])
|
||||||
for action in m:
|
for action in m:
|
||||||
acts = action.groupdict()
|
acts = action.groupdict()
|
||||||
|
#print "DEBUG: readAction: acts: %s" % acts
|
||||||
if action.group('ATYPE') == ' raises':
|
if action.group('ATYPE') == ' raises':
|
||||||
hand.addRaiseTo( street, action.group('PNAME'), action.group('BET') )
|
hand.addRaiseTo( street, action.group('PNAME'), action.group('BET') )
|
||||||
elif action.group('ATYPE') == ' calls':
|
elif action.group('ATYPE') == ' calls':
|
||||||
|
# Amount in hand history is not cumulative
|
||||||
|
# ie. Player3 calls 0.08
|
||||||
|
# Player5 raises to 0.16
|
||||||
|
# Player3 calls 0.16 (Doh! he's only calling 0.08
|
||||||
|
# TODO: Going to have to write an addCallStoopid()
|
||||||
|
#print "DEBUG: addCall( %s, %s, None)" %(street,action.group('PNAME'))
|
||||||
hand.addCall( street, action.group('PNAME'), action.group('BET') )
|
hand.addCall( street, action.group('PNAME'), action.group('BET') )
|
||||||
elif action.group('ATYPE') == ' bets':
|
elif action.group('ATYPE') == ' bets':
|
||||||
hand.addBet( street, action.group('PNAME'), action.group('BET') )
|
hand.addBet( street, action.group('PNAME'), action.group('BET') )
|
||||||
|
|
Loading…
Reference in New Issue
Block a user