Game Design, Programming and running a one-man games business…

Free isn’t tempting any more

I read an interesting, I may even say *insightful* post on a website recently. No wait! stop! I really did!

It was a debate about a new game, which had been released as ‘Free To Play’. There was some comment along the lines of how this was great because it meant there was no barrier to trying the game in this case, and that posters A and B would check it out. And then came the genius of poster C, who said something like this:

“So? Free isn’t a big deal any more. There are too many free / very cheap games. I have to weigh up whether the game is worth my time, rather than care about the cost”.

And I think this is going to be an increasingly popular view. I don’t blame people who put games on 90%-off sales. and I don’t blame people who immediately impulse-buy a game they haven’t even seen a video of, because it’s 90% off and sounds like it might be fun. I know how we have got where we are.

But where we are may not be sustainable.

A lot of gamers now complain about a huge game ‘backlog’. Games they bought for $1.99, which claim to have 30 hours of gameplay. There is this big thing of ‘backlog guilt’ where people try not to buy new games until they play all the ones from the past sales. It hasn’t happened to me, I’m very critical of games and only buy maybe 6 a year. The last two games I bought I played for maybe 8 hours combined. I do, however have absolutely no feeling that I *should* go back and *finish* them. I got my moneyworth, it’s not like I ‘owe it’ to the game makers to finish them. Most portals 2 buyers don’t finish the game, according to valve.

Clearly I’m a freak, and atypical, so going back to all these people with a big backlog of games and not enough time to play them, I think (hope?) we may see a change in mindset to this:

“I have limited free time. I enjoy games. I want to spend my limited free time getting the highest quality entertianment as possible. The fact that some games are very cheap is not an enticement, if I can afford to spend my limited free time playing the non-cheap stuff, and still have enough money to fill my free time in this way”.

It’s the way I think about food. I can afford to buy good food, and I know that there is only so much food I can buy, so I tend to spend more money than I have to on food. I don’t agonise about the economy / luxury decision when it comes to a chocolate cake (mmmm cake), because even if the economy cake is mega-cheap, there is only so much cake I can eat, so it may as well be good cake.

Do you think like this? or are you still drawn towards a game because it’s $0.99, even if you know it’s not as good as the game next to it, for $5.99…?

 

Where are the positive, building, creating games?

Why are so many games about destruction and breaking things?

In the real world, we tend to value creation and invention and construction. People are rightly proud if they built a house, less proud if they have demolished one. We feel good and get an emotional high from collaborating to create and build something, and making peoples lives better. There is nothing weird or boring or silly about this, it’s probably built into us, at some genetic level. Chimps that collaborated to help each other had an advantage maybe?

But in games, it’s all about destruction. Team A beats team B by kicking team B in the voolnerables,or blowing them up, or stabbing them. Team A rarely wins by creating a more impressive cathedral than team B, or by curing more disease, or raising life expectancy. This is unfortunate.

Obviously counter-examples exist, and I look upon the success of minecraft as being an example of a game where a lot of people enjoy working together to collaborate on building something impressive. It’s a game about working together, and making stuff, all very positive. However, the majority of big name games, like World Of Warcraft and Call of Duty are about destroying and killing, whther you are killing NPCs or other players.

Some Happy builders

I guess I’m as guilty as any game designer, GSB is about blowing the enemy up, for absolutely no reason at all. However, one positive thing that emerged from the game was a pretty busy, vibrant and very friendly modding community. In some ways, GSB bought some people together to co-operate on making stuff, and that’s just awesome. One day, I’d like to do a game based around that general idea. My own pet theory is that the lack of construction and positive games is due to the history of games emerging as a medium for teenage kids, especially boys. 13 year old boys are all about testosterone and puberty, so basically killing and having sex. Most countries have laws preventing selling sex to that demographic, so the games sell violence to them instead.

When those gamers grow up, lose their hair, get a mortgage and likely a partner & kids, they aren’t so focused on destruction, but on construction. Building a home, a family, a career. None of which is usually a zero-sum game. Where are the games aimed at this period in your life? (except mine).

What examples are there out there in PC gaming land of games which encourage you to do positive stuff? Games where it isn’t a zero-sum game, and you are encouraged to just ‘do better’ rather than  cause your rivals to fail?

Customer data and the sony disaster

Given that amazons hosting systems recently fell apart (who really knows why), and now we hear that sonys playstation network has leaked customer details, possibly including credit card information, to hackers I think it’s time to clarify something that I’m very pleased is the case.

When you buy a game from me, I don’t see your payment details. I never handle the payment, and I have no database with your payment information on it. Nor do I want one. It’s all handled by a third party, either BMTMicro or Fastspring. Both of them are US companies.

Positech can’t be hacked and broken into and put your payment details at risk, because I never even see them. A dedicated company that takes this stuff very seriously handles it.

But better than that, we don’t rely on one-click ordering or customer purchase accounts. Nobody can steal your positech account and take away your games. Nobody can prevent you from getting at your games, launching them or running them.

I bet there are a ton of people who are absolutely furious at sony right now. To be safe, they should all ask for new credit cards. There are 70 million accounts. This is like an entire country being victim to identity theft. Scary stuff.

Rendering to a texture

My new game does more rendering-to-a-texture stuff than the others have done. I’m very pleased with it so far.

What am I talking about?

Say you have a sprite, and that sprite is a ninja hamster wearing a bullet proof vest and wearing a crash helmet. This is a character in your game, and an icon used in various places. To allow customisation, the player has chosen the helmet and the vest, and maybe tweaked their colors. This gives them a slightly customised hamster.

When you draw this onscreen, you need to draw 3 layers (hamster, vest, helmet). That means drawing 3 sprites on top of each other, and 3 times as many pixels as normal. That can mount up quick, and is called overdraw. It also means changing texture 3 times, and changing textures is sloooowwww.

The solution, before the game starts, is to create a new blank texture in memory, and ‘offscreen’ (while the player isn’t looking) you draw the hamster, with all 3 layers and colors. You then save that texture to disk, with a unique name, Later, in the game, you just blap that single sprite, already composed, in a single draw call. If you are really obsessed, you could, at run-time, stitch together all the units textures into a single sprite-sheet to make it even simpler, and faster.

I have no idea if people tend to do this any more. Most people make 3D games with little or no alpha-blending, where you don’t worry much about texture swaps because you sort by Z and use a Z Buffer. My games can’t be done like that because it’s all soft-edged alpha-blended 2D, so these things start to matter. The code to do all this is a bit fiddly, but I’m already massively glad I’ve got it working. It will let me do all kinds of cool stuff in the next game, and means it will run fast as a race horse wearing rocket-skates.

Identifying profitable ads

I have a problem. It’s the same problem most people selling stuff have. I cannot be sure that my adverts actually work. I can be *pretty* sure they do, but I really would benefit from some hard statistical data. Using technical means to track visitors and sales with cookies has failed me. I tried the google ecommerce tracking stuff, but frankly it was chaos.

One method, used in the newspaper industry, is to use coupons. You print a 10% off coupon on the advert, and then every customer who uses the coupon must have seen the ad (directly or indirectly). This could work, but of course it relies on people actually using the coupon. Because game demos are generally tried, and people play them for hours, if not days, the chances are people forget all about the coupon when buying. I suspect this method is as leaky as any other.

I could mitigate that by removing the game demo link entirely.  This is something I have never done, and am not keen on, but it would be possible.

Another method could involve having a special version of the demo which writes a file to disk. When the full game is first run, it could check for that file, and if found, report to my server that an ad-driven sale took place. Ideally, the demo installer would have the ad-click referer embedded in it somewhere, but at this point things start to get uber-involved.

I’m very interested to know other peoples experiences and tricks. How do you know whether an ad campaign, or a website review or link, or other traffic source is actually generating sales?