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

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

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

@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 (Today)

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

@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. (Today)

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

@Citizen_Daniel @ColinNorthway t.co/Y00JHQs8Lu (Today)

@henchmangoon Bummer! (Today)

RT @Draknek: @theBanov Because when you see it, you one-der what the hell Microsoft is thinking. (Today)

So is that free mobile thing from Unity only for the free version of Unity? Unity Pro still requires $1500 licenses? (Today)

@Draknek hi@kpulv.com (Today)

My favorite parts of Into Darkness are just the characters interacting and talking, but they're always interrupted by explosions... :I (Today)

@Draknek @jmickle_ I post about Flashpunk on my blog but just end up linking people to your Github, so reviving the site might be cool. (Today)

@Draknek @jmickle_ If someone else wants to do the forum stuff, I can help out with the rest of the site! (Today)

@Clobbr @infinite_ammo Hey thanks! I wouldn't have any official booth space if I went this year though, I'd just be hanging out! (Today)

@Draknek What is needed exactly? (Today)

RT @unity3d: Breaking news! #UniteNordic David Helgason: Mobile game development with Unity is now free! More details soon! #Unity3d (Today)

@Clobbr @infinite_ammo I might go. I don't have any solid plans for it right now but I'll probably know more in a month or two. (Today)

Hey this dude who speed runs Offspring Fling is streaming! t.co/5YHHaL3ftr (Yesterday)

follow
search

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
Avatar

2013 - 2 - 11 12:48 PM

Thomas Morrison

Very interesting! I never thought to do something like this.

I have done all my game development myself without any real interaction between other programming side developers. This leaves me at a bit of a loss when it comes to the hierarchy of a games code, do you have any resources/design patterns you use frequently or sites with examples?

Avatar

2013 - 2 - 11 1:47 PM

Kyle

That's a pretty in depth question to answer in a comment, I think! ;) Design patterns are a mystery to me and I'm always interested to see how other developers do it... I'm actually trying something pretty weird for this new project I'm working on (at least weird compared to my usual style) and once I flesh it out more then I can write a bit about it.

Avatar

2013 - 2 - 11 4:50 PM

Thomas Morrison

Yea, your right that was a bit of meaty question to ask in a comments section! I'm looking forward to the post on what your working on now though.

Avatar

Post your comment!

POST COMMENT

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