Otterly is hibernating

I’m sorry to say that the Otterly team is no longer making games.

We’ve had a very interesting and enjoyable time developing Floe, and working on a subsequent title. Sadly, our publisher for the second game collapsed and the game is no longer available. We can no longer sustain the Otterly venture, but I’m pleased to report we’re all happily doing other things.

Floe has done well for an iPhone game, but hasn’t recouped its development cost. As Trip Hawkins pointed out at GDC (2011, I think), only the top few dozen iPhone games make a profit, and the average iPhone app only ever gets a few thousand dollars of revenue. It’s no way to make a living, especially if you’re trying to do high quality work.

Many thanks to all who’ve supported us and enjoyed Floe, and goodbye for now.

Posted in Studio | 2 Comments

History of level 24

In this article, I take a look at the development of Floe through the history of a single level from the game. A finished game, with smooth gameplay and polished graphics, gives little evidence of the many twists and turns along the path of development. Here, in twenty-four screenshots of level 24, I show some of the trials, mistakes, and modest triumphs from the development of Floe.

1.

On the first afternoon of the project, Floe was called “Slidy” and looked like this.

It was text only, but fully interactive (the command s meant “slide the blocks to the south”) and nearly all the gameplay was already present. You could move the @ sign around, slide blocks in four directions, and freeze and unfreeze them.

(If you’ve ever played a roguelike, you’ll recognize the presentation.)

Some games start with settings, some with stories, and some with characters, but this one started with pure gameplay. At this stage I had no idea what setting these blocks would eventually inhabit, or what kind of character would navigate them.

Although it’s now level 24 in Floe, this was the first level I implemented, and it was the level that convinced me that I would be able to make interesting and challenging puzzles.

2.

The first implementation in Unity 3D, running on Mac OS X. I used built-in Unity models (spheres, cubes and cylinders) and built-in wood and stone textures. The player character became a pink and white beach-ball.

Arrow keys made the blocks slide, and you could drag the beach-ball with the mouse.

This was my first experience of working with Unity 3D, and initially I wasn’t at all sure about how to go about developing the implementation. At first I tried to use Unity’s built-in physics engine to handle block movement, friction, collisions and so on. But I couldn’t make the physics reproduce all the constraints of the puzzle, so I just programmed it all explicitly.

3.

The first iPhone version. This elegant design and colour scheme were sketched out by Ed Sludden.

Tilting the iPhone made the blocks slide, you could drag the beach-ball around with your finger, and you could freeze or unfreeze a block by touching it.

4.

Here’s a character model from Ed. Is she a mouse or a bear?

The black block is frozen: the blackness is a placeholder waiting for a proper ice texture.

In the early versions of Floe, I had tutorial text that explained what you had to do in the game. But hardly anyone reads tutorials, so I tried to make as much of the game as possible self-explanatory. Originally there was an instruction telling you to head for the exit, but it was simpler to put an arrow there and let the player figure it out. Later on, it became apparent that even the arrow was unnecessary: the mere presence of an exit was enough to suggest to players that they should go there.

A point light gave a bit of variation over the level. (At this point in development, I didn’t realise that the iPhone has no hardware support for point lights, so Unity’s implementation draws all triangles twice, with unfortunate consequences for framerate.)

5.

After some experience of dragging Flo around with my finger, it became clear that there was a big problem with this control scheme: my finger was always on top of Flo, so I couldn’t see her. How are you supposed to relate to a cute character if you can’t see her because your finger is in the way?

I solved this by waiting until the finger is lifted before starting to move Flo. While your finger is touching the screen, a cursor (the red circle) shows which cell you’re touching, and a line shows the path that Flo will follow. This control scheme has lots of other advantages:

  1. You can see what action you’ll take before it happens. This reduces inadvertent errors due to misplaced fingers.
  2. You can cancel an action if you didn’t like it, by dragging your finger off the edge of the playing area.
  3. The cursor is large, so you could see some of it around your fingertip.
  4. The navigation is done for you: Floe is a game about solving the combinatorial puzzles with the blocks, not about navigating fiddly mazes.

Turning the board around so that Flo starts at the top meant that the path is (most of the time) above your finger on the screen, and so visible, instead of below your finger, and so hidden by your hand.

6.

Some water made the playing area look more like an ice floe, using one of Unity’s standard water implementations. This shader looks great on the Mac, but falls back to the very basic approach shown here on the iPhone.

The blocks around the edge of the floe play little role in the game, so I shrank them to make them less distracting.

Also, a pause button.

7.

Flo now had feet, but she had become rather dark.

A new camera position shows water all around the floe, to give more of a sense of place.

There were new textures for the pause button and the exit arrow.

8.

This screenshot shows some minor improvements: better lighting for Flo, block textures, frozen block texture, and an improved cursor. (It was still not big enough for players with big fingers, though. This was something that would become a bit of a theme during development, as we kept finding playtesters with even bigger fingers.)

9.

Instead of a simple line, I drew footsteps to show the path Flo is going to take. This makes it much clearer that the line indicates a path that Flo would walk along.

These footsteps were fiddly to get right. Flo takes a path that zigzags from square to orthogonally adjacent square, but it looks inelegant if the footsteps followed this zigzag path. It looks much better if the footsteps curve smoothly, so I used a quadratic spline with control points at the centres of the squares that Flo visits. The locations of the footprints along this curvy path have to be carefully handled so as to avoid a “marching ants” effect when you drag the cursor around. Footsteps have to be added or removed only at the end of the path, while footsteps near the beginning of the path have to remain fixed, or nearly so.

10.

The camera position shown here was a breakthrough for us. It was suggested by one of Ed’s sketches, and makes an enormous difference to the appeal of the game: you can see Flo’s face, which means that she will be able to have expressions and emotions.

Of course this created some difficulties: it became trickier to determine the player’s intent when they touch the screen (do they intend to move Flo or freeze a block?), because the blocks now obscure part of the floor behind them.

The floe surround was starting to look good, though you can still see seams where the pieces abut.

A new water implementation made waves by moving the vertices of the mesh up and down.

11.

Someone turned up the lights!

New textures for the floe boundaries removed the seams and gave more of a cartoony feel.

12.

This screenshot shows a move count, a bigger cursor (though still not big enough!) and Flo turning to look at the cursor.

13.

This model for Flo was much more appealing. Big heads provide more room for expressions.

The boundary went all the way around the floe, but you can see a draw order problem where the footprints meet the entrance to the level.

14.

The draw order was fixed, and the cursor was animated.

It was necessary to visually distinguish the pause button (which was pressable) from the move count (purely informational).

I made the cursor even bigger.

15.

Every puzzle game that’s hard enough to be interesting and challenging runs the risk of having puzzles that are too hard for some players. I didn’t want those players to give up in frustration, since there are probably later levels that they could enjoy. So there needed to be some way to skip levels for now and come back to them later.

It’s common to have some kind of unlocking scheme whereby each time you complete a level you typically unlock more than one other puzzle. (Some examples. Tumbledrop tries to keep five levels unlocked but not completed: you start each section with five levels unlocked, and each time you complete a level another is unlocked if possible. In Colorbind the levels are set out in a grid, and completing a level unlocks both the level to the right and the level below.)

But in Floe’s less abstract setting I wanted to have an in-world mechanism for skipping levels. So the pink-and-white capsule that appeared in this screenshot was a token that Flo could collect, and which you could use to skip a level that you found too hard.

At this point I had no idea what it would be (maybe a magic wand of some kind?) but I knew how it had to work.

16.

Ed suggested that the level-skipping token should be a balloon, and Richard suggested that you should be able to use it to float over the level.

17.

I struggled with how to represent the tilt. For a while I kept the ice floe stationary, as if was glued to the iPhone, and tilted the water in the opposite direction.

In this screenshot you can see that I reversed this: the floe now tilted on screen when you tilted the iPhone! In some ways this doesn’t make sense: you are already tilting the phone, so why should the floe tilt further on screen? But it makes the game much more playable, because you can get continuous visual feedback as to when the blocks will start to slide. Previously players had the perception that the game was unfair or capricious because they would find that blocks occasionally slid when they hadn’t intended them to.

Flo now cast a shadow.

The UNDO button appeared for the first time. Lots of play-testers asked for this, and I thought it would be easy to implement, since I had already written a level serializer and deserializer in order to save and restore the game. (In fact it caused a lot of trouble, since my initial implementation destroyed and recreated the level objects, which generated a lot of garbage and in some cases caused out-of-memory crashes. Eventually I had to rewrite it to reposition the existing blocks instead of destroying and recreating them.)

At about this point I started trying to improve the framerate, which had dropped to an abysmal 13 frames per second on my iPhone 3GS. The most obvious culprit was the point light, which was doubling the number of triangles to be rendered. So out it had to come.

18.

More framerate improvements: I merged the meshes for the floe boundary objects, and reimplemented the cursor as a particle system. (These changes saved draw calls, which are surprisingly expensive.)

You can see some seams around the corner blocks. That’s because the UV coordinates on the model ran all the way to 0 and 1 at the edges, which was OK when the model was drawn by itself (because UV clamping ensure the edge pixels got the right colour) but not when the model’s texture was combined with other models to make a “texture atlas” (UVs of 0 or 1 got bleed from adjacent textures in the atlas).

19.

Blocks now gave off clouds of ice when they collided, and when you froze or unfroze them. These clouds were implemented using Unity’s “mesh particle emitter”, which emitted particles randomly from the triangles of the mesh. Since the blocks were chamfered (rounded off at the corners and edges), the triangles were concentrated around the corners of the cubes, and hence so were the particles.

An adjusted camera position prevented Flo’s head from being cut off by buttons on larger levels.

20.

Yet another water implementation, this time using a spheremap to reflect a sky texture. The spheremap implementation on the iPhone is very basic: it uses the normal at each pixel to look up a corresponding texel in the spheremap (on a more sophisticated graphics card one would use the angle between the normal and the camera to look up the texel). So this only gives a shiny effect on rounded surfaces: I tried using this shader on the floor of the floe, but it didn’t look right at all.

With this water implementation, I could adjust the normal vectors at each vertex each frame to make the sky reflections move around. This made quite a realistic effect using only a single shader pass.

There were sparkles too, applying a mesh particle emitter to the water mesh.

21.

Ed was never happy with the lighting that I was able to implement on the iPhone. So I turned it off completely for Flo: now you’re seeing the lighting baked in to the textures using 3DS Max.

By using a different mesh (a simple 12-triangle cube) for the particle emitter, ice particles were now generated evenly over the surface of the blocks.

22.

In this screenshot, Flo shows off her dangling-from-a-balloon animation, and an improved balloon model and shader.

23.

The realistic water was distracting, and discordant with the cartoony graphical style of the rest of the game. So we replaced it with this cartoon water, based on a sketch by Ed. Animating the UVs of the water mesh creates ripples around the floe.

The buttons had become rather numerous, but it’s hard to see what we could do without. The RESET button used to be on the menu, but play-testers failed to find it there when they wanted it, and ended up pressing UNDO many times. I used to only allow players to use the SKIP button on levels that they had not yet completed. But it seemed less arbitrary and more fun to allow them to use it whenever they have a balloon to hand.

24.

We liked the new water but everything was looking blue, so Ed drew some white buttons to vary the colour palette a little.

And that’s the history of level 24! I hope you enjoyed playing it as much as I enjoyed making it.

Posted in Design, Development, Floe, Programming | Tagged , , , , | Leave a comment

What’s Otterly been doing?!

Hello everyone! Someone asked if we’re still here, and yes, we are. We’ve been working on game projects under contract this year, and we’re not able to talk about them yet. We’re nearly at the end, though, and we’ll be able to announce what we’ve been doing soon. Subscribe or follow @otterlygames and you’ll hear about it.

Many thanks to all those who enjoyed playing Floe and told us so!

Posted in Studio | Leave a comment

Merry Christmas from Otterly!

Floe_Xmas2010_Otterly

Posted in Floe, Press, Studio | 2 Comments

Floe Christmas update out today

Floe gets a seasonal update and a promotional price! Now you can play with Flo in her santa hat. And are those sleigh bells I can hear?

It’s just a bit of fun. We hope you’ll enjoy it.

Available on the App Store

It’s all part of Chillingo’s “12 Days of Christmas” promotion:

On the 3rd day of Christmas, Floe gets a seasonal update and has a special Holiday Sale price of $0.99! Help baby bear Flo navigate across the ice floes to find her mama in this thoughtful, intuitive, heart-warming puzzler that’s the perfect Christmas gift of fun!

Posted in Floe, Press | 1 Comment

Who is the player?

In a conventional sliding block puzzle game featuring a protagonist (by which I mean Repton, Boulder Dash, and Kurushi; I couldn’t come up with any more in the time it took to write this blog article, but maybe elements of Zelda and Tomb Raider count) there is a degree of identity between the player and the player character. Even if the character is a green bipedal lizard wearing a t-shirt and jeans.

Repton screenshot

Repton

The player moves the character, the character moves the blocks (or avoids them, in the case of Kurushi). The player feels kinaesthetically involved. It would be fair to say that in Repton, the player is Repton the protagonist (thanks Wikipedia for telling me the name of the protagonist!).

Flo being drawn towards the reticule In Floe, the player / protagonist is not so coupled. The blocks move, but Flo does not move them. The blocks move by a mysterious force; at least, it probably seems mysterious to Flo. The way Flo moves is slightly indirect too.  The player causes a pulsating target to appear, that Flo clearly finds fascinating and feels compelled to move towards it whenever it appears. Even if she can’t.

90% of the mass of the floe is beneath the water. And yet the player can tilt it. About a point very near the surface. The player causes psycho-kinetic delusions in infant polar bears.

The player is god.

Posted in Design, Floe | Tagged , , , , , | 5 Comments

iOS Audio Design Feature from PJ Belcher

I recently wrote a feature looking at the broader concepts of iPhone audio design to tie in with my earlier article looking specifically at asset size, “Size Matters“.

Since the launch of the iPhone, apps have been big, especially in the games sector, which has seen some sell like AAA titles. Major developers have added the iPhone to their list of available platforms for existing titles, as well as moved to develop unique titles just for it.

The feature is published exclusively on Gamasutra.com and can be read here.

I hope people find this article useful when producing audio for the iOS devices. Please send any additional thoughts. Enjoy!

PJ Belcher

PJ Belcher Pro Audio

Posted in Audio, Development, Floe | Tagged , , | Leave a comment

What’s next for Otterly?

Floe is out, and people are asking what we’re going to do next. Well, in fact, we’re already making more games.

Floe was pretty complete in late July 2010, and we were ready to self-publish in August, but we decided to work with Chillingo to bring Floe to a wider audience. They asked for a few changes, and what with those, Crystal integration, and Chillingo being acquired, it’s taken a while to get Floe on to the App Store. And in that time, it’s not Floe that has been keeping us busy!

No, we’re working with another studio on something big, and famous! We can’t yet tell you what it is, but you have heard of it, unless you’ve been living in a cave. It’s really fun to work on, involves things dear to our hearts, and we’ll tell you about it just as soon as we can. Prototypes and early milestones have already been delivered!

In the meantime, please play Floe, and tell people about it. We made Floe in our own time, without any funding, in true indie style.  We know it’s a good game, but every developer needs help to reach that critical mass of players and power us on to new and greater things. We need your support so we can develop new and original indie titles.

Thanks to all those who’ve told us how much they (and their children) love Floe!

Posted in Development, Studio | Tagged , , | 1 Comment

Floe is released on the App Store!

Flo says hi

We’re absolutely delighted to announce that Floe has been released and is now available on the App Store!

Available on the App Store

Watch this blog for more news and reactions. (So far all reviews have been 5 stars, but I’m sure that can’t continue.) Meanwhile, please enjoy Floe!

Posted in Floe, Press, Studio | Tagged , , | 1 Comment

Flo says hi!

I couldn’t resist posting this cute new image of Flo wearing a Christmas hat.

What will Flo be doing for the holidays, I wonder…

Posted in Art, Floe | Tagged , , | Leave a comment