Replayer: Switch over to Hand.select()

This commit is contained in:
Worros 2010-12-22 13:03:45 +08:00
parent 10fc52e96f
commit f31d0cbfc8

View File

@ -249,7 +249,7 @@ class GuiReplayer:
be replaced by a function to select a hand from the db in the not so distant future. be replaced by a function to select a hand from the db in the not so distant future.
This code has been shamelessly stolen from Carl This code has been shamelessly stolen from Carl
""" """
if True: if False:
settings = {} settings = {}
settings.update(self.conf.get_db_parameters()) settings.update(self.conf.get_db_parameters())
settings.update(self.conf.get_import_parameters()) settings.update(self.conf.get_import_parameters())
@ -276,7 +276,7 @@ class GuiReplayer:
# for the Hand.__init__ # for the Hand.__init__
####### Shift this section in Database.py for all to use ###### ####### Shift this section in Database.py for all to use ######
handid = 40 handid = 2
q = self.sql.query['get_gameinfo_from_hid'] q = self.sql.query['get_gameinfo_from_hid']
q = q.replace('%s', self.sql.query['placeholder']) q = q.replace('%s', self.sql.query['placeholder'])
@ -295,6 +295,7 @@ class GuiReplayer:
print "DEBUG: Create stud hand here" print "DEBUG: Create stud hand here"
elif gametype['base'] == 'draw': elif gametype['base'] == 'draw':
print "DEBUG: Create draw hand here" print "DEBUG: Create draw hand here"
return h
def temp(self): def temp(self):
pass pass