juantwc
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2017
07:40 AM
Scene Graph roScene disposal best practices
Hello
I am developing an app with Scene Graph where more than one scene is shown.
Each screen is abstracted to a controller and each controller presents its own Scene, like this example:
When i present another screen, i repeat the same process.
It all works fine.
What i notice though is that when i debug with
It will tell me that previous Scenes are still there. I am worried this is a memory issue.
I tried removing each Scene individually with scene.Close() before presenting a new one but i get the error
What is the best way to remove all nodes in a Scene before presenting a new one?
Thanks,
I am developing an app with Scene Graph where more than one scene is shown.
Each screen is abstracted to a controller and each controller presents its own Scene, like this example:
' Create the splash screen'
m.screen = CreateObject("roSGScreen")
m.port = CreateObject("roMessagePort")
m.screen.setMessagePort(m.port)
' Create the component'
m.scene = m.screen.CreateScene("splash")
m.screen.show()
When i present another screen, i repeat the same process.
It all works fine.
What i notice though is that when i debug with
sgnodes all
It will tell me that previous Scenes are still there. I am worried this is a memory issue.
I tried removing each Scene individually with scene.Close() before presenting a new one but i get the error
BRIGHTSCRIPT: ERROR: roSGScreen: create screen interrupted.: pkg:/source/controllers/....
What is the best way to remove all nodes in a Scene before presenting a new one?
Thanks,
7 REPLIES 7
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2017
09:35 AM
Re: Scene Graph roScene disposal best practices
I am not sure creating >1 scene is a good idea in RSG. I'd feel better if i see scene transitions API (i.e. how to replace one scene with another, animations etc) - but i dont find that.
What is the reason to wish for >1 scene? Why not just use multiple "subscenes" (ok, so just a Group nodes) under a "One Scene to Rule them All"? https://sdkdocs.roku.com/display/sdkdoc/Scene as such has rather un-interesting features.
What is the reason to wish for >1 scene? Why not just use multiple "subscenes" (ok, so just a Group nodes) under a "One Scene to Rule them All"? https://sdkdocs.roku.com/display/sdkdoc/Scene as such has rather un-interesting features.
Veeta
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2017
11:25 AM
Re: Scene Graph roScene disposal best practices
I agree with EnTerr. All of my SG channels have one "Controller" node extending Scene. It's lifespan is the duration of the app. It creates and destroys "Screens" which extend "Group"
juantwc
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2017
12:22 AM
Re: Scene Graph roScene disposal best practices
Thanks for your replies.
I had one Scene per controller only because it seems more organised. I come from a developer background in iOS and i guess i was trying to have a paradigm similar to each view controller having a view that gets shown/dismissed.
I understand from your replies this is the wrong approach, and i had suspected as much. Thank you for confirming.
So usually you just create one scene and remove nodes manually before inserting others. Can you share some sample code?
Thanks again.
I had one Scene per controller only because it seems more organised. I come from a developer background in iOS and i guess i was trying to have a paradigm similar to each view controller having a view that gets shown/dismissed.
I understand from your replies this is the wrong approach, and i had suspected as much. Thank you for confirming.
So usually you just create one scene and remove nodes manually before inserting others. Can you share some sample code?
Thanks again.
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2017
11:34 AM
Re: Scene Graph roScene disposal best practices
"juantwc" wrote:
I understand from your replies this is the wrong approach, and i had suspected as much. Thank you for confirming.
So usually you just create one scene and remove nodes manually before inserting others. Can you share some sample code?
I don't know for a fact that multiple scenes are the wrong approach - just suspicion. If i learn more, i'll let you know.
I imagine you can also hide/unhide whole Group trees - whether usable would depend on the real life performance though
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2017
11:47 PM
Re: Scene Graph roScene disposal best practices
I got a chance to ask someone privy to RSG's mysteries and here is what i heard back:
"Scenography Swami" wrote:
Our recommended usage pattern is to create one RoSGScreen and one Scene node for a channel. You can treat the child nodes of the Scene (or one of its children) as different “views” and add transitions between them (e.g. crossfades, slides, etc.). This provides the same functionality as multiple Scene’s, just a different implementation.
I don’t think there is anything to prevent you from using multiple RoSGScreen’s but setting things up that way might fail to take advantage of future improvements to channel launching transitions, etc.
juantwc
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2017
04:21 AM
Re: Scene Graph roScene disposal best practices
Thanks man, you are doing God's work 🙂
Would be cool to see something like this in the SDK documentation (wink wink if anybody out there has the right connections)
Would be cool to see something like this in the SDK documentation (wink wink if anybody out there has the right connections)
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2017
09:46 AM
Re: Scene Graph roScene disposal best practices
RokuDanny can has 8-)