-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
191 lines (164 loc) · 6.63 KB
/
main.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
##############################################################################################################################################
## ##
## main.py ##
##------------------------------------------------------------------------------------------------------------------------------------------##
## ##
## Author: Joseph Armstrong (armstjc@mail.uc.edu) ##
## Description: Handles program logic for the main startup window for Visual Sports Studio. ##
## ##
##############################################################################################################################################
## Required to start.
import sys
#import threading
sys.path.append('../Visual-Sports-Studio')
import PySimpleGUI as sg
from vss_defaults import VSS_APPLICATION_NAME
from vss_about import vss_about_window
from vss_sports.vss_baseball import baseball_main_window
from vss_sports.vss_basketball import basketball_main_window
from vss_sports.vss_football import football_main_window
from vss_sports.vss_soccer import soccer_main_window
from vss_utils.vss_utilities import center_window, create_temp_dir, clear_temp_dir,\
vss_load_settings
from vss_utils.vss_settings_window import vss_settings_window
def main_window():
settings_json = vss_load_settings()
#BTN_SIZE = (5,5)
sg.theme(settings_json['app_settings']['theme'])
sg.set_options(
window_location = (0,0)
,element_padding=(5,5)
#,font = 'Franklin 14'
)
menu_bar = [
['File',['---','Exit']],
['Settings'],
['Help',['About VSS']]
]
body_layout = [
[
sg.Text(
f'Welcome to {VSS_APPLICATION_NAME}',
font='Segoe 20 bold',
expand_x=True
),
sg.Button(image_filename='vss_resources/icons/settings_50x50.png',
tooltip='Settings',
visible=True,
key='-SETTINGS_BUTTON-')
],
[
sg.Text(
'Select a sport to get started.',
font=''
)
],
#sg.Push(),
[
sg.Button(#'Baseball',
image_filename='vss_resources/icons/baseball_50x50.png',
tooltip='Baseball',
visible=True,
disabled=False,
auto_size_button=False,
# size=BTN_SIZE,
# expand_x=True,
# expand_y=True,
key='-BASEBALL-'
),
sg.Text('Baseball',size=(15,1),font='Segoe 14'),
sg.Text('MLB baseball data')
],
#sg.Push(),
[sg.Text('Coming soon but shown here for demonstrative purposes.',justification='center',font='italic 10')],
[
sg.Button(#'American Football',
image_filename='vss_resources/icons/football_50x50.png',
tooltip='American Football',
visible=True,
disabled=False,
auto_size_button=False,
# size=BTN_SIZE,
# expand_x=True,
# expand_y=True,
key='-FOOTBALL-'
),
sg.Text('American Football',size=(15,1),font='Segoe 14',tooltip='Also known as \"American Football\", \"Gridiron Football\", or \"Football\".'),
sg.Text('NFL football data.')
],
[
sg.Button(#'Soccer',
image_filename='vss_resources/icons/soccer_50x50.png',
tooltip='Association Football (Soccer)',
visible=True,
disabled=False,
auto_size_button=False,
# size=BTN_SIZE,
# expand_x=True,
# expand_y=True,
key='-SOCCER-'
),
sg.Text('Soccer',size=(15,1),font='Segoe 14',tooltip='Also known as \"Association Football\", \"Soccer\", or \"Football\".'),
sg.Text('Soccer data from around the world.')
],
[
sg.Button(#'Basketball',
image_filename='vss_resources/icons/basketball_50x50.png',
tooltip='Basketball',
visible=True,
disabled=False,
auto_size_button=False,
# size=BTN_SIZE,
# expand_x=True,
# expand_y=True,
key='-BASKETBALL-'
),
sg.Text('Basketball',size=(15,1),font='Segoe 14',tooltip='Basketball'),
sg.Text('Basketball data from around the world.')
],
]
layout = [
#[sg.Titlebar('Welcome to Visual Sports Studio')],
[sg.Menu(menu_bar,visible=True)],
[
#sg.Column(sidebar_layout),
#sg.VSeparator(),
sg.Column(
body_layout,
expand_x=True,
)
]
]
window = sg.Window(f'{VSS_APPLICATION_NAME}',
layout,
default_button_element_size=(100,20),
#resizable=True,
finalize=True
)
center_window(window)
create_temp_dir()
##############################################################################################################################################
## Event Loop
##############################################################################################################################################
while True:
event, values = window.read()
if event == sg.WIN_CLOSED or event == 'Exit':
#clear_temp_dir()
break
if event == '-BASKETBALL-':
basketball_main_window()
if event == '-BASEBALL-':
baseball_main_window()
if event == '-FOOTBALL-':
football_main_window()
if event == '-SOCCER-':
soccer_main_window()
if event == 'About VSS':
vss_about_window()
if event == '-SETTINGS_BUTTON-':
vss_settings_window(settings_json)
window.close()
def main():
main_window()
if __name__ == '__main__':
main()