Showing posts with label Flappy Bird. Show all posts
Showing posts with label Flappy Bird. Show all posts

Sunday, February 23, 2014

Spikey Bird Postmortem

This post is slightly late as I wanted to create a game for Flappy Jam. I was going to do this last weekend but as is too often the case, things came up so my plans got postponed.

What Went Right

When I am coding a game, I tend to use the approach of just using placeholder artwork (generally coloured blocks and spheres) replacing it with art once the game is functional. Unity isn’t really a programming-based platform so this approach just didn’t feel right. Instead, the artwork was created first and plugged into the Unity project. This approach really worked well which probably isn’t too surprising as Unity is aimed at designers. The nice thing about this approach is you get something closer to the final product right away.

Mixed Blessings

Writing a script to generate the level on the fly is something that is right up my alley. Procedurally generated content in theory offers unlimited replay as no two games will be alike. In reality, the content always seems to be similar enough that the replay value is never as great as it should be. Controlling the difficulty is also not as easy as it would be with hand-built levels. When it comes to a graphical design tool you also have the disadvantage of not having the level visible until you are running the game.

What Went Wrong

One of the cardinal rules of Game Jams is “be familiar with your tools/language before starting.” I am not familiar with either Unity or with C# so developing a game using Unity with C# for the scripting language was probably not a wise decision. Of the 20 hours I spent creating this game, over half of the time was spent searching documentation and the internet for information. Minor things, such as finding the length of a list (C# Lists use Count instead of the length that I am use to) had to be figured out each time eating up not only the time spent in finding the answer but the extra cost of being knocked out of flow. That said, when you think about how quickly I could have created this game had I already been familiar with Unity/C# I can see why the platform is so popular. But if you are not familiar with the platform you are using, the short timespan that a game jam gives you is not the place to be learning a tool/language if you actually want to get something released.

My overall impressions of Unity are mixed. Lets face it. Unity is very much design driven while I am more programming driven. A lot of the way to do things in Unity are not the way I would do things but the power you are getting out of the tool makes it worth using. I can see how using Unity would make sense for a number of the projects that I want to do so I expect more of my games to be created with it in the future. That said, I am still at the very early stages of learning Unity with a huge amount still to learn.

Thursday, February 13, 2014

In Memory of Flappy Bird

I interrupt my NES coverage to bring you a rant. Most of you are already sick to death about Flappy Bird but the issues around the game are important and a badly worded Kotaku article really pissed me off so I simply had to rant. It is understandable if you skip this week’s post though there are some valid points made so at least try to skim through it.

Flappy Bird was created by Vietnamese developer Dong Nguyen. It is a Helicopter style game with graphics reminiscent of Super Mario Bros. You simply dodge pipes by flapping, with the score based on how many pipes you dodge. It is essentially the type of game that I would create in a game jam but would not release on other sites because I wouldn’t feel the quality was high enough. Perhaps if my standards were looser developing games would be a job and not a hobby? A simple game that was kind of fun but nothing special. Still, for some reason or another the game took off in popularity and became one of those surprising mobile-device success stories. Then the controversy started happening.

First people started accusing Dong of gaming the system. Claiming that the download numbers and 5 star ratings were artificially inflated by using bot nets or large numbers of paid-off people. If you had looked at the review pages for this game you would have noticed a lot of 1 star ratings mixed in with 5 star ratings. This may seem suspect but when you think about human nature it is quite conceivable. When many people go to rate a product that they like and notice a bunch of undeserved 1 star ratings, the score that was going to be given immediately changes to a 4 or 5 star rating to compensate for the “idiots” (and if they don’t like a game but see a bunch of undeserved 5 star ratings they will lower their rating to 1 or 2 to compensate for the “idiots” with anybody that has a different opinion from your own being a idiot). For those of you who are curious, I wouldn’t have bothered to rate the game because it is too simple to deserve the effort required to give it a rating but if compelled to rate the game it would get a 2 due to the annoying difficulty since overly difficult games aren’t my forte.

Next were claims that the art was “ripped” from Super Mario Bros. While the art style is very similar, it is clear that the artwork was created by Dong. The Kotaku article claiming the art was “ripped” was poorly researched as ripping art means you take the actual art from another game. Creating your own similar artwork is perfectly legal. The pipes, in particular, can be created by anybody in under a minute by using two linear gradient filled rectangles. I’m not saying that the artwork in SMB is bad, in fact with the palette and tile restrictions that the NES had the art is really good.

After that we get to the argument that the game is just a clone of another game. This is actually the case for the vast majority of games. For example, if you are a fan of first-person shooters, you are playing a clone of Battlezone which itself is a clone of 2D shooters but extended to the third dimension. If you think a game is too much like another game then play and promote the other game.

It is doubtful that the above items are the real reason for the hatred that Dong is receiving, however. The real reason is that the game made a lot of money. Seeing a weekend project make someone lots of money is annoying. Especially when a great game like Kingdoms of Amalur fails in the market. This doesn’t give you the right to harass the person but far too often on the internet people forget that they are talking to other humans.

Interesting enough there is a Flappy Jam going on at http://itch.io/jam/flappyjam . I will probably be doing something for this jam. Will be starting out in Unity and see if I can figure enough out to finish a simple game in it.