Xerra's Blog

Drunken coder ramblings

How my games have done in Syntax Bomb competitions – Part Three — 02 January 2024 —

In my previous post about Syntax Bomb game coding competitions (Part Two) I left off just after mid 2020, where I had finished Validius. The next competition came around October of that year, and had the theme “Go Nuts!”

I submitted Tommy Gunn for that competition, and, as I already wrote a development post about that game, I’ll move forward into 2021, which actually turned out to be a very poor year for productivity, on my part.

Post Covid, around Easter 2021, I moved to Devon from the hell of outer London, as I was now working from home pretty much all the time, and felt the odd commute day would be manageable enough to not change jobs. I still had more time to work on my games than I’d been used to, prior to the pandemic, so I was hoping to get back to possibly making at least three games this year. The first competition was announced in the April of 2021, and the theme would be “Virus”

Obviously, you weren’t actually supposed to write a virus itself, but rather a game themed about a virus outbreak of some kind that you had to deal with. An interesting idea and I had come up with a game plan pretty quickly of what I planned to do.

Again, I looked back at the Vic 20 for some inspiration, and remembered that Jetpac was a fun game that took up a lot of my time when I first got a 16k expansion for my computer, so I could actually load it. As usual, I tend to think of the kind of game I want to make and then try to fit the theme around that, so I came up with the idea of keeping the same player bouncing around platforms, picking up fuel and ship parts, and blast nasty virus types instead of just your regular aliens.

I had some assets from a few years previous of different germ types and planned to use all of them other progressive levels and have different styles of planet backdrops to play over, possibly using our solar system as the influence, like I did with Creepy Crawlies. I didn’t go the route of engaging an artist as I was just hoping to google and find some free, usable stuff instead for this. I never got beyond the first two test backgrounds anyway with the game itself as it became clear, after a few weeks work, that the game wasn’t working out.

I called the game Genome, and had Carl remix a great version of the old horror theme from the movie Phantasm. I didn’t mess around doing presentation stuff, and just jumped straight into coding the gameplay first and, if I’m realistic, that was mostly complete. I had jetman flying about pretty well, and that wonderful laser shooting effect that the game had, as well as implementing the ship building and fuel loading part that would break up the mindless shooting. However, once I put in the first aliens, and got the player shooting them (somewhat crudely) then I realised that Jetpac had been a great game that had enthralled the eighties kids back then, but there wasn’t enough of a game to stand up now.

By this time I was down to a week or so left so what I probably should have done is cracked on and finished putting the virus’ enemies in, and hopefully come up with an idea or two to make the game a bit more. I didn’t, though, and just pulled out of the competition instead. I believe that was the first one I hadn’t entered since I gave up working on RAM, due to time constraints.

Apart from a bit of intermittent work on improving my game framework ready for future projects, I didn’t actually work on another game until the next competition idea forum thread came up, and I suggested that it could be an interesting challenge for us to try making a one-button game. That idea was agreed upon, and became the Syntax Bomb coding competition 13 – “There can only be One”

By now it was November, and I hadn’t even completed a game in 2021, so I was determined to get at least one on the board before the years end, so I gave this one some thought and then probably jumped in too quickly on my first idea.

Tapper was originally an arcade game that came out on various other computers of the time later on. It’s basically a game where you have four bars to attend, and need to keep the customers on each bar happy, while they slowly walk up towards the end of the bar. This involves facing right to pour a beer and then facing left and moving up and down to select which bar you’re going to slide your drink along. When said drink is caught by a customer then they are pushed back a bit. If they get pushed off-screen then they will disappear. The idea being to serve all your customers within the time limit and not have any make it to the end of the bar. If they do then they’ll grab you and slide you along the bar and into the wall instead, losing you a life.

I prototyped this game with some really crummy assets and worked for too long trying to implement a decent way of controlling the action when the player is only allowed to use one button. It turned out really hard because I had to put a visual indicator on how long the button had been pressed, so the player had some idea that the action he was trying to accomplish would happen. I had to have a short press fill up the beer from a tap in one motion, and then turn back to the bar again. Another short press would send the beer down that table and, if you held the button down for a bit longer, then you would move down a bar so you could work on the customers there. It became clumsy having only one tap at the top bar, so I made it so you could refill at any of the bars to make it a bit easier.

I had Aaron testing all this as I developed the player control system, trying to get something that both of us would be happy with. After three weeks of tinkering with some other bits, such as the customer movement patterns, while Aaron tested the control system, he was absolutely convinced that I had picked badly and should rethink the game idea while i still had time.,

It took me another week before I had to reluctantly agree with him, so I had, by now, lost almost half of the development time for the competition, and was back to square one. One Button Barman, as i’d tentatively christened it, was history.

I wasn’t ready to give up on yet another competition at this stage, though, so I still had a bit of digging around looking at other one button games to see if I could get some inspiration.

I then went back to the very basic ideas of the early consoles and remembered a game I’d played on an old pre-Atari console that I’d been given around 1981, after it had been up in someones loft for a long time. This was a game that involved pressing fire to accelerate your motorbike to move across the screen and – because it was a one screen game, as i don’t think these consoles could do anything technical like scroll – it would then reappear a bit lower down the screen at the left side again so you could accelerate a bit further. The third section of the screen had the jump you had to clear, like in the days of Evil Kenievel (spelling), over multiple buses, and land on the ramp the other side. I’m pretty sure these games just randomised if you made the jump or not, as it was always 50/50 if max speed made any difference or not.

This game just required one button to accelerate the bike, or letting go of the button to brake, or slow down. However, i didn’t want to remake that game – just use the three sections of the screen in a similar way, as it would mean you could negate a level without using any scrolling. I deliberately went with this idea as i thought it would be a good idea to compliment how tricky using one button to control a game was going to end up, because at least a player could work out how to play the level if I let them see it all before they pressed fire to start moving. Having three play sections meant possibly being able to implement some interesting hazards and small graphics meant the levels could be bigger as a result.

I was leaning towards the platform game again, by this time, and had just dug up a lot of free hell backdrop images that I could lay out randomly behind each tile based level. At this time Aaron was working on a platform game himself that would have the player constantly moving but would have areas where his player could move back and forth without encountering a hazard. This allowed the player could work out their next moves, and the only thing the one button needed to do was control the height of the jump you needed to do. I wanted to do this as well as nobody likes a game that’s too hard.

As usual the player control system was the first thing to start laying down and I think I actually got this working pretty well because I’d given a lot more thought to the game than I really had time to do, and it was working. I got a level system in place and some test levels to put the elements in and make sure they worked ok, like the traps and trampolines. I even got some of the background stuff in place so the game was mostly in place apart from just not having the levels and enough traps/boosters and other random things to make it interesting, and give the player the odd surprise. I was aiming for 20 levels and only had 5 of them set up, and they were just full of testing stuff. I’d yet to actually get even one proper actual game level in place when I got the dreaded less than a week to go.

I’d like to think that, if I’d abandoned my tapper idea earlier on, like probably after a week, then I’d have got Pixel Hell over the line. It was going well until I had to admit defeat on the deadline. I know I had other stuff going on at the same time which was also slowing me down, but it’s always frustrating when you don’t finish something you’re working on. I’ve always said that I like the deadline that game competitions and jams give me, as it focuses me to get on with it and finish what I started, but it doesn’t always work out. Maybe I’ll go back to it one day and actually finish the game but it’s more likely I wont.

On a side-note, there were Eleven entries for this competition and Aaron’s game “Dexter” won it. Well deserved too, as it ended up easily the best entry of the competition by far.

So, in the end, 2021 ended up a complete washout for making games, for me. I had a couple of projects that I could have gone and finished to just at least get one done for the year, but i didn’t. There wouldn’t be another game competition until May 2022, either. More on that in part four.


Categorised as: Development



Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.