Some of our bits …

Hi!

Today I did some minors changes to our main site (please tell us if there is something wrong :P ) and I thought it would be good to add another entry to the blog.
Well, since some time I was thinking about sharing this beautiful piece of code. It is beautiful because of the use we have given to it, we used this tool for almost everything.

Read the rest of this entry »

Comments

Airport Mania 2: Wild Trips

Hey!
It’s finally out :)

Airport Mania 2: Wild Trips

If you are in the US you can get it at Amazon.

If you are in Canada (or in the US as well) you can get it at Game House.

We are all really happy :)
- Juan Pablo

Comments

Inner Quest, our 4th game

Hi all!

Yeah! our fourth game is here. It is called “Inner Quest“, a match-3 game which was created having in mind the best user experience possible. We focused on make it smoother and soft, relaxing and pleasant

Read the rest of this entry »

Comments

We finally changed our look :)

As we promissed after 2009 new year we finally changed our look :)

Read the rest of this entry »

Comments

Simplz Zoo on Steam!

If you have an account on Steam you can now get Simplz Zoo with some of the Steam features like Achievements and Cloud file system.
Whatch out the free demo and full description here.
Simplz Zoo on Steam

Comments

Airport Mania – Retail

Hi!
We were (are and will be) very busy because we are working on a new pretty ambitious project: www.simplzzoo.com. We expect it to be here really soon, will talk about it later.
Airport Mania hit Retail!

Read the rest of this entry »

Comments (2)

Traversing an array in random order / Non repetitive Random Number Generator

The problem is simple. You have an array and you want to traverse it in random order.

Read the rest of this entry »

Comments

Useful Open Source Libraries

Of course you won’t program everything from scratch, but there are situations where you can hesitate to create your own libraries or not.
In many cases the work involved and the results you can achieve with your own libraries is enough to satisfy your requirement but in other situations it isn’t even close.
One of the best things of programming in C/C++ is that there is plenty of resources of any kind to satisfy a wide variety of needs, usually there is more than one solution for one requirement.

Read the rest of this entry »

Comments (2)

Best of Casual Gameplay 2008 – Airport Mania

Airport Mania - Best of 2008
Jayisgames.com (a very important game news and reviews site) has just published the results of its annual Best of the year, and it was a really nice surprise to find Airport Mania as the winner in the Time Management category.

Read the rest of this entry »

Comments (4)

Fast Integer Log2 function in C/C++

Some times, it happens that you need to have a high performance function that you usually use in a not optimized way. And since you never needed to optimize it you hesitated before realising it can be severly improved. Probably, this is what you would think of the integer log2 function, in general this function is used on not critic code so it can be “slow” without creating any problem (often used to calculate the size of a power of 2 texture to hold an image)

Read the rest of this entry »

Comments (9)