BecomeAPatron

My Latest Game is at the Alpha Stage

I compiled and sent an alpha version of my latest game to the producer (at Big Fish Games) yesterday and it felt great to have finally reached that stage after 7 months! The alpha version is “feature complete” in that it contains everything from the design doc, but it’s not yet “media complete” as I’m waiting for a few more graphics plus proper sounds effects/music instead of my placeholder ones.

Next up we’ll be deciding on what items from the large cosmetics and polish list that I built up during development will actually make it into the final game. I’ll code these and then we’ll release a media complete beta version ready for evaluation by BFG’s testers – that’ll be a nerve wracking time. Hopefully they won’t find many bugs and won’t ask for many improvements because I’ve tested it very carefully so far and also we iterated over most of the game features many times to get them feeling right.

Throughout development I keep a time log so that I can see how many hours I put in each week and what those hours are actually spent on. It gives some pretty interesting stats as follows:

– Total Hours = 681
– Coding/plugging in graphics = 32%
– Code = 30%
– Talking to Designer (via email) = 10%
– Talking to Artist (via email) = 6%
– Research = 6%
– Fixing Bugs = 4% (many bugs are fixed under the code category)
– Organisation (To Do lists etc.) = 3%
– Planning = 3%
– Testing = 2% (in reality a lot of testing occurs under the code category)
– Releasing test versions = 1%
– Sound = 1% (this will go up when the proper sounds arrive)
– Forums = 1% (research on forums, probably much of this is in the main Research category)
– Admin/Logs etc = 1%

So what can we see from this? Well the majority of my time (62%) is spend productively coding and over half of that is programming graphics effects which are “extra” to the game engine. Quite a lot of time is spent plugging in graphics, positioning them, writing back to the artist for changes, and trying the new ones out etc.

I’ve spent 16% of my time communicating with team members, wow that’s a lot, but we have a good working relationship and exchange of ideas, thus the game is definitely better as a result. Most of this communcation has been by email not by Skype or MSN, so a LOT more time has been consumed typing emails that probably needed to be. However, the advantage of emails is that we all have a proper record of what was said and agreed on – also it’s often more convenient for us to reply to emails that to talk “realtime” especially as I’m in the UK and they are in the US (different coasts).

You can see that 6% (3+2+1) of my time is spent Organising, Planning and doing Admin. I keep a detailed spreadsheet of all the tasks that I need to complete split into categories with time estimates for each, and ideas for the wishlist etc. I often extract a subset of tasks to work on for the next few days, then as I code I write even more detail on a pad next to me and cross stuff out as I complete it. In reality a lot of my planning is done “on the fly” during code so that figure of 2% is probably a bit low. Planning is great, once you’ve planned something in detail, it’s merely a case of typing it, making sure the syntax is correct, and removing any bugs … well almost 😉

So 7% of my time was spent doing Research on the Internet and on Forums, and also writing test code related to the research. The research was sometimes about finding solutions to technical issues to do with the language that I’m using, and quite a lot of it was physics/maths research that I’ve used for a few neat effects in the game. It was like going back to school again, but was pretty good fun.

You may have noticed that 681 hours over 7 months is only 97 hours a month so like only about 24 hours a week. Well there’s several reasons for that (no I wasn’t just lounging in bed or watching TV ;-)) I took 3 weeks holiday during that period. Also I was running another business during that time which took up 100+ hours. Plus I did a week of IT consultancy for someone during that time and also some odd IT consultancy jobs here and there. I also have to manage all of my home and business finances which means a certain amount of time each week doing paperwork, VAT returns, accounts etc. Furthermore, I’m a dad, so sometimes I had to look after my boys, and othertimes I had to do chores 🙂 However, sometimes I just didn’t do any work, like on sunny days when I’d tended to my plants in the garden or walked into town to go to the bank etc. Oh and I also surfed the Internet a bit and went on forums (naughty me) – but I did avoid getting my time zapped by Facebook. I didn’t play many games in this period which is a shame as I have been very busy with all that other stuff, but I hope to correct that this winter.

OK that’s it for now, hope you enjoyed my breakdown. I’d be interested to see how other developers divide their time to see if my breakdown is similar or wildly different.

5 Responses to “My Latest Game is at the Alpha Stage”

  1. MrPhil Says:

    This is great! I wish more people volunteered detail information like this. It is a great resource for benchmarking how hard I should (or should not) be working. I was hoping you’d give us a peek at your spreadsheet for inspiration?

  2. Grey Alien Games Says:

    Thanks! Hopefully you are working harder than I am 😉 Well because the spreadsheet is about a game that I’ve signed a non-disclosure agreement for, regretably I can show it to you. But I can describe it more and I’ll do that in another post soon, so keep your eyes peeled…

  3. MrPhil Says:

    Great! I more interested in the structure that the entries anyways 😀 Eyes peeled!

  4. Tex Pine Says:

    I and my team have been tracking time for the execution of each tasks, but I haven’t counted “administration stuff” like e-mail and task description typing. It is a good idea for a next project.

    I found that much of my programmer’s time, about 20-30% of 11 months of development, was dedicated to make the framework needed for our 2D C# game – since there were no good 2D framework available that wasn’t using XNA. The funny thing was that the lead programmer chose C# because there would be needed a long time, according to him at least 2 months, for all programmers to learn and use the “hard” C++ fluently.

    In the end, the “easier” C# language became a waste of time, much greater than learning C++ from scratch. Not counting the issues on deploying casual or indie games with the .NET Framework. Next project, we are going to LEARN and use C++, and pick a good framework or engine, because we should focus on the gameplay I believe. 🙂

  5. Grey Alien Games Says:

    Sounds like a plan. Pick something tried and tested with plenty of exisiting frameworks so that you can get straight down to the gameplay! After all it’s not the language, or the IDE or even the framework that make the game, it’s YOU 🙂