Mimeoverse: Mimeo and the Kleptopus King is a platforming game in development for the iPhone, iPod touch and iPad.

Select a resolution

Preview music

Requires Flash 10.0

Just a quick note to point out that I’ve added a FlashNSF player to the sidebar of the site. Now you can listen to the 16-bit version of the themes from the game on infinite repeat. The best part is that the p1xl guys use the same audio library I do in the game so the songs should sound identical—without me needing to manually trim and convert each track to MP3.

For the curious, I’ve also written two posts on my personal site documenting my workflow and sharing the tools I use to generate NSFs.

Posted

Pre-crisis gameplay and level design test. Temporary tileset. Block. Blocks. Blocking. Blocked. BLOCK.

Posted

This might be a long one. Mimeo is having a bit of a gameplay identity crisis.

Mimeoid

Mimeo was originally imagined as a Mario clone. Run, jump, bump and stomp through levels and enemies while collecting bits. Powerups, instead of affecting the player character, modify the gameworld and graphics. Everyone seems to love the concept but I’m having trouble translating it into a coherent and compelling gameplay mechanic. Without a solid gameplay mechanic based around resolution switching the visual and audio variety is just surface decoration. And right now resolution switching is creating more problems than it solves:

The Mario template is also causing gameplay dissonance:

Limitations of touch controls compound these problems:

So how do I resolve these issues? Not exactly sure yet but here’s some possible solutions (some of which introduce their own problems):

So these are some of the problems I’ve been grappling with the past couple weeks. I’m not giving up. Putting a name on them makes them seem surmountable.

Posted
Some initial boss ideas and sketches (based loosely on the Veined Octopus).

Been quiet around here lately. I’ve been grappling with ways to integrate resolution switching into the level design. Or rather, with making resolution switching central to the level design. Because if it’s not the core gameplay mechanic then (at least) three quarters of any work I do will be for nothing.

Some initial boss ideas and sketches (based loosely on the Veined Octopus).

Been quiet around here lately. I’ve been grappling with ways to integrate resolution switching into the level design. Or rather, with making resolution switching central to the level design. Because if it’s not the core gameplay mechanic then (at least) three quarters of any work I do will be for nothing.

Posted
Late last week I made a good start on the programming for the Snowsquatch Frost Breath ability. The graphics aren’t done so no video of that yet.

Earlier this week I implemented moving platforms which involved taking the grid-based collision/physics engine and updating it to allow collisions with arbitrarily positioned entities (which was also required for Mimeo to be able to interact with frozen entities).

The past two days were spent on miscellaneous graphic updates and some new sprites (one of which, an 8-bit Kiddo fleeing after being rescued by Mimeo, is shown above).

Today I rewrote entity management. Previously when a level was loaded all entities were created, added to the map and ran on the same update cycle—whether they were on screen/map or not. This led to two issues. First, the most obvious, is that the game was running lots of logic that had no impact on the onscreen action on every frame. The second, most problematic issue was that locomotive entities placed at the end of the level were moving on (eg. towards the center of the level, down holes, or otherwise off map) before the player could encounter them. Now entities are only created and added to the map when their spawn point is within a few tiles of the visible area and removed when venturing beyond that extended region.

Late last week I made a good start on the programming for the Snowsquatch Frost Breath ability. The graphics aren’t done so no video of that yet.

Earlier this week I implemented moving platforms which involved taking the grid-based collision/physics engine and updating it to allow collisions with arbitrarily positioned entities (which was also required for Mimeo to be able to interact with frozen entities).

The past two days were spent on miscellaneous graphic updates and some new sprites (one of which, an 8-bit Kiddo fleeing after being rescued by Mimeo, is shown above).

Today I rewrote entity management. Previously when a level was loaded all entities were created, added to the map and ran on the same update cycle—whether they were on screen/map or not. This led to two issues. First, the most obvious, is that the game was running lots of logic that had no impact on the onscreen action on every frame. The second, most problematic issue was that locomotive entities placed at the end of the level were moving on (eg. towards the center of the level, down holes, or otherwise off map) before the player could encounter them. Now entities are only created and added to the map when their spawn point is within a few tiles of the visible area and removed when venturing beyond that extended region.

Posted

And from this week, the new Narwhelp Lightning Strike ability. This ability has gone through a number of revisions including: an indirect attack where the bolt always hits Mimeo and the resulting sparks create a limited area of effect surrounding Mimeo; bolts (accompanied by an irritating flashing screen) striking the three tiles directly in front of Mimeo; and the one I eventually decided on, a single bolt that strikes the nearest entity that attracts lightning.

One example of the interesting puzzle possibilities I allude to in the video: an engine in need of juice situated below a resolution dependent block forces the player to change resolution to have a clear shot at the engine.

Posted

From last week: fireballs, global collision detection, redesigned bits, and shiny cartridges. Fireballs come with the Firepuss Hoodie (which I haven’t animated just yet). They bounce off of horizontal surfaces and disappear in a puff when they hit enemies or vertical surfaces.

I was never satisfied with the previous bit design. The rotating cubes felt too generic. Much happier with this new two face bit design and the subtle cart animation.

Posted
The beginnings of 2-bit mini Mimeo using the Narwhelp hoodie’s lightning strike ability. Not shown: mini-bolts that spark up from the ground to power abandoned machinery/knock off enemies.

The beginnings of 2-bit mini Mimeo using the Narwhelp hoodie’s lightning strike ability. Not shown: mini-bolts that spark up from the ground to power abandoned machinery/knock off enemies.

Posted

Demoing bricks, chests and hidden blocks with a cameo by a lone resolution dependent block that hints at the presence of a hidden block (while initially preventing its discovery). Bricks bump when hit by 2-bit Mimeo but break in higher resolutions. Chests can contain bits, carts (currently lacking behavior) and 1ups (not shown) or as many bits as you can collect in 5 seconds. Chests can be hidden (invisible) or disguised as bricks (not shown). Still lacking sound effects for everything other than bit collection.

Posted

The ideal platformer camera should:

  1. minimize vertical motion
  2. lead in the direction the player is facing
  3. remain motionless during horizontal micro-adjustments

The secret to achieving all three is (what I call) the trap. The trap is an invisible rectangle (made visible for this demo), roughly twice as wide and tall as the player sprite, with the same starting coordinates. Rather than follow the player sprite directly the camera follows the trap. When the player moves within the trap, the camera does not move. The trap only moves when the player pushes against one of its edges.

This video includes a visual representation of the Mimeo trap and features three distinct camera behaviors discussed previously: free-moving, zero-lock and platform-snap; each tied to specific regions of the map.

Posted