2.1.3.1 Mapping a single ASCII code to a character
C++ : static void TCODConsole::mapAsciiCodeToFont(int asciiCode, int fontCharX, int fontCharY)
C : void TCOD_console_map_ascii_code_to_font(int asciiCode, int fontCharX, int fontCharY)
Py : console_map_ascii_code_to_font(asciiCode, fontCharX, fontCharY)
2.1.3.2 Mapping consecutive ASCII codes to consecutive characters
C++ : static void TCODConsole::mapAsciiCodesToFont(int firstAsciiCode, int nbCodes, int fontCharX, int fontCharY)
C : void TCOD_console_map_ascii_codes_to_font(int firstAsciiCode, int nbCodes, int fontCharX, int fontCharY)
Py : console_map_ascii_codes_to_font(firstAsciiCode, nbCodes, fontCharX, fontCharY)
2.1.3.3 Mapping ASCII code from a string to consecutive characters
C++ : static void TCODConsole::mapStringToFont(const char *s, int fontCharX, int fontCharY)
C : void TCOD_console_map_string_to_font(const char *s, int fontCharX, int fontCharY)
Py : console_map_string_to_font(s, fontCharX, fontCharY)