Ineptia - Post Mortem

"Ineptia" was my entry into Ludum Dare #23, a 48 hour game creation contest. The theme was "Tiny Worlds". The contest started 9pm EST on Friday, 20th April 2012 and finished 9pm EST on Sunday.

Concept Creation

The first two or three hours were spent coming up with an idea that would work with the theme. The contest started at 9pm local time, so I probably wasn't at my most creative, but I wanted to get a good start.

Normally a quick image search will bring up some good ideas, but 90% of the top image results for "tiny worlds" were terrariums which didn't help that much, although I toyed with the idea of using them.

The initial concept for the game had you start in the ship's stasis room, and you would have to walk to the various biomes. The biomes would have been small pods in a lab, and you would control a miniature robot to rescue the animals from invaders. I liked the idea, but realised I was adding an unnecessary amount of art which would work as a menu.

The final concept kept the robot controls and multiple areas, although a couple of things ended up being cut.

Development Timeline

Saturday

ineptia-screen-1.png

I didn't start working on the game properly until Saturday morning, and I wasn't feeling positive about the concept. I took another hour or so to brainstorm more ideas, but nothing really grabbed me so I stuck with what I had.

After about three hours the game finally had some tiles and a simple map. It took another five hours (or so) to get a character that would obey commands. By about 11PM the robot was moving around and could target enemies and shoot them. By the time I went to bed there were a few more destructible items and the beginnings of something playable.

Sunday

ineptia-screen-2.png

Most of Sunday was spent polishing up the bits that worked and adding new features, such as animals, scanning and the bestiary. All of the menus were done on Sunday. Finally, multiple levels were added right at the end (in the space of about 30 minutes two levels and two animals were done).

As the end grew near, tonnes of bugs started cropping up which took time away from finishing features. In the end I finished with about 10 minutes to spare.

What Went Right

  • Live updates – Not really development related, but I was really pleased with how the live update stream functioned. It was pretty simple to add new updates and images, and pushes to GitHub also showed up (although I didn't commit code nearly as much as I would have liked).
  • Architecture – I went with a component-based object approach this time, which made adding new entities much simpler. Rather than sub-classing behaviour, components are added at run-time. This made it easy to keep a list of objects with certain behaviours, such as shootable entities or entities that move. The code is (obviously) a little scrappy, but I really enjoyed how it worked.
  • Bestiary – Granted, I wanted to add more animals (and some with animation), but I felt the bestiary was the nicest way to add some incentive for scanning animals. Writing text is easier than adding a new feature, so I wanted to make parts of the game data-driven to take the burden off coding and making art.
  • It works – Almost forgot that one. The core gameplay works pretty well, although there's no balance and it's quite rough around the edges. It's still cool to have a little robot moving around.

What Went Wrong

  • Polish before features – Towards the end I started polishing up the menus and adding a nicer looking title screen. I think it helped make things more presentable, but at the time there was only one level and the code to switch levels didn't work.
  • Cuts – I ended up cutting out dozens of features. There were plans for an upgrade center, as well as ammunition and different weapons. The destructible crates were supposed to drop items (and the code is there), but it was pretty clear by the end of Saturday that they wouldn't make it, so it had to go. There were also supposed to be multiple areas per zone, and some statistics (such as % scanned, moves used to complete etc).
  • Balance – The player and enemies have the same weapon strength (seeing as there is no equip screen), and as there's no health it's pretty much down to chance if you survive a level. I'm pretty sure the tundra level is impossible to complete with all the enemies.

Lessons

  • Emergent gameplay is your friend – When you're on a tight deadline you need to make use of as many tricks as you can. Rather than use a lot of hard-coded behaviours, it's better to add a few elements that can interact. It doesn't really play a part in the game due to the level layouts, but animals in Ineptia are shootable. This means they can occasionally get in the way of combat, forcing the player to choose where they move to avoid casualties, although as there's no penalty for animal death it doesn't matter too much.
  • Take your idea and halve it – After that, halve it again. You absolutely have to take the smallest thing possible and expand it once it's finished. I tried to do this, but failed miserably.
  • Keep a log – Having a frequently updated time log helped keep me motivated. It also made writing a post mortem easier ;)
  • Code quality is important (sometimes) – After adding a few movements (forwards, turn right) I took some time to remove duplicate code and package it in a few reusable classes. This made adding new movements easier, and without it I probably wouldn't have been able to add animal scanning in the time limit.

Previous Game Jam Statistics

I know lines of code aren't a great metric for productivity or quality, but I thought it was interesting:

Project Lines of Code
Monster Mash 1165
Psycho Bean 881
Ineptia 2987

I tried to remove copy/pasted code, but near the end time was too tight so some menus share the same copied code.

Conclusion

I'm torn on the finished result. I like the idea, and although it's simple I think there's potential. Out of the three jams, I definitely learnt the most on this one. It ended up being a great test of some concepts I've wanted to implement, so even though it didn't live up to the vision I had, it wasn't wasted effort.

1 Comment

Nice job mate, took me a couple of goes to get the hang of as I haven't seen a system like that before (with the set number of moves before an operation) but I'm very impressed you did all this in 48 hours. I particularly liked the shooting mechanism, very rewarding feeling destroying those dastardly life hating robots. Somehow you got just that right timing for the animation :)

January 05, 2013 at 12:24AM

Post a comment

org-mode tags allowed: /italic/, *bold* and =code=