2008-08-19 00:53:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""Configuration.py
|
|
|
|
|
|
|
|
Handles HUD configuration files.
|
|
|
|
"""
|
|
|
|
# Copyright 2008, Ray E. Barker
|
|
|
|
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
|
|
|
|
# Standard Library modules
|
2008-09-27 01:21:38 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2008-10-05 02:22:53 +02:00
|
|
|
import string
|
2008-09-29 16:12:04 +02:00
|
|
|
import traceback
|
2008-09-15 22:31:55 +02:00
|
|
|
import shutil
|
2008-08-19 00:53:25 +02:00
|
|
|
import xml.dom.minidom
|
|
|
|
from xml.dom.minidom import Node
|
|
|
|
|
|
|
|
class Layout:
|
|
|
|
def __init__(self, max):
|
|
|
|
self.max = int(max)
|
|
|
|
self.location = []
|
|
|
|
for i in range(self.max + 1): self.location.append(None)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
temp = " Layout = %d max, width= %d, height = %d, fav_seat = %d\n" % (self.max, self.width, self.height, self.fav_seat)
|
|
|
|
temp = temp + " Locations = "
|
|
|
|
for i in range(1, len(self.location)):
|
|
|
|
temp = temp + "(%d,%d)" % self.location[i]
|
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
return temp + "\n"
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
class Site:
|
|
|
|
def __init__(self, node):
|
|
|
|
self.site_name = node.getAttribute("site_name")
|
|
|
|
self.table_finder = node.getAttribute("table_finder")
|
|
|
|
self.screen_name = node.getAttribute("screen_name")
|
|
|
|
self.site_path = node.getAttribute("site_path")
|
|
|
|
self.HH_path = node.getAttribute("HH_path")
|
|
|
|
self.decoder = node.getAttribute("decoder")
|
2008-10-27 12:12:04 +01:00
|
|
|
self.hudopacity = node.getAttribute("hudopacity")
|
2008-10-27 11:29:39 +01:00
|
|
|
self.hudbgcolor = node.getAttribute("bgcolor")
|
|
|
|
self.hudfgcolor = node.getAttribute("fgcolor")
|
2008-11-04 10:40:03 +01:00
|
|
|
self.converter = node.getAttribute("converter")
|
2008-11-06 06:39:49 +01:00
|
|
|
self.enabled = node.getAttribute("enabled")
|
2008-08-19 00:53:25 +02:00
|
|
|
self.layout = {}
|
|
|
|
|
|
|
|
for layout_node in node.getElementsByTagName('layout'):
|
|
|
|
max = int( layout_node.getAttribute('max') )
|
|
|
|
lo = Layout(max)
|
|
|
|
lo.fav_seat = int( layout_node.getAttribute('fav_seat') )
|
|
|
|
lo.width = int( layout_node.getAttribute('width') )
|
|
|
|
lo.height = int( layout_node.getAttribute('height') )
|
|
|
|
|
|
|
|
for location_node in layout_node.getElementsByTagName('location'):
|
|
|
|
lo.location[int( location_node.getAttribute('seat') )] = (int( location_node.getAttribute('x') ), int( location_node.getAttribute('y')))
|
|
|
|
|
|
|
|
self.layout[lo.max] = lo
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
temp = "Site = " + self.site_name + "\n"
|
|
|
|
for key in dir(self):
|
|
|
|
if key.startswith('__'): continue
|
|
|
|
if key == 'layout': continue
|
|
|
|
value = getattr(self, key)
|
|
|
|
if callable(value): continue
|
2008-10-30 03:37:05 +01:00
|
|
|
temp = temp + ' ' + key + " = " + str(value) + "\n"
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
for layout in self.layout:
|
|
|
|
temp = temp + "%s" % self.layout[layout]
|
|
|
|
|
|
|
|
return temp
|
|
|
|
|
|
|
|
class Stat:
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __str__(self):
|
2008-09-15 22:31:55 +02:00
|
|
|
temp = " stat_name = %s, row = %d, col = %d, tip = %s, click = %s, popup = %s\n" % (self.stat_name, self.row, self.col, self.tip, self.click, self.popup)
|
2008-08-19 00:53:25 +02:00
|
|
|
return temp
|
|
|
|
|
|
|
|
class Game:
|
|
|
|
def __init__(self, node):
|
|
|
|
self.game_name = node.getAttribute("game_name")
|
|
|
|
self.db = node.getAttribute("db")
|
|
|
|
self.rows = int( node.getAttribute("rows") )
|
|
|
|
self.cols = int( node.getAttribute("cols") )
|
|
|
|
|
|
|
|
self.stats = {}
|
|
|
|
for stat_node in node.getElementsByTagName('stat'):
|
|
|
|
stat = Stat()
|
|
|
|
stat.stat_name = stat_node.getAttribute("stat_name")
|
|
|
|
stat.row = int( stat_node.getAttribute("row") )
|
|
|
|
stat.col = int( stat_node.getAttribute("col") )
|
|
|
|
stat.tip = stat_node.getAttribute("tip")
|
|
|
|
stat.click = stat_node.getAttribute("click")
|
2008-09-15 22:31:55 +02:00
|
|
|
stat.popup = stat_node.getAttribute("popup")
|
2008-11-02 11:20:25 +01:00
|
|
|
stat.hudprefix = stat_node.getAttribute("hudprefix")
|
|
|
|
stat.hudsuffix = stat_node.getAttribute("hudsuffix")
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
self.stats[stat.stat_name] = stat
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
temp = "Game = " + self.game_name + "\n"
|
|
|
|
temp = temp + " db = %s\n" % self.db
|
|
|
|
temp = temp + " rows = %d\n" % self.rows
|
|
|
|
temp = temp + " cols = %d\n" % self.cols
|
|
|
|
|
|
|
|
for stat in self.stats.keys():
|
|
|
|
temp = temp + "%s" % self.stats[stat]
|
|
|
|
|
|
|
|
return temp
|
|
|
|
|
|
|
|
class Database:
|
|
|
|
def __init__(self, node):
|
|
|
|
self.db_name = node.getAttribute("db_name")
|
|
|
|
self.db_server = node.getAttribute("db_server")
|
|
|
|
self.db_ip = node.getAttribute("db_ip")
|
|
|
|
self.db_user = node.getAttribute("db_user")
|
|
|
|
self.db_type = node.getAttribute("db_type")
|
|
|
|
self.db_pass = node.getAttribute("db_pass")
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
temp = 'Database = ' + self.db_name + '\n'
|
|
|
|
for key in dir(self):
|
|
|
|
if key.startswith('__'): continue
|
|
|
|
value = getattr(self, key)
|
|
|
|
if callable(value): continue
|
|
|
|
temp = temp + ' ' + key + " = " + value + "\n"
|
|
|
|
return temp
|
|
|
|
|
|
|
|
class Mucked:
|
|
|
|
def __init__(self, node):
|
|
|
|
self.name = node.getAttribute("mw_name")
|
|
|
|
self.cards = node.getAttribute("deck")
|
|
|
|
self.card_wd = node.getAttribute("card_wd")
|
|
|
|
self.card_ht = node.getAttribute("card_ht")
|
|
|
|
self.rows = node.getAttribute("rows")
|
|
|
|
self.cols = node.getAttribute("cols")
|
|
|
|
self.format = node.getAttribute("stud")
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
temp = 'Mucked = ' + self.name + "\n"
|
|
|
|
for key in dir(self):
|
|
|
|
if key.startswith('__'): continue
|
|
|
|
value = getattr(self, key)
|
|
|
|
if callable(value): continue
|
|
|
|
temp = temp + ' ' + key + " = " + value + "\n"
|
|
|
|
return temp
|
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
class Popup:
|
|
|
|
def __init__(self, node):
|
|
|
|
self.name = node.getAttribute("pu_name")
|
|
|
|
self.pu_stats = []
|
|
|
|
for stat_node in node.getElementsByTagName('pu_stat'):
|
|
|
|
self.pu_stats.append(stat_node.getAttribute("pu_stat_name"))
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
temp = "Popup = " + self.name + "\n"
|
|
|
|
for stat in self.pu_stats:
|
|
|
|
temp = temp + " " + stat
|
|
|
|
return temp + "\n"
|
|
|
|
|
2008-10-21 16:22:01 +02:00
|
|
|
class Import:
|
|
|
|
def __init__(self, node):
|
|
|
|
self.interval = node.getAttribute("interval")
|
|
|
|
self.callFpdbHud = node.getAttribute("callFpdbHud")
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return " interval = %s\n callFpdbHud = %s\n" % (self.interval, self.callFpdbHud)
|
|
|
|
|
|
|
|
class Tv:
|
|
|
|
def __init__(self, node):
|
|
|
|
self.combinedStealFold = node.getAttribute("combinedStealFold")
|
|
|
|
self.combined2B3B = node.getAttribute("combined2B3B")
|
|
|
|
self.combinedPostflop = node.getAttribute("combinedPostflop")
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return (" combinedStealFold = %s\n combined2B3B = %s\n combinedPostflop = %s\n" %
|
|
|
|
(self.combinedStealFold, self.combined2B3B, self.combinedPostflop) )
|
|
|
|
|
2008-08-19 00:53:25 +02:00
|
|
|
class Config:
|
2008-09-27 01:21:38 +02:00
|
|
|
def __init__(self, file = None):
|
|
|
|
|
|
|
|
# "file" is a path to an xml file with the fpdb/HUD configuration
|
|
|
|
# we check the existence of "file" and try to recover if it doesn't exist
|
|
|
|
|
2008-11-05 11:49:05 +01:00
|
|
|
self.default_config_path = self.get_default_config_path()
|
2008-09-27 01:21:38 +02:00
|
|
|
if not file == None: # configuration file path has been passed
|
|
|
|
if not os.path.exists(file):
|
|
|
|
print "Configuration file %s not found. Using defaults." % (file)
|
|
|
|
sys.stderr.write("Configuration file %s not found. Using defaults." % (file))
|
|
|
|
file = None
|
|
|
|
|
|
|
|
if file == None: # configuration file path not passed or invalid
|
2008-11-03 04:58:55 +01:00
|
|
|
file = self.find_config() #Look for a config file in the normal places
|
|
|
|
|
|
|
|
if file == None: # no config file in the normal places
|
|
|
|
file = self.find_example_config() #Look for an example file to edit
|
2008-11-05 11:49:05 +01:00
|
|
|
if not file == None:
|
|
|
|
pass
|
2008-11-03 04:58:55 +01:00
|
|
|
|
|
|
|
if file == None: # that didn't work either, just die
|
|
|
|
print "No HUD_config_xml found. Exiting"
|
|
|
|
sys.stderr.write("No HUD_config_xml found. Exiting")
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
# Parse even if there was no real config file found and we are using the example
|
|
|
|
# If using the example, we'll edit it later
|
2008-09-29 16:12:04 +02:00
|
|
|
try:
|
2008-10-21 16:22:01 +02:00
|
|
|
print "Reading configuration file %s\n" % (file)
|
2008-09-29 16:12:04 +02:00
|
|
|
doc = xml.dom.minidom.parse(file)
|
|
|
|
except:
|
|
|
|
print "Error parsing %s. See error log file." % (file)
|
|
|
|
traceback.print_exc(file=sys.stderr)
|
|
|
|
print "press enter to continue"
|
|
|
|
sys.stdin.readline()
|
|
|
|
sys.exit()
|
2008-08-19 00:53:25 +02:00
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
self.doc = doc
|
|
|
|
self.file = file
|
2008-08-19 00:53:25 +02:00
|
|
|
self.supported_sites = {}
|
|
|
|
self.supported_games = {}
|
|
|
|
self.supported_databases = {}
|
|
|
|
self.mucked_windows = {}
|
2008-09-15 22:31:55 +02:00
|
|
|
self.popup_windows = {}
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
# s_sites = doc.getElementsByTagName("supported_sites")
|
|
|
|
for site_node in doc.getElementsByTagName("site"):
|
|
|
|
site = Site(node = site_node)
|
|
|
|
self.supported_sites[site.site_name] = site
|
|
|
|
|
2008-10-21 16:22:01 +02:00
|
|
|
# s_games = doc.getElementsByTagName("supported_games")
|
2008-08-19 00:53:25 +02:00
|
|
|
for game_node in doc.getElementsByTagName("game"):
|
|
|
|
game = Game(node = game_node)
|
|
|
|
self.supported_games[game.game_name] = game
|
|
|
|
|
2008-10-21 16:22:01 +02:00
|
|
|
# s_dbs = doc.getElementsByTagName("supported_databases")
|
2008-08-19 00:53:25 +02:00
|
|
|
for db_node in doc.getElementsByTagName("database"):
|
|
|
|
db = Database(node = db_node)
|
|
|
|
self.supported_databases[db.db_name] = db
|
|
|
|
|
2008-10-21 16:22:01 +02:00
|
|
|
# s_dbs = doc.getElementsByTagName("mucked_windows")
|
2008-08-19 00:53:25 +02:00
|
|
|
for mw_node in doc.getElementsByTagName("mw"):
|
|
|
|
mw = Mucked(node = mw_node)
|
|
|
|
self.mucked_windows[mw.name] = mw
|
|
|
|
|
2008-10-21 16:22:01 +02:00
|
|
|
# s_dbs = doc.getElementsByTagName("popup_windows")
|
2008-09-15 22:31:55 +02:00
|
|
|
for pu_node in doc.getElementsByTagName("pu"):
|
|
|
|
pu = Popup(node = pu_node)
|
|
|
|
self.popup_windows[pu.name] = pu
|
|
|
|
|
2008-10-21 16:22:01 +02:00
|
|
|
for imp_node in doc.getElementsByTagName("import"):
|
|
|
|
imp = Import(node = imp_node)
|
|
|
|
self.imp = imp
|
|
|
|
|
|
|
|
for tv_node in doc.getElementsByTagName("tv"):
|
|
|
|
tv = Tv(node = tv_node)
|
|
|
|
self.tv = tv
|
|
|
|
|
2008-11-03 04:58:55 +01:00
|
|
|
db = self.get_db_parameters('fpdb')
|
|
|
|
if db['db-password'] == 'YOUR MYSQL PASSWORD':
|
|
|
|
df_file = self.find_default_conf()
|
|
|
|
if df_file == None: # this is bad
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
df_parms = self.read_default_conf(df_file)
|
2008-11-05 11:49:05 +01:00
|
|
|
self.set_db_parameters(db_name = 'fpdb', db_ip = df_parms['db-host'],
|
|
|
|
db_user = df_parms['db-user'],
|
|
|
|
db_pass = df_parms['db-password'])
|
|
|
|
self.save(file=os.path.join(self.default_config_path, "HUD_config.xml"))
|
|
|
|
|
2008-11-03 04:58:55 +01:00
|
|
|
|
|
|
|
def find_config(self):
|
2008-11-05 11:49:05 +01:00
|
|
|
"""Looks in cwd and in self.default_config_path for a config file."""
|
2008-11-03 04:58:55 +01:00
|
|
|
if os.path.exists('HUD_config.xml'): # there is a HUD_config in the cwd
|
|
|
|
file = 'HUD_config.xml' # so we use it
|
|
|
|
else: # no HUD_config in the cwd, look where it should be in the first place
|
2008-11-05 11:49:05 +01:00
|
|
|
config_path = os.path.join(self.default_config_path, 'HUD_config.xml')
|
|
|
|
if os.path.exists(config_path):
|
2008-11-03 04:58:55 +01:00
|
|
|
file = config_path
|
|
|
|
else:
|
|
|
|
file = None
|
|
|
|
return file
|
|
|
|
|
2008-11-05 11:49:05 +01:00
|
|
|
def get_default_config_path(self):
|
|
|
|
"""Returns the path where the fpdb config file _should_ be stored."""
|
|
|
|
if os.name == 'posix':
|
|
|
|
config_path = os.path.join(os.path.expanduser("~"), '.fpdb')
|
|
|
|
elif os.name == 'nt':
|
|
|
|
config_path = os.path.join(os.environ["APPDATA"], 'fpdb')
|
|
|
|
else: config_path = None
|
|
|
|
return config_path
|
|
|
|
|
|
|
|
|
2008-11-03 04:58:55 +01:00
|
|
|
def find_default_conf(self):
|
|
|
|
if os.name == 'posix':
|
|
|
|
config_path = os.path.join(os.path.expanduser("~"), '.fpdb', 'default.conf')
|
|
|
|
elif os.name == 'nt':
|
|
|
|
config_path = os.path.join(os.environ["APPDATA"], 'fpdb', 'default.conf')
|
|
|
|
else: config_path = False
|
|
|
|
|
|
|
|
if config_path and os.path.exists(config_path):
|
|
|
|
file = config_path
|
|
|
|
else:
|
|
|
|
file = None
|
|
|
|
return file
|
|
|
|
|
|
|
|
def read_default_conf(self, file):
|
|
|
|
parms = {}
|
|
|
|
fh = open(file, "r")
|
|
|
|
for line in fh:
|
|
|
|
line = string.strip(line)
|
|
|
|
(key, value) = line.split('=')
|
|
|
|
parms[key] = value
|
|
|
|
fh.close
|
|
|
|
return parms
|
|
|
|
|
|
|
|
def find_example_config(self):
|
|
|
|
if os.path.exists('HUD_config.xml.example'): # there is a HUD_config in the cwd
|
|
|
|
file = 'HUD_config.xml.example' # so we use it
|
|
|
|
print "No HUD_config.xml found, using HUD_config.xml.example.\n", \
|
|
|
|
"A HUD_config.xml will be written. You will probably have to edit it."
|
|
|
|
sys.stderr.write("No HUD_config.xml found, using HUD_config.xml.example.\n" + \
|
|
|
|
"A HUD_config.xml will be written. You will probably have to edit it.")
|
|
|
|
else:
|
|
|
|
file = None
|
|
|
|
return file
|
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
def get_site_node(self, site):
|
|
|
|
for site_node in self.doc.getElementsByTagName("site"):
|
|
|
|
if site_node.getAttribute("site_name") == site:
|
|
|
|
return site_node
|
|
|
|
|
2008-11-05 11:49:05 +01:00
|
|
|
def get_db_node(self, db_name):
|
|
|
|
for db_node in self.doc.getElementsByTagName("database"):
|
|
|
|
if db_node.getAttribute("db_name") == db_name:
|
|
|
|
return db_node
|
|
|
|
return None
|
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
def get_layout_node(self, site_node, layout):
|
|
|
|
for layout_node in site_node.getElementsByTagName("layout"):
|
2008-10-04 22:43:50 +02:00
|
|
|
if layout_node.getAttribute("max") == None:
|
|
|
|
return None
|
2008-09-15 22:31:55 +02:00
|
|
|
if int( layout_node.getAttribute("max") ) == int( layout ):
|
|
|
|
return layout_node
|
|
|
|
|
|
|
|
def get_location_node(self, layout_node, seat):
|
|
|
|
for location_node in layout_node.getElementsByTagName("location"):
|
|
|
|
if int( location_node.getAttribute("seat") ) == int( seat ):
|
|
|
|
return location_node
|
|
|
|
|
|
|
|
def save(self, file = None):
|
|
|
|
if not file == None:
|
|
|
|
f = open(file, 'w')
|
|
|
|
self.doc.writexml(f)
|
|
|
|
f.close()
|
|
|
|
else:
|
|
|
|
shutil.move(self.file, self.file+".backup")
|
|
|
|
f = open(self.file, 'w')
|
|
|
|
self.doc.writexml(f)
|
|
|
|
f.close
|
|
|
|
|
|
|
|
def edit_layout(self, site_name, max, width = None, height = None,
|
|
|
|
fav_seat = None, locations = None):
|
2008-10-04 22:43:50 +02:00
|
|
|
print "max = ", max
|
2008-09-15 22:31:55 +02:00
|
|
|
site_node = self.get_site_node(site_name)
|
|
|
|
layout_node = self.get_layout_node(site_node, max)
|
2008-10-04 22:43:50 +02:00
|
|
|
if layout_node == None: return
|
2008-09-15 22:31:55 +02:00
|
|
|
for i in range(1, max + 1):
|
|
|
|
location_node = self.get_location_node(layout_node, i)
|
|
|
|
location_node.setAttribute("x", str( locations[i-1][0] ))
|
|
|
|
location_node.setAttribute("y", str( locations[i-1][1] ))
|
|
|
|
self.supported_sites[site_name].layout[max].location[i] = ( locations[i-1][0], locations[i-1][1] )
|
|
|
|
|
2008-10-05 02:22:53 +02:00
|
|
|
def get_db_parameters(self, name = None):
|
|
|
|
if name == None: name = 'fpdb'
|
|
|
|
db = {}
|
|
|
|
try:
|
2008-10-21 16:22:01 +02:00
|
|
|
db['db-databaseName'] = name
|
|
|
|
db['db-host'] = self.supported_databases[name].db_ip
|
|
|
|
db['db-user'] = self.supported_databases[name].db_user
|
|
|
|
db['db-password'] = self.supported_databases[name].db_pass
|
|
|
|
db['db-server'] = self.supported_databases[name].db_server
|
2008-10-05 02:22:53 +02:00
|
|
|
if string.lower(self.supported_databases[name].db_server) == 'mysql':
|
2008-10-21 16:22:01 +02:00
|
|
|
db['db-backend'] = 2
|
2008-10-05 02:22:53 +02:00
|
|
|
elif string.lower(self.supported_databases[name].db_server) == 'postgresql':
|
2008-10-21 16:22:01 +02:00
|
|
|
db['db-backend'] = 3
|
|
|
|
else: db['db-backend'] = None # this is big trouble
|
2008-10-05 02:22:53 +02:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
return db
|
|
|
|
|
2008-11-05 11:49:05 +01:00
|
|
|
def set_db_parameters(self, db_name = 'fpdb', db_ip = None, db_user = None,
|
|
|
|
db_pass = None, db_server = None, db_type = None):
|
|
|
|
db_node = self.get_db_node(db_name)
|
|
|
|
if not db_node == None:
|
|
|
|
if not db_ip == None: db_node.setAttribute("db_ip", db_ip)
|
|
|
|
if not db_user == None: db_node.setAttribute("db_user", db_user)
|
|
|
|
if not db_pass == None: db_node.setAttribute("db_pass", db_pass)
|
|
|
|
if not db_server == None: db_node.setAttribute("db_server", db_server)
|
|
|
|
if not db_type == None: db_node.setAttribute("db_type", db_type)
|
|
|
|
if self.supported_databases.has_key(db_name):
|
|
|
|
if not db_ip == None: self.supported_databases[db_name].dp_ip = db_ip
|
|
|
|
if not db_user == None: self.supported_databases[db_name].dp_user = db_user
|
|
|
|
if not db_pass == None: self.supported_databases[db_name].dp_pass = db_pass
|
|
|
|
if not db_server == None: self.supported_databases[db_name].dp_server = db_server
|
|
|
|
if not db_type == None: self.supported_databases[db_name].dp_type = db_type
|
|
|
|
return
|
|
|
|
|
2008-10-21 16:22:01 +02:00
|
|
|
def get_tv_parameters(self):
|
|
|
|
tv = {}
|
|
|
|
try:
|
|
|
|
tv['combinedStealFold'] = self.tv.combinedStealFold
|
|
|
|
tv['combined2B3B'] = self.tv.combined2B3B
|
|
|
|
tv['combinedPostflop'] = self.tv.combinedPostflop
|
|
|
|
except: # Default tv parameters
|
|
|
|
tv['combinedStealFold'] = True
|
|
|
|
tv['combined2B3B'] = True
|
|
|
|
tv['combinedPostflop'] = True
|
|
|
|
return tv
|
|
|
|
|
|
|
|
def get_import_parameters(self):
|
|
|
|
imp = {}
|
|
|
|
try:
|
|
|
|
imp['imp-callFpdbHud'] = self.imp.callFpdbHud
|
|
|
|
imp['hud-defaultInterval'] = int(self.imp.interval)
|
|
|
|
except: # Default import parameters
|
|
|
|
imp['imp-callFpdbHud'] = True
|
|
|
|
imp['hud-defaultInterval'] = 10
|
|
|
|
return imp
|
|
|
|
|
|
|
|
def get_default_paths(self, site = "PokerStars"):
|
|
|
|
paths = {}
|
|
|
|
try:
|
|
|
|
paths['hud-defaultPath'] = os.path.expanduser(self.supported_sites[site].HH_path)
|
|
|
|
paths['bulkImport-defaultPath'] = os.path.expanduser(self.supported_sites[site].HH_path)
|
|
|
|
except:
|
|
|
|
paths['hud-defaultPath'] = "default"
|
|
|
|
paths['bulkImport-defaultPath'] = "default"
|
|
|
|
return paths
|
|
|
|
|
2008-10-30 03:37:05 +01:00
|
|
|
def get_default_colors(self, site = "PokerStars"):
|
|
|
|
colors = {}
|
2008-10-30 10:30:29 +01:00
|
|
|
if self.supported_sites[site].hudopacity == "":
|
2008-10-30 03:37:05 +01:00
|
|
|
colors['hudopacity'] = 0.90
|
2008-10-30 10:30:29 +01:00
|
|
|
else:
|
|
|
|
colors['hudopacity'] = float(self.supported_sites[site].hudopacity)
|
|
|
|
if self.supported_sites[site].hudbgcolor == "":
|
2008-10-30 03:37:05 +01:00
|
|
|
colors['hudbgcolor'] = "#FFFFFF"
|
2008-10-30 10:30:29 +01:00
|
|
|
else:
|
|
|
|
colors['hudbgcolor'] = self.supported_sites[site].hudbgcolor
|
|
|
|
if self.supported_sites[site].hudfgcolor == "":
|
2008-10-30 03:37:05 +01:00
|
|
|
colors['hudfgcolor'] = "#000000"
|
2008-10-30 10:30:29 +01:00
|
|
|
else:
|
|
|
|
colors['hudfgcolor'] = self.supported_sites[site].hudfgcolor
|
2008-10-30 03:37:05 +01:00
|
|
|
return colors
|
|
|
|
|
|
|
|
def get_locations(self, site = "PokerStars", max = "8"):
|
|
|
|
|
|
|
|
try:
|
|
|
|
locations = self.supported_sites[site].layout[max].location
|
|
|
|
except:
|
|
|
|
locations = ( ( 0, 0), (684, 61), (689, 239), (692, 346),
|
|
|
|
(586, 393), (421, 440), (267, 440), ( 0, 361),
|
|
|
|
( 0, 280), (121, 280), ( 46, 30) )
|
|
|
|
return locations
|
|
|
|
|
2008-11-05 22:52:47 +01:00
|
|
|
def get_site_parameters(self, site):
|
|
|
|
"""Returns a dict of the site parameters for the specified site"""
|
2008-11-05 21:04:04 +01:00
|
|
|
if not self.supported_sites.has_key(site):
|
|
|
|
return None
|
2008-11-05 22:52:47 +01:00
|
|
|
parms = {}
|
|
|
|
parms["converter"] = self.supported_sites[site].converter
|
|
|
|
parms["decoder"] = self.supported_sites[site].decoder
|
|
|
|
parms["hudbgcolor"] = self.supported_sites[site].hudbgcolor
|
|
|
|
parms["hudfgcolor"] = self.supported_sites[site].hudfgcolor
|
|
|
|
parms["hudopacity"] = self.supported_sites[site].hudopacity
|
|
|
|
parms["screen_name"] = self.supported_sites[site].screen_name
|
|
|
|
parms["site_path"] = self.supported_sites[site].site_path
|
|
|
|
parms["table_finder"] = self.supported_sites[site].table_finder
|
|
|
|
parms["HH_path"] = self.supported_sites[site].HH_path
|
2008-11-06 06:39:49 +01:00
|
|
|
parms["enabled"] = self.supported_sites[site].enabled
|
2008-11-05 22:52:47 +01:00
|
|
|
return parms
|
|
|
|
|
|
|
|
def set_site_parameters(self, site_name, converter = None, decoder = None,
|
|
|
|
hudbgcolor = None, hudfgcolor = None,
|
|
|
|
hudopacity = None, screen_name = None,
|
|
|
|
site_path = None, table_finder = None,
|
2008-11-06 06:39:49 +01:00
|
|
|
HH_path = None, enabled = None):
|
2008-11-05 22:52:47 +01:00
|
|
|
"""Sets the specified site parameters for the specified site."""
|
|
|
|
site_node = self.get_site_node(site_name)
|
|
|
|
if not db_node == None:
|
|
|
|
if not converter == None: site_node.setAttribute("converter", converter)
|
|
|
|
if not decoder == None: site_node.setAttribute("decoder", decoder)
|
|
|
|
if not hudbgcolor == None: site_node.setAttribute("hudbgcolor", hudbgcolor)
|
|
|
|
if not hudfgcolor == None: site_node.setAttribute("hudfgcolor", hudfgcolor)
|
|
|
|
if not hudopacity == None: site_node.setAttribute("hudopacity", hudopacity)
|
|
|
|
if not screen_name == None: site_node.setAttribute("screen_name", screen_name)
|
|
|
|
if not site_path == None: site_node.setAttribute("site_path", site_path)
|
|
|
|
if not table_finder == None: site_node.setAttribute("table_finder", table_finder)
|
|
|
|
if not HH_path == None: site_node.setAttribute("HH_path", HH_path)
|
2008-11-06 06:39:49 +01:00
|
|
|
if not enabled == None: site_node.setAttribute("enabled", enabled)
|
2008-11-05 22:52:47 +01:00
|
|
|
|
|
|
|
if self.supported_databases.has_key(db_name):
|
|
|
|
if not converter == None: self.supported_sites[site].converter = converter
|
|
|
|
if not decoder == None: self.supported_sites[site].decoder = decoder
|
|
|
|
if not hudbgcolor == None: self.supported_sites[site].hudbgcolor = hudbgcolor
|
|
|
|
if not hudfgcolor == None: self.supported_sites[site].hudfgcolor = hudfgcolor
|
|
|
|
if not hudopacity == None: self.supported_sites[site].hudopacity = hudopacity
|
|
|
|
if not screen_name == None: self.supported_sites[site].screen_name = screen_name
|
|
|
|
if not site_path == None: self.supported_sites[site].site_path = site_path
|
|
|
|
if not table_finder == None: self.supported_sites[site].table_finder = table_finder
|
|
|
|
if not HH_path == None: self.supported_sites[site].HH_path = HH_path
|
2008-11-06 06:39:49 +01:00
|
|
|
if not enabled == None: self.supported_sites[site].enabled = enabled
|
2008-11-05 22:52:47 +01:00
|
|
|
return
|
|
|
|
|
2008-08-19 00:53:25 +02:00
|
|
|
if __name__== "__main__":
|
|
|
|
c = Config()
|
|
|
|
|
|
|
|
print "\n----------- SUPPORTED SITES -----------"
|
|
|
|
for s in c.supported_sites.keys():
|
|
|
|
print c.supported_sites[s]
|
|
|
|
print "----------- END SUPPORTED SITES -----------"
|
|
|
|
|
|
|
|
|
|
|
|
print "\n----------- SUPPORTED GAMES -----------"
|
|
|
|
for game in c.supported_games.keys():
|
|
|
|
print c.supported_games[game]
|
|
|
|
print "----------- END SUPPORTED GAMES -----------"
|
|
|
|
|
|
|
|
|
|
|
|
print "\n----------- SUPPORTED DATABASES -----------"
|
|
|
|
for db in c.supported_databases.keys():
|
|
|
|
print c.supported_databases[db]
|
|
|
|
print "----------- END SUPPORTED DATABASES -----------"
|
|
|
|
|
|
|
|
print "\n----------- MUCKED WINDOW FORMATS -----------"
|
|
|
|
for w in c.mucked_windows.keys():
|
|
|
|
print c.mucked_windows[w]
|
|
|
|
print "----------- END MUCKED WINDOW FORMATS -----------"
|
2008-10-21 16:22:01 +02:00
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
print "\n----------- POPUP WINDOW FORMATS -----------"
|
|
|
|
for w in c.popup_windows.keys():
|
|
|
|
print c.popup_windows[w]
|
|
|
|
print "----------- END MUCKED WINDOW FORMATS -----------"
|
|
|
|
|
2008-10-21 16:22:01 +02:00
|
|
|
print "\n----------- IMPORT -----------"
|
2008-10-30 03:37:05 +01:00
|
|
|
# print c.imp
|
2008-10-21 16:22:01 +02:00
|
|
|
print "----------- END IMPORT -----------"
|
|
|
|
|
|
|
|
print "\n----------- TABLE VIEW -----------"
|
2008-10-30 03:37:05 +01:00
|
|
|
# print c.tv
|
2008-10-21 16:22:01 +02:00
|
|
|
print "----------- END TABLE VIEW -----------"
|
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
c.edit_layout("PokerStars", 6, locations=( (1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6) ))
|
2008-10-05 02:22:53 +02:00
|
|
|
c.save(file="testout.xml")
|
|
|
|
|
2008-10-30 03:37:05 +01:00
|
|
|
print "db = ", c.get_db_parameters()
|
|
|
|
# print "tv = ", c.get_tv_parameters()
|
|
|
|
# print "imp = ", c.get_import_parameters()
|
|
|
|
print "paths = ", c.get_default_paths("PokerStars")
|
|
|
|
print "colors = ", c.get_default_colors("PokerStars")
|
|
|
|
print "locs = ", c.get_locations("PokerStars", 8)
|
2008-11-05 22:52:47 +01:00
|
|
|
for site in c.supported_sites.keys():
|
|
|
|
print "site = ", site,
|
2008-11-06 06:39:49 +01:00
|
|
|
print c.get_site_parameters(site)
|