2019-05-03 12:48:59 +00:00
|
|
|
sub init()
|
2020-03-01 01:41:57 +00:00
|
|
|
m.top.optionsAvailable = false
|
|
|
|
|
2019-05-03 12:48:59 +00:00
|
|
|
main = m.top.findNode("main_group")
|
2020-02-29 02:09:56 +00:00
|
|
|
main.translation = [50, 175]
|
2019-05-03 12:48:59 +00:00
|
|
|
|
|
|
|
overview = m.top.findNode("overview")
|
2020-03-01 00:36:36 +00:00
|
|
|
overview.width = 1920 - 100 - 400
|
2019-05-03 12:48:59 +00:00
|
|
|
|
|
|
|
m.top.findNode("buttons").setFocus(true)
|
|
|
|
end sub
|
|
|
|
|
2019-03-14 17:11:51 +00:00
|
|
|
sub itemContentChanged()
|
2019-05-03 12:48:59 +00:00
|
|
|
' Updates video metadata
|
2019-04-15 00:16:47 +00:00
|
|
|
item = m.top.itemContent
|
|
|
|
itemData = item.json
|
2019-10-12 21:00:07 +00:00
|
|
|
m.top.id = itemData.id
|
2019-03-14 17:11:51 +00:00
|
|
|
|
|
|
|
m.top.findNode("moviePoster").uri = m.top.itemContent.posterURL
|
|
|
|
|
|
|
|
' Handle all "As Is" fields
|
2019-10-12 21:00:07 +00:00
|
|
|
m.top.overhangTitle = itemData.name
|
2019-03-14 17:11:51 +00:00
|
|
|
setFieldText("releaseYear", itemData.productionYear)
|
|
|
|
setFieldText("officialRating", itemData.officialRating)
|
2019-12-09 01:31:07 +00:00
|
|
|
setFieldText("communityRating", itemData.communityRating)
|
2019-03-14 17:11:51 +00:00
|
|
|
setFieldText("overview", itemData.overview)
|
|
|
|
|
2020-04-04 18:18:41 +00:00
|
|
|
if itemData.CriticRating <> invalid then
|
|
|
|
setFieldText("criticRatingLabel" , itemData.criticRating)
|
|
|
|
if itemData.CriticRating > 60 then
|
|
|
|
tomato = "pkg:/images/fresh.png"
|
|
|
|
else
|
|
|
|
tomato = "pkg:/images/rotten.png"
|
|
|
|
end if
|
|
|
|
m.top.findNode("criticRatingIcon").uri = tomato
|
|
|
|
else
|
|
|
|
m.top.findNode("infoGroup").removeChild(m.top.findNode("criticRatingGroup"))
|
|
|
|
end if
|
|
|
|
|
2019-10-19 03:35:26 +00:00
|
|
|
if type(itemData.RunTimeTicks) = "LongInteger"
|
|
|
|
setFieldText("runtime", stri(getRuntime()) + " mins")
|
|
|
|
setFieldText("ends-at", "Ends at " + getEndTime())
|
|
|
|
end if
|
2019-03-14 17:11:51 +00:00
|
|
|
|
|
|
|
if itemData.genres.count() > 0
|
2020-04-04 18:18:41 +00:00
|
|
|
setFieldText("genres", "Genres: " + itemData.genres.join(", "))
|
2019-03-14 17:11:51 +00:00
|
|
|
end if
|
|
|
|
director = invalid
|
|
|
|
for each person in itemData.people
|
|
|
|
if person.type = "Director"
|
|
|
|
director = person.name
|
|
|
|
exit for
|
|
|
|
end if
|
|
|
|
end for
|
|
|
|
if director <> invalid
|
|
|
|
setFieldText("director", "Director: " + director)
|
|
|
|
end if
|
|
|
|
setFieldText("video_codec", "Video: " + itemData.mediaStreams[0].displayTitle)
|
|
|
|
setFieldText("audio_codec", "Audio: " + itemData.mediaStreams[1].displayTitle)
|
|
|
|
' TODO - cmon now. these are buttons, not words
|
|
|
|
if itemData.taglines.count() > 0
|
|
|
|
setFieldText("tagline", itemData.taglines[0])
|
|
|
|
end if
|
|
|
|
setFavoriteColor()
|
|
|
|
setWatchedColor()
|
|
|
|
end sub
|
|
|
|
|
2019-09-24 04:35:26 +00:00
|
|
|
sub setFieldText(field, value)
|
2019-03-14 17:11:51 +00:00
|
|
|
node = m.top.findNode(field)
|
2019-09-24 04:35:26 +00:00
|
|
|
if node = invalid or value = invalid then return
|
|
|
|
|
|
|
|
' Handle non strings... Which _shouldn't_ happen, but hey
|
2019-09-24 04:49:09 +00:00
|
|
|
if type(value) = "roInt" or type(value) = "Integer" then
|
2019-09-24 04:35:26 +00:00
|
|
|
value = str(value)
|
2019-12-09 01:31:07 +00:00
|
|
|
else if type(value) = "roFloat" or type(value) = "Float" then
|
|
|
|
value = str(value)
|
2019-09-24 04:35:26 +00:00
|
|
|
else if type(value) <> "roString" and type(value) <> "String" then
|
|
|
|
value = ""
|
|
|
|
end if
|
2019-03-14 17:11:51 +00:00
|
|
|
|
|
|
|
node.text = value
|
|
|
|
end sub
|
|
|
|
|
2019-05-03 12:48:59 +00:00
|
|
|
function getRuntime() as integer
|
2019-04-15 00:16:47 +00:00
|
|
|
itemData = m.top.itemContent.json
|
2019-03-14 17:11:51 +00:00
|
|
|
|
|
|
|
' A tick is .1ms, so 1/10,000,000 for ticks to seconds,
|
|
|
|
' then 1/60 for seconds to minutess... 1/600,000,000
|
|
|
|
return round(itemData.RunTimeTicks / 600000000.0)
|
|
|
|
end function
|
|
|
|
|
|
|
|
function getEndTime() as string
|
2019-04-15 00:16:47 +00:00
|
|
|
itemData = m.top.itemContent.json
|
2019-03-14 17:11:51 +00:00
|
|
|
|
|
|
|
date = CreateObject("roDateTime")
|
|
|
|
duration_s = int(itemData.RunTimeTicks / 10000000.0)
|
|
|
|
date.fromSeconds(date.asSeconds() + duration_s)
|
|
|
|
date.toLocalTime()
|
|
|
|
hours = date.getHours()
|
|
|
|
meridian = "AM"
|
|
|
|
if hours = 0
|
|
|
|
hours = 12
|
|
|
|
meridian = "AM"
|
|
|
|
else if hours = 12
|
|
|
|
hours = 12
|
|
|
|
meridian = "PM"
|
|
|
|
else if hours > 12
|
|
|
|
hours = hours - 12
|
|
|
|
meridian = "PM"
|
|
|
|
end if
|
|
|
|
|
2019-03-19 00:43:02 +00:00
|
|
|
return Substitute("{0}:{1} {2}", stri(hours).trim(), leftPad(stri(date.getMinutes()).trim(), "0", 2), meridian)
|
2019-03-14 17:11:51 +00:00
|
|
|
end function
|
|
|
|
|
|
|
|
sub setFavoriteColor()
|
|
|
|
fave = m.top.itemContent.favorite
|
|
|
|
fave_button = m.top.findNode("favorite-button")
|
2020-02-29 02:09:56 +00:00
|
|
|
if fave <> invalid and fave
|
2019-03-14 17:11:51 +00:00
|
|
|
fave_button.textColor = "#00ff00ff"
|
|
|
|
fave_button.focusedTextColor = "#269926ff"
|
|
|
|
else
|
|
|
|
fave_button.textColor = "0xddddddff"
|
|
|
|
fave_button.focusedTextColor = "#262626ff"
|
|
|
|
end if
|
|
|
|
end sub
|
|
|
|
|
|
|
|
sub setWatchedColor()
|
|
|
|
watched = m.top.itemContent.watched
|
|
|
|
watched_button = m.top.findNode("watched-button")
|
|
|
|
if watched
|
|
|
|
watched_button.textColor = "#ff0000ff"
|
|
|
|
watched_button.focusedTextColor = "#992626ff"
|
|
|
|
else
|
|
|
|
watched_button.textColor = "0xddddddff"
|
|
|
|
watched_button.focusedTextColor = "#262626ff"
|
|
|
|
end if
|
|
|
|
end sub
|
|
|
|
|
2019-05-03 12:48:59 +00:00
|
|
|
function round(f as float) as integer
|
2019-03-14 17:11:51 +00:00
|
|
|
' BrightScript only has a "floor" round
|
|
|
|
' This compares floor to floor + 1 to find which is closer
|
|
|
|
m = int(f)
|
|
|
|
n = m + 1
|
|
|
|
x = abs(f - m)
|
|
|
|
y = abs(f - n)
|
|
|
|
if y > x
|
|
|
|
return m
|
|
|
|
else
|
|
|
|
return n
|
|
|
|
end if
|
|
|
|
end function
|