Mode 42 guide

From Uzebox Wiki
Jump to navigation Jump to search

Video Mode 42 is a simple attribute mode which most commonly could be used to produce 40 x 25 tile colored text or ASCII / ANSI graphics displays, reproducing similar look & feel games like text mode games on old 8 / 16 bit computers.

The best way to begin is to copy the [Mode 42 example] from the Uzebox master repo, and start off from that. It contains easy to activate examples for most of the mode's features.

The Video & Attribute RAM

When using the mode in its default configuration (40 x 25 tiles), you have got 1000 bytes (40 x 25) of VRAM which can be accessed by the Uzebox kernel's functions (so you can use Print and similar functions on it) and 1000 bytes (40 x 25) of ARAM (Attribute RAM) which specifies the Foreground (high nybble) and Background (low nybble) colors for each tile. By default the Background is Black and the Foreground is White (so even without initializing the ARAM, you will see your text output).

Character sets

The character sets are contained in ROM. You don't need to provide them if you don't want to: the mode already contains some which you can activate with Makefile flags. This mode uses the same character set definitions like Mode 40. Note that the definitions are carried over from Mode 40 (so they are like M40_xxx and the arrays are m40_xxx).

If you want to generate character sets, use [the generator] provided with Mode 40, it can convert Gimp exported headers to suitable C arrays.

Mixing character sets

Every tile row can have its own character set, you can set the character set using SetTileTableRow(). You can access the included character sets with the lowercase equivalent of the Makefile definitions (for example call SetTileTableRow(m40_c64_mixed, 10); to set Row 10 to Commodore 60 PETSCII Mixed, of course only works if you enabled that character set).

Palette

The mode has a 20 entry palette ('palette' array). The first 4 entries specify colors for the 1bpp and 2bpp modes, while the last 16 entries specify the colors used by the attribute mode. Palette index 4 corresponds to attribute index 0, and palette index 19 to attribute index 15. By default the first 4 colors are filled with grays and the attribute mode palette is filled according to IBM EGA's RGBI color set.

Bitmap modes

The mode provides simple blocky graphics display too which you can enable with the M42_TILEROW_1BPP or the M42_TILEROW_2BPP special character set codes (you can supply them to SetTileTable() to set the entire screen or SetTileTableRow() to set individual rows. They use the same VRAM and ARAM regions like the normal character mode.

The individual pixels of these modes can be accessed by the PutPixel and the GetPixel functions.

If you want to do something more advanced with them, you can do direct access, keeping in mind that the pixel layout is a little "weird" (the layout is identical to that of Mode 41).

1 bit per pixel mode layout

In 1 bit per pixel mode the ARAM and the VRAM contains pixel values. The background color is taken from 'palette[0]' and the foreground is taken from 'palette[1]'. There are 4 bitmap rows in a tile row which get their pixels as follows:

  • Row0: aram[tile].bit0, aram[tile].bit1, aram[tile].bit2, aram[tile].bit3
  • Row1: aram[tile].bit4, aram[tile].bit5, aram[tile].bit6, aram[tile].bit7
  • Row2: vram[tile].bit0, vram[tile].bit1, vram[tile].bit2, vram[tile].bit3
  • Row3: vram[tile].bit4, vram[tile].bit5, vram[tile].bit6, vram[tile].bit7

2 bits per pixel mode layout

In 2 bits per pixel mode the ARAM and VRAM both contains pixel values, specifying color indices from 0 - 3 which colors are fetched from 'palette'. This is a planar mode where each byte specifies the pixels of a bitplane:

  • Bitplane 0: aram[tile]
  • Bitplane 1: vram[tile]

The pixel bit positions of each byte are laid out in the 4 bitmap rows as follows:

  • Row0: bit0, bit1
  • Row1: bit2, bit3
  • Row2: bit4, bit5
  • Row3: bit6, bit7

Screen sizes

Screen sizes can be configured identically to Mode 40.