2019-10-12 16:00:07 -05:00
|
|
|
sub init()
|
2020-05-24 10:33:07 +01:00
|
|
|
m.top.observeField("state", "onState")
|
2021-07-09 16:08:32 -04:00
|
|
|
m.bufferPercentage = 0 ' Track whether content is being loaded
|
2021-06-12 16:03:47 +01:00
|
|
|
m.top.transcodeReasons = []
|
2021-07-09 16:08:32 -04:00
|
|
|
|
2019-10-12 16:00:07 -05:00
|
|
|
end sub
|
2020-03-28 13:04:57 -07:00
|
|
|
|
2020-05-24 10:33:07 +01:00
|
|
|
|
|
|
|
'
|
|
|
|
' When Video Player state changes
|
2021-07-09 16:08:32 -04:00
|
|
|
sub onState(msg)
|
2020-05-24 10:33:07 +01:00
|
|
|
|
|
|
|
' When buffering, start timer to monitor buffering process
|
2021-06-26 14:52:16 +01:00
|
|
|
if m.top.state = "buffering" and m.bufferCheckTimer <> invalid
|
2020-05-30 09:44:22 +01:00
|
|
|
|
2020-05-24 10:33:07 +01:00
|
|
|
' start timer
|
|
|
|
m.bufferCheckTimer = m.top.findNode("bufferCheckTimer")
|
|
|
|
m.bufferCheckTimer.control = "start"
|
|
|
|
m.bufferCheckTimer.ObserveField("fire", "bufferCheck")
|
2021-06-26 14:52:16 +01:00
|
|
|
else if m.top.state = "error"
|
2020-05-30 09:44:22 +01:00
|
|
|
|
|
|
|
' If an error was encountered, Display dialog
|
|
|
|
dialog = createObject("roSGNode", "Dialog")
|
|
|
|
dialog.title = tr("Error During Playback")
|
|
|
|
dialog.buttons = [tr("OK")]
|
|
|
|
dialog.message = tr("An error was encountered while playing this item.")
|
|
|
|
dialog.observeField("buttonSelected", "dialogClosed")
|
|
|
|
m.top.getScene().dialog = dialog
|
|
|
|
|
|
|
|
' Stop playback and exit player
|
|
|
|
m.top.control = "stop"
|
|
|
|
m.top.backPressed = true
|
2020-05-24 10:33:07 +01:00
|
|
|
end if
|
|
|
|
|
|
|
|
end sub
|
|
|
|
|
|
|
|
'
|
|
|
|
' Check the the buffering has not hung
|
|
|
|
sub bufferCheck(msg)
|
|
|
|
|
|
|
|
if m.top.state <> "buffering"
|
|
|
|
' If video is not buffering, stop timer
|
|
|
|
m.bufferCheckTimer.control = "stop"
|
|
|
|
m.bufferCheckTimer.unobserveField("fire")
|
|
|
|
return
|
|
|
|
end if
|
|
|
|
|
2021-06-26 14:52:16 +01:00
|
|
|
if m.top.bufferingStatus <> invalid
|
2020-05-24 10:33:07 +01:00
|
|
|
|
|
|
|
' Check that the buffering percentage is increasing
|
2021-06-26 14:52:16 +01:00
|
|
|
if m.top.bufferingStatus["percentage"] > m.bufferPercentage
|
2020-05-24 10:33:07 +01:00
|
|
|
m.bufferPercentage = m.top.bufferingStatus["percentage"]
|
|
|
|
else
|
|
|
|
' If buffering has stopped Display dialog
|
|
|
|
dialog = createObject("roSGNode", "Dialog")
|
|
|
|
dialog.title = tr("Error Retrieving Content")
|
|
|
|
dialog.buttons = [tr("OK")]
|
|
|
|
dialog.message = tr("There was an error retrieving the data for this item from the server.")
|
|
|
|
dialog.observeField("buttonSelected", "dialogClosed")
|
|
|
|
m.top.getScene().dialog = dialog
|
|
|
|
|
|
|
|
' Stop playback and exit player
|
|
|
|
m.top.control = "stop"
|
|
|
|
m.top.backPressed = true
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
end sub
|
|
|
|
|
|
|
|
'
|
|
|
|
' Clean up on Dialog Closed
|
|
|
|
sub dialogClosed(msg)
|
|
|
|
sourceNode = msg.getRoSGNode()
|
|
|
|
sourceNode.unobserveField("buttonSelected")
|
|
|
|
sourceNode.close = true
|
|
|
|
end sub
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-28 13:04:57 -07:00
|
|
|
function onKeyEvent(key as string, press as boolean) as boolean
|
2021-07-09 16:08:32 -04:00
|
|
|
if not press then return false
|
2020-03-28 13:04:57 -07:00
|
|
|
|
2021-07-09 16:08:32 -04:00
|
|
|
if m.top.Subtitles.count() and key = "down"
|
|
|
|
m.top.selectSubtitlePressed = true
|
|
|
|
return true
|
|
|
|
end if
|
2020-03-28 13:04:57 -07:00
|
|
|
|
2021-07-09 16:08:32 -04:00
|
|
|
return false
|
2020-03-28 13:04:57 -07:00
|
|
|
end function
|