mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
+ added statistics progression; statistics progression dialog + new animation speed: `medium'; renamed `timer based' to `fast' + added flip animation (animatedFlip) + added move to waste animation (animatedFlipAndMove) + added cancel-drag animation (moveCardsBackHandler) * improved demo game (snapshots based check for loop) - removed setting text color from file name - removed auto generation shadows (too slow) * optimized menu creation * changed some keybindings * updated russian translation * many bugfixes git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@138 efabe8c0-fbe8-4139-b769-b5e6d273206e
939 lines
36 KiB
Python
939 lines
36 KiB
Python
## vim:ts=4:et:nowrap
|
|
##
|
|
##---------------------------------------------------------------------------##
|
|
##
|
|
## PySol -- a Python Solitaire game
|
|
##
|
|
## Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer
|
|
## Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
|
|
## Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
|
|
## Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
|
|
## Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
|
|
## Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
|
|
## All Rights Reserved.
|
|
##
|
|
## 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; see the file COPYING.
|
|
## If not, write to the Free Software Foundation, Inc.,
|
|
## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
##
|
|
## Markus F.X.J. Oberhumer
|
|
## <markus@oberhumer.com>
|
|
## http://www.oberhumer.com/pysol
|
|
##
|
|
##---------------------------------------------------------------------------##
|
|
|
|
__all__ = ['SingleGame_StatsDialog',
|
|
'AllGames_StatsDialog',
|
|
'FullLog_StatsDialog',
|
|
'SessionLog_StatsDialog',
|
|
'Status_StatsDialog',
|
|
'Top_StatsDialog',
|
|
'ProgressionDialog',
|
|
]
|
|
|
|
# imports
|
|
import os
|
|
import time
|
|
import Tile as Tkinter
|
|
import tkFont
|
|
|
|
# PySol imports
|
|
from pysollib.mfxutil import destruct, Struct, kwdefault, KwStruct
|
|
from pysollib.mfxutil import format_time
|
|
##from pysollib.util import *
|
|
from pysollib.stats import PysolStatsFormatter, ProgressionFormatter
|
|
from pysollib.settings import TOP_TITLE
|
|
|
|
# Toolkit imports
|
|
from tkutil import bind, unbind_destroy, loadImage
|
|
from tkwidget import MfxDialog, MfxMessageDialog
|
|
from tkwidget import MfxScrolledCanvas
|
|
|
|
gettext = _
|
|
|
|
|
|
# FIXME - this file a quick hack and needs a rewrite
|
|
|
|
# /***********************************************************************
|
|
# //
|
|
# ************************************************************************/
|
|
|
|
class SingleGame_StatsDialog(MfxDialog):
|
|
def __init__(self, parent, title, app, player, gameid, **kw):
|
|
self.app = app
|
|
kw = self.initKw(kw)
|
|
MfxDialog.__init__(self, parent, title, kw.resizable, kw.default)
|
|
top_frame, bottom_frame = self.createFrames(kw)
|
|
self.top_frame = top_frame
|
|
self.createBitmaps(top_frame, kw)
|
|
#
|
|
self.player = player or _("Demo games")
|
|
self.top.wm_minsize(200, 200)
|
|
self.button = kw.default
|
|
#
|
|
createChart = self.createPieChart
|
|
#
|
|
self.font = self.app.getFont("default")
|
|
self.tk_font = tkFont.Font(self.top, self.font)
|
|
self.font_metrics = self.tk_font.metrics()
|
|
self._calc_tabs()
|
|
#
|
|
won, lost = app.stats.getStats(player, gameid)
|
|
createChart(app, won, lost, _("Total"))
|
|
won, lost = app.stats.getSessionStats(player, gameid)
|
|
createChart(app, won, lost, _("Current session"))
|
|
#
|
|
focus = self.createButtons(bottom_frame, kw)
|
|
self.mainloop(focus, kw.timeout)
|
|
|
|
#
|
|
# helpers
|
|
#
|
|
|
|
def _calc_tabs(self):
|
|
#
|
|
font = self.tk_font
|
|
t0 = 160
|
|
t = ''
|
|
for i in (_("Won:"),
|
|
_("Lost:"),
|
|
_("Total:")):
|
|
if len(i) > len(t):
|
|
t = i
|
|
t1 = font.measure(t)
|
|
## t1 = max(font.measure(_("Won:")),
|
|
## font.measure(_("Lost:")),
|
|
## font.measure(_("Total:")))
|
|
t1 += 10
|
|
##t2 = font.measure('99999')+10
|
|
t2 = 45
|
|
##t3 = font.measure('100%')+10
|
|
t3 = 45
|
|
tx = (t0, t0+t1+t2, t0+t1+t2+t3, t0+t1+t2+t3+20)
|
|
#
|
|
ls = self.font_metrics['linespace']
|
|
ls += 5
|
|
#ls = max(ls, 20)
|
|
ty = (5, 5+ls, 5+2*ls+15, max(85, 5+3*ls+15))
|
|
#
|
|
self.tab_x, self.tab_y = tx, ty
|
|
|
|
def _getPwon(self, won, lost):
|
|
pwon, plost = 0.0, 0.0
|
|
if won + lost > 0:
|
|
pwon = float(won) / (won + lost)
|
|
pwon = min(max(pwon, 0.00001), 0.99999)
|
|
plost = 1.0 - pwon
|
|
return pwon, plost
|
|
|
|
def _createChartInit(self, text):
|
|
frame = Tkinter.LabelFrame(self.top_frame, text=text)
|
|
frame.pack(side='top', fill='both', expand=False, padx=20, pady=10)
|
|
style = Tkinter.Style(self.top_frame)
|
|
fg = style.lookup('.', 'foreground') or None # use default if fg == ''
|
|
bg = style.lookup('.', 'background') or None
|
|
self.fg = fg
|
|
#
|
|
w, h = self.tab_x[-1], self.tab_y[-1]
|
|
c = Tkinter.Canvas(frame, width=w, height=h,
|
|
bg=bg, highlightthickness=0)
|
|
c.pack(fill='both', expand=True)
|
|
self.canvas = c
|
|
|
|
def _createChartTexts(self, tx, ty, won, lost):
|
|
c, tfont, fg = self.canvas, self.font, self.fg
|
|
pwon, plost = self._getPwon(won, lost)
|
|
#
|
|
x = tx[0]
|
|
dy = int(self.font_metrics['ascent']) - 10
|
|
dy = dy/2
|
|
c.create_text(x, ty[0]-dy, text=_("Won:"), anchor="nw", font=tfont, fill=fg)
|
|
c.create_text(x, ty[1]-dy, text=_("Lost:"), anchor="nw", font=tfont, fill=fg)
|
|
c.create_text(x, ty[2]-dy, text=_("Total:"), anchor="nw", font=tfont, fill=fg)
|
|
x = tx[1] - 16
|
|
c.create_text(x, ty[0]-dy, text="%d" % won, anchor="ne", font=tfont, fill=fg)
|
|
c.create_text(x, ty[1]-dy, text="%d" % lost, anchor="ne", font=tfont, fill=fg)
|
|
c.create_text(x, ty[2]-dy, text="%d" % (won + lost), anchor="ne", font=tfont, fill=fg)
|
|
y = ty[2] - 11
|
|
c.create_line(tx[0], y, x, y, fill=fg)
|
|
if won + lost > 0:
|
|
x = tx[2]
|
|
pw = int(round(100.0 * pwon))
|
|
c.create_text(x, ty[0]-dy, text="%d%%" % pw, anchor="ne", font=tfont, fill=fg)
|
|
c.create_text(x, ty[1]-dy, text="%d%%" % (100-pw), anchor="ne", font=tfont, fill=fg)
|
|
|
|
|
|
|
|
def createPieChart(self, app, won, lost, text):
|
|
#c, tfont, fg = self._createChartInit(frame, 300, 100, text)
|
|
#
|
|
self._createChartInit(text)
|
|
c, tfont, fg = self.canvas, self.font, self.fg
|
|
pwon, plost = self._getPwon(won, lost)
|
|
#
|
|
#tx = (160, 250, 280)
|
|
#ty = (21, 41, 75)
|
|
#
|
|
tx, ty = self.tab_x, self.tab_y
|
|
x0, y0 = 20, 10 # base coords
|
|
w, h = 90, 50 # size
|
|
d = 9 # delta
|
|
if won + lost > 0:
|
|
##s, ewon, elost = 90.0, -360.0 * pwon, -360.0 * plost
|
|
s, ewon, elost = 0.0, 360.0 * pwon, 360.0 * plost
|
|
c.create_arc(x0, y0+d, x0+w, y0+h+d, fill="#007f00", start=s, extent=ewon)
|
|
c.create_arc(x0, y0+d, x0+w, y0+h+d, fill="#7f0000", start=s+ewon, extent=elost)
|
|
c.create_arc(x0, y0, x0+w, y0+h, fill="#00ff00", start=s, extent=ewon)
|
|
c.create_arc(x0, y0, x0+w, y0+h, fill="#ff0000", start=s+ewon, extent=elost)
|
|
x, y = tx[0] - 25, ty[0]
|
|
c.create_rectangle(x, y, x+10, y+10, fill="#00ff00")
|
|
y = ty[1]
|
|
c.create_rectangle(x, y, x+10, y+10, fill="#ff0000")
|
|
else:
|
|
c.create_oval(x0, y0+d, x0+w, y0+h+d, fill="#7f7f7f")
|
|
c.create_oval(x0, y0, x0+w, y0+h, fill="#f0f0f0")
|
|
c.create_text(x0+w/2, y0+h/2, text=_("No games"), anchor="center", font=tfont, fill="#bfbfbf")
|
|
#
|
|
self._createChartTexts(tx, ty, won, lost)
|
|
|
|
#
|
|
#
|
|
#
|
|
|
|
def initKw(self, kw):
|
|
kw = KwStruct(kw,
|
|
strings=(_("&OK"),
|
|
(_("&All games..."), 102),
|
|
(TOP_TITLE+"...", 105),
|
|
(_("&Reset..."), 302)), default=0,
|
|
image=self.app.gimages.logos[5],
|
|
padx=10, pady=10,
|
|
)
|
|
return MfxDialog.initKw(self, kw)
|
|
|
|
|
|
# /***********************************************************************
|
|
# //
|
|
# ************************************************************************/
|
|
|
|
class TreeFormatter(PysolStatsFormatter):
|
|
MAX_ROWS = 10000
|
|
|
|
def __init__(self, app, tree, parent_window, font, w, h):
|
|
self.app = app
|
|
self.tree = tree
|
|
self.parent_window = parent_window
|
|
self.font = font
|
|
self.tkfont = tkFont.Font(tree, font)
|
|
self.gameid = None
|
|
self.gamenumber = None
|
|
self._tabs = None
|
|
self.w = w
|
|
self.h = h
|
|
|
|
def _calc_tabs(self, arg):
|
|
if self.parent_window.tree_tabs:
|
|
self._tabs = self.parent_window.tree_tabs
|
|
return
|
|
tw = 20*self.w
|
|
##tw = 160
|
|
self._tabs = [tw]
|
|
#font = tkFont.Font(self.tree, self.font)
|
|
font = self.tkfont
|
|
for t in arg[1:]:
|
|
tw = font.measure(t)+20
|
|
self._tabs.append(tw)
|
|
self._tabs.append(10)
|
|
self.parent_window.tree_tabs = self._tabs
|
|
|
|
def writeStats(self, player, sort_by='name'):
|
|
header = self.getStatHeader()
|
|
if self._tabs is None:
|
|
self._calc_tabs(header)
|
|
t1, t2, t3, t4, t5, t6, t7 = header
|
|
for column, text, anchor, tab in (
|
|
('#0', t1, 'nw', self._tabs[0]),
|
|
('played', t2, 'ne', self._tabs[1]),
|
|
('won', t3, 'ne', self._tabs[2]),
|
|
('lost', t4, 'ne', self._tabs[3]),
|
|
('time', t5, 'ne', self._tabs[4]),
|
|
('moves', t6, 'ne', self._tabs[5]),
|
|
('percent', t7, 'ne', self._tabs[6]), ):
|
|
self.tree.heading(column, text=text,
|
|
command=lambda par=self.parent_window, col=column: par.headerClick(col))
|
|
self.tree.column(column, width=tab)
|
|
|
|
for result in self.getStatResults(player, sort_by):
|
|
# result == [name, won+lost, won, lost, time, moves, perc, id]
|
|
t1, t2, t3, t4, t5, t6, t7, t8 = result
|
|
t1=gettext(t1) # game name
|
|
id = self.tree.insert(None, "end", text=t1,
|
|
values=(t2, t3, t4, t5, t6, t7))
|
|
self.parent_window.tree_items.append(id)
|
|
self.parent_window.games[id] = t8
|
|
|
|
total, played, won, lost, time, moves, perc = self.getStatSummary()
|
|
text = _("Total (%d out of %d games)") % (played, total)
|
|
id = self.tree.insert(None, "end", text=text,
|
|
values=(won+lost, won, lost, time, moves, perc))
|
|
self.parent_window.tree_items.append(id)
|
|
|
|
return 1
|
|
|
|
def writeLog(self, player, prev_games):
|
|
if self._tabs is None:
|
|
self._calc_tabs(('', '99999999999999999999', '9999-99-99 99:99', 'XXXXXXXXXXXX'))
|
|
header = self.getLogHeader()
|
|
t1, t2, t3, t4 = header
|
|
for column, text, anchor, tab in (
|
|
('#0', t1, 'nw', self._tabs[0]),
|
|
('gamenumber', t2, 'ne', self._tabs[1]),
|
|
('date', t3, 'ne', self._tabs[2]),
|
|
('status', t4, 'ne', self._tabs[3]), ):
|
|
self.tree.heading(column, text=text,
|
|
command=lambda par=self.parent_window, col=column: par.headerClick(col))
|
|
self.tree.column(column, width=tab)
|
|
##if column in ('gamenumber', 'date', 'status'):
|
|
## self.tree.column(column, anchor='center')
|
|
if not player or not prev_games:
|
|
return 0
|
|
num_rows = 0
|
|
for result in self.getLogResults(player, prev_games):
|
|
t1, t2, t3, t4, t5, t6 = result
|
|
t1=gettext(t1) # game name
|
|
id = self.tree.insert(None, "end", text=t1, values=(t2, t3, t4))
|
|
self.parent_window.tree_items.append(id)
|
|
num_rows += 1
|
|
if num_rows > self.MAX_ROWS:
|
|
break
|
|
return 1
|
|
|
|
def writeFullLog(self, player):
|
|
prev_games = self.app.stats.prev_games.get(player)
|
|
return self.writeLog(player, prev_games)
|
|
|
|
def writeSessionLog(self, player):
|
|
prev_games = self.app.stats.session_games.get(player)
|
|
return self.writeLog(player, prev_games)
|
|
|
|
|
|
# /***********************************************************************
|
|
# //
|
|
# ************************************************************************/
|
|
|
|
class AllGames_StatsDialog(MfxDialog):
|
|
|
|
COLUMNS = ('played', 'won', 'lost', 'time', 'moves', 'percent')
|
|
|
|
def __init__(self, parent, title, app, player, **kw):
|
|
lines = 25
|
|
#if parent and parent.winfo_screenheight() < 600:
|
|
# lines = 20
|
|
#
|
|
self.font = app.getFont('default')
|
|
font = tkFont.Font(parent, self.font)
|
|
self.font_metrics = font.metrics()
|
|
self.CHAR_H = self.font_metrics['linespace']
|
|
self.CHAR_W = font.measure('M')
|
|
self.app = app
|
|
#
|
|
self.player = player
|
|
self.title = title
|
|
self.sort_by = 'name'
|
|
self.tree_items = []
|
|
self.tree_tabs = None
|
|
self.games = {} # tree_itemid: gameid
|
|
self.selected_game = None
|
|
#
|
|
kwdefault(kw, width=self.CHAR_W*64, height=lines*self.CHAR_H)
|
|
kw = self.initKw(kw)
|
|
MfxDialog.__init__(self, parent, title, kw.resizable, kw.default)
|
|
top_frame, bottom_frame = self.createFrames(kw)
|
|
self.createBitmaps(top_frame, kw)
|
|
#
|
|
self.top.wm_minsize(200, 200)
|
|
self.button = kw.default
|
|
#
|
|
frame = Tkinter.Frame(top_frame)
|
|
frame.pack(fill='both', expand=True, padx=kw.padx, pady=kw.pady)
|
|
sb = Tkinter.Scrollbar(frame)
|
|
sb.pack(side='right', fill='y')
|
|
self.tree = Tkinter.Treeview(frame, columns=self.COLUMNS,
|
|
selectmode='browse')
|
|
self.tree.pack(side='left', fill='both', expand=True)
|
|
self.tree.config(yscrollcommand=sb.set)
|
|
sb.config(command=self.tree.yview)
|
|
bind(self.tree, '<<TreeviewSelect>>', self.treeviewSelected)
|
|
#
|
|
focus = self.createButtons(bottom_frame, kw)
|
|
self.fillCanvas(player, title)
|
|
#run_button = self.buttons[0]
|
|
#run_button.config(state='disabled')
|
|
self.mainloop(focus, kw.timeout)
|
|
|
|
def initKw(self, kw):
|
|
kw = KwStruct(kw,
|
|
strings=((_("&Play this game"), 401),
|
|
"sep", _("&OK"),
|
|
(_("&Save to file"), 202),
|
|
(_("&Reset all..."), 301),),
|
|
default=0,
|
|
resizable=1,
|
|
padx=10, pady=10,
|
|
#width=900,
|
|
)
|
|
return MfxDialog.initKw(self, kw)
|
|
|
|
def mDone(self, button):
|
|
sel = self.tree.selection()
|
|
if sel and len(sel) == 1:
|
|
if sel[0] in self.games:
|
|
self.selected_game = self.games[sel[0]]
|
|
MfxDialog.mDone(self, button)
|
|
|
|
def destroy(self):
|
|
self.app = None
|
|
self.tree.destroy()
|
|
MfxDialog.destroy(self)
|
|
|
|
def treeviewSelected(self, *args):
|
|
sel = self.tree.selection()
|
|
run_button = self.buttons[0]
|
|
if sel and len(sel) == 1:
|
|
if sel[0] not in self.games: # "Total"
|
|
run_button.config(state='disabled')
|
|
else:
|
|
run_button.config(state='normal')
|
|
else:
|
|
run_button.config(state='disabled')
|
|
|
|
def headerClick(self, column):
|
|
if column == '#0':
|
|
sort_by = 'name'
|
|
else:
|
|
sort_by = column
|
|
if self.sort_by == sort_by: return
|
|
self.sort_by = sort_by
|
|
self.fillCanvas(self.player, self.title)
|
|
|
|
#
|
|
#
|
|
#
|
|
|
|
def fillCanvas(self, player, header):
|
|
if self.tree_items:
|
|
self.tree.delete(tuple(self.tree_items))
|
|
self.tree_items = []
|
|
formatter = TreeFormatter(self.app, self.tree, self,
|
|
self.font, self.CHAR_W, self.CHAR_H)
|
|
formatter.writeStats(player, sort_by=self.sort_by)
|
|
if self.buttons:
|
|
run_button = self.buttons[0]
|
|
run_button.config(state='disabled')
|
|
|
|
|
|
# /***********************************************************************
|
|
# //
|
|
# ************************************************************************/
|
|
|
|
class FullLog_StatsDialog(AllGames_StatsDialog):
|
|
|
|
COLUMNS = ('gamenumber', 'date', 'status')
|
|
|
|
def fillCanvas(self, player, header):
|
|
formatter = TreeFormatter(self.app, self.tree, self, self.font,
|
|
self.CHAR_W, self.CHAR_H)
|
|
formatter.writeFullLog(player)
|
|
|
|
def initKw(self, kw):
|
|
kw = KwStruct(kw,
|
|
strings=(_("&OK"), (_("Session &log..."), 104),
|
|
(_("&Save to file"), 203)), default=0,
|
|
width=76*self.CHAR_W,
|
|
)
|
|
return AllGames_StatsDialog.initKw(self, kw)
|
|
|
|
def mDone(self, button):
|
|
MfxDialog.mDone(self, button)
|
|
|
|
def treeviewSelected(self, *args):
|
|
pass
|
|
def headerClick(self, column):
|
|
pass
|
|
|
|
|
|
class SessionLog_StatsDialog(FullLog_StatsDialog):
|
|
def fillCanvas(self, player, header):
|
|
formatter = TreeFormatter(self.app, self.tree, self, self.font,
|
|
self.CHAR_W, self.CHAR_H)
|
|
formatter.writeSessionLog(player)
|
|
|
|
def initKw(self, kw):
|
|
kw = KwStruct(kw,
|
|
strings=(_("&OK"), (_("&Full log..."), 103),
|
|
(_("&Save to file"), 204)), default=0,
|
|
)
|
|
return FullLog_StatsDialog.initKw(self, kw)
|
|
|
|
# /***********************************************************************
|
|
# //
|
|
# ************************************************************************/
|
|
|
|
class Status_StatsDialog(MfxMessageDialog):
|
|
def __init__(self, parent, game):
|
|
stats, gstats = game.stats, game.gstats
|
|
w1 = w2 = ""
|
|
n = 0
|
|
for s in game.s.foundations:
|
|
n = n + len(s.cards)
|
|
w1 = (_("Highlight piles: ") + str(stats.highlight_piles) + "\n" +
|
|
_("Highlight cards: ") + str(stats.highlight_cards) + "\n" +
|
|
_("Highlight same rank: ") + str(stats.highlight_samerank) + "\n")
|
|
if game.s.talon:
|
|
if game.gameinfo.redeals != 0:
|
|
w2 = w2 + _("\nRedeals: ") + str(game.s.talon.round - 1)
|
|
w2 = w2 + _("\nCards in Talon: ") + str(len(game.s.talon.cards))
|
|
if game.s.waste and game.s.waste not in game.s.foundations:
|
|
w2 = w2 + _("\nCards in Waste: ") + str(len(game.s.waste.cards))
|
|
if game.s.foundations:
|
|
w2 = w2 + _("\nCards in Foundations: ") + str(n)
|
|
#
|
|
date = time.strftime("%Y-%m-%d %H:%M", time.localtime(game.gstats.start_time))
|
|
MfxMessageDialog.__init__(self, parent, title=_("Game status"),
|
|
text=game.getTitleName() + "\n" +
|
|
game.getGameNumber(format=1) + "\n" +
|
|
_("Playing time: ") + game.getTime() + "\n" +
|
|
_("Started at: ") + date + "\n\n"+
|
|
_("Moves: ") + str(game.moves.index) + "\n" +
|
|
_("Undo moves: ") + str(stats.undo_moves) + "\n" +
|
|
_("Bookmark moves: ") + str(gstats.goto_bookmark_moves) + "\n" +
|
|
_("Demo moves: ") + str(stats.demo_moves) + "\n" +
|
|
_("Total player moves: ") + str(stats.player_moves) + "\n" +
|
|
_("Total moves in this game: ") + str(stats.total_moves) + "\n" +
|
|
_("Hints: ") + str(stats.hints) + "\n" +
|
|
"\n" +
|
|
w1 + w2,
|
|
strings=(_("&OK"),
|
|
(_("&Statistics..."), 101),
|
|
(TOP_TITLE+"...", 105), ),
|
|
image=game.app.gimages.logos[3],
|
|
image_side="left", image_padx=20,
|
|
padx=20,
|
|
)
|
|
|
|
# /***********************************************************************
|
|
# //
|
|
# ************************************************************************/
|
|
|
|
class _TopDialog(MfxDialog):
|
|
def __init__(self, parent, title, top, **kw):
|
|
kw = self.initKw(kw)
|
|
MfxDialog.__init__(self, parent, title, kw.resizable, kw.default)
|
|
top_frame, bottom_frame = self.createFrames(kw)
|
|
self.createBitmaps(top_frame, kw)
|
|
|
|
cnf = {'master': top_frame,
|
|
'padding': (4, 1),
|
|
}
|
|
frame = Tkinter.Frame(**cnf)
|
|
frame.pack(expand=Tkinter.YES, fill=Tkinter.BOTH, padx=10, pady=10)
|
|
frame.columnconfigure(0, weight=1)
|
|
cnf['master'] = frame
|
|
cnf['text'] = _('N')
|
|
l = Tkinter.Label(**cnf)
|
|
l.grid(row=0, column=0, sticky='ew')
|
|
cnf['text'] = _('Game number')
|
|
l = Tkinter.Label(**cnf)
|
|
l.grid(row=0, column=1, sticky='ew')
|
|
cnf['text'] = _('Started at')
|
|
l = Tkinter.Label(**cnf)
|
|
l.grid(row=0, column=2, sticky='ew')
|
|
cnf['text'] = _('Result')
|
|
l = Tkinter.Label(**cnf)
|
|
l.grid(row=0, column=3, sticky='ew')
|
|
|
|
row = 1
|
|
for i in top:
|
|
# N
|
|
cnf['text'] = str(row)
|
|
l = Tkinter.Label(**cnf)
|
|
l.grid(row=row, column=0, sticky='ew')
|
|
# Game number
|
|
cnf['text'] = '#'+str(i.game_number)
|
|
l = Tkinter.Label(**cnf)
|
|
l.grid(row=row, column=1, sticky='ew')
|
|
# Start time
|
|
t = time.strftime('%Y-%m-%d %H:%M', time.localtime(i.game_start_time))
|
|
cnf['text'] = t
|
|
l = Tkinter.Label(**cnf)
|
|
l.grid(row=row, column=2, sticky='ew')
|
|
# Result
|
|
if isinstance(i.value, float):
|
|
# time
|
|
s = format_time(i.value)
|
|
else:
|
|
# moves
|
|
s = str(i.value)
|
|
cnf['text'] = s
|
|
l = Tkinter.Label(**cnf)
|
|
l.grid(row=row, column=3, sticky='ew')
|
|
row += 1
|
|
|
|
focus = self.createButtons(bottom_frame, kw)
|
|
self.mainloop(focus, kw.timeout)
|
|
|
|
|
|
def initKw(self, kw):
|
|
kw = KwStruct(kw, strings=(_('&OK'),), default=0, separatorwidth=2)
|
|
return MfxDialog.initKw(self, kw)
|
|
|
|
|
|
class Top_StatsDialog(MfxDialog):
|
|
def __init__(self, parent, title, app, player, gameid, **kw):
|
|
self.app = app
|
|
kw = self.initKw(kw)
|
|
MfxDialog.__init__(self, parent, title, kw.resizable, kw.default)
|
|
top_frame, bottom_frame = self.createFrames(kw)
|
|
self.createBitmaps(top_frame, kw)
|
|
|
|
frame = Tkinter.Frame(top_frame)
|
|
frame.pack(expand=Tkinter.YES, fill=Tkinter.BOTH, padx=10, pady=10)
|
|
frame.columnconfigure(0, weight=1)
|
|
|
|
if (player in app.stats.games_stats and
|
|
gameid in app.stats.games_stats[player] and
|
|
app.stats.games_stats[player][gameid].time_result.top):
|
|
|
|
Tkinter.Label(frame, text=_('Minimum')).grid(row=0, column=1, padx=4)
|
|
Tkinter.Label(frame, text=_('Maximum')).grid(row=0, column=2, padx=4)
|
|
Tkinter.Label(frame, text=_('Average')).grid(row=0, column=3, padx=4)
|
|
##Tkinter.Label(frame, text=_('Total')).grid(row=0, column=4)
|
|
|
|
s = app.stats.games_stats[player][gameid]
|
|
row = 1
|
|
ll = [
|
|
(_('Playing time:'),
|
|
format_time(s.time_result.min),
|
|
format_time(s.time_result.max),
|
|
format_time(s.time_result.average),
|
|
format_time(s.time_result.total),
|
|
s.time_result.top,
|
|
),
|
|
(_('Moves:'),
|
|
s.moves_result.min,
|
|
s.moves_result.max,
|
|
round(s.moves_result.average, 2),
|
|
s.moves_result.total,
|
|
s.moves_result.top,
|
|
),
|
|
(_('Total moves:'),
|
|
s.total_moves_result.min,
|
|
s.total_moves_result.max,
|
|
round(s.total_moves_result.average, 2),
|
|
s.total_moves_result.total,
|
|
s.total_moves_result.top,
|
|
),
|
|
]
|
|
## if s.score_result.min:
|
|
## ll.append(('Score:',
|
|
## s.score_result.min,
|
|
## s.score_result.max,
|
|
## round(s.score_result.average, 2),
|
|
## s.score_result.top,
|
|
## ))
|
|
## if s.score_casino_result.min:
|
|
## ll.append(('Casino Score:',
|
|
## s.score_casino_result.min,
|
|
## s.score_casino_result.max,
|
|
## round(s.score_casino_result.average, 2), ))
|
|
for l, min, max, avr, tot, top in ll:
|
|
Tkinter.Label(frame, text=l).grid(row=row, column=0)
|
|
Tkinter.Label(frame, text=str(min)).grid(row=row, column=1)
|
|
Tkinter.Label(frame, text=str(max)).grid(row=row, column=2)
|
|
Tkinter.Label(frame, text=str(avr)).grid(row=row, column=3)
|
|
##Tkinter.Label(frame, text=str(tot)).grid(row=row, column=4)
|
|
b = Tkinter.Button(frame, text=TOP_TITLE+' ...', width=10,
|
|
command=lambda top=top: self.showTop(top))
|
|
b.grid(row=row, column=5)
|
|
row += 1
|
|
else:
|
|
Tkinter.Label(frame, text=_('No TOP for this game')).pack()
|
|
|
|
focus = self.createButtons(bottom_frame, kw)
|
|
self.mainloop(focus, kw.timeout)
|
|
|
|
def showTop(self, top):
|
|
#print top
|
|
d = _TopDialog(self.top, TOP_TITLE, top)
|
|
|
|
def initKw(self, kw):
|
|
kw = KwStruct(kw,
|
|
strings=(_('&OK'),),
|
|
default=0,
|
|
image=self.app.gimages.logos[4],
|
|
separatorwidth=2,
|
|
)
|
|
return MfxDialog.initKw(self, kw)
|
|
|
|
|
|
# /***********************************************************************
|
|
# //
|
|
# ************************************************************************/
|
|
|
|
class ProgressionDialog(MfxDialog):
|
|
def __init__(self, parent, title, app, player, gameid, **kw):
|
|
|
|
font_name = app.getFont('default')
|
|
font = tkFont.Font(parent, font_name)
|
|
tkfont = tkFont.Font(parent, font)
|
|
font_metrics = font.metrics()
|
|
measure = tkfont.measure
|
|
self.text_height = font_metrics['linespace']
|
|
self.text_width = measure('XX.XX.XX')
|
|
|
|
self.items = []
|
|
self.formatter = ProgressionFormatter(app, player, gameid)
|
|
|
|
kw = self.initKw(kw)
|
|
MfxDialog.__init__(self, parent, title, kw.resizable, kw.default)
|
|
top_frame, bottom_frame = self.createFrames(kw)
|
|
self.createBitmaps(top_frame, kw)
|
|
|
|
frame = Tkinter.Frame(top_frame)
|
|
frame.pack(expand=True, fill='both', padx=5, pady=10)
|
|
frame.columnconfigure(0, weight=1)
|
|
|
|
# constants
|
|
self.canvas_width, self.canvas_height = 600, 250
|
|
if parent.winfo_screenwidth() < 800 or \
|
|
parent.winfo_screenheight() < 600:
|
|
self.canvas_width, self.canvas_height = 400, 200
|
|
self.xmargin, self.ymargin = 10, 10
|
|
self.graph_dx, self.graph_dy = 10, 10
|
|
self.played_color = '#ff7ee9'
|
|
self.won_color = '#00dc28'
|
|
self.percent_color = 'blue'
|
|
# create canvas
|
|
self.canvas = canvas = Tkinter.Canvas(frame, bg='#dfe8ff', bd=0,
|
|
highlightthickness=1,
|
|
highlightbackground='black',
|
|
width=self.canvas_width,
|
|
height=self.canvas_height)
|
|
canvas.pack(side='left', padx=5)
|
|
#
|
|
dir = os.path.join('images', 'stats')
|
|
try:
|
|
fn = app.dataloader.findImage('progression', dir)
|
|
self.bg_image = loadImage(fn)
|
|
canvas.create_image(0, 0, image=self.bg_image, anchor='nw')
|
|
except:
|
|
pass
|
|
#
|
|
tw = max(measure(_('Games/day')),
|
|
measure(_('Games/week')),
|
|
measure(_('% won')))
|
|
self.left_margin = self.xmargin+tw/2
|
|
self.right_margin = self.xmargin+tw/2
|
|
self.top_margin = 15+self.text_height
|
|
self.bottom_margin = 15+self.text_height+10+self.text_height
|
|
#
|
|
x0, y0 = self.left_margin, self.canvas_height-self.bottom_margin
|
|
x1, y1 = self.canvas_width-self.right_margin, self.top_margin
|
|
canvas.create_rectangle(x0, y0, x1, y1, fill='white')
|
|
# horizontal axis
|
|
canvas.create_line(x0, y0, x1, y0, width=3)
|
|
|
|
# left vertical axis
|
|
canvas.create_line(x0, y0, x0, y1, width=3)
|
|
t = _('Games/day')
|
|
self.games_text_id = canvas.create_text(x0-4, y1-4, anchor='s', text=t)
|
|
|
|
# right vertical axis
|
|
canvas.create_line(x1, y0, x1, y1, width=3)
|
|
canvas.create_text(x1+4, y1-4, anchor='s', text=_('% won'))
|
|
|
|
# caption
|
|
d = self.text_height
|
|
x, y = self.xmargin, self.canvas_height-self.ymargin
|
|
id = canvas.create_rectangle(x, y, x+d, y-d, outline='black',
|
|
fill=self.played_color)
|
|
x += d+5
|
|
canvas.create_text(x, y, anchor='sw', text=_('Played'))
|
|
x += measure(_('Played'))+20
|
|
id = canvas.create_rectangle(x, y, x+d, y-d, outline='black',
|
|
fill=self.won_color)
|
|
x += d+5
|
|
canvas.create_text(x, y, anchor='sw', text=_('Won'))
|
|
x += measure(_('Won'))+20
|
|
id = canvas.create_rectangle(x, y, x+d, y-d, outline='black',
|
|
fill=self.percent_color)
|
|
x += d+5
|
|
canvas.create_text(x, y, anchor='sw', text=_('% won'))
|
|
|
|
# right frame
|
|
right_frame = Tkinter.Frame(frame)
|
|
right_frame.pack(side='left', fill='x', padx=5)
|
|
self.all_games_variable = var = Tkinter.StringVar()
|
|
var.set('all')
|
|
b = Tkinter.Radiobutton(right_frame, text=_('All games'),
|
|
variable=var, value='all',
|
|
command=self.updateGraph,
|
|
)
|
|
b.pack(fill='x', expand=True, padx=3, pady=1)
|
|
b = Tkinter.Radiobutton(right_frame, text=_('Current game'),
|
|
variable=var, value='current',
|
|
command=self.updateGraph,
|
|
)
|
|
b.pack(fill='x', expand=True, padx=3, pady=1)
|
|
label_frame = Tkinter.LabelFrame(right_frame, text=_('Statistics for'))
|
|
label_frame.pack(side='top', fill='x', pady=10)
|
|
self.variable = var = Tkinter.StringVar()
|
|
var.set('week')
|
|
for v, t in (
|
|
('week', _('Last 7 days')),
|
|
('month', _('Last month')),
|
|
('year', _('Last year')),
|
|
('all', _('All time')),
|
|
):
|
|
b = Tkinter.Radiobutton(label_frame, text=t, variable=var, value=v,
|
|
command=self.updateGraph,
|
|
)
|
|
b.pack(fill='x', expand=True, padx=3, pady=1)
|
|
label_frame = Tkinter.LabelFrame(right_frame, text=_('Show graphs'))
|
|
label_frame.pack(side='top', fill='x')
|
|
self.played_graph_var = Tkinter.BooleanVar()
|
|
self.played_graph_var.set(True)
|
|
b = Tkinter.Checkbutton(label_frame, text=_('Played'),
|
|
command=self.updateGraph,
|
|
variable=self.played_graph_var,
|
|
)
|
|
b.pack(fill='x', expand=True, padx=3, pady=1)
|
|
self.won_graph_var = Tkinter.BooleanVar()
|
|
self.won_graph_var.set(True)
|
|
b = Tkinter.Checkbutton(label_frame, text=_('Won'),
|
|
command=self.updateGraph,
|
|
variable=self.won_graph_var,
|
|
)
|
|
b.pack(fill='x', expand=True, padx=3, pady=1)
|
|
self.percent_graph_var = Tkinter.BooleanVar()
|
|
self.percent_graph_var.set(True)
|
|
b = Tkinter.Checkbutton(label_frame, text=_('% won'),
|
|
command=self.updateGraph,
|
|
variable=self.percent_graph_var,
|
|
)
|
|
b.pack(fill='x', expand=True, padx=3, pady=1)
|
|
|
|
self.updateGraph()
|
|
|
|
focus = self.createButtons(bottom_frame, kw)
|
|
self.mainloop(focus, kw.timeout)
|
|
|
|
|
|
def initKw(self, kw):
|
|
kw = KwStruct(kw, strings=(_('&OK'),), default=0, separatorwidth=2)
|
|
return MfxDialog.initKw(self, kw)
|
|
|
|
|
|
def updateGraph(self, *args):
|
|
interval = self.variable.get()
|
|
canvas = self.canvas
|
|
if self.items:
|
|
canvas.delete(*self.items)
|
|
self.items = []
|
|
|
|
all_games = (self.all_games_variable.get() == 'all')
|
|
result = self.formatter.getResults(interval, all_games)
|
|
|
|
if interval in ('week', 'month'):
|
|
t = _('Games/day')
|
|
else:
|
|
t = _('Games/week')
|
|
canvas.itemconfig(self.games_text_id, text=t)
|
|
|
|
graph_width = self.canvas_width-self.left_margin-self.right_margin
|
|
graph_height = self.canvas_height-self.top_margin-self.bottom_margin
|
|
dx = (graph_width-2*self.graph_dx)/(len(result)-1)
|
|
graph_dx = (graph_width-(len(result)-1)*dx)/2
|
|
dy = (graph_height-self.graph_dy)/5
|
|
x0, y0 = self.left_margin, self.canvas_height-self.bottom_margin
|
|
x1, y1 = self.canvas_width-self.right_margin, self.top_margin
|
|
td = self.text_height/2
|
|
|
|
# vertical scale
|
|
x = x0+graph_dx
|
|
xx = -100 # coord. of prev. text
|
|
for res in result:
|
|
if res[0] is not None and x > xx+self.text_width+4:
|
|
##id = canvas.create_line(x, y0, x, y0-5, width=3)
|
|
##self.items.append(id)
|
|
id = canvas.create_line(x, y0, x, y1, stipple='gray50')
|
|
self.items.append(id)
|
|
id = canvas.create_text(x, y0+td, anchor='n', text=res[0])
|
|
self.items.append(id)
|
|
xx = x
|
|
else:
|
|
id = canvas.create_line(x, y0, x, y0-3, width=1)
|
|
self.items.append(id)
|
|
x += dx
|
|
|
|
# horizontal scale
|
|
max_games = max([i[1] for i in result])
|
|
games_delta = max_games/5+1
|
|
percent = 0
|
|
games = 0
|
|
for y in range(y0, y1, -dy):
|
|
if y != y0:
|
|
id = canvas.create_line(x0, y, x1, y, stipple='gray50')
|
|
self.items.append(id)
|
|
id = canvas.create_text(x0-td, y, anchor='e', text=str(games))
|
|
self.items.append(id)
|
|
id = canvas.create_text(x1+td, y, anchor='w', text=str(percent))
|
|
self.items.append(id)
|
|
games += games_delta
|
|
percent += 20
|
|
|
|
# draw result
|
|
games_resolution = float(dy)/games_delta
|
|
percent_resolution = float(dy)/20
|
|
played_coords = []
|
|
won_coords = []
|
|
percent_coords = []
|
|
x = x0+graph_dx
|
|
for res in result:
|
|
played, won = res[1], res[2]
|
|
y = y0 - int(games_resolution*played)
|
|
played_coords += [x,y]
|
|
y = y0 - int(games_resolution*won)
|
|
won_coords += [x,y]
|
|
if played > 0:
|
|
percent = int(100.*won/played)
|
|
else:
|
|
percent = 0
|
|
y = y0 - int(percent_resolution*percent)
|
|
percent_coords += [x,y]
|
|
x += dx
|
|
if self.played_graph_var.get():
|
|
id = canvas.create_line(fill=self.played_color, width=3,
|
|
*played_coords)
|
|
self.items.append(id)
|
|
if self.won_graph_var.get():
|
|
id = canvas.create_line(fill=self.won_color, width=3,
|
|
*won_coords)
|
|
self.items.append(id)
|
|
if self.percent_graph_var.get():
|
|
id = canvas.create_line(fill=self.percent_color, width=3,
|
|
*percent_coords)
|
|
self.items.append(id)
|
|
|
|
|