Interface for displaying ASCII text. Currently a direct replacement for slPrint. It removes any possible dependency on NBG0 system variables and displays 4bpp fonts to reduce required memory. Allows Storing and displaying up to 6 fonts and 8 color pallets.
#include <srl_ascii.hpp>
Static Public Member Functions | |
static void | LoadFont (SRL::Bitmap::IBitmap *bmp, uint8_t fontId=0) |
Copies 4bpp Bitmap ASCII table to VRAM as 4bpp tileset. | |
static void | LoadFontSG (uint8_t *source, uint8_t fontId=0) |
Use to load a 4bpp version of SGLs internal font. | |
static bool | Print (char *myString, uint8_t x, uint8_t y) |
Display ASCII string on single line. Does not clamp to screen bounds or handle overflow. | |
static bool | Print (const char *myString, uint8_t x, uint8_t y) |
Display ASCII string on single line. Does not clamp to screen bounds or handle overflow. | |
static bool | SetColor (uint16_t color, uint8_t colorIndex) |
Set color in the specified palette index of the current font pallet. | |
static bool | SetFont (uint8_t fontId) |
Set current font to print with (range 0-5) | |
static bool | SetPalette (uint8_t paletteId) |
Set current color pallet to print with (range 0-7) | |