OpenTTD Source
20241108-master-g80f628063a
|
Internally used functions for the console. More...
#include "gfx_type.h"
Go to the source code of this file.
Data Structures | |
struct | IConsoleCmd |
struct | IConsoleAlias |
–Aliases– Aliases are like shortcuts for complex functions, variable assignments, etc. More... | |
struct | IConsole |
Typedefs | |
typedef bool | IConsoleCmdProc(uint8_t argc, char *argv[]) |
–Commands– Commands are commands, or functions. More... | |
typedef ConsoleHookResult | IConsoleHook(bool echo) |
Enumerations | |
enum | ConsoleHookResult { CHR_ALLOW , CHR_DISALLOW , CHR_HIDE } |
Return values of console hooks (#IConsoleHook). More... | |
Functions | |
void | IConsoleClearBuffer () |
void | IConsoleStdLibRegister () |
bool | GetArgumentInteger (uint32_t *value, const char *arg) |
Change a string into its number representation. More... | |
void | IConsoleGUIInit () |
void | IConsoleGUIFree () |
void | IConsoleGUIPrint (TextColour colour_code, const std::string &string) |
Handle the printing of text entered into the console or redirected there by any other means. More... | |
Variables | |
static const uint | ICON_CMDLN_SIZE = 1024 |
maximum length of a typed in command | |
static const uint | ICON_MAX_STREAMSIZE = 2048 |
maximum length of a totally expanded command | |
Internally used functions for the console.
Definition in file console_internal.h.
typedef bool IConsoleCmdProc(uint8_t argc, char *argv[]) |
–Commands– Commands are commands, or functions.
They get executed once and any effect they produce are carried out. The arguments to the commands are given to them, each input word separated by a double-quote (") is an argument If you want to handle multiple words as one, enclose them in double-quotes eg. 'say "hello everybody"'
Definition at line 33 of file console_internal.h.
enum ConsoleHookResult |
Return values of console hooks (#IConsoleHook).
Enumerator | |
---|---|
CHR_ALLOW | Allow command execution. |
CHR_DISALLOW | Disallow command execution. |
CHR_HIDE | Hide the existence of the command. |
Definition at line 19 of file console_internal.h.
bool GetArgumentInteger | ( | uint32_t * | value, |
const char * | arg | ||
) |
Change a string into its number representation.
Supports decimal and hexadecimal numbers as well as 'on'/'off' 'true'/'false'
*value | the variable a successful conversion will be put in |
*arg | the string to be converted |
Definition at line 127 of file console.cpp.
Referenced by DEF_CONSOLE_CMD().
void IConsoleGUIPrint | ( | TextColour | colour_code, |
const std::string & | str | ||
) |
Handle the printing of text entered into the console or redirected there by any other means.
Text can be redirected to other clients in a network game as well as to a logfile. If the network server is a dedicated server, all activities are also logged. All lines to print are added to a temporary buffer which can be used as a history to print them onscreen
colour_code | the colour of the command. Red in case of errors, etc. |
str | the message entered or output on the console (notice, error, etc.) |
Definition at line 501 of file console_gui.cpp.
References _iconsole_buffer, SetWindowDirty(), and WC_CONSOLE.