OpenTTD
|
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... |
Typedefs | |
typedef bool | IConsoleCmdProc (byte argc, char *argv[]) |
–Commands– Commands are commands, or functions. | |
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 | IConsoleCmdRegister (const char *name, IConsoleCmdProc *proc, IConsoleHook *hook=NULL) |
Register a new command to be used in the console. | |
void | IConsoleAliasRegister (const char *name, const char *cmd) |
Register a an alias for an already existing command in the console. | |
IConsoleCmd * | IConsoleCmdGet (const char *name) |
Find the command pointed to by its string. | |
IConsoleAlias * | IConsoleAliasGet (const char *name) |
Find the alias pointed to by its string. | |
void | IConsoleStdLibRegister () |
bool | GetArgumentInteger (uint32 *value, const char *arg) |
Change a string into its number representation. | |
void | IConsoleGUIInit () |
void | IConsoleGUIFree () |
void | IConsoleGUIPrint (TextColour colour_code, char *string) |
Handle the printing of text entered into the console or redirected there by any other means. | |
char * | RemoveUnderscores (char *name) |
Remove underscores from a string; the string will be modified! |
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 | |
IConsoleCmd * | _iconsole_cmds |
List of registered commands. | |
IConsoleAlias * | _iconsole_aliases |
List of registered aliases. |
Internally used functions for the console.
Definition in file console_internal.h.
typedef bool IConsoleCmdProc(byte 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 sexy boy"'
Definition at line 35 of file console_internal.h.
enum ConsoleHookResult |
Return values of console hooks (#IConsoleHook).
CHR_ALLOW |
Allow command execution. |
CHR_DISALLOW |
Disallow command execution. |
CHR_HIDE |
Hide the existence of the command. |
Definition at line 21 of file console_internal.h.
bool GetArgumentInteger | ( | uint32 * | 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 187 of file console.cpp.
Referenced by DEF_CONSOLE_CMD().
IConsoleAlias* IConsoleAliasGet | ( | const char * | name | ) |
Find the alias pointed to by its string.
name | alias to be found |
Definition at line 310 of file console.cpp.
References IConsoleAlias::name, and IConsoleAlias::next.
Referenced by IConsoleAliasRegister(), and IConsoleCmdExec().
void IConsoleAliasRegister | ( | const char * | name, |
const char * | cmd | ||
) |
Register a an alias for an already existing command in the console.
name | name of the alias that will be used |
cmd | name of the command that 'name' will be alias of |
Definition at line 287 of file console.cpp.
References IConsoleAlias::cmdline, IConsoleAddSorted(), IConsoleAliasGet(), IConsoleError(), IConsoleAlias::name, IConsoleAlias::next, RemoveUnderscores(), and stredup().
IConsoleCmd* IConsoleCmdGet | ( | const char * | name | ) |
Find the command pointed to by its string.
name | command to be found |
Definition at line 272 of file console.cpp.
References IConsoleCmd::name, and IConsoleCmd::next.
Referenced by IConsoleCmdExec().
void IConsoleCmdRegister | ( | const char * | name, |
IConsoleCmdProc * | proc, | ||
IConsoleHook * | hook | ||
) |
Register a new command to be used in the console.
name | name of the command that will be used |
proc | function that will be called upon execution of command |
Definition at line 256 of file console.cpp.
References IConsoleCmd::hook, IConsoleAddSorted(), IConsoleCmd::name, IConsoleCmd::next, IConsoleCmd::proc, RemoveUnderscores(), and stredup().
void IConsoleGUIPrint | ( | TextColour | colour_code, |
char * | 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 503 of file console_gui.cpp.
References SetWindowDirty(), and WC_CONSOLE.
Referenced by IConsolePrint().
char* RemoveUnderscores | ( | char * | name | ) |
Remove underscores from a string; the string will be modified!
name | The string to remove the underscores from. |
Definition at line 241 of file console.cpp.
References CompanyProperties::name.
Referenced by IConsoleAliasRegister(), IConsoleCmdExec(), and IConsoleCmdRegister().