Intertwined4BPP

4 bit per pixel tile format with palette. Each row has its bitplanes stored adjacent to one another. Commonly used by the SNES and PC Engine.

Members

Functions

pixelMatrix
ubyte[8][8] pixelMatrix()
Undocumented in source. Be warned that the author may not have intended to support it.
toBase64
string toBase64()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

raw
ubyte[32] raw;
Undocumented in source.

Examples

import std.string : representation;
const data = Intertwined4BPP(import("bpp4-sample1.bin").representation[0 .. 8 * 4]);
const ubyte[8][8] finaldata = [
	[0x0, 0xF, 0x2, 0xE, 0xE, 0xE, 0xF, 0xA],
	[0x0, 0x0, 0xF, 0x6, 0xE, 0xE, 0xE, 0xE],
	[0x0, 0x0, 0xF, 0xF, 0xF, 0x8, 0xF, 0xF],
	[0x0, 0xF, 0xF, 0xF, 0x8, 0x8, 0x8, 0xF],
	[0x0, 0xF, 0x8, 0xF, 0x7, 0x7, 0xF, 0x7],
	[0x0, 0xF, 0x8, 0x7, 0x7, 0x7, 0xF, 0x7],
	[0x0, 0x0, 0xF, 0x8, 0x9, 0x9, 0x7, 0x7],
	[0x0, 0x0, 0x0, 0xF, 0x9, 0x9, 0xF, 0xA]
];
assert(data.pixelMatrix() == finaldata);

Meta