Character Animations

This page shows every frame of animation for all of the characters in the game. The commandant animation is unique to a single character. The prisoner animation is used by the hero and his six fellow prisoners. The guard animation is shared across fifteen guards. The dog animation is shared between four guard dogs.

The stove and crate objects don't animate, but they are treated by the game as characters since they're permitted to move around the room, albeit only on a single axis, when our hero pushes them. The stove is used in two rooms whereas the crate is used in just one.

In the frames decoded below the green pixels represent the transparent parts of the mask. You can see that the masks used for the frames are inaccurate and misshapen. This is because the masks are "worst case" ones shared between multiple frames to save space. Due to the mostly black background this is not too obvious when in-game, except perhaps when you stand next to a wall.

The Commandant

The Hero / A Prisoner

The Hero when Crawling

A Guard

You'll notice that there is a problem with the animation frames where the guard is facing forward. The pointers to the frame data at CEBE are erroneously offset backwards by two bytes. This means that the bitmap content (as opposed to the mask content) is drawn too low by one pixel row. Again, because of the mostly black background in the game it's not really too noticable unless you specifically go looking for it.

And here's how they ought to look:

A Guard Dog

Note that the fourth frame has part of the mask data showing through on the bottom row due to a complication with the graphics decoding. This is not present in the real game.

See that third frame in the following sequence has two stray pixels on the bottom row. These are present in the real game too. The fourth frame has the same problem as above.

Movable Items