I moved to a new URL! Check it out!

Asset Class Generator for Actionscript 3

Asset Class Generator for Actionscript 3

The Reason


As I set forth to try and jam out the rest of this metroidvania game before GDC 2013, I've been trying to think of ways to make content generation as fast as possible. One of the big hurdles that I run into with AS3 when making a lot of content is constantly having to embed assets into the code. FlashDevelop makes this incredibly easy though. Right click a file, click generate embed, and there you go. However this still takes a lot of time when I'm talking about a game that is going to have nearly a hundred level files and who knows how many image assets, and I'm constantly switching assets around.

After a quick consultation with Twitter I got a crash course on Python and spent a couple hours making assetGenerator.py.

Download!


Download assetGenerator.py 1.0, along with an example project right here. You can also just view the code. All the files in the example project are blank files just to use as an example, and keep the download size tiny. Here's an example of the code it spits out. If you want to know more, then read the rest of the post!

How it Works


First if you don't have Python installed on your computer then you'll need to grab it and install it from here.

Place assetGenerator.py in the base folder of your AS3 project. Open up the file and change the ASSET_FOLDER to point toward the folder with all of your stuff in it. Image files, sound files, levels, etc.

Change your OUTPUT_FILE to whatever you want the resulting AS3 class to be. I usually just have this be an "Assets.as" class in one of my main folders inside src.

Set up your EXTENSIONS, PREFIXES, and EXCLUDES. By default the script will hunt down any files with the extensions png, mp3, oel, and ttf. It will then take those files and spit out embeds from them, and the name of each embed class is determined by the corresponding entry in PREFIXES. So for example, "batman.png" will come out as "IMG_BATMAN:Class" in the .as file.

When using EXCLUDES you should specify the name of any folder you don't want the script to parse. For me this usually means any folder that I store psd files in, or any folder that I store GraphicsGale files in. I usually have a lot of scrap and sketch png files in those folders and I don't want those in the project.

After all that, you're ready to just double click assetGenerator.py and run it! Be careful though, as this script doesn't really care if it stomps over a file. The file should be ready to execute in the example in the download if you want to just check out how it works before running it on your own stuff.

It's Not Perfect


I'm sure there are a bunch of issues that will come up with this, and if any do pop up then just let me know. If you want to modify this script in any way please feel free to do so!

One thing to note is that this script follows my current coding style. I prefer to have all of my embedded assets in one big static class so I can easily reference them as "Assets.IMG_PLAYER" or "Assets.IMG_POOP" or whatever. If this isn't your style, then this script isn't going to do much for you without some pretty heavy modifications.

Also I am not responsible if this script blows up your computer or whatever. I hope it comes in handy for some people!

Comments

NemoStein
NemoStein
I've made one too, in PHP, but I took another route, however.
Instead of having one Assets.as3 with all embeds inside I generate one class per asset.
This class extends the base type of the asset (Bitmap for images, Sound for audio, XML for XMLs, Font for fonts and BiteArray for all the rest, including text files).
The [Embed] tag occurs in class level, so the class itself became the asset.

This means tree things:
1st - If I forget some unused asset in the assets folder it won't be compiled with the app.
2nd - FlashDevelop will highlight the asset as a class (default to blue) instead of some simple identifier (default to black), so it's easy to see it.
3rd - As the asset is a class, not a property of type Class, the auto completion of FD is MUCH better, since if you write "new MyAsset()" and press ctrl+shift+1 it will be completed to "var myAsset:MyAsset = new MyAsset();" instead of "var myAsset:Class = new MyAsset();"

My biggest issue is that my tool was made in PHP, so I need a server to run, so I'll port it into AIR someday.
If you want to, I can send you my current code. ;D
Posted February 5th 2013 9:05 AM
Kyle
Kyle
Huh, that sounds pretty interesting. Like I said, this script just goes with my style which is just having a giant class full of static variables. Feel free to post a link or send me a link or whatever, I'd love to take a look.
Posted February 5th 2013 9:39 AM
NemoStein
NemoStein
Well, here it goes:
https://dl.dropbox.com/u/25066924/Static/Wild/AS3.AssetsParser.zip

There is .php file that processes any folder you pass through the http var "path" (e.g.: http://localhost/assetParser/index.php?path=C:\workspace\project\assets\)

There is a template.as file too, that guides the file generation.

All files will be created in the same folder that the asset lies, the package of the generated class relies on the folder structure inside the asset folder and the asset name is always prefixes with "Asset"
Posted February 5th 2013 10:39 AM
NemoStein
NemoStein
Kyle,

Someone at FlashDevelop forum made this incredible plugin that just killed my PHP tool as it is far easier to use.
If you use FlashDevelop too, check it out.

http://www.flashdevelop.org/community/viewtopic.php?f=4&t=10567
Posted March 14th 2013 6:32 AM
Kyle
Kyle
Wow awesome! Didn't even notice a new comment until now, haha. I should hook up an email alert when a comment is posted... ;p
Posted May 11th 2013 1:08 AM
new comment!

Post your comment!

Name
Email
Comment