@psysal @igdaphx @gamecolab Aw YEAH we even had a stage and a sound system for this meeting. PRO AS SHIT (Today)

Awesome turn out tonight for @igdaPHX at the @GameCoLab - t.co/atw4UIduPl :D The phoenix game dev community is growing! (Today)

@YourWifeAndKids @marshall_cannon Yeah, he is. I never submitted my best time because I didn't want to be on my own leaderboards ;D (Today)

@BeeMickSee Brandon McCartin: ADULT (Today)

@YourWifeAndKids Hey thanks! <3 I saw your name climbing the ranks recently. Can you dethrone @marshall_cannon? ;D (Today)

@NoelFB Interesting set up :O but I hope a frames palette with onion skinning is still an option ;D (Today)

RT @AeornFlippout: I really look forward to my XBox telling me I have too many people in the room and that I need to pay up: t.co/H… (Today)

RT @igdaphx: Our May meeting is tonight at 7:30pm at @GameCoLab. Details here: t.co/TYDxnGztAW See you there! (Today)

RT @NorthernlionLP: Live with @MattThorson's Towerfall here: t.co/m5g6SLLIMM (Today)

RT @Draknek: Final reminder: Dr. Biology's Educational Game is out now! t.co/rBV4N3yZ0D It's a short puzzle game, 100% free with no … (Today)

RT @Itaku: THE SKYPE IP LEAK IS OVER! t.co/xVuU8456jH Install the beta, then go to settings > advanced > connection > allow direct … (Today)

@folmerkelly @LorenBednar <3 (Today)

@folmerkelly @LorenBednar I ESCAPED (Today)

@infinite_ammo Dads and bros. Fantasy football 4 lyfe! (Yesterday)

@NoelFB @infinite_ammo Oh my god SO GOOD. :D (Yesterday)

RT @NoelFB: . @Infinite_Ammo made a live color palette in the pixel editor last night. t.co/880iaU7fXI (Yesterday)

@ADAMATOMIC Yeah I actually used it a month ago. I tweeted about a video of otters that I couldnt find again so I searched my archive for it (Yesterday)

@ADAMATOMIC Hahah -- actually I think the "download your archive" option in your settings is pretty neat! (Yesterday)

@ADAMATOMIC Just now realizing how weird it would be if my dad was tweeting about parenting when I was a kid and I could someday read it. (Yesterday)

RT @mossmouth: I wrote a little thing about maturity, challenge, and video games: t.co/7nDijhY4uY *whispers* ...and art. (cough) (wh… (Yesterday)

follow
search
posts tagged with: python

2013 - 2 - 11 / 8:44 am / tutorials

Flash Develop Pre-Build Command Line

Flash Develop Pre-Build Command Line

Last week I posted an asset generator script that will go through the contents of a folder and spit out an Actionscript class with static embeds for all of the assets. It's been pretty useful so far in my current project, but then I found a nifty feature of FlashDevelop that made it even better! Using FlashDevelop's Pre-Build Command Line option, I'm able to automatically execute my assetGenerator.py script every time I build my game, which means I don't even have to manually execute the script whenever I add content.

To hook it up in your project, just go to Project, then Properties in FlashDevelop. You should get a window with a couple of tabs across the top. Select the "Build" tab and you'll get something that looks like this:

Image
In that screenshot I've already added the command to run the script every time I build. The first part of the line is c:\windows\system32\cmd.exe which just calls up the command prompt in Windows. The next part is the /C which is a flag that is set on cmd.exe which roughly translates to "run the following command, then terminate." The last part is $(ProjectDir)/assetGenerator.py which is basically just telling cmd.exe to run that command. $(ProjectDir) is actually a special string that FlashDevelop recognizes, and will replace with the full path to the project. In my case I had to surround the command with quotes due to having a space in the full path.

I also checked the "Always Execute" checkbox... not really sure what that means, but as far as I know I want assetGenerator.py to be run every time I hit build, so I want that checked.

Right now this makes adding level content to my game even easier. Now whenever the game builds, the assetGenerator.py will reassemble my Assets.as class, and then my "Universe" class which manages the entire game world will look at everything in my Assets class with the prefix "LEVEL_" and assemble the interconnected game world out of everything embedded with that prefix.

I absolutely hate any sort of tedious work, like adding content to a game by hand and copying pasting the same line 100 times and modifying each line slightly... so if I can spend a few hours coming up with methods to spare me of those tasks then it's totally worth it in the end.

3 Comments

2013 - 2 - 5 / 7:16 am / tools

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! read more

5 Comments

about

About

Hi there, my name is Kyle, and I'm a 27 year old kid with adult powers. I'm making video games and living the indie game developer life in Tempe, Arizona. Here you will find my thoughts, games, websites, doodles, and other stuff like that. I worked on Snapshot, Offspring Fling, and a whole bunch of other games. If you want to get a hold of me use the form on the bottom of the page, leave a comment, or just tweet at me. I try to post three times a week. Thanks for stoppin' by!

facebook

old sites

xerus kylepulver

contact

Your message has been sent! Thanks :)
SEND MESSAGE