First Entry

Although I’ve been working on Balloon Platform Defense for seven weeks today, I’m starting my development blog now because it’s only now that a screenshot really shows all the crucial gameplay elements. This seemed vital because I’m never sure how to describe to people what sort of game this is. It’s clearly a kind of platform game, but often that gives people the idea of a puzzle game, which this certainly isn’t. And how often does an action platformer involve enemies being unable to harm your character at all? Or a complete absence of spikes or bottomless pits to fall into? You understand why I’m not sure it exactly fits the implications of that label, and why a simple description might give the wrong idea.

It should be noted that this isn’t the original Balloon Platform Defense. I already nearly-made a game by that name, everything was done except for the levels and the enemies, and I found that the levels and the enemies were actually a big job. That original version had everything physics-based, which meant partly that enemies often behaved in unpredictable ways, and making levels that counteracted that to prevent players getting frustrated would be difficult, and also that making more enemies to keep the levels interesting was extremely difficult – without precise programming, an enemy could often explode the moment it was initialised. You can play an early version of the original on Kongregate if your browser supports the Unity plugin (which I think only Firefox still does) or a special version for multiplayer play over at AirConsole. The point is, when GameMaker came up on a Humble Bundle, I looked at what it could do, and decided that starting from scratch and making a simplified version of the same game would still be quicker than trying to finish what I had so far.

Here is my player trying to push a balloon against a wall, although the balloon tends to slide upwards because of a problem with the player's bounding box at the time. The player doesn't animate at all yet.
Here is my player trying to push a balloon against a wall, although the balloon tends to slide upwards because of a problem with the player’s bounding box at the time. The player doesn’t animate at all yet.

So, during the first two weeks I mostly worked on getting the collisions to work as desired, and getting the balloons to deform when something presses against them. Naturally this involves many lines of calculations, and didn’t feel right at first – it initially had a bug in the code in which a y coordinate was used where an x should be, which I didn’t spot until weeks later. But it was enough for the moment to let me press on with other aspects of the game, and in my experience if you don’t progress, you get bored and end up stopping.

On 8th October, trying to get a shader working. Quite a few screenshots are taken so I can analyse the colours in Paint.NET for debugging.
On 8th October, trying to get a shader working. Quite a few screenshots are taken so I can analyse the colours in Paint.NET for debugging.

Then came time to make the nice graphics for the balloons. In the original version I’d drawn these using bumpmaps, and I saw no reason to alter this approach. That way, just one sprite could be used to draw balloons in any colour and any size and with any amount of distortion, and still show the shading looking right. It had to be altered a bit to fit the pixel-graphics style of the game, but I think it came across quite nicely in the end. I designed a snail as an enemy to play with, while I needed something to test my shader on, and from stuff that I’d done on the original game in the past, already had a C# application for creation balloon-animal style bumpmaps, although I had to change it a little to also encode colour information for each pixel that could then be decoded by the shader.

By the 15th, I'm quite happy with the way my balloons are looking - although it still takes the next few days to get the snail showing the shine in the right places when rotated.
By the 15th, I’m quite happy with the way my balloons are looking – although it still takes the next few days to get the snail showing the shine in the right places when rotated.

I’ve been concerned up to this point about whether I’m actually going to be able to make some level graphics, besides the basic tile I’ve been working with so far. My idea being that this world should look like a sort of office reception, I wanted to make the tiles look like countertops with a marble veneer, but eventually decided that wasn’t possible. I eventually found a look I was happy with, and found a way to draw it with subtle, automatically drawn shading. As it happens, someone was asking about how to do this the next day, so I’ve already written in detail in the community forums about what I was doing at this point.

During the next two weeks I made little progress on the actual game – partly because the end of a month is traditionally when other aspects of my life become the busiest. I set up this website, improved the C# application for drawing the enemies, and other stuff related to it, and occasionally made little improvements like allowing the character to jump different heights and fixing the x/y coordinate bug mentioned earlier. Then at the beginning of November, I started making a level editor, which is mostly what I’ve done since then. But in the last few days, I’ve made the windows that are such a key game mechanic – the means by which it is actually possible to lose as well as to win.

Now that the game is theoretically playable – even if only for a single level at the moment, though a single solid day’s work should solve that, not that a have a solid day free now until at least the weekend – I can work towards making an early access version available. Watch this space.

Leave a Reply