Posts Tagged ‘4k game competition’

  • 4k Winners Announced – Audience voting open

    4k_logoThe Flash 4k Competition is over and the first and second place winners have been announced (no I wasn’t one of them!) – congrats to both games, and also to the other entries, some of which were truly stunning.

    My personal favourite was the sky diving game, Falling with Style, which was a technical masterpiece and great fun to play. The stunt tricks you can perform in the air are stunning, and I was a bit shocked it didn’t get a better write-up than it did.

    The main criticism about my game was the control system, apparently it was counter-intuitive and it’d have been easier if the ship just moved up when you pressed up and rotated to face the mouse pointer – rather than the Asteroids style motion it actually uses. Personally I loathe that style of control for arena shooters when using a keyboard vs. a joypad, but each to their own! Just a crying shame the 3 judges disagreed with me 🙂

    Anyway the Audience Voting is now open, which means you get to play all the great games and then vote for your favourite. So get to it, and have fun while doing so as some of the entries are just incredible.

  • Infinite Ammo 4k Source Code Released

    Infinite Ammo 4k

    Well everyone else seems to be blogging about the release of their 4k games, so I’m doing so too 🙂 I managed to get mine finished and submitted on-time. I don’t expect it to win a thing (results are in 3 days time), but I had great fun participating all the same.

    I have created a games page entry for it, and in a slightly unusual move for me I have released the full source code for the game too. You can get it from it’s games page. What you learn from it I have no idea. At the very least there’s a pretty explosion / particle system, and a massively optimised and compressed Tween engine! Or you could just skim down through the code, shaking your head thinking “and he ENJOYED coding this?!” 🙂

  • 4k Game Contest – Some useful tips

    4kOk so after the embarrassment of my first post on this subject, I wanted to present some findings that may help you out on your quest for smaller SWF sizes. More importantly, I know for a fact these all worked for me!

    For those who didn’t read the previous post: I’ve been working on my entry for the 4k Game Competition, and have found the following information during the course of my coding:

    Keep Event Listeners out of the constructor

    I have a whole bunch of init stuff in my constructor (creating game graphics, setting up variables, etc) and at the end I kicked off the game by starting up the main events (keyboard, mouse, etc). But by moving the event listeners to their own function, and calling that function from the constructor, it reduced the size of the SWF.

    If you know the size of something, use it! Avoid references where possible

    When creating a Rectangle I passed in the width and height of a bitmap by reference (bulletBitmap.width). By removing this and passing in the actual known width of the bitmap (6) it saved a massive 20 bytes from the ActionScript code.

    Before: bulletRect = new Rectangle(0, 0, bulletBitmap.width, bulletBitmap.height);

    After: bulletRect = new Rectangle(0, 0, 6, 6);

    Here’s another example where being explicit saves bytes:

    Before: fullRect = stage.getRect(stage);

    After: fullRect = new Rectangle(0, 0, 550, 400);

    This saved us 6 bytes.

    Make Bitmaps Transparent

    I create a bitmap the size of my Stage to hold the game background in. It looks like this:

    gridBitmap = new Bitmap(new BitmapData(550, 400, true, 0x0));

    Now I don’t need this bitmap to be transparent (the 3rd parameter) as it sits at the bottom of the display list. But by setting the transparent parameter to “false” it increased the size by 3 bytes.

    Even default values take-up space

    Object instantiation is expensive in AS3, so it’s best to pre-calc objects you need in your main loops at the start. However who would have thought that the following:

    zeroPoint = new Point(0, 0);

    takes up 1 extra byte than:

    zeroPoint = new Point();

    Even though 0,0 are the defaults for the Point object. Every byte counts!

    Avoid Array references in for loops

    I have a loop in the game that checks through a pool of baddies (standard Array containing a custom Object that extends a Sprite). I started out doing it like this:

    for (var a:int = 0; a < baddiePool.length; a++)

    and then …

    baddiePool[a].value = newValue;

    But by pulling out the array element first at the top of the loop, then referencing that, I saved a massive 33 bytes in total:

    ba = baddiePool[a];
    ba.value = newValue;

    Smaller than a ternary

    Thanks to Kevin Luck for this one 🙂 If you need to run a standard if/else on a value where it could be equal to zero then it can be shortened to:

    x = lx || Math.random() * 550;

    In the code above, x = lx unless lx = 0, in which case set x to Math.random() * 550. This is 3 bytes smaller than using a ternary/if-else equivalent.

    Hopefully the above will help out those also entering the competition. Feel free to comment and add more tips!

  • 4k Game Contest – and a word about ternary operations in AS3

    4k Edit: Thanks to Kevin Luck for pointing out a flaw with the code in my original post (there was an extra assignment taking place, which caused the byte count to increase). Remove that and ternary will match if/else on a bytes-used basis. I’ll keep this post up here regardless, just ignore everything from this point on 🙂
    Read More