91 lines
2.8 KiB
Plaintext
91 lines
2.8 KiB
Plaintext
import "pkg:/source/api/Image.brs"
|
|
import "pkg:/source/api/baserequest.brs"
|
|
import "pkg:/source/utils/config.brs"
|
|
import "pkg:/source/utils/misc.brs"
|
|
|
|
sub init()
|
|
m.top.optionsAvailable = false
|
|
|
|
m.rows = m.top.findNode("picker")
|
|
m.poster = m.top.findNode("seasonPoster")
|
|
m.Shuffle = m.top.findNode("Shuffle")
|
|
m.tvEpisodeRow = m.top.findNode("tvEpisodeRow")
|
|
|
|
m.unplayedCount = m.top.findNode("unplayedCount")
|
|
m.unplayedEpisodeCount = m.top.findNode("unplayedEpisodeCount")
|
|
|
|
m.rows.observeField("doneLoading", "updateSeason")
|
|
end sub
|
|
|
|
sub setSeasonLoading()
|
|
m.top.overhangTitle = tr("Loading...")
|
|
end sub
|
|
|
|
sub updateSeason()
|
|
if m.global.session.user.settings["ui.tvshows.disableUnwatchedEpisodeCount"] = false
|
|
if isValid(m.top.seasonData) and isValid(m.top.seasonData.UserData) and isValid(m.top.seasonData.UserData.UnplayedItemCount)
|
|
if m.top.seasonData.UserData.UnplayedItemCount > 0
|
|
m.unplayedCount.visible = true
|
|
m.unplayedEpisodeCount.text = m.top.seasonData.UserData.UnplayedItemCount
|
|
end if
|
|
end if
|
|
end if
|
|
|
|
imgParams = { "maxHeight": 450, "maxWidth": 300 }
|
|
m.poster.uri = ImageURL(m.top.seasonData.Id, "Primary", imgParams)
|
|
m.Shuffle.visible = true
|
|
m.top.overhangTitle = m.top.seasonData.SeriesName + " - " + m.top.seasonData.name
|
|
end sub
|
|
|
|
function onKeyEvent(key as string, press as boolean) as boolean
|
|
handled = false
|
|
|
|
if key = "left" and m.tvEpisodeRow.hasFocus()
|
|
m.Shuffle.setFocus(true)
|
|
return true
|
|
end if
|
|
|
|
if key = "right" and (m.Shuffle.hasFocus())
|
|
m.tvEpisodeRow.setFocus(true)
|
|
return true
|
|
end if
|
|
|
|
if key = "OK" or key = "play"
|
|
|
|
if m.Shuffle.hasFocus()
|
|
episodeList = m.rows.getChild(0).objects.items
|
|
|
|
for i = 0 to episodeList.count() - 1
|
|
j = Rnd(episodeList.count() - 1)
|
|
temp = episodeList[i]
|
|
episodeList[i] = episodeList[j]
|
|
episodeList[j] = temp
|
|
end for
|
|
|
|
m.global.queueManager.callFunc("set", episodeList)
|
|
m.global.queueManager.callFunc("playQueue")
|
|
return true
|
|
end if
|
|
end if
|
|
|
|
focusedChild = m.top.focusedChild.focusedChild
|
|
if focusedChild.content = invalid then return handled
|
|
|
|
' OK needs to be handled on release...
|
|
proceed = false
|
|
if key = "OK"
|
|
proceed = true
|
|
end if
|
|
|
|
if press and key = "play" or proceed = true
|
|
m.top.lastFocus = focusedChild
|
|
itemToPlay = focusedChild.content.getChild(focusedChild.rowItemFocused[0]).getChild(0)
|
|
if isValid(itemToPlay) and isValid(itemToPlay.id) and itemToPlay.id <> ""
|
|
itemToPlay.type = "Episode"
|
|
m.top.quickPlayNode = itemToPlay
|
|
end if
|
|
handled = true
|
|
end if
|
|
return handled
|
|
end function
|