End of 2018 In Review

It seems that because of how the internet and societies have changed so drastically, years now seem to feel like they’ve multiplied. I doubt anyone could really summarise what happened this year, as there appeared to be a lot of fighting back and forth. Outside of game development, I have had to deal with friends moving further away, my mascot costume being stolen as well as my grandmother needing serious treatment that has put a lot of us in the family on edge, and that’s not including all that’s going on in the UK and the news of some of the great people in the world we lost such as Isao Takahata, Ursula K. Le Guin, Totalbiscuit, Stan Lee, Fred Patten and many others.

But this is about progress and achievements, so let’s send of 2018 right!

Game Jams

My main New Years Resolution this year was to do one game jam per month, as I felt I wasn’t doing enough over a year. For all the challenges, I managed to succeed and get twelve games done this year. Few didn’t go as well as I hoped but most I feel were rather successful!

Global Games Jam 2018 – FORMANTS

HighJam #1 – Berzerkatron

7DRL – RDLL

Ludum Dare 41 – Strategysphere

CFZ GameJam – Foxtrot & Tango

WizardJam – Re(re4ti0n

FloppyJam – PEWBALL

Ludum Dare 42 – Closing in on Pascal

RainbowJam – Fursuit Run

7DFPS – RVB

Desert Bus – Bus on a Desert

Ludum Dare 44 – Tank Gauntlet

Doing this definitely felt worth while, as it lead me to create a whole new engine as well as update my 3D graphics system. In the end however, I do feel a bit burnt out from game jams, which is partially why soon after Ludum Dare 44 I decided not to do much. I might hold off on doing any more because as you’ll find later on in the post I have other reasons too.

The P Word

I think its safe to say that politics has gotten stronger and divisive now more than ever, it might be hard to believe considering my Twitter feed but I would consider myself mostly centre-left but not very openly vocal about political issues. Most of this changed in 2016 with Brexit and the US, and while I will still insist on being centre-left on many principles, I don’t think I should be quiet about issues such as our relationships with other countries, the treatment of people regardless of identity and funding to the public sector.

As such it’s great to see and contribute in any small ways to organisations such as Game Workers Unite and Games4EU. I first spotted leaflets for GWU at GDC, around the time when crunch and unions were hot button topics within games development. I tried to keep up to date with their progress and shared what they did, and imagine the response we had when GWU UK became an official union! I hope to keep supporting them and I look forward to seeing how they will progress.

Games4EU was set up to act as a voice for game developers who wish to remain in the EU, and largely support a people’s vote. I actually got to join them for the first ever protest march I participated in my life, walking alongside 700,000 people. It was a great experience and the support was overwhelming. I wish I could be hopeful and think that all this political mess would be sorted in the new year, but I’m not gonna stop.

Console Development

I didn’t realise this until I checked my New Years post from last year, but I had a second new years resolution: to get into console games development. I also mentioned how I tried to get in touch with Nintendo but was not successful, so imagine my surprise in October when a representitive from Nintendo of Europe got in touch with me. I think it’s safe for me to confirm that I’m now a registered Nintendo Switch developer, and so now in 2019 I want to focus most of my game development efforts on getting SFML (and by extension, Vigilante) working on the Switch. Currently I’ve had to upgrade my workstation to get ready for it, and at some point I’ll get a proper dev kit to work with. It’s an aspiration to any game developer to work on a game for a major platform, and so while I imagine my tasks will be tough, I’ll get through!

Ludum Dare 44 – Tank Gauntlet

The year of 2018 is drawing to a close, and so for December what other game jam I should take part in but the 44th Ludum Dare. I decided to take part in the compo as once again I managed to have a free weekend to work on it.

Before the compo commenced, I used my previous experience with game jams including the 11 previous ones I took part in this year to write a set of rules I think other aspiring game devs should follow when they work. Other devs seem to like them so I figured I’d use these rules to go over how I made my Ludum Dare 44 entry, Tank Gauntlet.

These won’t be in the order I originally set them for the sake of describing the progress.

LD43-00010.gif

Know your Tools

I already had my tools in mind before the theme was announced, I used my SFML-based C++ engine “Vigilante, Piskell for animated sprites, Photoshop for any bigger assets, BFXR for SFX and cgMusic with LMMS for music. A lot of which I have used before, but for audio, I feel as though I need to find more other ways to create the SFX I need without the use of a sound library, and maybe diversify my music creativity (I used Megadrive Emulation Soundfonts so there was a bit of a 16 bit vibe to the music).

Small Scope and Stick Mostly with What You Know

I’ve usually been pessimistic the themes for Ludum Dare, as you are given the opportunity to vote on them in multiple rounds but the themes I like the most do not tend to get chosen. Therefore, when the theme was announced to be “Sacrifices must be made”, it wasn’t one that I was entirely keen on, and the only idea I had jotted down was “diet simulator”. While that idea was doable, it wasn’t really that original and a simulator might have been a more laborious task. I slept on it and figured I’d do a tank combat game. To fit the theme and my “1 unique/main, 2 optional mechanics” approach, the unique mechanic would be sacrificing gameplay input for power/speed, with the two optional mechanics being shooting and melee attacks.

Gameplay First

The first thing I did Saturday morning was work on the main game, by setting up a simple tilemap and a rectangle sprite for the player. Then I made sure the player could move, jump and collide with the tilemap, and the player could wrap in all directions.

Oh, a basic tip on how to handle platform jumps: Do math. Don’t bother guessing the right values for acceleration and jump velocity until you get it right, set up some variables and apply some vector maths, the below code will be enough to work out how high and how fast you want to jump, as well as how fast you want the player to move horizontally:

float Height = -85.0f; //Maximum Height of the Jump in Pixels
float Distance = 80.0f; //Distance travelled in Pixels
float Time = 0.5f; //Total Time of Jump
float MoveSpeed = Distance / Time; //Speed in order to travel the set distance in the set time
Player->MaxVelocity = sf::Vector2f(MoveSpeed, -2 * ((2 * Height) / Time));
Player->Acceleration.y = (-2 * Height) / (Time * Time);
Player->Drag.x = Player->MaxVelocity.x * 10;

If you want to extend it further, I’d recommend watching this GDC Talk on Game Maths Programming:

After using the code I have written previously for bullets, tweaking it to my liking, and adding enemy rectangles that can spawn periodically and move at different speed and be of different sides. I had most of what I needed.

LD43-00000.gif

I also added knife melee attacks and enemy damage before I worked on the menu that would handle input sacrifice.

LD43-00001.gif

Make Your Content Easy and Noticeable

For the last Ludum Dare, I made a racoon sprite that had a full running animation and was heavily detailed to the best of my ability, along with a tilemap and background to resemble a temple, and it took five hours. In the end, the environment didn’t look all that great and the racoon sprite was so small that you couldn’t see the detail.

This time around, I decided I wanted something simpler and easy to resemble, a tank. I loosely based the design on the StarFox Landmaster. With it being a tank, there didn’t need to be many frames.

LD43-00004.gif

I decided to keep the sprites and tilemap monochrome, using shading and tones with around 20 shades of grey in total so I could randomize the tint to add some variety to it. The enemies were kept red, as it’s an easy way to convey them as dangerous.

LD43-00007.gif

I found using fonts a bit more frustrating than normal, SFML doesn’t use the nearest neighbour for fonts so on a game with a low resolution (Tank Gauntlet uses 320×180), it’s difficult to use a font that isn’t too big and wouldn’t get blurry if the font size wasn’t set to a specific factor, if I found a way to implement bitmap fonts I might not have this much of an issue.

LD43-00011.gif

621 and Take a Walk

On both Saturday and Sunday, I walked into the town centre to get food and other things to relax my mind and not stress over the game too much. I also tried to get some good sleep, so I didn’t stay up too late and got up at around 8-9am on each day, oh and I took showers.

Find a Friend

One of the comments I got from this rule is that it doesn’t have to apply to team-based projects, having a friend to look over the game or provide feedback is beneficial to a solo project. As such, I’d like to thank my friend Kris for putting up with me sending him screenshots and asking about ways to make the game feel better and if I’m making the game too cruel or not.

I hope you find this simple process interesting, after doing 12 game jams this year I’m kind of happy this one felt mostly streamlined. There were some issues like with audio, not to mention technical issues post-submission, but I hope people find the final product enjoyable.

https://ldjam.com/events/ludum-dare/43/tank-gauntlet-control-vs-power

I was going to include a final statement for 2018 as a year in review here, but with the length of this one I’m going to have to add it as an additional post. Happy New Year everyone!