2008-08-19 00:53:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""Hud_main.py
|
|
|
|
|
|
|
|
Main for FreePokerTools HUD.
|
|
|
|
"""
|
2009-03-05 02:04:23 +01:00
|
|
|
# Copyright 2008, 2009, Ray E. Barker
|
2008-08-19 00:53:25 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
|
|
|
|
# to do allow window resizing
|
|
|
|
# to do hud to echo, but ignore non numbers
|
2008-12-17 19:24:37 +01:00
|
|
|
# to do no stat window for hero
|
2008-08-19 00:53:25 +02:00
|
|
|
# to do things to add to config.xml
|
|
|
|
|
|
|
|
# Standard Library modules
|
|
|
|
import sys
|
2009-02-27 16:36:45 +01:00
|
|
|
|
|
|
|
# redirect the stderr
|
2009-03-05 16:12:31 +01:00
|
|
|
errorfile = open('HUD-error.txt', 'w', 0)
|
|
|
|
sys.stderr = errorfile
|
2009-02-27 16:36:45 +01:00
|
|
|
|
2008-08-19 00:53:25 +02:00
|
|
|
import os
|
2008-09-15 22:31:55 +02:00
|
|
|
import thread
|
2008-10-16 21:15:28 +02:00
|
|
|
import time
|
2008-10-18 03:28:33 +02:00
|
|
|
import string
|
2008-11-07 18:22:37 +01:00
|
|
|
import re
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
# pyGTK modules
|
|
|
|
import pygtk
|
|
|
|
import gtk
|
|
|
|
import gobject
|
|
|
|
|
|
|
|
# FreePokerTools modules
|
|
|
|
import Configuration
|
|
|
|
import Database
|
|
|
|
import Tables
|
|
|
|
import Hud
|
|
|
|
|
2009-04-08 22:43:40 +02:00
|
|
|
aggregate_stats = {"ring": False, "tour": False} # config file!
|
|
|
|
|
2009-02-22 00:19:49 +01:00
|
|
|
class HUD_main(object):
|
|
|
|
"""A main() object to own both the read_stdin thread and the gui."""
|
|
|
|
# This class mainly provides state for controlling the multiple HUDs.
|
|
|
|
|
|
|
|
def __init__(self, db_name = 'fpdb'):
|
|
|
|
self.db_name = db_name
|
|
|
|
self.config = Configuration.Config()
|
|
|
|
self.hud_dict = {}
|
|
|
|
|
|
|
|
# a thread to read stdin
|
|
|
|
gobject.threads_init() # this is required
|
|
|
|
thread.start_new_thread(self.read_stdin, ()) # starts the thread
|
|
|
|
|
|
|
|
# a main window
|
|
|
|
self.main_window = gtk.Window()
|
|
|
|
self.main_window.connect("destroy", self.destroy)
|
|
|
|
self.vb = gtk.VBox()
|
|
|
|
self.label = gtk.Label('Closing this window will exit from the HUD.')
|
|
|
|
self.vb.add(self.label)
|
|
|
|
self.main_window.add(self.vb)
|
|
|
|
self.main_window.set_title("HUD Main Window")
|
|
|
|
self.main_window.show_all()
|
|
|
|
|
|
|
|
def destroy(*args): # call back for terminating the main eventloop
|
|
|
|
gtk.main_quit()
|
2009-02-28 01:47:52 +01:00
|
|
|
|
|
|
|
def kill_hud(self, event, table):
|
|
|
|
# called by an event in the HUD, to kill this specific HUD
|
2009-05-21 21:30:18 +02:00
|
|
|
if table in self.hud_dict:
|
|
|
|
self.hud_dict[table].kill()
|
|
|
|
self.hud_dict[table].main_window.destroy()
|
|
|
|
self.vb.remove(self.hud_dict[table].tablehudlabel)
|
|
|
|
del(self.hud_dict[table])
|
2009-03-04 14:17:23 +01:00
|
|
|
self.main_window.resize(1,1)
|
2009-02-28 01:47:52 +01:00
|
|
|
|
2009-04-08 22:43:40 +02:00
|
|
|
def create_HUD(self, new_hand_id, table, table_name, max, poker_game, stat_dict, cards):
|
2009-01-06 11:18:45 +01:00
|
|
|
|
2009-02-22 00:19:49 +01:00
|
|
|
def idle_func():
|
|
|
|
|
|
|
|
gtk.gdk.threads_enter()
|
|
|
|
try:
|
2009-03-27 00:17:00 +01:00
|
|
|
newlabel = gtk.Label("%s - %s" % (table.site, table_name))
|
2009-02-22 00:19:49 +01:00
|
|
|
self.vb.add(newlabel)
|
|
|
|
newlabel.show()
|
2009-03-04 14:17:23 +01:00
|
|
|
self.main_window.resize_children()
|
2009-02-22 00:19:49 +01:00
|
|
|
|
|
|
|
self.hud_dict[table_name].tablehudlabel = newlabel
|
2009-02-26 05:35:15 +01:00
|
|
|
self.hud_dict[table_name].create(new_hand_id, self.config, stat_dict, cards)
|
2009-02-22 00:19:49 +01:00
|
|
|
for m in self.hud_dict[table_name].aux_windows:
|
2009-03-05 02:04:23 +01:00
|
|
|
m.create()
|
2009-02-22 00:19:49 +01:00
|
|
|
m.update_gui(new_hand_id)
|
2009-02-26 05:35:15 +01:00
|
|
|
self.hud_dict[table_name].update(new_hand_id, self.config)
|
2009-02-22 00:19:49 +01:00
|
|
|
self.hud_dict[table_name].reposition_windows()
|
|
|
|
return False
|
|
|
|
finally:
|
|
|
|
gtk.gdk.threads_leave()
|
2009-02-27 18:42:49 +01:00
|
|
|
|
|
|
|
self.hud_dict[table_name] = Hud.Hud(self, table, max, poker_game, self.config, self.db_connection)
|
2009-04-07 05:42:36 +02:00
|
|
|
self.hud_dict[table_name].table_name = table_name
|
2009-03-05 02:04:23 +01:00
|
|
|
self.hud_dict[table_name].stat_dict = stat_dict
|
|
|
|
self.hud_dict[table_name].cards = cards
|
2009-03-27 00:17:00 +01:00
|
|
|
[aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[table_name].aux_windows]
|
2009-02-22 00:19:49 +01:00
|
|
|
gobject.idle_add(idle_func)
|
|
|
|
|
2009-02-26 05:35:15 +01:00
|
|
|
def update_HUD(self, new_hand_id, table_name, config):
|
2009-02-22 00:19:49 +01:00
|
|
|
"""Update a HUD gui from inside the non-gui read_stdin thread."""
|
|
|
|
# This is written so that only 1 thread can touch the gui--mainly
|
|
|
|
# for compatibility with Windows. This method dispatches the
|
|
|
|
# function idle_func() to be run by the gui thread, at its leisure.
|
|
|
|
def idle_func():
|
|
|
|
gtk.gdk.threads_enter()
|
|
|
|
try:
|
2009-02-26 05:35:15 +01:00
|
|
|
self.hud_dict[table_name].update(new_hand_id, config)
|
2009-03-19 09:12:42 +01:00
|
|
|
[aw.update_gui(new_hand_id) for aw in self.hud_dict[table_name].aux_windows]
|
2009-02-22 00:19:49 +01:00
|
|
|
return False
|
|
|
|
finally:
|
|
|
|
gtk.gdk.threads_leave()
|
|
|
|
gobject.idle_add(idle_func)
|
|
|
|
|
|
|
|
def read_stdin(self): # This is the thread function
|
|
|
|
"""Do all the non-gui heavy lifting for the HUD program."""
|
|
|
|
|
|
|
|
# This db connection is for the read_stdin thread only. It should not
|
|
|
|
# be passed to HUDs for use in the gui thread. HUD objects should not
|
|
|
|
# need their own access to the database, but should open their own
|
|
|
|
# if it is required.
|
|
|
|
self.db_connection = Database.Database(self.config, self.db_name, 'temp')
|
|
|
|
tourny_finder = re.compile('(\d+) (\d+)')
|
|
|
|
|
2009-03-08 20:39:55 +01:00
|
|
|
while 1: # wait for a new hand number on stdin
|
2009-02-22 00:19:49 +01:00
|
|
|
new_hand_id = sys.stdin.readline()
|
|
|
|
new_hand_id = string.rstrip(new_hand_id)
|
|
|
|
if new_hand_id == "": # blank line means quit
|
|
|
|
self.destroy()
|
|
|
|
break # this thread is not always killed immediately with gtk.main_quit()
|
2008-11-07 18:22:37 +01:00
|
|
|
# get basic info about the new hand from the db
|
2009-02-24 03:33:23 +01:00
|
|
|
# if there is a db error, complain, skip hand, and proceed
|
|
|
|
try:
|
2009-04-08 22:43:40 +02:00
|
|
|
(table_name, max, poker_game, type) = self.db_connection.get_table_name(new_hand_id)
|
|
|
|
stat_dict = self.db_connection.get_stats_from_hand(new_hand_id, aggregate = aggregate_stats[type])
|
2009-03-19 18:18:50 +01:00
|
|
|
cards = self.db_connection.get_cards(new_hand_id)
|
|
|
|
comm_cards = self.db_connection.get_common_cards(new_hand_id)
|
2009-03-24 03:50:54 +01:00
|
|
|
if comm_cards != {}: # stud!
|
|
|
|
cards['common'] = comm_cards['common']
|
2009-03-11 01:19:54 +01:00
|
|
|
except Exception, err:
|
|
|
|
print "db error: skipping ", new_hand_id, err
|
|
|
|
sys.stderr.write("Database error %s in hand %d. Skipping.\n" % (err, int(new_hand_id)))
|
2009-02-24 03:33:23 +01:00
|
|
|
continue
|
|
|
|
|
2009-04-08 22:43:40 +02:00
|
|
|
if type == "tour": # hand is from a tournament
|
|
|
|
mat_obj = tourny_finder.search(table_name)
|
|
|
|
if mat_obj:
|
|
|
|
(tour_number, tab_number) = mat_obj.group(1, 2)
|
|
|
|
temp_key = tour_number
|
|
|
|
else: # tourney, but can't get number and table
|
2009-06-01 03:25:36 +02:00
|
|
|
print "could not find tournament: skipping "
|
2009-04-08 22:43:40 +02:00
|
|
|
sys.stderr.write("Could not find tournament %d in hand %d. Skipping.\n" % (int(tour_number), int(new_hand_id)))
|
|
|
|
continue
|
|
|
|
|
2008-10-25 11:36:18 +02:00
|
|
|
else:
|
2009-02-22 00:19:49 +01:00
|
|
|
temp_key = table_name
|
|
|
|
|
|
|
|
# Update an existing HUD
|
|
|
|
if temp_key in self.hud_dict:
|
2009-02-26 05:35:15 +01:00
|
|
|
self.hud_dict[temp_key].stat_dict = stat_dict
|
|
|
|
self.hud_dict[temp_key].cards = cards
|
2009-03-19 09:12:42 +01:00
|
|
|
[aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[temp_key].aux_windows]
|
2009-02-26 05:35:15 +01:00
|
|
|
self.update_HUD(new_hand_id, temp_key, self.config)
|
2009-02-22 00:19:49 +01:00
|
|
|
|
2009-02-24 03:33:23 +01:00
|
|
|
# Or create a new HUD
|
2009-02-22 00:19:49 +01:00
|
|
|
else:
|
2009-04-08 22:43:40 +02:00
|
|
|
if type == "tour":
|
2009-02-22 00:19:49 +01:00
|
|
|
tablewindow = Tables.discover_tournament_table(self.config, tour_number, tab_number)
|
|
|
|
else:
|
|
|
|
tablewindow = Tables.discover_table_by_name(self.config, table_name)
|
2008-11-07 18:22:37 +01:00
|
|
|
if tablewindow == None:
|
2009-02-26 05:35:15 +01:00
|
|
|
# If no client window is found on the screen, complain and continue
|
2009-04-08 22:43:40 +02:00
|
|
|
if type == "tour":
|
2009-03-08 20:39:55 +01:00
|
|
|
table_name = "%s %s" % (tour_number, tab_number)
|
2009-02-24 03:33:23 +01:00
|
|
|
sys.stderr.write("table name "+table_name+" not found, skipping.\n")
|
2008-11-07 18:22:37 +01:00
|
|
|
else:
|
2009-04-08 22:43:40 +02:00
|
|
|
self.create_HUD(new_hand_id, tablewindow, temp_key, max, poker_game, stat_dict, cards)
|
2009-05-10 00:18:58 +02:00
|
|
|
self.db_connection.connection.rollback()
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
if __name__== "__main__":
|
2008-09-26 15:18:47 +02:00
|
|
|
sys.stderr.write("HUD_main starting\n")
|
2008-09-15 22:31:55 +02:00
|
|
|
|
2009-02-22 00:19:49 +01:00
|
|
|
# database name can be passed on command line
|
2008-09-15 22:31:55 +02:00
|
|
|
try:
|
|
|
|
db_name = sys.argv[1]
|
|
|
|
except:
|
2008-09-30 02:42:27 +02:00
|
|
|
db_name = 'fpdb'
|
2008-09-26 15:18:47 +02:00
|
|
|
sys.stderr.write("Using db name = %s\n" % (db_name))
|
2008-09-15 22:31:55 +02:00
|
|
|
|
2009-02-22 00:19:49 +01:00
|
|
|
# start the HUD_main object
|
|
|
|
hm = HUD_main(db_name = db_name)
|
2008-10-14 16:33:32 +02:00
|
|
|
|
2009-02-22 00:19:49 +01:00
|
|
|
# start the event loop
|
2008-08-19 00:53:25 +02:00
|
|
|
gtk.main()
|