Added freeroll support for Pokerstars
This commit is contained in:
		
							parent
							
								
									6fa3d693d9
								
							
						
					
					
						commit
						562f21f548
					
				|  | @ -46,9 +46,9 @@ class PokerStars(HandHistoryConverter): | ||||||
|           PokerStars\sGame\s\#(?P<HID>[0-9]+):\s+ |           PokerStars\sGame\s\#(?P<HID>[0-9]+):\s+ | ||||||
|           (Tournament\s\#                # open paren of tournament info |           (Tournament\s\#                # open paren of tournament info | ||||||
|           (?P<TOURNO>\d+),\s |           (?P<TOURNO>\d+),\s | ||||||
|           (?P<BUYIN>[%(LS)s\+\d\.]+      # here's how I plan to use LS |           # here's how I plan to use LS | ||||||
|           \s?(?P<TOUR_ISO>%(LEGAL_ISO)s)? |           (?P<BUYIN>([%(LS)s\+\d\.]+\s?(?P<TOUR_ISO>%(LEGAL_ISO)s)?)|Freeroll)\s+)?                           | ||||||
|           )\s)?                          # close paren of tournament info |           # close paren of tournament info | ||||||
|           (?P<MIXED>HORSE|8\-Game|HOSE)?\s?\(? |           (?P<MIXED>HORSE|8\-Game|HOSE)?\s?\(? | ||||||
|           (?P<GAME>Hold\'em|Razz|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s |           (?P<GAME>Hold\'em|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|Pot\sLimit)\)?,?\s |           (?P<LIMIT>No\sLimit|Limit|Pot\sLimit)\)?,?\s | ||||||
|  | @ -205,9 +205,12 @@ class PokerStars(HandHistoryConverter): | ||||||
|             if key == 'TOURNO': |             if key == 'TOURNO': | ||||||
|                 hand.tourNo = info[key] |                 hand.tourNo = info[key] | ||||||
|             if key == 'BUYIN': |             if key == 'BUYIN': | ||||||
|                 #FIXME: The key looks like: '€0.82+€0.18 EUR' |                 if info[key] == 'Freeroll': | ||||||
|                 #       This should be parsed properly and used |                     hand.buyin = '$0+$0' | ||||||
|                 hand.buyin = info[key] |                 else: | ||||||
|  |                     #FIXME: The key looks like: '€0.82+€0.18 EUR' | ||||||
|  |                     #       This should be parsed properly and used | ||||||
|  |                     hand.buyin = info[key] | ||||||
|             if key == 'LEVEL': |             if key == 'LEVEL': | ||||||
|                 hand.level = info[key] |                 hand.level = info[key] | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user