< index < 2. Console emulator < 2.2 Drawing on the root console |
===================================== |
C++ : void TCODConsole::printCenter(int x, int y, TCOD_bkgnd_flag_t flag, const char *fmt, ...) C : void TCOD_console_print_center(TCOD_console_t con,int x, int y, TCOD_bkgnd_flag_t flag, const char *fmt, ...) Py : console_print_center(con,x, y, flag, fmt)This function draws a centered string on the console, using default foreground and background colors. If the string reaches borders of the console, it is truncated.
Parameter | Description |
---|---|
con | In the C version, the offscreen console handler or NULL for the root console. |
x,y | Coordinates of the string's middle character in the console. 0 <= x < console width 0 <= y < console height |
flag | This flag defines how the cell's background color is modified. See TCOD_bkgnd_flag_t. |
fmt | printf-like format string, eventually followed by parameters. You can use control codes to change the colors inside the string. |