Scrolling Game Development Kit Forum

SGDK Version 2 => Help, Errors, FAQ => Topic started by: bluemonkmn on 2012-06-08, 05:53:06 AM

Title: Large number of frames causes Stack Overflow
Post by: bluemonkmn on 2012-06-08, 05:53:06 AM
Apparently when a project has too many frames, a stack overflow error can occur. I am considering rewriting the code generator for framesets so that they are not all hard-coded into a single function. My first inclination is to convert the parameters of all the frames in each frameset into a binary file and store that in an embedded resource (a .bin file in a "Framesets" folder in the generated project), which will be parsed when the frameset is constructed. But that means you will not be able to easily see the details of the framesets in the generated code just by looking at it. But it will be much more compact. Another alternative would be to store it in XML instead of binary format. What do you think?

I hope that constructing framesets this way uses heap memory instead of stack memory, but I'm a little fuzzy on what was going on the stack.
Title: Re: Large number of frames causes Stack Overflow
Post by: Vincent on 2012-06-08, 06:01:43 AM
I'm surprised!  I thought that LoK:Revival was the biggest project around, there's a lot of frames and a lot of framesets too in my project.  I don't remember getting a stack overflow error...  Just how many frames do you need in a frame set to get such an error?
Title: Re: Large number of frames causes Stack Overflow
Post by: bluemonkmn on 2012-06-08, 09:09:56 AM
I guess about 500 frames per frameset... and lots of framesets. Let's see if the user who found the problem will provide more detailed info.
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-08, 12:22:53 PM
My project had a total of 256 * 60 added to 320

Scratch that:

15,680 + 510 frames.

:/

To be honest, .bin sounds nice. I rarely will need to modify framesets outside of SGDK2 in a text or XML editor. That may be different for other users though. The main question is, I'm still far from being a computer programmer, everything should still be in a binary file, right (With the exception of libraries such as OpenTK.dll and Lidgren.Network.dll)
Title: Re: Large number of frames causes Stack Overflow
Post by: Vincent on 2012-06-08, 12:29:03 PM
Yikes!
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-08, 12:30:54 PM
Yikes!

How much more was that from LoK? When I was submitting the issue to bluemonkmn last night I had doubts that the issue was from the stack, because I figured your project probably had twice the frames that I had.
Title: Re: Large number of frames causes Stack Overflow
Post by: Vincent on 2012-06-08, 12:34:10 PM
Good question.  I don't have the project with me, so I can't be sure.  I suppose I have more than 1,000 frames but certainly less than 10,000.  I'll check the exact number weekend. 
Title: Re: Large number of frames causes Stack Overflow
Post by: bluemonkmn on 2012-06-08, 01:22:00 PM
To be honest, .bin sounds nice. I rarely will need to modify framesets outside of SGDK2 in a text or XML editor. That may be different for other users though. The main question is, I'm still far from being a computer programmer, everything should still be in a binary file, right (With the exception of libraries such as OpenTK.dll and Lidgren.Network.dll)

When compiled the frameset info will be embedded in the EXE. But the source code of the project generated by SGDK2 would represent the data in binary files instead of as source code. The format of the SGDK2 file itself would not change; everything including Framesets would still be XML in that file. Does that answer your question?
Title: Re: Large number of frames causes Stack Overflow
Post by: Vincent on 2012-06-08, 03:40:07 PM
LoK Revival has:
5378 frames (I counted manually so I may be a little off)
226 framesets
the biggest frameset has 293 frames

Wow, your project is huge: 3x more frames than mine...  :o
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-08, 04:59:53 PM
Even mine was an approximation. Where I said 256, I should have said 360.

It's mainly just the fact that each limb, body part, shirt, hair, hat, etc, has 360 frames because of 360 degrees of motion.

I'm concerned. The EXE is looking to be around 170MB at the moment and I only have enough for a demo- I want people to download this online. From the looks of things I'll probably have a //REQUEST GAME CD// link, and mail people the CD's.


Even with compression it's still going to be ridiculously large

(Well actually most games of my game's genre that play like my game max up to 2GB)

What do you recommend, having the users download a much smaller ParadigmInstaller file, that installs the EXE, can be paused, and resumed?
Title: Re: Large number of frames causes Stack Overflow
Post by: bluemonkmn on 2012-06-09, 05:37:02 AM
170 MB isn't too big to simply post as a file for download. And usually level design is not the largest piece of a game, and I assume that's most of what remains in your project. But it does seem excessive for a scrolling game created by one person. I find it hard to believe that one person could have created that much content without having some unnecessary overhead. So here are things to check:
1. Zip the EXE of course. That should cut down its size significantly.
2. Eliminate unused graphics.
3. Use more efficient mechanisms for storing sound (I guess I can imagine 170 MB of sounds accumulating from one person easily). Music could be MOD or MIDI, which is much smaller than MP3 or OGG. And use lower bitrate compression on other sounds.
4. Use 2 bytes per tile instead of 4 bytes per tile. 4 bytes per tile is only necessary if you have more than 65,536 frames/tiles.
5. If you have many layers in addition to the background and player's layer on your maps, and there are large unused portions of those layers, consider breaking up the layer into smaller layers that are offset so they appear where they should and only cover areas where you have tiles on those layers.

The last two probably don't affect EXE size much, but would affect memory usage at runtime.

Hopefully the new frameset mechanism will improve things a bit, but I suspect the actual code part of the project is still under 5 MB, and not a large portion of your project's size.
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-09, 10:03:47 AM
170 MB isn't too big to simply post as a file for download. And usually level design is not the largest piece of a game, and I assume that's most of what remains in your project. But it does seem excessive for a scrolling game created by one person. I find it hard to believe that one person could have created that much content without having some unnecessary overhead. So here are things to check:
1. Zip the EXE of course. That should cut down its size significantly.
2. Eliminate unused graphics.
3. Use more efficient mechanisms for storing sound (I guess I can imagine 170 MB of sounds accumulating from one person easily). Music could be MOD or MIDI, which is much smaller than MP3 or OGG. And use lower bitrate compression on other sounds.
4. Use 2 bytes per tile instead of 4 bytes per tile. 4 bytes per tile is only necessary if you have more than 65,536 frames/tiles.
5. If you have many layers in addition to the background and player's layer on your maps, and there are large unused portions of those layers, consider breaking up the layer into smaller layers that are offset so they appear where they should and only cover areas where you have tiles on those layers.

The last two probably don't affect EXE size much, but would affect memory usage at runtime.

Hopefully the new frameset mechanism will improve things a bit, but I suspect the actual code part of the project is still under 5 MB, and not a large portion of your project's size.

There was the thing that my first game ever made was around 256 MB. :)

Almost 7 years later, I still don't understand why that was. Shame I can't find it.

I keep everything in OGG, which is about 1MB each for music, that's good, right?
Title: Re: Large number of frames causes Stack Overflow
Post by: bluemonkmn on 2012-06-09, 11:46:04 AM
I guess 1 MB is good for a music file, but MOD or MIDI could be much smaller. I guess you want to focus on what is taking the largest percentage of your whole project size.
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-09, 12:38:50 PM
Graphics. Not graphic sheets mainly, mainly Skysphere textures. 2048 by 2048 is the preferred size, because anything less has horrible scaling.

PNG seems to be a small enough format as it is, it's a shame I can't have a button called "Download Graphics" which downloads a separate resources directory from the usable by my game for graphics. I wouldn't want the images to be editable though, because of collision rectangles and such, but something that held the images but was safeguarded from user editing. It would chop it down by nearly half its amount.

Code doesn't seem to take up much at all, which is strange. I have more code objects than anything else..
Title: Re: Large number of frames causes Stack Overflow
Post by: bluemonkmn on 2012-06-09, 02:09:48 PM
Well, it's true what they say; a picture is worth 1000 words (at least). Images do take a lot more space than text.
I have a new version of the SGDK2 IDE for you to test:
http://sgdk2.enigmadream.com/ben/SGDK2IDE.7z (http://sgdk2.enigmadream.com/ben/SGDK2IDE.7z)
It's just the EXE file, so don't delete what you have. Just rename it and drop this one in.

Info & how to use:
With the new version, if you have a file called "Frameset.cs" in your SourceCode folder, SGDK2 will not generate Frameset.cs in the old format. Instead it will generate a Framesets directory filled with bin files representing frameset details, which will get embedded in the EXE when compiled. Of course you don't need to create Frameset.cs yourself. If you create a new sample project, for example, you will notice that the SourceCode folder now contains Frameset.cs whereas it did not before. If you delete the file, it will generate the project in the old format. If you keep it, the new mechanism will be used. If you don't have Frameset.cs in your project, there are two ways to get it:
1. Reset source code
2. Create a new project, which will include the file from the template. Then copy the content of Frameset.cs into a file named Frameset.cs in your own project.

Good luck! If it works, I will release 2.2.6 with this feature as-is.
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-09, 02:31:00 PM
It works just fine. That should cut out my only limitation with using SGDK2. Now it's truly limitless.
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-09, 08:29:06 PM
Oh yeah, right I almost forgot ever since I updated past 2.20 the every new SGDK2 has random crashes when generating the project for temporary runtime inspection.

I was hesitant to update until this frameset issue. I had random crashes before, but I figured it would be best to just stick to the older version

Either way, I'm sure it will take too much effort to fix. It's mainly something I just choose to report..


EDIT

Nope, these "random crashes" stem from me trying to open the Layer Editor.

EDIT

Nope, it's not random. It's definite. If I open the map editor it crashes. There's a 5 out of 5 chance of it crashing.

EDIT

Nope, those other random crashes were just other random crashes. This, however, is a new unrelated non-random crash. Oddly enough, its happening in every SGDK2 version I'm trying.

EDIT

JIT Identified OpenTK.dll Attempt to access protected memory. This should be fixed with a simple system restart.

EDIT

Yeah, a restart fixed it. Still have the other random crashes though, but there's a very small of it happening when the project compiles for temp. runtime inspection.

EDIT

NO, Wait! Although the project compiles without error, When compiling a temporary file for runtime inspection, it refuses, although, it doesn't refuse, again, when generating and running the game.
(I also noticed that the sample project has a little character portrait. Perfect! That's what I had to tackle next.)
Title: Re: Large number of frames causes Stack Overflow
Post by: bluemonkmn on 2012-06-10, 06:54:29 AM
If you have a reproducible problem, I can look into it. With a large complex project, though, is it possible you're just running out of resources or something? Does the temp file compile for other projects?

Edit: I also fixed the minimize/restore error in my local version, but will wait to hear back about further errors before posting a new release.

Edit: I also found the problem with generating the temporary assembly and fixed that, and finally added the ability to run the project in HTML form with a single click/keypress, as durnurd has been bugging me about :).
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-10, 10:18:17 AM
Should I click the link that you had posted earlier to download the new version of SGDK2?

EDIT

Derp there's an error with generating when trying to edit solidity or defining tile categories

Yeah if you've fixed the error with generating the temporary assembly I'd be more than happy to test things out, as soon as possible :P

EDIT

You know what would be awesome? A Download Updates button :D

EDIT

Welp I found one. Not sure how to deploy SGDK2 from the web though..
Title: Re: Large number of frames causes Stack Overflow
Post by: bluemonkmn on 2012-06-10, 04:43:14 PM
1. I have not yet posted the latest corrected version, but after re-reading our latest posts, I think it's ready to release, so I'll just release 2.2.6.
2. Solidity would fail due to the failure to compile the temp assembly, which is now fixed.
3. SGDK2 is coded to support a one-click install feature, which would provide for easy automatic updated to be downloaded and installed automatically or on demand. However, due to a bug in the .NET framework 4.0, I have postponed releasing SGDK2 in this form until .NET 4.5 is available, hopefully with a fix. Everything works fine except updating due to a fatal bug in the way icons and file associations are set up, which can cause the update to fail into a confusing state. Hopefully this version will be available soon.
Title: Re: Large number of frames causes Stack Overflow
Post by: v6v on 2012-06-10, 04:52:01 PM
Oh my, now I can continue!

1. I have not yet posted the latest corrected version, but after re-reading our latest posts, I think it's ready to release, so I'll just release 2.2.6.
2. Solidity would fail due to the failure to compile the temp assembly, which is now fixed.
3. SGDK2 is coded to support a one-click install feature, which would provide for easy automatic updated to be downloaded and installed automatically or on demand. However, due to a bug in the .NET framework 4.0, I have postponed releasing SGDK2 in this form until .NET 4.5 is available, hopefully with a fix. Everything works fine except updating due to a fatal bug in the way icons and file associations are set up, which can cause the update to fail into a confusing state. Hopefully this version will be available soon.


NET 4.5? Well I'm not too familiar with how the NET Framework Versions differ, but it's great that you're staying on top of things.