
Komag
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
12:01 PM
Re: Variable limit
Wait a second, does that say you have over 2800 functions?!?! :shock:
:shock:
I thought I had a lot with a little over 100!
Thanks for the tests and info. TheEndless, what is the stats command? When I type "help" and see the different commands, nothing looks like stats. I tried "bscs" (which tells me I have almost 14,000 roArray components among other things!), and I tried other things.

I thought I had a lot with a little over 100!
Thanks for the tests and info. TheEndless, what is the stats command? When I type "help" and see the different commands, nothing looks like stats. I tried "bscs" (which tells me I have almost 14,000 roArray components among other things!), and I tried other things.
Rek
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
12:07 PM
Re: Variable limit
"Komag" wrote:
Wait a second, does that say you have over 2800 functions?!?! :shock::shock:
I thought I had a lot with a little over 100!
Thanks for the tests and info. TheEndless, what is the stats command? When I type "help" and see the different commands, nothing looks like stats. I tried "bscs" (which tells me I have almost 14,000 roArray components among other things!), and I tried other things.
Actually it's closer to 3500

function main() as Void
data = loadDataList()
applyTransformation(data, function(a) as Void
if type(a.date) <> invalid
a.date = dateCreateWithString(a.date)
end if
end function)
end function

Komag
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
12:49 PM
Re: Variable limit
What's your program, what do you do? :?:
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
07:54 PM
Re: Variable limit
"Komag" wrote:
Is this confirmed in anyone's experience, that it's per function, and that it's 255?
All variables in BrightScript are local, i.e. "per function". The reason why locals are fast and why 8-bit number limit would have been easier to explain if "they" haven't disabled the disassembler command. <grumble>
"Rek" wrote:
The limit appears to be 253 on my Roku 2. The following snippet works fine, until adding one more variable ("x253 = 253") ...
+1 for the "m" local var (which you are granted regardless) = 254

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
08:03 PM
Re: Variable limit
"Komag" wrote:
TheEndless, what is the stats command? When I type "help" and see the different commands, nothing looks like stats.
Wow.. it looks like they got rid of the stats command in a recent firmware update. It used to list a count of all variable types and their limits, including functions. Wonder why they ditched it... :?:
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
08:05 PM
Re: Variable limit
"Rek" wrote:
FUNCTION getSounds() ' trig by Main(1) near top
hitMon = CreateObject("roAudioResource", "pkg:/sounds/hitMon.wav")
missMon = CreateObject("roAudioResource", "pkg:/sounds/missMon.wav")
hitPlayer = CreateObject("roAudioResource", "pkg:/sounds/hitPlayer.wav")
missPlayer = CreateObject("roAudioResource", "pkg:/sounds/missPlayer.wav")
deathMon = CreateObject("roAudioResource", "pkg:/sounds/deathMon.wav")
sounds = {hitMon: hitMon, missMon: missMon, hitPlayer: hitPlayer, missPlayer: missPlayer, deathMon: deathMon} ' I don't think this is best way to do it
RETURN sounds
END FUNCTION
That way Main() is only adding one more variable, an AA with all the sounds.
(Would this be the right approach?)
It's acceptable. And with small modification, shortage of variables averted:
function loadSounds():
sounds = { }
for each name in ["hitMon", "missMon", "hitPlayer", "missPlayer", "deathMon"]:
sounds[name] = CreateObject("roAudioResource", "pkg:/sounds/" + name + ".wav")
end for
return sounds
end function
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
08:11 PM
Re: Variable limit
"TheEndless" wrote:
Wow.. it looks like they got rid of the stats command in a recent firmware update. It used to list a count of all variable types and their limits, including functions. Wonder why they ditched it... :?:
"Catch-22" wrote:
"Why not?" was Chief White Halfoat's answer.

EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
08:15 PM
Re: Variable limit
"squirreltown" wrote:
you don't even have to wrap it in Sub Main()/End sub
Wait... WAT?!
How is that going to work, B/S does not allow executable code outside of a function. Did i miss some change in the language?

Komag
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2015
02:29 AM
Re: Variable limit
"EnTerr" wrote:
And with small modification, shortage of variables averted:
function loadSounds():
sounds = { }
for each name in ["hitMon", "missMon", "hitPlayer", "missPlayer", "deathMon"]:
sounds[name] = CreateObject("roAudioResource", "pkg:/sounds/" + name + ".wav")
end for
return sounds
end function
(slaps forehead) Of course! I've tried to train myself to search and destroy repeating code, but I missed it this time! I'll use that, thanks.

squirreltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2015
06:47 AM
Re: Variable limit
"EnTerr" wrote:"TheEndless" wrote:
Wow.. it looks like they got rid of the stats command in a recent firmware update. It used to list a count of all variable types and their limits, including functions. Wonder why they ditched it... :?:"Catch-22" wrote:
"Why not?" was Chief White Halfoat's answer.
My understanding is that the "stats" command along with the legacy firmware updaters was traded for a load of egyptian cotton. Cheer up Endless! you've got shares in the syndicate!
Kinetics Screensavers