Category: Games
Posts about creating and playing video games, one of my favourite things.
Because I’m a lame nerd I also made a spreadsheet of them all so I don’t buy dupes. Oh dear.
I’m thinking I need to add digital games too, since Games with Gold and numerous sales has gifted me a whole load more games in the last couple of years. Physical games have a greater charm though, I think. They take up space but I like having them, especially Xbox 360 and prior where games still had manuals (pretty enormous manuals in some cases!)
Any recommendations you don’t see on the list and that haven’t been given away via GwG? Let me know!
— B
Greetings once again, time to talk about a game prototype!
I briefly worked at a small marketing agency where I produced this to pitch the owner of a number of Christmas tree farms. Work started May 2013 and concluded around July.
I wanted to try and make a runner-type game in the tree farm, and over a few iterations I think we came out with something kinda fun – although requiring a lot more work to get to release.
Continue reading ““Where’s Woodchuck?” Game”Hello everybody.
Long time no blog, so here’s a quick catch up: I got a job at a small start up doing many varied and interesting things. The first project I was given built on my experiences with game development, and somewhat outstandingly I got to start writing a new game in Haxe NME! I can’t go in to details about the title right now, but it’s 99% complete and looking good.
One desired aspect of the game was an online leaderboard of some sort, so we can assign rewards to weekly/monthly winners. I’d never even looked at NMEs web function before, vaguely deciding I’d worry about highscores in Tower Defence “at some point”.
To my relief it’s super simple to use, and with a few php files on a server I’ve got a nice simple highscore system running.
Continue reading “Online highscore system for Haxe NME”I bought my Xbox 360 just after Christmas 2006 – £300 for the console with two wireless controllers, Project Gotham 3 and the first Gears of War.
Since then it’s been painted, it’s red ringed and taken a holiday to Frankfurt where it was repaired over Christmas 2009, lived with me in five different houses, and generally been run in to the ground; but although all the internals were replaced with the RRoD repair in 2009, the hard drive was still the original 20Gb unit it arrived with.
Until the last couple of years this hasn’t been a problem, but now it’s annoying.
Continue reading “Upgrading an Xbox 360 hard drive, the cheapskate way”Hello friends, today I want to talk about board games.
Well, not really, but let’s briefly discuss that I made one.

Progress with Tower Defence has been slow recently with moving and the general disruption that brings, but the other day I did manage to settle in and resolve a few long standing nasty bugs which brings the game to a much more playable level. As such, I felt it might be prudent to make a demo available so people can actually try this thing out themselves rather than watching my boring videos.
I’m a long way from guaranteeing it’s crash free. There are also bugs galore (see full release notes after the break), and a few things are disabled for being either half implemented or inconsistent in performance or reliability, but it gives an impression of the project. This release is in the form of a Windows binary, although if there’s any interest in OSX/Linux/mobile builds I’ll happily crank one out and you’re welcome to see if it works.
This was me taking the advice to “just make something … Tetris or something, just show you know what you’re doing.”
So a few days later I got up and made Tetris.


All told it was maybe 6-8 hours work split across two days: Mostly production, with the final couple of hours on day two dedicated to bug squashing. Anyway, it’s super simple but I think it’s kinda neat for what it is. As ever, this game is built with Haxe NME (3.5) – to compile the source you will also need the Actuate tween library installed. Download the source here.
Continue reading “Quick project: Tetris”
Today I’m happy to offer some code from my early prototypes of “Tower Defence.” It’s super basic: No maze generating algorithms yet, not much in the way of gameplay.
A random maze is created (i.e, each map tile is 50/50 whether its walkable or not), start and end points generated and a route found between them using A*, and an “enemy” (green square) moves along the path. You can create a single weapon type – the gun – which fires very slow moving bullets at the enemy.
This code also contains remnants of my quick and dirty collision system, though Box2D is actually running the show.

Continue reading “Tower Defence prototype code”
Within the nme.geom package of Haxe NME you’ll find Matrices, Points, Vectors, Rectangles and… ColorTransform? It seems a slightly odd place to put it but it can be useful in your project to dynamically alter object colours. I wanted to talk briefly on how I’ve used it across my previous Pinball project and now, in Tower Defence.
Sometimes you want the same object to appear multiple times in your project, but with subtle variations. Behavioral changes can be accomplished in code by subclassing, size variations by scaling, but what if you wanted it red in one instance and green in another?
Including the same image twice with different colours feels redundant even if the images in question are quite small, so what are your options? In Pinball I used ColorTransform to colorize the lights and lighting effects with the image files themselves being greyscale. Now in Tower Defence I’m using it on some UI elements (the slider knob’s that change colour dependent on value).
Let’s step through how this works. First, of course, you have to create a graphic you want to use. Here’s the image of the slider knob in Tower Defence, as it came out of Photoshop…
Sorry that last post was so brief, but I hope you liked the video! Here’s another one for you, with some loose ends tidied…
Continue reading “Longer “Tower Defence” update”

