/usr/lib/python2.7/dist-packages/MLBviewer/mlbMediaDetailWin.py is in mlbviewer 2015.sf.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/env
from mlbConstants import *
from mlbListWin import MLBListWin
from mlbMasterScoreboard import MLBMasterScoreboard
from mlbError import *
from mlbSchedule import gameTimeConvert
import datetime
import curses
class MLBMediaDetailWin(MLBListWin):
def __init__(self,myscr,mycfg,gid,games):
self.myscr = myscr
self.mycfg = mycfg
# any gid will do
# DONE: Leave it as gid ; necessary to align with listings view
#( self.year, self.month, self.day ) = mysched.data[0][1]
self.gid = gid
self.gameid = gid
self.gameid = self.gameid.replace('/','_')
self.gameid = self.gameid.replace('-','_')
( self.year, self.month, self.day ) = self.gameid.split('_')[:3]
self.games = games
self.statuswin = curses.newwin(1,curses.COLS-1,curses.LINES-1,0)
self.titlewin = curses.newwin(2,curses.COLS-1,0,0)
self.data = []
self.records = []
self.current_cursor = 0
self.record_cursor = 0
self.game_cursor = 0
def getMediaDetail(self,gid):
self.gid = gid
self.data = []
self.records = []
# This method does parsing and formatting of media detail for Refresh
self.formatMediaDetail()
# This is all just initialization ; setCursors should be called to
# align with listings position
self.game_cursor = 0
self.current_cursor = 0
self.record_cursor = 0
viewable = curses.LINES-4
if viewable % 2 > 0:
viewable -= 1
self.records = self.data[:viewable]
def setCursors(self,current_cursor,record_cursor):
self.game_cursor = current_cursor + record_cursor
# scoreboard scrolls two lines at a time
absolute_cursor = self.game_cursor * 2
viewable = curses.LINES-4
if viewable % 2 > 0:
viewable -= 1
# integer division will give us the correct top record position
try:
self.record_cursor = ( absolute_cursor / viewable ) * viewable
except:
raise MLBCursesError,"Screen too small."
# and find the current position in the viewable screen
self.current_cursor = absolute_cursor - self.record_cursor
# and finally collect the viewable records
self.records = self.data[self.record_cursor:self.record_cursor+viewable]
def formatMediaDetail(self):
for game in self.games:
status = game['status']
start = game['starttime']
starttime = start.strftime('%I:%M %p')
if status in ( 'Postponed', 'Cancelled' ):
home_video=("(None)",)
away_video=("(None)",)
home_audio=("(None)",)
away_audio=("(None)",)
alt_home_audio=[]
alt_away_audio=[]
else:
if not len(game['media']['video']):
away_video=("(None)",)
home_video=("(None)",)
else:
away_video=game['media']['video']['away']
home_video=game['media']['video']['home']
if not len(game['media']['audio']):
away_audio=("(None)",)
home_audio=("(None)",)
else:
away_audio=game['media']['audio']['away']
home_audio=game['media']['audio']['home']
alt_away_audio=game['media']['alt_audio']['away']
alt_home_audio=game['media']['alt_audio']['home']
away_vidstr = ("(No Video)",away_video[0])[len(away_video)>0]
home_vidstr = ("(No Video)",home_video[0])[len(home_video)>0]
away_audstr = ("(No Audio)",away_audio[0])[len(away_audio)>0]
home_audstr = ("(No Audio)",home_audio[0])[len(home_audio)>0]
cg_str = ("[-]","[C]")[len(game['media']['condensed'])>0]
archive_str = ("[-]", "[A]")[game['archive']]
mediaflags = "%s%s" % ( cg_str, archive_str )
away_substr1 = "%3s | [Video] %s" % \
( game['away'].upper(), away_vidstr )
away_substr2 = "%3s | [Audio] %-5s" % \
( "", away_audstr )
if len(alt_away_audio):
away_substr2 += " Alt: " + alt_away_audio[0]
away_str = "%10s %-23s %-30s %6s" % ( status, away_substr1, away_substr2, mediaflags )
home_substr1 = "%3s | [Video] %s" % \
( game['home'].upper(), home_vidstr )
home_substr2 = "%3s | [Audio] %-5s" % \
( "", home_audstr )
if len(alt_home_audio):
home_substr2 += " Alt: " + alt_home_audio[0]
home_str = "%10s %-23s %-30s" % ( starttime, home_substr1, home_substr2 )
self.data.append(away_str)
self.data.append(home_str)
return self.data
def Up(self):
if self.current_cursor - 2 < 0 and self.record_cursor - 2 >= 0:
viewable = curses.LINES-4
if viewable % 2 > 0:
viewable -= 1
self.current_cursor = viewable-2
#if self.current_cursor % 2 > 0:
# self.current_cursor -= 1
if self.record_cursor - viewable < 0:
self.record_cursor = 0
else:
self.record_cursor -= viewable
#if self.record_cursor % 2 > 0:
# self.record_cursor -= 1
self.records = self.data[self.record_cursor:self.record_cursor+viewable]
elif self.current_cursor > 0:
self.current_cursor -= 2
def Down(self):
viewable=curses.LINES-4
if self.current_cursor + 2 >= len(self.records) and\
( self.record_cursor + self.current_cursor + 2 ) < len(self.data):
self.record_cursor += self.current_cursor + 2
self.current_cursor = 0
if ( self.record_cursor + viewable ) % 2 > 0:
self.records = self.data[self.record_cursor:self.record_cursor+curses.LINES-5]
else:
self.records = self.data[self.record_cursor:self.record_cursor+curses.LINES-4]
# Elif not at bottom of window
elif self.current_cursor + 2 < self.records and\
self.current_cursor + 2 < curses.LINES-4:
if (self.current_cursor + 2 + self.record_cursor) < len(self.data):
self.current_cursor += 2
# Silent else do nothing at bottom of window and bottom of records
def Refresh(self):
self.myscr.clear()
# display even number of lines since games will be two lines
wlen = curses.LINES-4
if wlen % 2 > 0:
wlen -= 1
if len(self.games) == 0:
self.myscr.refresh()
return
for n in range(wlen):
if n < len(self.records):
s = self.records[n]
cursesflags = 0
game_cursor = ( n + self.record_cursor ) / 2
home = self.games[game_cursor]['home']
away = self.games[game_cursor]['away']
status = self.games[game_cursor]['statustext']
if n % 2 > 0:
# second line of the game, underline it for division
# between games
pad = curses.COLS -1 - len(s)
s += ' '*pad
if n - 1 == self.current_cursor:
cursesflags |= curses.A_UNDERLINE|curses.A_REVERSE
else:
cursesflags = curses.A_UNDERLINE
if status in ( 'In Progress', 'Replay' ):
cursesflags |= cursesflags | curses.A_BOLD
else:
pad = curses.COLS -1 - len(s)
s += ' '*pad
if n == self.current_cursor:
cursesflags |= curses.A_REVERSE
else:
cursesflags = 0
if status in ( 'In Progress', 'Replay' ):
cursesflags |= cursesflags | curses.A_BOLD
if home in self.mycfg.get('favorite') or \
away in self.mycfg.get('favorite'):
if self.mycfg.get('use_color'):
cursesflags |= curses.color_pair(COLOR_FAVORITE)
elif self.games[game_cursor]['free']:
if self.mycfg.get('use_color'):
cursesflags |= curses.color_pair(COLOR_FREE)
self.myscr.addnstr(n+2,0,s,curses.COLS-2,cursesflags)
else:
s = ' '*(curses.COLS-1)
self.myscr.addnstr(n+2,0,s,curses.COLS-2)
self.myscr.refresh()
def titleRefresh(self,mysched):
self.titlewin.clear()
titlestr = "MEDIA DETAIL VIEW FOR " +\
str(mysched.month) + '/' +\
str(mysched.day) + '/' +\
str(mysched.year)
# DONE: '(Use arrow keys to change days)'
padding = curses.COLS - (len(titlestr) + 6)
titlestr += ' '*padding
pos = curses.COLS - 6
self.titlewin.addstr(0,0,titlestr)
self.titlewin.addstr(0,pos,'H', curses.A_BOLD)
self.titlewin.addstr(0,pos+1, 'elp')
self.titlewin.hline(1, 0, curses.ACS_HLINE, curses.COLS-1)
self.titlewin.refresh()
def statusRefresh(self,prefer):
if len(self.games) == 0:
self.statuswin.addnstr(0,0,'No listings available for this day.',
curses.COLS-2)
self.statuswin.refresh()
return
game_cursor = ( self.current_cursor + self.record_cursor ) / 2
#status = self.games[game_cursor]['statustext']
#status_str = status
status_str = ""
for media in ( 'video', 'audio' ):
if prefer[media] is not None:
media_str = prefer[media][0]
else:
media_str = "(None)"
status_str += "[%s] %-8s" % ( media.capitalize(), media_str )
if prefer['alt_audio'] is not None:
status_str += " [Alt Audio] %-8s" % prefer['alt_audio'][0]
speedstr = SPEEDTOGGLE.get(self.mycfg.get('speed'))
hdstr = SSTOGGLE.get(self.mycfg.get('adaptive_stream'))
coveragestr = COVERAGETOGGLE.get(self.mycfg.get('coverage'))
status_str_len = len(status_str) +\
+ len(speedstr) + len(hdstr) + len(coveragestr) + 2
if self.mycfg.get('debug'):
status_str_len += len('[DEBUG]')
padding = curses.COLS - status_str_len
# shrink the status string to fit if it is too many chars wide for
# screen
if padding < 0:
status_str=status_str[:padding]
if self.mycfg.get('debug'):
debug_str = '[DEBUG]'
else:
debug_str = ''
if self.mycfg.get('gameday_audio'):
speedstr = '[AUDIO]'
elif self.mycfg.get('use_nexdef'):
speedstr = '[NEXDF]'
else:
hdstr = SSTOGGLE.get(False)
status_str += ' '*padding + debug_str + coveragestr + speedstr + hdstr
self.statuswin.addnstr(0,0,status_str,curses.COLS-2,curses.A_BOLD)
self.statuswin.refresh()
|