Support tournaments
This commit is contained in:
parent
43f64dda3d
commit
036729b8c2
|
@ -142,12 +142,17 @@ class Database:
|
||||||
cards[s_dict['seat_number']] = s_dict
|
cards[s_dict['seat_number']] = s_dict
|
||||||
return (cards)
|
return (cards)
|
||||||
|
|
||||||
def get_stats_from_hand(self, hand, player_id = False):
|
def get_stats_from_hand(self, hand, aggregate = False):
|
||||||
c = self.connection.cursor()
|
c = self.connection.cursor()
|
||||||
|
|
||||||
if not player_id: player_id = "%"
|
if aggregate:
|
||||||
|
query = 'get_stats_from_hand'
|
||||||
|
subs = (hand, hand)
|
||||||
|
else:
|
||||||
|
query = 'get_stats_from_hand_aggregated'
|
||||||
|
subs = (hand, hand, hand)
|
||||||
|
|
||||||
# get the players in the hand and their seats
|
# get the players in the hand and their seats
|
||||||
# c.execute(self.sql.query['get_players_from_hand'], (hand, player_id))
|
|
||||||
c.execute(self.sql.query['get_players_from_hand'], (hand, ))
|
c.execute(self.sql.query['get_players_from_hand'], (hand, ))
|
||||||
names = {}
|
names = {}
|
||||||
seats = {}
|
seats = {}
|
||||||
|
@ -156,8 +161,7 @@ class Database:
|
||||||
seats[row[0]] = row[1]
|
seats[row[0]] = row[1]
|
||||||
|
|
||||||
# now get the stats
|
# now get the stats
|
||||||
# c.execute(self.sql.query['get_stats_from_hand'], (hand, hand, player_id))
|
c.execute(self.sql.query[query], subs)
|
||||||
c.execute(self.sql.query['get_stats_from_hand'], (hand, hand))
|
|
||||||
colnames = [desc[0] for desc in c.description]
|
colnames = [desc[0] for desc in c.description]
|
||||||
stat_dict = {}
|
stat_dict = {}
|
||||||
for row in c.fetchall():
|
for row in c.fetchall():
|
||||||
|
|
|
@ -92,7 +92,8 @@ def read_stdin(): # This is the thread function
|
||||||
global hud_dict
|
global hud_dict
|
||||||
|
|
||||||
db_connection = Database.Database(config, db_name, 'temp')
|
db_connection = Database.Database(config, db_name, 'temp')
|
||||||
# tourny_finder = re.compile('(\d+) (\d+)')
|
tourny_finder = re.compile('(\d+) (\d+)')
|
||||||
|
print tourny_finder
|
||||||
|
|
||||||
while True: # wait for a new hand number on stdin
|
while True: # wait for a new hand number on stdin
|
||||||
new_hand_id = sys.stdin.readline()
|
new_hand_id = sys.stdin.readline()
|
||||||
|
@ -110,11 +111,14 @@ def read_stdin(): # This is the thread function
|
||||||
|
|
||||||
# find out if this hand is from a tournament
|
# find out if this hand is from a tournament
|
||||||
is_tournament = False
|
is_tournament = False
|
||||||
# (t_number, s_number) = (0, 0)
|
(tour_number, tab_number) = (0, 0)
|
||||||
# mat_obj = tourny_finder(table_name)
|
mat_obj = tourny_finder.search(table_name)
|
||||||
# if len(mat_obj.groups) == 2:
|
# if len(mat_obj.groups) == 2:
|
||||||
# is_tournament = True
|
if mat_obj:
|
||||||
# (t_number, s_number) = mat_obj.group(1, 2)
|
print "found tournament",
|
||||||
|
is_tournament = True
|
||||||
|
(tour_number, tab_number) = mat_obj.group(1, 2)
|
||||||
|
print " number = %s, table = %s" % (tour_number, tab_number)
|
||||||
|
|
||||||
stat_dict = db_connection.get_stats_from_hand(new_hand_id)
|
stat_dict = db_connection.get_stats_from_hand(new_hand_id)
|
||||||
|
|
||||||
|
@ -122,16 +126,17 @@ def read_stdin(): # This is the thread function
|
||||||
if hud_dict.has_key(table_name):
|
if hud_dict.has_key(table_name):
|
||||||
update_HUD(new_hand_id, table_name, config, stat_dict)
|
update_HUD(new_hand_id, table_name, config, stat_dict)
|
||||||
# if a hud for this TOURNAMENT table exists, just update it
|
# if a hud for this TOURNAMENT table exists, just update it
|
||||||
# elif hud_dict.has_key(t_number):
|
elif hud_dict.has_key(tour_number):
|
||||||
# update_HUD(new_hand_id, t_number, config, stat_dict)
|
update_HUD(new_hand_id, tour_number, config, stat_dict)
|
||||||
# otherwise create a new hud
|
# otherwise create a new hud
|
||||||
else:
|
else:
|
||||||
if is_tournament:
|
if is_tournament:
|
||||||
tablewindow = Tables.discover_tournament_table(config, t_number, s_number)
|
tablewindow = Tables.discover_tournament_table(config, tour_number, tab_number)
|
||||||
|
print tablewindow
|
||||||
if tablewindow == None:
|
if tablewindow == None:
|
||||||
sys.stderr.write("table name "+table_name+" not found\n")
|
sys.stderr.write("tournament %s, table %s not found\n" % (tour_number, tab_number))
|
||||||
else:
|
else:
|
||||||
create_HUD(new_hand_id, tablewindow, db_name, t_number, max, poker_game, db_connection, config, stat_dict)
|
create_HUD(new_hand_id, tablewindow, db_name, tour_number, max, poker_game, db_connection, config, stat_dict)
|
||||||
else:
|
else:
|
||||||
tablewindow = Tables.discover_table_by_name(config, table_name)
|
tablewindow = Tables.discover_table_by_name(config, table_name)
|
||||||
if tablewindow == None:
|
if tablewindow == None:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user