Implementing Color Palettes

Started by
3 comments, last by LorenzoGatti 10 years, 2 months ago

Hey everyone,

Many earlier video games used color palettes that can change the color of an enemy, background, or etc. I've looked extensively online and couldn't find anything on how one might go about implementing this.

I'm making a 16-bit game using sprites and would like to be able to change the palette of enemies that'll act as variations of the original one (think: Beat 'Em Up games). I already have an idea of how I might do this: I would need separate sprites for each pallete and then simply select which sprite(s) I want to use. However, I feel there's a better way, one that developers back then used to save memory. They might've set the pixels that should be changed and have colors corresponding to each set of pixels, but this is just my speculation.

A good example of what I mean is when 1P and 2P select the same character in a fighting game like Street Fighter: the 2P character looks the same but simply has different colored clothing.

If anyone has any knowledge or experience in this subject, please let me know! Thanks in advance!

Advertisement

Back then you'd typically use an 8-bit display mode, so your actual display is paletted to begin with. You have a single global palette for all objects, but select objects have what you might call a "colormap", which is another intermediate table that maps a palette entry to it's final value.

So there are two levels of lookup: first you take an input value of 0..255, look that up in the colormap giving another 0..255 value, which is the final palette entry that's used. That way you get to switch colours without needing to load a new palette for your display mode (which can be expensive). Objects that don't need to be colormapped can just use the input value directly so they avoid the extra lookup and be drawn faster.

This is all done using software rendering, of course.

For a modern emulation you'd use a texture read: using an 8-bit luminance-only texture, you look that up in a 256x1 texture to get the final colour. To switch colours you just change the 256x1 texture. That needs a shader, of course.

Direct3D has need of instancing, but we do not. We have plenty of glVertexAttrib calls.

Thanks for the informative post!

I'm still unsure how I'd specify the colors to change to. Let's say I had a sprite of a character who's hair is green. On the 256x1 texture, titled "palette_1," green is the 4th entry. When I change the character's palette to another 256x1 texture, titled "palette_2," which has blue as the 4th entry instead of green, would it look through all the pixels in the sprite and change them accordingly (Ex. any green to blue)?

More fully-featured recoloring support is generally done via a mask texture and layering. Each object as a base color texture. It then has an additional one-channel texture with white (1.0) meaning "recolor this texel" and black (0.0) meaning "don't recolor." Values between the two extremes can be used for "partial" recoloring. The base texture should have either black texels or white texels in any location being recolor (depending on whether you use multiplicative or additive recoloring). You can have a base color in this location if you wish for that color to be combined with the new color.

Your shader then samples both the base color and mask textures. It has a color value as input, either as a uniform or per-instance variable. The code would be something like the following totally untested HLSL:

// inputs
Texture2D texColor;
Texture2D texMask;
SamplerState sampler;

float4 ps_main(float2 uv : TEXCOORD0, float4 recolor : COLOR0) : SV_TARGET
{
  float4 color = Sample(texColor, sampler, uv);
  float4 mask = Sample(texMask, sampler, uv);

  // additive
  return color + mask * recolor;

  // multiplicative
  return color * mask * recolor;
}
Which of additive or multiplicate you want to use is totally up to the look you're trying to achieve. Neither one is innately better than the other; they simply give different results when you want to mix new colors with old colors (e.g. to have a part of a model that always has a green tint but is still recolored).

You can use multiple masks (possibly encoded as multiple channels in a single mask texture) and input colors if you want to allow recoloring different parts of the model to different colors.

Sean Middleditch – Game Systems Engineer – Join my team!

The shader code sample above recolours with a single arbitrary colour, but a similar approach can be used with proper palettes (constraining the colour swaps in exchange for changing multiple colours in a coordinated fashion, see Street Fighter II, III, IV characters for pretty examples).

All palettes can be consolidated into a single RGB or RGBA 2D texture (e.g. colour index across u, with different palettes stacked as rows along v); then you could look it up (nearest neighbour) with u coming from a single 1-channel sprite texture (also nearest neighbour) and v interpolated from vertex data (identical for all vertices of each sprite, and as a consequence for all fragments of the sprite).
Note that these palettes would cover one sprite only (or a set of related sprites, such as animation frames or separate pieces of the same entity), not the aggregate of all graphics you use: different sprites could use the same colour index with a different meaning, even if sprites are consolidated into texture arrays and/or large texture atlases.

Omae Wa Mou Shindeiru

This topic is closed to new replies.

Advertisement