-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmlbstats.py
executable file
·378 lines (337 loc) · 12.4 KB
/
mlbstats.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
#!/usr/bin/env python
import curses
import curses.textpad
import datetime
import re
import select
import errno
import signal
import sys
import time
from MLBviewer import *
# used for ignoring sigwinch signal
def donothing(sig, frame):
pass
def doinstall(config,dct,dir=None):
print "Creating configuration files"
if dir:
try:
os.mkdir(dir)
except:
print 'Could not create directory: ' + dir + '\n'
print 'See README for configuration instructions\n'
sys.exit()
# now write the config file
try:
fp = open(config,'w')
except:
print 'Could not write config file: ' + config
print 'Please check directory permissions.'
sys.exit()
# fp.write('# See README for explanation of these settings.\n')
# fp.write('# user and pass are required except for Top Plays\n')
# fp.write('user=\n')
# fp.write('pass=\n\n')
for k in dct.keys():
if type(dct[k]) == type(list()):
if len(dct[k]) > 0:
for item in dct[k]:
fp.write(k + '=' + str(dct[k]) + '\n')
fp.write('\n')
else:
fp.write(k + '=' + '\n\n')
else:
fp.write(k + '=' + str(dct[k]) + '\n\n')
fp.close()
# print
# print 'Configuration complete! You are now ready to use mlbviewer.'
# print
# print 'Configuration file written to: '
# print
# print config
# print
# print 'Please review the settings. You will need to set user and pass.'
# sys.exit()
def mainloop(myscr,mycfg,mykeys):
# some initialization
log = open(LOGFILE, "a")
DISABLED_FEATURES = []
# add in a keybinding for listings that makes sense, e.g. Menu
mykeys.set('LISTINGS','m')
# not sure if we need this for remote displays but couldn't hurt
try:
curses.curs_set(0)
except curses.error:
pass
# initialize the color settings
if hasattr(curses, 'use_default_colors'):
try:
curses.use_default_colors()
if mycfg.get('use_color'):
try:
if mycfg.get('fg_color'):
mycfg.set('favorite_color', mycfg.get('fg_color'))
curses.init_pair(1, COLORS[mycfg.get('favorite_color')],
COLORS[mycfg.get('bg_color')])
except KeyError:
mycfg.set('use_color', False)
curses.init_pair(1, -1, -1)
except curses.error:
pass
# initialize the input
inputlst = [sys.stdin]
stats = MLBStats(mycfg)
optwin = MLBOptWin(myscr,mycfg)
helpwin = MLBStatsHelpWin(myscr,mykeys)
try:
stats.getStatsData()
except KeyError:
raise Exception,stats.url
statwin = MLBStatsWin(myscr,mycfg,stats.data,stats.last_update)
mywin = statwin
mywin.titleRefresh()
while True:
myscr.clear()
try:
mywin.Refresh()
except:
raise
mywin.titleRefresh()
mywin.statusRefresh()
# And now we do input.
try:
inputs, outputs, excepts = select.select(inputlst, [], [])
except select.error, e:
if e[0] != errno.EINTR:
raise
else:
signal.signal(signal.SIGWINCH, signal.SIG_IGN)
wiggle_timer = float(mycfg.get('wiggle_timer'))
time.sleep(wiggle_timer)
( y , x ) = mywin.getsize()
signal.signal(signal.SIGWINCH, donothing)
curses.resizeterm(y, x)
mywin.resize()
continue
if sys.stdin in inputs:
c = myscr.getch()
# NAVIGATION
if c in mykeys.get('UP'):
mywin.Up()
if c in mykeys.get('DOWN'):
mywin.Down()
if c in mykeys.get('HELP'):
mywin = helpwin
if c in mykeys.get('HITTING'):
mycfg.set('player_id', 0)
mycfg.set('stat_type','hitting')
mycfg.set('sort_column','avg')
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
mywin = statwin
if c in mykeys.get('PITCHING'):
mycfg.set('player_id', 0)
mycfg.set('stat_type','pitching')
mycfg.set('sort_column','era')
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
mywin = statwin
if c in mykeys.get('PLAYER'):
if mywin in ( helpwin, optwin ):
continue
if len(statwin.records) == 0:
continue
if int(mycfg.get('player_id')) > 0:
mycfg.set('player_id', 0)
else:
mycfg.set('player_id',int(statwin.records[statwin.current_cursor]['player_id']))
mycfg.set('player_name',statwin.records[statwin.current_cursor]['name_display_first_last'])
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
statwin.PgUp()
mywin = statwin
if c in mykeys.get('STATS_DEBUG'):
myscr.clear()
mywin.titlewin.clear()
try:
name = statwin.records[statwin.current_cursor]['name_display_last_init']
except:
name = mycfg.get('player_id')
mywin.titlewin.addnstr(0,0,'STATS DEBUG FOR %s' % name, curses.COLS-2)
mywin.titlewin.hline(1,0, curses.ACS_HLINE,curses.COLS-1)
myscr.addstr(3,0,repr(statwin.records[statwin.current_cursor]))
myscr.refresh()
mywin.titlewin.refresh()
mywin.statusWrite('Press a key to continue...',wait=-1)
mywin = statwin
if c in mykeys.get('URL_DEBUG'):
myscr.clear()
mywin.titlewin.clear()
mywin.titlewin.addstr(0,0,'URL DEBUG')
mywin.titlewin.hline(1,0, curses.ACS_HLINE,curses.COLS-1)
myscr.addnstr(3,0,'Stats settings:',curses.COLS-2)
myscr.addstr(4,0,repr(mycfg.data))
if curses.LINES > 15:
myscr.addnstr(11,0,'URL for current query:',curses.COLS-2)
myscr.addstr(12,0,repr(stats.url))
myscr.refresh()
mywin.titlewin.refresh()
mywin.statusWrite('Press a key to continue...',wait=-1)
mywin = statwin
if c in mykeys.get('DEBUG'):
if mycfg.get('debug'):
mycfg.set('debug', False)
else:
mycfg.set('debug', True)
mywin = statwin
# SCREENS
if c in mykeys.get('SORT'):
sortPrompt = 'Enter column to sort on: '
sortOrder = statwin.prompter(statwin.statuswin, sortPrompt).strip()
#sortOrder = sortOrder.strip()
if sortOrder.lower() == '2b':
sortOrder = 'd'
if sortOrder.lower() == '3b':
sortOrder = 't'
if sortOrder not in statwin.records[statwin.current_cursor].keys():
statwin.statusWrite('Invalid sort key!',wait=1)
continue
stats.sort = sortOrder.lower()
mycfg.set('sort_column',stats.sort)
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
mywin = statwin
if c in mykeys.get('TEAM'):
# build a reverse dictionary of teamcode to id
tmp = dict()
for t in STATS_TEAMS.keys():
tmp[STATS_TEAMS[t]] = t
teamPrompt = "Enter teamcode to sort on (or 'mlb' for all): "
teamCode = statwin.prompter(statwin.statuswin, teamPrompt).strip()
if teamCode not in tmp.keys():
statwin.statusWrite('Invalid team code!',wait=1)
continue
statwin.statusWrite('Refreshing statistics...')
mycfg.set('sort_team',tmp[teamCode])
stats.getStatsData()
statwin.data = stats.data
mywin = statwin
if c in mykeys.get('LEAGUE'):
try:
tmp = STATS_LEAGUES.index(mycfg.get('league'))
except:
mywin.statusWrite('Invalid league value, defaulting to MLB',wait=1)
mycfg.set('league','MLB')
continue
tmp = ( tmp + 1 ) % len(STATS_LEAGUES)
mycfg.set('league', STATS_LEAGUES[tmp])
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
mywin = statwin
if c in mykeys.get('YEAR'):
year_prompt = "Year? [YYYY]: "
query = statwin.prompter(statwin.statuswin,year_prompt).strip()
try:
year = time.strptime(query,"%Y").tm_year
except:
if query == '':
statwin.statusWrite('Changing to current year...',wait=1)
year = datetime.datetime.now().year
else:
statwin.statusWrite('Invalid year format.',wait=2)
continue
mycfg.set('season_type','ANY')
mycfg.set('season',year)
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
if c in mykeys.get('SEASON_TYPE'):
try:
tmp = STATS_SEASON_TYPES.index(mycfg.get('season_type'))
except:
tmp = -1
tmp = ( tmp + 1 ) % len(STATS_SEASON_TYPES)
mycfg.set('season_type', STATS_SEASON_TYPES[tmp])
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
mywin = statwin
if c in mykeys.get('ACTIVE'):
# it's a boolean. just flip the bit
try:
tmp = int(mycfg.get('active_sw'))
except ValueError:
# flip to a sensible default
tmp = 1
tmp ^= 1
mycfg.set('active_sw',tmp)
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
mywin = statwin
if c in mykeys.get('SORT_ORDER'):
try:
tmp = int(mycfg.get('sort_order'))
except:
tmp = -1
tmp = ( tmp + 1 ) % 3
#mycfg.set('sort_order',STATS_SORT_ORDER[tmp])
mycfg.set('sort_order',tmp)
statwin.statusWrite('Refreshing statistics...')
stats.getStatsData()
statwin.data = stats.data
mywin = statwin
if c in mykeys.get('QUIT'):
curses.nocbreak()
myscr.keypad(0)
curses.echo()
curses.endwin()
break
if __name__ == "__main__":
myconfdir = os.path.join(os.environ['HOME'],AUTHDIR)
myconf = os.path.join(myconfdir,STATFILE)
mydefaults = {'stat_type': 'pitching',
'sort_column': 'era',
'sort_order': 0,
'league': 'MLB',
'sort_team': 0,
'player_pool': 'QUALIFIER',
'player_id': 0,
'active_sw': 0,
'use_color': 0,
'favorite_color': 'cyan',
'favorite': [],
'bg_color': 'xterm',
'season_type': 'ANY',
'active_sw': 0,
'season': datetime.datetime.now().year,
'curses_debug': 0,
'wiggle_timer': 0.5,
'sort_order': 0,
'time_offset': '',
'triple_crown': 0,
'debug': 0, }
try:
os.lstat(myconf)
except:
try:
os.lstat(myconfdir)
except:
dir=myconfdir
else:
dir=None
doinstall(myconf,mydefaults,dir)
mycfg = MLBConfig(mydefaults)
mycfg.loads(myconf)
# STATS_KEYBINDINGS is a dict() of default keybindings
# found in MLBviewer/mlbStatsKeyBindings.py rather than
# MLBviewer/mlbConstants.py
mykeyfile = os.path.join(myconfdir,'keybindings')
mykeys = MLBKeyBindings(STATS_KEYBINDINGS)
mykeys.loads(mykeyfile)
curses.wrapper(mainloop, mycfg, mykeys)