-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGui.py
530 lines (393 loc) · 28.3 KB
/
Gui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
# -*- coding: utf-8 -*-
"""
Created on Sun Jan 21 13:36:04 2018
@author: rober
"""
"""The module that contains the main application."""
import tkinter as tk
import math
import os
import re
import scouting_data_getters as sdg
import games as gms
import graph as gph
import save_data as sd
import easter_eggs as ee
class ZScoutFrame(tk.Frame):
"""The frame the ZScout Gui is in."""
def __init__(self, parent):
"""
Make a ZScoutFrame.
Parameters:
parent: The parent of the frame.
"""
tk.Frame.__init__(self, parent, background='white')
self.parent = parent
self.dir_path = os.path.dirname(os.path.realpath(__file__))
self.state = sd.SaveData('Gui_state') #The state holds all data that should be persistent across runs
self.init_state()
self.initUI()
def init_state(self):
"""Initialize the state variable."""
self.state.non_override_write('summaries', {}) #If there is not already a 'summaries' variable in state, add one and make it equal to {}
def initUI(self):
"""Initialize the user interface."""
def get_go_to_frame(frame):
"""
Return a function that goes to the frame.
Parameters:
frame: The frame the function will go to when called
"""
return lambda *args, **kwargs: go_to_frame(frame)
def go_to_frame(frame):
"""
Go to the passed frame.
Parameters:
frame: The frame to go to
"""
if self.active_frame == frame:
#Already at the frame to go to
return
self.active_frame.pack_forget() #Remove the current frame from the gui
frame.pack(side=tk.TOP, fill=tk.BOTH, expand=True) #Add the new frame to the gui
self.active_frame = frame #Update the active frame
#end frame methods
def get_game():
"""Return the current game."""
return self.game
#scouting methods
def set_comp(startup=False):
"""
Set the current competition to the one specified in the comp_choose field, set relevant variables, and get team contribution data.
Parameters:
startup: Whether the gui is just starting up.
"""
# self.comp = self.comp_choose.get()
if not startup:
#If starting up, we should use the competition last opened in a previous run
#If not starting up, then the "Accept" button was pressed to set the comp and
#we should use the competition entered in the comp text field
self.state.comp = self.comp_choose.get().strip()
comp = self.state.comp #Makes the next line of code shorter
self.year = comp[:re.search('\D', comp).start()] #All the characters before the first non-digit
if self.year: #Don't do anything with an empty year
self.m_wid = 1200 #Twice the max width of graph data panels
#Don't ask, I don't know
self.game = sdg.get_game(folder=self.state.comp) #The folders are named after comp codes
#Get scouting
self.state.raw_scouting = sdg.get_raw_scouting_data(folder=self.state.comp) #Get the raw data, just as the scouters entered it
self.state.raw_scouting = get_game().process_scouting(self.state.raw_scouting) #Get the processed data
#Get contrs and averages
self.state.contrs = gms.contrs(self.state.raw_scouting, get_game()) #Histograms for the scores a team gets in a match for each category
self.state.averages = gms.averages_from_contrs(self.state.contrs) #The average a team scores in a match for each category
#Get categories
#Access the first team in raw_scouting, access its first match, and get the keys
self.state.teams = list(self.state.contrs.keys()) #The teams are the keys
# print(self.state.teams)
first_team = self.state.teams[0]
scouting_cats = self.state.raw_scouting[first_team][0][1].keys()
self.state.categories = gms.get_cats(scouting_cats, get_game().categories) #All the categories both in the game categories and the scouting categories
self.state.numeric_cats = gms.get_cats(scouting_cats, get_game().numeric_categories, numeric=True) #All the number categories
#Get teams
self.error.set("")
config_teams_frame()
config_ranking_frame()
self.state.save()
def config_teams_frame():
"""Set up the frame that shows a list of teams in the current competition."""
self.state.teams.sort(key=lambda t: int(t)) #Sort the teams in increasing numerical order.
num_in_chunk = 10 #How many teams to display per line.
self.teams_text.delete('1.0', tk.END) #Clear entire panel
self.teams_text.insert(tk.INSERT, '\n') #Start with a newline for spacing
self.teams_text.insert(tk.INSERT, ' ' * (3*num_in_chunk - 3 + 10) + 'Teams:\n') #Center-align 'Teams:'
for i in range(0, int((len(self.state.teams) / num_in_chunk) + 1)): #Go through teams in chunks
string = ' ' * 10 #Buffer space
for j in range(0, num_in_chunk):
index = num_in_chunk*i + j #The index of the team
if(index < len(self.state.teams)): #Don't go past the end of the list
team = self.state.teams[index]
ln = len(team)
string += team + ' '*(6-ln) #Pad the string to six characters
self.teams_text.insert(tk.INSERT, string + '\n') #Add a line
self.teams_text.config(state=tk.DISABLED) #Make it so the teams list can't be modified
def get_weight(cat):
"""
Return the current ranking for the given category.
Parameters:
cat: The category to get the ranking for.
"""
string = self.cat_weight_fields[cat].get() #The string entered for the category weight
return float(string) if len(string) > 0 else 0 #Empty strings are counted as 0
def get_default_ranks():
"""Return the """
weights = get_game().default_weights
teams = self.state.teams
result = {}
for team in teams:
result[team] = get_score(self.state.averages[team], weights=weights)
return result
def get_score(avs, weights=None, weight_func=None, verbose=False):
"""
Return the score for a team with avs given a function from categories to weights.
Parameters:
avs: The average scores for the team. A dict from categories to doubles.
weights: The weights for each category. A dict from categories to doubles.
weight_func: The weights for each category. A function from categories to doubles.
verbose: Whether to print debug info
"""
if not weights is None:
weight_func = lambda a: weights[a] #Make a weight_func equivalent to weights
if weights is None and weight_func is None:
weight_func = lambda a:0 #If no weight info is passed, all weights are zero
score = 0
for cat in self.state.numeric_cats:
if verbose: #Debug info
print(avs.get(cat, 0), float(weight_func(cat)))
score += avs.get(cat,0) * float(weight_func(cat)) #Add the average times the weight
return score
def score(team):
"""
The score for a team given the current weightings.
Parameters:
team: The team to return the score for.
"""
avs = self.state.averages[team]
score = get_score(avs, weight_func=get_weight)
return score
def config_ranking_frame():
"""Set up the frame that displays scores and ranks for the teams"""
def refresh_rankings():
"""Set up the rankings for each team"""
self.team_ranks_panel.pack_forget() #Get rid of the old rankings
self.team_ranks_panel = tk.Frame(self.ranking_frame) #Make a new ranks panel
self.team_ranks_panel.grid(row=3, column=0) #Add the panel
self.team_ranks_textbox = tk.Text(self.team_ranks_panel, width=24, wrap=tk.NONE) #The textbox with the ranking and score information
self.team_ranks_textbox.pack(side=tk.TOP) #Add the team ranks textbox
r_teams = self.state.teams[:] #The teams to show ranks for
r_teams.sort(key=lambda t:-score(t)) #Sort the teams by score in descending order
for i in range(0, len(r_teams)): #Add the teams to the team ranks textbox one at a time
team = r_teams[i] #Get the team to add
num_string = str(i+1)
num_string = num_string + ':' + (' ' * (4-len(num_string)))
string = num_string + str(team) #The rank and the team
string += ' ' * (11-len(string)) + 'with ' + '%.2f' % score(team) #The score of the team
if i != len(r_teams) - 1: #Add newlines after every string but the last
string += '\n'
self.team_ranks_textbox.insert(tk.INSERT, chars=string) #Add the string to the team ranks textbox
self.team_ranks_textbox.config(state=tk.DISABLED, height=30) #Make it so the team ranks textbox can't be edited
do_easter_eggs() #Trigger any appropriate easter eggs
for child in self.ranking_frame.winfo_children(): #Get rid of all the child widgets
child.destroy()
self.ranking_scroll = tk.Scrollbar(self.ranking_frame, orient=tk.HORIZONTAL) #Make a scrollbar for the weight setting
self.rank_box_canvas = tk.Canvas(self.ranking_frame, relief=tk.RAISED, xscrollcommand=self.ranking_scroll.set) #Make a convas to put the weight setters in
#We need to do this because we're using a scrollbar and scrollbars are jank in tk
self.rank_box_canvas.grid(row=0, column=0) #Add the rank box canvas
self.ranking_scroll.grid(row=1, column=0, sticky=tk.N+tk.S+tk.E+tk.W) #Add the rank box scrollbar
self.rank_box_frame = tk.Frame(self.rank_box_canvas, relief=tk.RAISED) #The frame to put the weight setters in
self.rank_box_frame.grid(row=0, column=0) #Add the rank box frame
self.rank_box_frame.bind('<Configure>', get_conf_canv(self.rank_box_canvas, width=1343, height=50)) #Set the config method to config the canvas to the right dimensions
self.rank_box_canvas.create_window((0, 0), window=self.rank_box_frame, tags='self.rank_box_frame') #Make a place in the canvas for the frame
#(Because tk scrollbars are jank)
self.ranking_scroll.config(command=self.rank_box_canvas.xview) #Link the scrollbar to the rank box canvas
self.cat_weight_fields = {} #Set the weight map to empty
for cat in self.state.numeric_cats: #Construct weight-setting panel
entry_panel = tk.Frame(self.rank_box_frame, relief=tk.RAISED) #An empty panel to put the weight setter in
entry_panel.pack(side=tk.LEFT) #Add the panel
label = tk.Label(entry_panel, text=cat) #The label for the category
label.pack(side=tk.TOP) #Add the label to the entry panel
entry = tk.Entry(entry_panel) #The textbox for entering the weight
default_weight = str(get_game().default_weights[cat]) #Get the default weight for the category
entry.insert(index=0, string=default_weight) #Add the default weight to the weight textbox
entry.pack(side=tk.TOP) #Add the textbox to the entry panel
self.cat_weight_fields[cat] = entry
self.ranking_refresh_button = tk.Button(self.ranking_frame, text='Refresh Rankings', command=refresh_rankings) #The button to refresh the rankings
self.ranking_refresh_button.grid(row=2, column=0) #Add the ranking refresh button
self.team_ranks_panel = tk.Frame(self.ranking_frame) #The panel for the team ranks
self.team_ranks_panel.grid(row=3, column=0) #Add the team ranks panel
#end scouting methods
#team summary methods
def get_match_scouting_string(match, line_data):
"""
Return a string describing the match and line data in human-readable format.
Parameters:
match: The match to return a scouting string for
line_data: The data for the match
"""
result = ''
line_data_types = ['match_id'] #The types to put in the scouting string
line_data['match_id'] = match #Add the match_id to the line_data
for data_type in self.state.categories: #Add all the data types
line_data_types.append(data_type)
for line_data_type in line_data_types: #Add the info for each data type
data = line_data.get(line_data_type, '') #Retrieve the info, use an empty string if none
length = len(line_data_type) #The length of the category string
inner_length = length - len(data.__str__()) #The whitespace around the data
result += ' '*math.floor(inner_length /2) + data.__str__() + ' '*math.ceil(inner_length / 2) + ' '*2 #Center-align the info
return result.rstrip()
def get_column_string():
"""Return the string at the top of the scouting summary that labels the columns."""
result = 'match_id '
for data_type in self.state.categories:
result += data_type.__str__() + ' '
return result.rstrip()
def do_easter_eggs():
"""Trigger any appropriate easter eggs"""
ee.do_weight_eggs(get_weight, get_game().default_weights, self.state.numeric_cats)
ranks = {} #Collect the ranks
for team in self.state.teams:
ranks[team] = score(team)
ee.do_rank_eggs(ranks, get_default_ranks())
ee.do_gen_eggs()
def show_summary():
"""Show the graphs and whatnot for a team."""
team = self.team_summary_team_field.get().strip() #Get the team from the team textbox
self.team_summary_inner_frame.pack_forget() #Get rid of the old frame
self.team_summary_inner_frame = tk.Frame(self.team_summary_canvas_frame, relief=tk.RAISED, borderwidth=1) #The frame for the team summary
self.team_summary_inner_frame.pack(side=tk.TOP) #Add the team summary inner frame
#Make scouting data viewer
scouting_text_scrollbar = tk.Scrollbar(self.team_summary_inner_frame, orient=tk.HORIZONTAL) #The scrollbar for the scouting text
scouting_text_canvas = tk.Canvas(self.team_summary_inner_frame, xscrollcommand=scouting_text_scrollbar.set, width=1000) #The canvas to put the scouting text in
scouting_text_canvas.pack(side=tk.TOP, fill=tk.NONE) #Add the scouting text canvas
self.team_summary_inner_frame.bind('<Configure>', get_conf_canv(scouting_text_canvas, width=1000, height=400)) #Set the configuring to configure the frame to the right dimensions
scouting_text_pane = tk.Text(self.team_summary_canvas, wrap=tk.NONE) #The text pane with the scouting data in it
scouting_text_pane.grid(row=0, column=0) #Add the scouting text pane
scouting_text_scrollbar.pack(side=tk.TOP, fill=tk.X, padx=150, pady=2) #Add the scouting text scrollbar
scouting_text_scrollbar.config(command=scouting_text_canvas.xview) #Set the scrollbar to horizontal scrolling on scouting_text_canvas
scouting_text_canvas.create_window((0, 0), window=scouting_text_pane, anchor='nw', tags='scouting_text_pane') #Make a place in the scouting text canvas for the pane
#Make editable summary pane
key = self.state.comp, team #The key for caching data
def save_summary(summary):
"""
Save the current summary to the state variable
Parameters:
summary: The summary to save.
"""
string = summary.get("1.0",'end-1c') #Get all the text
do_easter_eggs()
self.state.summaries[key] = string #Add the summary data to state.summaries
self.state.save() #Save the state (writes to a file)
scouting_editable_summary = tk.Text(self.team_summary_inner_frame, height=5) #The editable summary
prev_summary = self.state.summaries.get(key, '') #The summary when the gui was last closed
scouting_editable_summary.insert('1.0', prev_summary) #Add the previous summary to the summary textbox
scouting_editable_summary.pack(side=tk.TOP) #Add the scouting editable summary
save_button = tk.Button(self.team_summary_inner_frame, text='Save', command=lambda *args:save_summary(scouting_editable_summary)) #The button to save the editable summary
save_button.pack(side=tk.TOP) #Add the save button
raw_team_scouting = self.state.raw_scouting.get(team, []) #Scouting for this team
scouting_string_list = [get_column_string()] #The column headers should be at the top
lens = [len(scouting_string_list[0])] #start with len of column string
for match, line_data in raw_team_scouting: #Collect list of scouting strings, insert later
string = get_match_scouting_string(match, line_data) #Get the scouting string
lens.append(len(string)) #Add the length of this string to the lens list
scouting_string_list.append(get_match_scouting_string(match, line_data)) #Add the scouting string
av_string = get_match_scouting_string('Avs:', self.state.averages[team]) #The string for the averages
lens.append(len(av_string)) #Add the len of the av string to the lens
scouting_string_list.append(av_string) #Add the av string
#Expand text box to right width
scouting_text_pane.config(width = max(lens) + 1) #Make the text pane wide enough to hold all its text
for s in scouting_string_list: #Add the strings to the pane
scouting_text_pane.insert(tk.INSERT, s + '\n') #Add the current string
scouting_text_pane.config(state=tk.DISABLED) #Make the scouting text pane not editable
#Add the category charts
first=True #To track whether we're on the first category chart
for category in self.state.numeric_cats: #Add a graph for each category
prediction = self.state.contrs[team][category] #Use scouted contrs
if not first: #Add spacing between the graphs
tk.Label(self.team_summary_inner_frame, text=' ').pack(side=tk.TOP, padx=0, pady=5)
label = tk.Label(self.team_summary_inner_frame, text=category + ':') #The category label
label.pack(side=tk.TOP, padx=5, pady=5) #Add the label
graph_data = gph.get_scouting_graph_data(prediction, red_and_blue=False, num_margins=None) #The data to display in the graph
graph_frame = gph.GraphDataPanel(self.team_summary_inner_frame, graph_data, g_height=100, max_width=self.m_wid/2)#, red_and_blue=False) #The graph
graph_frame.pack(side=tk.TOP, padx=5, pady=5) #Add the graph frame
first = False #Now we're not on the first one
#end team summary methods
def config_canvas(canvas, width=1343, height=650):
"""
Configure the given canvas with the given dimensions.
Parameters:
width: The width to configure the canvas with.
height: The height to configure the canvas with.
"""
canvas.configure(scrollregion=canvas.bbox('all')) #Make the canvas scorollable
canvas.config(width=width,height=height) #Configure the width and height
def get_conf_canv(canvas, width, height):
"""
Return a lambda that configs the given canvas to the given width and height.
Parameters:
canvas: The canvas to config
width: The width to set the canvas to
height: The height to set the canvas to
"""
return lambda event: config_canvas(canvas, width, height)
def setup_menu():
"""Set up the menu frame menu."""
self.menubar = tk.Menu(self) #A menubar
self.frame_select = tk.Menu(self.menubar, tearoff=0) #The menubar to choose the frames from
self.frame_select.add_command(label='Scouting', command=get_go_to_frame(self.scouting_frame)) #Add the command to go to scouting
self.frame_select.add_command(label='Teams', command=get_go_to_frame(self.teams_frame)) #Add the command to go to teams
self.frame_select.add_command(label='Competition', command=get_go_to_frame(self.competition_frame)) #Add the command to go to compeitition
self.frame_select.add_command(label='Ranking', command=get_go_to_frame(self.ranking_frame)) #Add the command to go to ranking
self.menubar.add_cascade(label='Sections', menu=self.frame_select) #Add the frame select to the menubar
self.parent.config(menu=self.menubar) #Add the menubar to the frame
def setup_team_summary_frame():
"""Set up the team summary frame."""
self.scouting_frame = tk.Frame(self, relief=tk.RAISED, borderwidth=1) #The scouting frame
self.active_frame = self.scouting_frame #This frame is the frame to start from
self.team_summary_y_scroll = tk.Scrollbar(self.scouting_frame, orient=tk.VERTICAL) #The vertical scrollbar
self.team_summary_y_scroll.grid(row=0, column=1, sticky=tk.N+tk.S+tk.E+tk.W) #Add the team summary y scroll
self.team_summary_canvas = tk.Canvas(self.scouting_frame, yscrollcommand=self.team_summary_y_scroll.set) #The canvas for the team summary (because we're using a scrollbar)
self.team_summary_canvas.grid(row=0, column=0) #Add the team summary canvas
self.team_summary_canvas_frame = tk.Frame(self.team_summary_canvas) #The frame to put in the team summary canvas
self.team_summary_canvas_frame.bind('<Configure>', lambda e: config_canvas(self.team_summary_canvas)) #Configure the frame to set dimensions when configured
self.team_summary_canvas.create_window((0,0), window=self.team_summary_canvas_frame, anchor='nw', tags='self.team_summary_canvas_frame') #Make a space for the scouting panel in the scouting canvas
self.team_summary_y_scroll.config(command=self.team_summary_canvas.yview) #Make the scroll scroll the team summary canvas
self.team_summary_team_label = tk.Label(self.team_summary_canvas_frame, text='Team:') #The label that says 'Team'
self.team_summary_team_label.pack(side=tk.TOP, padx=5, pady=5) #Add the team summary team label
self.team_summary_team_field = tk.Entry(self.team_summary_canvas_frame) #The field to enter the team in
self.team_summary_team_field.pack(side=tk.TOP, padx=5, pady=5) #Add the team summary team field
self.team_summary_button = tk.Button(self.team_summary_canvas_frame, command=show_summary, text='Show Summary') #The button to show the summary
self.team_summary_button.pack(side=tk.TOP, padx=5, pady=5) #Add the team summary button
self.team_summary_inner_frame = tk.Frame(self.team_summary_canvas_frame, relief=tk.RAISED, borderwidth=1) #The frame inside the canvas
def setup_comp_frame():
"""Set up the team competition frame."""
#vars
self.error = tk.StringVar() #The variable to show any errors in
self.contrs_from_team_from_category = {} #A dict from categories to dicts from teams to dicts to scores to probabilities
self.state.categories = [] #The current categories
#end vars
self.competition_frame = tk.Frame(self, relief=tk.RAISED, borderwidth=1) #The frame to select the competition in
self.comp_label = tk.Label(self.competition_frame, text='Competition:') #The label that says 'Competition'
self.comp_label.pack(side=tk.TOP, padx=5, pady=5) #Add the comp label
comp = self.state.read_with_default('comp', '', write=True) #Get the comp from the state, make it '' if there is none
self.comp_choose = tk.Entry(self.competition_frame) #The textbox to write the competition in
self.comp_choose.insert(0, comp) #Put the current comp into the textbox
self.comp_choose.pack(side=tk.TOP, padx=5, pady=5) #Add comp choose
self.comp_button = tk.Button(self.competition_frame, text="Accept", command=set_comp) #The button to set the comp
self.comp_button.pack(side=tk.TOP, padx=5, pady=5) #Add the comp button
self.error_label = tk.Label(self.competition_frame, textvariable=self.error) #The label to show errors
self.error_label.pack(side=tk.TOP, pady=5) #Add the error label
def setup_ranking_frame():
"""Set up the ranking frame."""
self.ranking_frame = tk.Frame(self, relief=tk.RAISED, borderwidth=1) #Make the frame
def setup_teams_frame():
"""Set up the teams frame."""
self.teams_frame = tk.Frame(self, relief=tk.RAISED, borderwidth=1) #The teams frame
self.teams_text = tk.Text(self.teams_frame, wrap=tk.NONE, width=1200) #The text to show the teams in
self.teams_text.pack(side=tk.TOP, padx=0, pady=5) #Add the teams text
self.parent.title('Scouting Viewer') #Set the title of the gui
self.pack(fill=tk.BOTH, expand=True) #Add the frame
self.year = '' #Cue Doctor Who theme song
#Set up all the frames
setup_team_summary_frame()
setup_comp_frame()
setup_ranking_frame()
setup_teams_frame()
setup_menu()
set_comp(startup=True)
def main():
"""Run ZScout."""
root = tk.Tk() #Make the root
root.geometry('350x250+300+300') #Set the dimensions and location
tk.app = ZScoutFrame(root) #Make the main frame
root.mainloop() #Start
if __name__ == '__main__':
main() #Run