Update JFVideo.brs
This commit is contained in:
parent
f85c0be93b
commit
febcfe5e40
|
@ -23,12 +23,25 @@ sub init()
|
||||||
m.hideskipIntroButtonAnimation = m.top.findNode("hideskipIntroButton")
|
m.hideskipIntroButtonAnimation = m.top.findNode("hideskipIntroButton")
|
||||||
m.moveUpskipIntroButtonAnimation = m.top.findNode("moveUpskipIntroButton")
|
m.moveUpskipIntroButtonAnimation = m.top.findNode("moveUpskipIntroButton")
|
||||||
m.moveDownskipIntroButtonAnimation = m.top.findNode("moveDownskipIntroButton")
|
m.moveDownskipIntroButtonAnimation = m.top.findNode("moveDownskipIntroButton")
|
||||||
|
|
||||||
|
'Play Next Episode button
|
||||||
|
m.nextEpisodeButton = m.top.findNode("nextEpisode")
|
||||||
|
m.nextEpisodeButton.text = tr("Next Episode")
|
||||||
|
m.nextEpisodeButton.setFocus(false)
|
||||||
|
m.shownextEpisodeButtonAnimation = m.top.findNode("shownextEpisodeButton")
|
||||||
|
m.hidenextEpisodeButtonAnimation = m.top.findNode("hidenextEpisodeButton")
|
||||||
|
m.moveUpnextEpisodeButtonAnimation = m.top.findNode("moveUpnextEpisodeButton")
|
||||||
|
m.moveDownnextEpisodeButtonAnimation = m.top.findNode("moveDownnextEpisodeButton")
|
||||||
end sub
|
end sub
|
||||||
|
|
||||||
'
|
'
|
||||||
' Checks if we have valid skip intro param data
|
' Checks if we have valid skip intro param data
|
||||||
function haveSkipIntroParams() as boolean
|
function haveSkipIntroParams() as boolean
|
||||||
|
'check current position
|
||||||
|
if int(m.top.position) >= (m.top.runTime - 30)
|
||||||
|
shownextEpisode()
|
||||||
|
updateCount()
|
||||||
|
end if
|
||||||
' Intro data is invalid, skip
|
' Intro data is invalid, skip
|
||||||
if not isValid(m.top.skipIntroParams?.Valid)
|
if not isValid(m.top.skipIntroParams?.Valid)
|
||||||
return false
|
return false
|
||||||
|
@ -122,6 +135,31 @@ sub hideSkipIntro()
|
||||||
m.top.setFocus(true)
|
m.top.setFocus(true)
|
||||||
end sub
|
end sub
|
||||||
|
|
||||||
|
'
|
||||||
|
' Runs Next Episode button animation and sets focus to button
|
||||||
|
sub shownextEpisode()
|
||||||
|
if m.nextEpisodeButton.hasFocus() = false
|
||||||
|
m.shownextEpisodeButtonAnimation.control = "start"
|
||||||
|
m.nextEpisodeButton.setFocus(true)
|
||||||
|
end if
|
||||||
|
end sub
|
||||||
|
|
||||||
|
'
|
||||||
|
'Update count down text
|
||||||
|
sub updateCount()
|
||||||
|
m.nextEpisodeButton.text = tr("Next Episode") + " " + Int(m.top.runTime - m.top.position).toStr()
|
||||||
|
end sub
|
||||||
|
|
||||||
|
'
|
||||||
|
' Runs hide Next Episode button animation and sets focus back to video
|
||||||
|
sub hidenextEpisode()
|
||||||
|
m.top.trickPlayBar.unobserveField("visible")
|
||||||
|
m.hidenextEpisodeButtonAnimation.control = "start"
|
||||||
|
m.nextEpisodeButton.setFocus(false)
|
||||||
|
m.top.setFocus(true)
|
||||||
|
end sub
|
||||||
|
|
||||||
|
|
||||||
'
|
'
|
||||||
' When Video Player state changes
|
' When Video Player state changes
|
||||||
sub onState(msg)
|
sub onState(msg)
|
||||||
|
@ -244,13 +282,17 @@ function onKeyEvent(key as string, press as boolean) as boolean
|
||||||
m.top.seek = m.top.skipIntroParams.IntroEnd
|
m.top.seek = m.top.skipIntroParams.IntroEnd
|
||||||
hideSkipIntro()
|
hideSkipIntro()
|
||||||
return true
|
return true
|
||||||
|
else if m.nextEpisodeButton.hasFocus()
|
||||||
|
m.top.state = "finished"
|
||||||
|
hidenextEpisode()
|
||||||
|
return true
|
||||||
end if
|
end if
|
||||||
end if
|
end if
|
||||||
end if
|
end if
|
||||||
|
|
||||||
if not press then return false
|
if not press then return false
|
||||||
|
|
||||||
if m.top.Subtitles.count() and key = "down"
|
if key = "down"
|
||||||
m.top.selectSubtitlePressed = true
|
m.top.selectSubtitlePressed = true
|
||||||
return true
|
return true
|
||||||
end if
|
end if
|
||||||
|
|
Loading…
Reference in New Issue
Block a user