forked from elParaguayo/service.bbclivefootballscores
-
Notifications
You must be signed in to change notification settings - Fork 0
/
league_tables.py
312 lines (231 loc) · 9.67 KB
/
league_tables.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
'''
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 3 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. If not, see <http://www.gnu.org/licenses/>.
'''
''' This script is part of the BBC Football Scores service by elParaguayo
It allows users to select which leagues they wish to receive updates
for.
It is called via the script configuration screen or by passing
parameters to trigger specific functions.
The script accepts the following parameters:
toggle: Turns score notifications on and off
reset: Resets watched league data
NB only one parameter should be passed at a time.
'''
import sys
if sys.version_info >= (2, 7):
import json as json
else:
import simplejson as json
from collections import OrderedDict
import xbmc
import xbmcgui
import xbmcaddon
from resources.lib.footballscores import LeagueTable
# Import PyXBMCt module.
from pyxbmct.addonwindow import *
_A_ = xbmcaddon.Addon("service.bbclivefootballscores")
_S_ = _A_.getSetting
def localise(id):
'''Gets localised string.
Shamelessly copied from service.xbmc.versioncheck
'''
string = _A_.getLocalizedString(id).encode( 'utf-8', 'ignore' )
return string
class XBMCLeagueTable(object):
def __init__(self):
# It may take a bit of time to display menus/tables so let's
# make sure the user knows what's going on
self.prog = xbmcgui.DialogProgressBG()
self.prog.create(localise(32106), localise(32107))
# variables for league table display
self.redraw = False
self.offset = 0
self.menu = True
self.leagueid = 0
# variables for root menu
self.showall = True
self.active = True
# Get our favourite leagues
self.watchedleagues = json.loads(str(_S_("watchedleagues")))
# Create a Leaue Table instance
self.league = LeagueTable()
self.prog.update(25, localise(32108))
# Get all of the available leagues, store it in an Ordered Dict
# key=League name
# value=League ID
self.allleagues = OrderedDict((x["name"],
x["id"][-9:])
for x in self.league.getLeagues())
self.prog.update(75, localise(32109))
# Create a similar Ordered Dict for just those leagues that we're
# currently followin
self.watchedleagues = OrderedDict((x["name"], x["id"][-9:])
for x in self.league.getLeagues()
if int(x["id"][-9:])
in self.watchedleagues)
self.prog.close()
def showMenu(self, all_leagues=False):
# Setting this to False means that the menu won't display if
# we hit escape
self.active = False
# Set the title and menu size
window = AddonDialogWindow(localise(32100))
window.setGeometry(450,300,5,4)
# Create a List object
self.leaguelist = List()
# Get the appropriate list of leagues depending on what mode we're in
displaylist = self.allleagues if self.showall else self.watchedleagues
#self.prog.update(92)
# Add the List to the menu
window.placeControl(self.leaguelist, 0, 0, rowspan=4, columnspan=4)
self.leaguelist.addItems(displaylist.keys())
# Bind the list action
p = self.leaguelist.getSelectedPosition
window.connect(self.leaguelist,
lambda w = window:
self.setID(self.leaguelist.getListItem(p()).getLabel(),
w))
# Don't think these are needed, but what the hell...
window.connect(ACTION_PREVIOUS_MENU, lambda w=window: self.finish(w))
window.connect(ACTION_NAV_BACK, lambda w=window: self.finish(w))
#self.prog.update(94)
# Create the button to toggle mode
leaguetext = localise(32101) if self.showall else localise(32102)
self.leaguebutton = Button(leaguetext)
window.placeControl(self.leaguebutton, 4, 0, columnspan=2)
# Bind the button
window.connect(self.leaguebutton, lambda w=window: self.toggleMode(w))
#self.prog.update(96)
# Add the close button
self.closebutton = Button(localise(32103))
window.placeControl(self.closebutton, 4, 2, columnspan=2)
window.setFocus(self.leaguelist)
# Connect the button to a function.
window.connect(self.closebutton, lambda w=window:self.finish(w))
#self.prog.update(98)
# Handle navigation to make user experience better
self.leaguelist.controlLeft(self.leaguebutton)
self.leaguelist.controlRight(self.closebutton)
self.closebutton.controlUp(self.leaguelist)
self.closebutton.controlLeft(self.leaguebutton)
self.leaguebutton.controlRight(self.closebutton)
self.leaguebutton.controlUp(self.leaguelist)
# Ready to go...
window.doModal()
def showLeagueTable(self):
# Basic variables
self.redraw = False
# If there are multiple tables for a competition (e.g. World Cup)
# Let's just get the required one
table = self.rawleaguedata[self.offset]
print table
#self.prog.update(92)
# How many rows are in the table?
# We'll need this to set the size of the display
n = len(table["table"])
# Create a window instance and size it
window = AddonDialogWindow(table["name"])
window.setGeometry(450, (n + 4) * 25, n + 3, 4)
#self.prog.update(94)
# Add the teams
for i, t in enumerate(table["table"]):
pos = Label(str(t.position))
team = Label(t.name)
points = Label(str(t.points), alignment=ALIGN_RIGHT)
window.placeControl(pos,i+1,0)
window.placeControl(team,i+1,1, columnspan=2)
window.placeControl(points,i+1,3)
#self.prog.update(94)
# Add the close button
closebutton = Button(localise(32103))
window.placeControl(closebutton, n+2, 1, columnspan=2)
window.setFocus(closebutton)
# Connect the button to a function.
window.connect(closebutton, lambda w=window: self.finish(w))
# Not sure we need these...
window.connect(ACTION_PREVIOUS_MENU, lambda w=window: self.finish(w))
window.connect(ACTION_NAV_BACK, lambda w=window: self.finish(w))
#self.prog.update(96)
# We may need some extra buttons (for multiple table competitions)
nextbutton = Button(localise(32104))
prevbutton = Button(localise(32105))
# There are more leagues after the one we're showing
if self.offset < (len(self.rawleaguedata) - 1):
window.placeControl(nextbutton, n+2,3)
window.connect(nextbutton, lambda w=window: self.next(w))
nextbutton.controlLeft(closebutton)
closebutton.controlRight(nextbutton)
# There are more leagues before the one we're showing
if self.offset > 0:
window.placeControl(prevbutton, n+2,0)
window.connect(prevbutton, lambda w=window: self.previous(w))
prevbutton.controlRight(closebutton)
closebutton.controlLeft(prevbutton)
#self.prog.close()
# Ready to go...
window.doModal()
def getLeagueTableData(self, ID):
self.prog.create(localise(32106), localise(32111))
try:
raw = self.league.getLeagueTable("competition-%s"
% (self.leagueid))
except:
raw = None
self.prog.close()
return raw
def setID(self, ID, w):
# Gets the ID of the selected league
ID = self.allleagues[ID]
self.setleague(ID,w)
def next(self,w):
# Display the next table in the competion
self.offset += 1
self.redraw = True
w.close()
def previous(self,w):
# Display the previous tablein the competition
self.offset -= 1
self.redraw = True
w.close()
def finish(self,w):
# We're done. Gracefully close down menu.
self.redraw = False
self.menu = False
self.active = False
w.close()
def setleague(self,lg, w):
# Set up the variables to display the league table
self.leagueid = lg
self.offset = 0
self.redraw = True
w.close()
self.rawleaguedata = self.getLeagueTableData(self.leagueid)
print self.rawleaguedata
self.prog.update(90)
def toggleMode(self,w):
# Toggle between showing all competitions and just our favourites
self.showall = not self.showall
self.active = True
w.close()
def start(self):
# Let's begin
while self.active:
# Show the main menu
self.showMenu()
while self.redraw:
# Show a league table
self.showLeagueTable()
if __name__ == "__main__":
# Create an instance of the XBMC League Table
xlt = XBMCLeagueTable()
# and display it!
xlt.start()