2022-05-21 15:45:38 +00:00
|
|
|
sub init()
|
|
|
|
m.top.optionsAvailable = false
|
2022-05-21 20:45:01 +00:00
|
|
|
|
|
|
|
setupAudioNode()
|
2022-05-30 12:37:15 +00:00
|
|
|
setupAnimationTasks()
|
2022-05-21 20:45:01 +00:00
|
|
|
setupButtons()
|
2022-05-27 01:23:59 +00:00
|
|
|
setupInfoNodes()
|
2022-05-29 18:46:22 +00:00
|
|
|
setupDataTasks()
|
2022-06-02 01:09:58 +00:00
|
|
|
setupScreenSaver()
|
2022-05-21 20:45:01 +00:00
|
|
|
|
2022-05-29 18:46:22 +00:00
|
|
|
m.currentSongIndex = 0
|
|
|
|
m.buttonsNeedToBeLoaded = true
|
2022-06-04 01:30:20 +00:00
|
|
|
m.shuffleEnabled = false
|
|
|
|
m.loopMode = ""
|
|
|
|
m.shuffleEvent = ""
|
|
|
|
m.buttonCount = m.buttons.getChildCount()
|
2022-09-04 07:39:44 +00:00
|
|
|
m.playReported = false
|
2022-06-02 01:09:58 +00:00
|
|
|
|
|
|
|
m.screenSaverTimeout = 300
|
|
|
|
|
|
|
|
m.LoadScreenSaverTimeoutTask.observeField("content", "onScreensaverTimeoutLoaded")
|
|
|
|
m.LoadScreenSaverTimeoutTask.control = "RUN"
|
2022-06-03 01:29:07 +00:00
|
|
|
|
2022-06-03 12:15:25 +00:00
|
|
|
m.di = CreateObject("roDeviceInfo")
|
|
|
|
|
2022-06-03 01:29:07 +00:00
|
|
|
' Write screen tracker for screensaver
|
|
|
|
WriteAsciiFile("tmp:/scene.temp", "nowplaying")
|
|
|
|
MoveFile("tmp:/scene.temp", "tmp:/scene")
|
2022-06-02 01:09:58 +00:00
|
|
|
end sub
|
|
|
|
|
|
|
|
sub onScreensaverTimeoutLoaded()
|
|
|
|
data = m.LoadScreenSaverTimeoutTask.content
|
|
|
|
m.LoadScreenSaverTimeoutTask.unobserveField("content")
|
|
|
|
if isValid(data)
|
|
|
|
m.screenSaverTimeout = data
|
|
|
|
end if
|
|
|
|
end sub
|
|
|
|
|
|
|
|
sub setupScreenSaver()
|
|
|
|
m.screenSaverBackground = m.top.FindNode("screenSaverBackground")
|
|
|
|
|
|
|
|
' Album Art Screensaver
|
|
|
|
m.screenSaverAlbumCover = m.top.FindNode("screenSaverAlbumCover")
|
|
|
|
m.screenSaverAlbumAnimation = m.top.findNode("screenSaverAlbumAnimation")
|
2022-06-03 01:29:07 +00:00
|
|
|
m.screenSaverAlbumCoverFadeIn = m.top.findNode("screenSaverAlbumCoverFadeIn")
|
2022-06-02 01:09:58 +00:00
|
|
|
|
|
|
|
' Jellyfin Screensaver
|
|
|
|
m.PosterOne = m.top.findNode("PosterOne")
|
|
|
|
m.PosterOne.uri = "pkg:/images/logo.png"
|
|
|
|
m.BounceAnimation = m.top.findNode("BounceAnimation")
|
2022-06-03 01:29:07 +00:00
|
|
|
m.PosterOneFadeIn = m.top.findNode("PosterOneFadeIn")
|
2022-05-29 18:46:22 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-30 12:37:15 +00:00
|
|
|
sub setupAnimationTasks()
|
|
|
|
m.displayButtonsAnimation = m.top.FindNode("displayButtonsAnimation")
|
|
|
|
m.playPositionAnimation = m.top.FindNode("playPositionAnimation")
|
|
|
|
m.playPositionAnimationWidth = m.top.FindNode("playPositionAnimationWidth")
|
2022-05-30 19:28:31 +00:00
|
|
|
|
|
|
|
m.bufferPositionAnimation = m.top.FindNode("bufferPositionAnimation")
|
|
|
|
m.bufferPositionAnimationWidth = m.top.FindNode("bufferPositionAnimationWidth")
|
2022-06-02 01:09:58 +00:00
|
|
|
|
|
|
|
m.screenSaverStartAnimation = m.top.FindNode("screenSaverStartAnimation")
|
2022-05-30 12:37:15 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-29 18:46:22 +00:00
|
|
|
' Creates tasks to gather data needed to renger NowPlaying Scene and play song
|
|
|
|
sub setupDataTasks()
|
|
|
|
' Load meta data
|
2022-05-29 18:41:06 +00:00
|
|
|
m.LoadMetaDataTask = CreateObject("roSGNode", "LoadItemsTask")
|
|
|
|
m.LoadMetaDataTask.itemsToLoad = "metaData"
|
|
|
|
|
2022-05-29 18:46:22 +00:00
|
|
|
' Load background image
|
2022-05-29 18:41:06 +00:00
|
|
|
m.LoadBackdropImageTask = CreateObject("roSGNode", "LoadItemsTask")
|
|
|
|
m.LoadBackdropImageTask.itemsToLoad = "backdropImage"
|
|
|
|
|
2022-05-29 18:46:22 +00:00
|
|
|
' Load audio stream
|
2022-05-29 18:41:06 +00:00
|
|
|
m.LoadAudioStreamTask = CreateObject("roSGNode", "LoadItemsTask")
|
|
|
|
m.LoadAudioStreamTask.itemsToLoad = "audioStream"
|
2022-06-02 01:09:58 +00:00
|
|
|
|
|
|
|
m.LoadScreenSaverTimeoutTask = CreateObject("roSGNode", "LoadScreenSaverTimeoutTask")
|
2022-05-21 20:45:01 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-29 18:46:22 +00:00
|
|
|
' Creates audio node used to play song(s)
|
2022-05-21 20:45:01 +00:00
|
|
|
sub setupAudioNode()
|
|
|
|
m.top.audio = createObject("RoSGNode", "Audio")
|
2022-05-29 18:41:06 +00:00
|
|
|
m.top.audio.observeField("state", "audioStateChanged")
|
2022-05-30 12:37:15 +00:00
|
|
|
m.top.audio.observeField("position", "audioPositionChanged")
|
2022-05-30 19:28:31 +00:00
|
|
|
m.top.audio.observeField("bufferingStatus", "bufferPositionChanged")
|
2022-05-21 20:45:01 +00:00
|
|
|
end sub
|
2022-05-21 15:45:38 +00:00
|
|
|
|
2022-05-29 18:46:22 +00:00
|
|
|
' Setup playback buttons, default to Play button selected
|
2022-05-21 20:45:01 +00:00
|
|
|
sub setupButtons()
|
2022-05-21 15:45:38 +00:00
|
|
|
m.buttons = m.top.findNode("buttons")
|
2022-05-29 18:46:22 +00:00
|
|
|
m.top.observeField("selectedButtonIndex", "onButtonSelectedChange")
|
2022-05-29 18:41:06 +00:00
|
|
|
m.previouslySelectedButtonIndex = 1
|
2022-06-04 01:30:20 +00:00
|
|
|
m.top.selectedButtonIndex = 2
|
2022-05-29 18:41:06 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-29 18:46:22 +00:00
|
|
|
' Event handler when user selected a different playback button
|
|
|
|
sub onButtonSelectedChange()
|
|
|
|
' Change previously selected button back to default image
|
2022-05-29 18:41:06 +00:00
|
|
|
selectedButton = m.buttons.getChild(m.previouslySelectedButtonIndex)
|
|
|
|
selectedButton.uri = selectedButton.uri.Replace("-selected", "-default")
|
2022-05-21 15:45:38 +00:00
|
|
|
|
2022-05-29 18:46:22 +00:00
|
|
|
' Change selected button image to selected image
|
2022-05-29 18:41:06 +00:00
|
|
|
selectedButton = m.buttons.getChild(m.top.selectedButtonIndex)
|
|
|
|
selectedButton.uri = selectedButton.uri.Replace("-default", "-selected")
|
2022-05-21 15:45:38 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-27 01:23:59 +00:00
|
|
|
sub setupInfoNodes()
|
|
|
|
m.albumCover = m.top.findNode("albumCover")
|
|
|
|
m.backDrop = m.top.findNode("backdrop")
|
2022-05-30 12:37:15 +00:00
|
|
|
m.playPosition = m.top.findNode("playPosition")
|
2022-05-30 19:28:31 +00:00
|
|
|
m.bufferPosition = m.top.findNode("bufferPosition")
|
2022-05-30 12:37:15 +00:00
|
|
|
m.seekBar = m.top.findNode("seekBar")
|
2022-06-04 01:30:20 +00:00
|
|
|
m.numberofsongsField = m.top.findNode("numberofsongs")
|
|
|
|
m.shuffleIndicator = m.top.findNode("shuffleIndicator")
|
|
|
|
m.loopIndicator = m.top.findNode("loopIndicator")
|
2022-05-30 12:37:15 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-30 19:28:31 +00:00
|
|
|
sub bufferPositionChanged()
|
|
|
|
if not isValid(m.top.audio.bufferingStatus)
|
|
|
|
bufferPositionBarWidth = m.seekBar.width
|
|
|
|
else
|
|
|
|
bufferPositionBarWidth = m.seekBar.width * m.top.audio.bufferingStatus.percentage
|
|
|
|
end if
|
|
|
|
|
|
|
|
' Ensure position bar is never wider than the seek bar
|
|
|
|
if bufferPositionBarWidth > m.seekBar.width
|
|
|
|
bufferPositionBarWidth = m.seekBar.width
|
|
|
|
end if
|
|
|
|
|
|
|
|
' Use animation to make the display smooth
|
|
|
|
m.bufferPositionAnimationWidth.keyValue = [m.bufferPosition.width, bufferPositionBarWidth]
|
|
|
|
m.bufferPositionAnimation.control = "start"
|
|
|
|
end sub
|
|
|
|
|
2022-05-30 12:37:15 +00:00
|
|
|
sub audioPositionChanged()
|
2022-06-02 01:09:58 +00:00
|
|
|
if m.top.audio.position = 0
|
|
|
|
m.playPosition.width = 0
|
|
|
|
end if
|
|
|
|
|
2022-05-30 12:37:15 +00:00
|
|
|
if not isValid(m.top.audio.position)
|
2022-05-30 19:28:31 +00:00
|
|
|
playPositionBarWidth = 0
|
2022-06-04 01:44:23 +00:00
|
|
|
else if not isValid(m.songDuration)
|
|
|
|
playPositionBarWidth = 0
|
2022-05-30 19:28:31 +00:00
|
|
|
else
|
2022-06-04 01:44:23 +00:00
|
|
|
songPercentComplete = m.top.audio.position / m.songDuration
|
2022-05-30 19:28:31 +00:00
|
|
|
playPositionBarWidth = m.seekBar.width * songPercentComplete
|
2022-05-30 12:37:15 +00:00
|
|
|
end if
|
|
|
|
|
|
|
|
' Ensure position bar is never wider than the seek bar
|
|
|
|
if playPositionBarWidth > m.seekBar.width
|
|
|
|
playPositionBarWidth = m.seekBar.width
|
|
|
|
end if
|
|
|
|
|
|
|
|
' Use animation to make the display smooth
|
|
|
|
m.playPositionAnimationWidth.keyValue = [m.playPosition.width, playPositionBarWidth]
|
|
|
|
m.playPositionAnimation.control = "start"
|
2022-06-02 01:09:58 +00:00
|
|
|
|
|
|
|
' Only fall into screensaver logic if the user has screensaver enabled in Roku settings
|
|
|
|
if m.screenSaverTimeout > 0
|
2022-06-03 12:15:25 +00:00
|
|
|
if m.di.TimeSinceLastKeypress() >= m.screenSaverTimeout - 2
|
2022-06-02 01:09:58 +00:00
|
|
|
if not screenSaverActive()
|
|
|
|
startScreenSaver()
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end sub
|
|
|
|
|
|
|
|
function screenSaverActive() as boolean
|
2022-06-04 01:30:20 +00:00
|
|
|
return m.screenSaverBackground.visible or m.screenSaverAlbumCover.opacity > 0 or m.PosterOne.opacity > 0
|
2022-06-02 01:09:58 +00:00
|
|
|
end function
|
|
|
|
|
|
|
|
sub startScreenSaver()
|
|
|
|
m.screenSaverBackground.visible = true
|
|
|
|
m.top.overhangVisible = false
|
|
|
|
|
|
|
|
if m.albumCover.uri = ""
|
|
|
|
' Jellyfin Logo Screensaver
|
|
|
|
m.PosterOne.visible = true
|
2022-06-03 01:29:07 +00:00
|
|
|
m.PosterOneFadeIn.control = "start"
|
2022-06-02 01:09:58 +00:00
|
|
|
m.BounceAnimation.control = "start"
|
|
|
|
else
|
|
|
|
' Album Art Screensaver
|
2022-06-03 01:29:07 +00:00
|
|
|
m.screenSaverAlbumCoverFadeIn.control = "start"
|
2022-06-02 01:09:58 +00:00
|
|
|
m.screenSaverAlbumAnimation.control = "start"
|
|
|
|
end if
|
|
|
|
end sub
|
|
|
|
|
|
|
|
sub endScreenSaver()
|
2022-06-04 01:52:20 +00:00
|
|
|
m.PosterOneFadeIn.control = "pause"
|
|
|
|
m.screenSaverAlbumCoverFadeIn.control = "pause"
|
2022-06-04 01:30:20 +00:00
|
|
|
m.screenSaverAlbumAnimation.control = "pause"
|
|
|
|
m.BounceAnimation.control = "pause"
|
2022-06-02 01:09:58 +00:00
|
|
|
m.screenSaverBackground.visible = false
|
2022-06-04 01:52:20 +00:00
|
|
|
m.screenSaverAlbumCover.opacity = 0
|
|
|
|
m.PosterOne.opacity = 0
|
2022-06-02 01:09:58 +00:00
|
|
|
m.top.overhangVisible = true
|
2022-05-27 01:23:59 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
sub audioStateChanged()
|
2022-09-04 07:39:44 +00:00
|
|
|
|
|
|
|
if m.top.audio.state = "playing"
|
|
|
|
if m.playReported
|
|
|
|
ReportPlayback()
|
|
|
|
else
|
|
|
|
ReportPlayback("start")
|
|
|
|
m.playReported = true
|
|
|
|
end if
|
|
|
|
else if m.top.audio.state = "paused"
|
|
|
|
ReportPlayback()
|
|
|
|
else if m.top.audio.state = "stopped"
|
|
|
|
ReportPlayback("stop")
|
|
|
|
m.playReported = false
|
|
|
|
else if m.top.audio.state = "finished"
|
|
|
|
ReportPlayback("stop")
|
|
|
|
m.playReported = false
|
|
|
|
end if
|
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
' Song Finished, attempt to move to next song
|
|
|
|
if m.top.audio.state = "finished"
|
2022-06-04 01:30:20 +00:00
|
|
|
if m.loopMode = "one"
|
|
|
|
playAction()
|
|
|
|
return
|
|
|
|
else if m.loopMode = "all"
|
|
|
|
m.currentSongIndex = -1
|
|
|
|
LoadNextSong()
|
|
|
|
return
|
|
|
|
end if
|
2022-06-04 01:31:16 +00:00
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
if m.currentSongIndex < m.top.pageContent.count() - 1
|
|
|
|
LoadNextSong()
|
|
|
|
else
|
|
|
|
' Return to previous screen
|
|
|
|
m.top.state = "finished"
|
|
|
|
end if
|
|
|
|
end if
|
2022-05-21 15:45:38 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
function playAction() as boolean
|
2022-05-21 15:45:38 +00:00
|
|
|
if m.top.audio.state = "playing"
|
|
|
|
m.top.audio.control = "pause"
|
2022-06-03 17:49:44 +00:00
|
|
|
' Allow screen to go to real screensaver
|
|
|
|
WriteAsciiFile("tmp:/scene.temp", "nowplaying-paused")
|
|
|
|
MoveFile("tmp:/scene.temp", "tmp:/scene")
|
2022-05-21 15:45:38 +00:00
|
|
|
else if m.top.audio.state = "paused"
|
|
|
|
m.top.audio.control = "resume"
|
2022-06-03 17:49:44 +00:00
|
|
|
' Write screen tracker for screensaver
|
|
|
|
WriteAsciiFile("tmp:/scene.temp", "nowplaying")
|
|
|
|
MoveFile("tmp:/scene.temp", "tmp:/scene")
|
2022-06-04 01:30:20 +00:00
|
|
|
else if m.top.audio.state = "finished"
|
|
|
|
m.top.audio.control = "play"
|
|
|
|
' Write screen tracker for screensaver
|
|
|
|
WriteAsciiFile("tmp:/scene.temp", "nowplaying")
|
|
|
|
MoveFile("tmp:/scene.temp", "tmp:/scene")
|
2022-05-21 15:45:38 +00:00
|
|
|
end if
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
return true
|
|
|
|
end function
|
|
|
|
|
|
|
|
function previousClicked() as boolean
|
2022-09-04 07:39:44 +00:00
|
|
|
if m.top.audio.state = "playing"
|
|
|
|
m.top.audio.control = "stop"
|
|
|
|
end if
|
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
if m.currentSongIndex > 0
|
|
|
|
m.currentSongIndex--
|
|
|
|
pageContentChanged()
|
2022-05-21 15:45:38 +00:00
|
|
|
end if
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
return true
|
|
|
|
end function
|
|
|
|
|
2022-06-04 01:30:20 +00:00
|
|
|
function loopClicked() as boolean
|
|
|
|
|
|
|
|
if m.loopMode = ""
|
|
|
|
m.loopIndicator.opacity = "1"
|
|
|
|
m.loopIndicator.uri = m.loopIndicator.uri.Replace("-off", "-on")
|
|
|
|
m.loopMode = "all"
|
|
|
|
else if m.loopMode = "all"
|
|
|
|
m.loopIndicator.uri = m.loopIndicator.uri.Replace("-on", "1-on")
|
|
|
|
m.loopMode = "one"
|
|
|
|
else
|
|
|
|
m.loopIndicator.uri = m.loopIndicator.uri.Replace("1-on", "-off")
|
|
|
|
m.loopMode = ""
|
|
|
|
end if
|
|
|
|
|
|
|
|
return true
|
|
|
|
end function
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
function nextClicked() as boolean
|
2022-05-29 18:41:06 +00:00
|
|
|
if m.currentSongIndex < m.top.pageContent.count() - 1
|
|
|
|
LoadNextSong()
|
2022-05-22 02:04:41 +00:00
|
|
|
end if
|
2022-05-22 12:49:38 +00:00
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
return true
|
|
|
|
end function
|
2022-05-21 15:45:38 +00:00
|
|
|
|
2022-06-04 01:30:20 +00:00
|
|
|
sub toggleShuffleEnabled()
|
|
|
|
m.shuffleEnabled = not m.shuffleEnabled
|
|
|
|
end sub
|
|
|
|
|
|
|
|
function findCurrentSongIndex(songList) as integer
|
|
|
|
for i = 0 to songList.count() - 1
|
|
|
|
if songList[i] = m.top.pageContent[m.currentSongIndex]
|
|
|
|
return i
|
|
|
|
end if
|
|
|
|
end for
|
|
|
|
|
|
|
|
return 0
|
|
|
|
end function
|
|
|
|
|
|
|
|
function shuffleClicked() as boolean
|
2022-06-04 01:31:16 +00:00
|
|
|
|
2022-06-04 01:30:20 +00:00
|
|
|
toggleShuffleEnabled()
|
|
|
|
|
|
|
|
if not m.shuffleEnabled
|
|
|
|
m.shuffleIndicator.opacity = ".4"
|
|
|
|
m.shuffleIndicator.uri = m.shuffleIndicator.uri.Replace("-on", "-off")
|
|
|
|
|
|
|
|
m.shuffleEvent = "enabled"
|
|
|
|
m.currentSongIndex = findCurrentSongIndex(m.originalSongList)
|
|
|
|
m.top.pageContent = m.originalSongList
|
|
|
|
setFieldTextValue("numberofsongs", "Track " + stri(m.currentSongIndex + 1) + "/" + stri(m.top.pageContent.count()))
|
|
|
|
|
|
|
|
return true
|
|
|
|
end if
|
|
|
|
|
|
|
|
m.shuffleIndicator.opacity = "1"
|
|
|
|
m.shuffleIndicator.uri = m.shuffleIndicator.uri.Replace("-off", "-on")
|
2022-06-04 01:31:16 +00:00
|
|
|
|
2022-06-04 01:30:20 +00:00
|
|
|
m.originalSongList = m.top.pageContent
|
|
|
|
|
|
|
|
songIDArray = m.top.pageContent
|
|
|
|
|
|
|
|
' Move the currently playing song to the front of the queue
|
|
|
|
temp = m.top.pageContent[0]
|
|
|
|
songIDArray[0] = m.top.pageContent[m.currentSongIndex]
|
|
|
|
songIDArray[m.currentSongIndex] = temp
|
|
|
|
|
|
|
|
for i = 1 to songIDArray.count() - 1
|
2022-06-04 01:31:16 +00:00
|
|
|
j = Rnd(songIDArray.count() - 1)
|
2022-06-04 01:30:20 +00:00
|
|
|
temp = songIDArray[i]
|
|
|
|
songIDArray[i] = songIDArray[j]
|
|
|
|
songIDArray[j] = temp
|
|
|
|
end for
|
|
|
|
|
|
|
|
m.currentSongIndex = 0
|
|
|
|
m.shuffleEvent = "enabled"
|
|
|
|
|
|
|
|
m.top.pageContent = songIDArray
|
|
|
|
|
|
|
|
return true
|
|
|
|
end function
|
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
sub LoadNextSong()
|
2022-09-04 07:39:44 +00:00
|
|
|
if m.top.audio.state = "playing"
|
|
|
|
m.top.audio.control = "stop"
|
|
|
|
end if
|
|
|
|
|
2022-06-02 01:09:58 +00:00
|
|
|
' Reset playPosition bar without animation
|
|
|
|
m.playPosition.width = 0
|
2022-05-29 18:41:06 +00:00
|
|
|
m.currentSongIndex++
|
|
|
|
pageContentChanged()
|
|
|
|
end sub
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
' Update values on screen when page content changes
|
|
|
|
sub pageContentChanged()
|
2022-06-04 01:30:20 +00:00
|
|
|
' pageContent Changed due to shuffle event, don't update screen values
|
|
|
|
if m.shuffleEvent = "enabled"
|
|
|
|
m.shuffleEvent = ""
|
|
|
|
return
|
|
|
|
end if
|
2022-06-04 01:31:16 +00:00
|
|
|
|
2022-06-02 01:09:58 +00:00
|
|
|
' Reset buffer bar without animation
|
2022-05-30 19:38:30 +00:00
|
|
|
m.bufferPosition.width = 0
|
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
m.LoadMetaDataTask.itemId = m.top.pageContent[m.currentSongIndex]
|
|
|
|
m.LoadMetaDataTask.observeField("content", "onMetaDataLoaded")
|
|
|
|
m.LoadMetaDataTask.control = "RUN"
|
2022-05-21 16:05:21 +00:00
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
m.LoadAudioStreamTask.itemId = m.top.pageContent[m.currentSongIndex]
|
|
|
|
m.LoadAudioStreamTask.observeField("content", "onAudioStreamLoaded")
|
|
|
|
m.LoadAudioStreamTask.control = "RUN"
|
|
|
|
end sub
|
2022-05-21 15:45:38 +00:00
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
sub onAudioStreamLoaded()
|
|
|
|
data = m.LoadAudioStreamTask.content[0]
|
|
|
|
m.LoadAudioStreamTask.unobserveField("content")
|
|
|
|
if data <> invalid and data.count() > 0
|
|
|
|
m.top.audio.content = data
|
|
|
|
m.top.audio.control = "none"
|
|
|
|
m.top.audio.control = "play"
|
|
|
|
end if
|
|
|
|
end sub
|
|
|
|
|
|
|
|
sub onBackdropImageLoaded()
|
|
|
|
data = m.LoadBackdropImageTask.content[0]
|
|
|
|
m.LoadBackdropImageTask.unobserveField("content")
|
|
|
|
if isValid(data) and data <> ""
|
|
|
|
setBackdropImage(data)
|
|
|
|
end if
|
|
|
|
end sub
|
|
|
|
|
|
|
|
sub onMetaDataLoaded()
|
|
|
|
data = m.LoadMetaDataTask.content[0]
|
|
|
|
m.LoadMetaDataTask.unobserveField("content")
|
|
|
|
if data <> invalid and data.count() > 0
|
|
|
|
|
|
|
|
' Use metadata to load backdrop image
|
2022-09-24 00:16:52 +00:00
|
|
|
if isValid(data.json)
|
2022-10-06 18:34:24 +00:00
|
|
|
if isValid(data.json.ArtistItems)
|
|
|
|
if data.json.ArtistItems.count() > 0
|
|
|
|
if isValid(data.json.ArtistItems[0].id)
|
|
|
|
m.LoadBackdropImageTask.itemId = data.json.ArtistItems[0].id
|
|
|
|
m.LoadBackdropImageTask.observeField("content", "onBackdropImageLoaded")
|
|
|
|
m.LoadBackdropImageTask.control = "RUN"
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end if
|
2022-07-19 02:28:06 +00:00
|
|
|
end if
|
2022-05-29 18:41:06 +00:00
|
|
|
|
|
|
|
setPosterImage(data.posterURL)
|
|
|
|
setScreenTitle(data.json)
|
|
|
|
setOnScreenTextValues(data.json)
|
|
|
|
|
2022-06-04 01:44:23 +00:00
|
|
|
m.songDuration = data.json.RunTimeTicks / 10000000.0
|
|
|
|
|
2022-05-29 18:41:06 +00:00
|
|
|
' If we have more and 1 song to play, fade in the next and previous controls
|
|
|
|
if m.buttonsNeedToBeLoaded
|
|
|
|
if m.top.pageContent.count() > 1
|
2022-06-04 01:30:20 +00:00
|
|
|
m.shuffleIndicator.opacity = ".4"
|
|
|
|
m.loopIndicator.opacity = ".4"
|
2022-05-30 12:37:15 +00:00
|
|
|
m.displayButtonsAnimation.control = "start"
|
2022-05-29 18:41:06 +00:00
|
|
|
end if
|
|
|
|
m.buttonsNeedToBeLoaded = false
|
|
|
|
end if
|
|
|
|
end if
|
2022-05-21 20:45:01 +00:00
|
|
|
end sub
|
2022-05-21 15:45:38 +00:00
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
' Set poster image on screen
|
|
|
|
sub setPosterImage(posterURL)
|
|
|
|
if isValid(posterURL)
|
2022-05-27 01:23:59 +00:00
|
|
|
if m.albumCover.uri <> posterURL
|
|
|
|
m.albumCover.uri = posterURL
|
2022-06-02 01:09:58 +00:00
|
|
|
m.screenSaverAlbumCover.uri = posterURL
|
2022-05-27 01:23:59 +00:00
|
|
|
end if
|
2022-05-21 20:45:01 +00:00
|
|
|
end if
|
|
|
|
end sub
|
2022-05-21 17:33:57 +00:00
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
' Set screen's title text
|
|
|
|
sub setScreenTitle(json)
|
2022-05-22 12:46:53 +00:00
|
|
|
newTitle = ""
|
2022-05-21 20:45:01 +00:00
|
|
|
if isValid(json)
|
2022-05-22 12:46:53 +00:00
|
|
|
if isValid(json.AlbumArtist)
|
|
|
|
newTitle = json.AlbumArtist
|
|
|
|
end if
|
|
|
|
if isValid(json.AlbumArtist) and isValid(json.name)
|
|
|
|
newTitle = newTitle + " / "
|
|
|
|
end if
|
|
|
|
if isValid(json.name)
|
|
|
|
newTitle = newTitle + json.name
|
|
|
|
end if
|
2022-05-21 17:33:57 +00:00
|
|
|
end if
|
2022-05-27 01:23:59 +00:00
|
|
|
|
|
|
|
if m.top.overhangTitle <> newTitle
|
|
|
|
m.top.overhangTitle = newTitle
|
|
|
|
end if
|
2022-05-21 15:45:38 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
' Populate on screen text variables
|
|
|
|
sub setOnScreenTextValues(json)
|
|
|
|
if isValid(json)
|
2022-06-04 01:30:20 +00:00
|
|
|
currentSongIndex = m.currentSongIndex
|
|
|
|
|
|
|
|
if m.shuffleEnabled
|
|
|
|
currentSongIndex = findCurrentSongIndex(m.originalSongList)
|
|
|
|
end if
|
|
|
|
setFieldTextValue("numberofsongs", "Track " + stri(currentSongIndex + 1) + "/" + stri(m.top.pageContent.count()))
|
2022-05-21 20:45:01 +00:00
|
|
|
setFieldTextValue("artist", json.Artists[0])
|
|
|
|
setFieldTextValue("song", json.name)
|
2022-05-21 15:45:38 +00:00
|
|
|
end if
|
2022-05-21 20:45:01 +00:00
|
|
|
end sub
|
2022-05-21 15:45:38 +00:00
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
' Add backdrop image to screen
|
2022-05-29 18:41:06 +00:00
|
|
|
sub setBackdropImage(data)
|
|
|
|
if isValid(data)
|
|
|
|
if m.backDrop.uri <> data
|
|
|
|
m.backDrop.uri = data
|
2022-05-27 01:23:59 +00:00
|
|
|
end if
|
2022-05-21 20:45:01 +00:00
|
|
|
end if
|
2022-05-21 15:45:38 +00:00
|
|
|
end sub
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
' Process key press events
|
2022-05-21 15:45:38 +00:00
|
|
|
function onKeyEvent(key as string, press as boolean) as boolean
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
' Key bindings for remote control buttons
|
|
|
|
if press
|
2022-06-03 01:29:07 +00:00
|
|
|
' If user presses key to turn off screensaver, don't do anything else with it
|
|
|
|
if screenSaverActive()
|
|
|
|
endScreenSaver()
|
|
|
|
return true
|
2022-06-02 01:09:58 +00:00
|
|
|
end if
|
|
|
|
|
2022-05-21 20:45:01 +00:00
|
|
|
if key = "play"
|
|
|
|
return playAction()
|
|
|
|
else if key = "back"
|
|
|
|
m.top.audio.control = "stop"
|
|
|
|
else if key = "rewind"
|
|
|
|
return previousClicked()
|
|
|
|
else if key = "fastforward"
|
|
|
|
return nextClicked()
|
2022-05-29 18:41:06 +00:00
|
|
|
else if key = "left"
|
|
|
|
if m.top.pageContent.count() = 1 then return false
|
2022-05-29 18:46:22 +00:00
|
|
|
|
|
|
|
if m.top.selectedButtonIndex > 0
|
2022-05-29 18:41:06 +00:00
|
|
|
m.previouslySelectedButtonIndex = m.top.selectedButtonIndex
|
|
|
|
m.top.selectedButtonIndex = m.top.selectedButtonIndex - 1
|
|
|
|
end if
|
|
|
|
return true
|
|
|
|
else if key = "right"
|
|
|
|
if m.top.pageContent.count() = 1 then return false
|
|
|
|
|
|
|
|
m.previouslySelectedButtonIndex = m.top.selectedButtonIndex
|
2022-06-04 01:30:20 +00:00
|
|
|
if m.top.selectedButtonIndex < m.buttonCount - 1 then m.top.selectedButtonIndex = m.top.selectedButtonIndex + 1
|
2022-05-29 18:41:06 +00:00
|
|
|
return true
|
|
|
|
else if key = "OK"
|
|
|
|
if m.buttons.getChild(m.top.selectedButtonIndex).id = "play"
|
2022-05-21 20:45:01 +00:00
|
|
|
return playAction()
|
2022-05-29 18:41:06 +00:00
|
|
|
else if m.buttons.getChild(m.top.selectedButtonIndex).id = "previous"
|
2022-05-21 20:45:01 +00:00
|
|
|
return previousClicked()
|
2022-05-29 18:41:06 +00:00
|
|
|
else if m.buttons.getChild(m.top.selectedButtonIndex).id = "next"
|
2022-05-21 20:45:01 +00:00
|
|
|
return nextClicked()
|
2022-06-04 01:30:20 +00:00
|
|
|
else if m.buttons.getChild(m.top.selectedButtonIndex).id = "shuffle"
|
|
|
|
return shuffleClicked()
|
|
|
|
else if m.buttons.getChild(m.top.selectedButtonIndex).id = "loop"
|
|
|
|
return loopClicked()
|
2022-05-21 20:45:01 +00:00
|
|
|
end if
|
2022-05-21 15:45:38 +00:00
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
return false
|
|
|
|
end function
|
2022-06-03 01:29:07 +00:00
|
|
|
|
|
|
|
sub OnScreenHidden()
|
|
|
|
' Write screen tracker for screensaver
|
|
|
|
WriteAsciiFile("tmp:/scene.temp", "")
|
|
|
|
MoveFile("tmp:/scene.temp", "tmp:/scene")
|
|
|
|
end sub
|
2022-09-04 07:39:44 +00:00
|
|
|
|
|
|
|
' Report playback to server
|
|
|
|
sub ReportPlayback(state = "update" as string)
|
|
|
|
|
|
|
|
if m.top.audio.position = invalid then return
|
|
|
|
|
|
|
|
params = {
|
|
|
|
"ItemId": m.top.pageContent[m.currentSongIndex],
|
|
|
|
"PlaySessionId": m.top.audio.content.id,
|
|
|
|
"PositionTicks": int(m.top.audio.position) * 10000000&, 'Ensure a LongInteger is used
|
|
|
|
"IsPaused": (m.top.audio.state = "paused")
|
|
|
|
}
|
|
|
|
|
|
|
|
' Report playstate via worker task
|
|
|
|
playstateTask = m.global.playstateTask
|
|
|
|
playstateTask.setFields({ status: state, params: params })
|
|
|
|
playstateTask.control = "RUN"
|
|
|
|
end sub
|