OpenTTD Source 20241224-master-gf74b0cf984
|
Implementation of the console hooks. More...
#include "stdafx.h"
#include "console_internal.h"
#include "debug.h"
#include "engine_func.h"
#include "landscape.h"
#include "saveload/saveload.h"
#include "network/core/network_game_info.h"
#include "network/network.h"
#include "network/network_func.h"
#include "network/network_base.h"
#include "network/network_admin.h"
#include "network/network_client.h"
#include "command_func.h"
#include "settings_func.h"
#include "fios.h"
#include "fileio_func.h"
#include "fontcache.h"
#include "screenshot.h"
#include "genworld.h"
#include "strings_func.h"
#include "viewport_func.h"
#include "window_func.h"
#include "timer/timer.h"
#include "company_func.h"
#include "gamelog.h"
#include "ai/ai.hpp"
#include "ai/ai_config.hpp"
#include "newgrf.h"
#include "newgrf_profiling.h"
#include "console_func.h"
#include "engine_base.h"
#include "road.h"
#include "rail.h"
#include "game/game.hpp"
#include "table/strings.h"
#include "3rdparty/fmt/chrono.h"
#include "company_cmd.h"
#include "misc_cmd.h"
#include <sstream>
#include "safeguards.h"
#include "network/network_content.h"
Go to the source code of this file.
Data Structures | |
class | ConsoleFileList |
File list storage for the console, for caching the last 'ls' command. More... | |
struct | ConsoleContentCallback |
Asynchronous callback. More... | |
Macros | |
#define | DEF_CONSOLE_CMD(function) static bool function([[maybe_unused]] uint8_t argc, [[maybe_unused]] char *argv[]) |
#define | DEF_CONSOLE_HOOK(function) static ConsoleHookResult function(bool echo) |
Enumerations | |
enum | ConNetworkAuthorizedKeyAction { CNAKA_LIST , CNAKA_ADD , CNAKA_REMOVE } |
Functions | |
static bool | NetworkAvailable (bool echo) |
Check network availability and inform in console about failure of detection. | |
DEF_CONSOLE_HOOK (ConHookServerOnly) | |
Check whether we are a server. | |
DEF_CONSOLE_HOOK (ConHookClientOnly) | |
Check whether we are a client in a network game. | |
DEF_CONSOLE_HOOK (ConHookNeedNetwork) | |
Check whether we are in a multiplayer game. | |
DEF_CONSOLE_HOOK (ConHookNeedNonDedicatedNetwork) | |
Check whether we are in a multiplayer game and are playing, i.e. | |
DEF_CONSOLE_HOOK (ConHookNoNetwork) | |
Check whether we are in singleplayer mode. | |
DEF_CONSOLE_HOOK (ConHookServerOrNoNetwork) | |
Check if are either in singleplayer or a server. | |
DEF_CONSOLE_HOOK (ConHookNewGRFDeveloperTool) | |
DEF_CONSOLE_CMD (ConResetEngines) | |
Reset status of all engines. | |
DEF_CONSOLE_CMD (ConResetEnginePool) | |
Reset status of the engine pool. | |
DEF_CONSOLE_CMD (ConZoomToLevel) | |
Zoom map to given level. | |
DEF_CONSOLE_CMD (ConScrollToTile) | |
Scroll to a tile on the map. | |
DEF_CONSOLE_CMD (ConSave) | |
Save the map to a file. | |
DEF_CONSOLE_CMD (ConSaveConfig) | |
Explicitly save the configuration. | |
DEF_CONSOLE_CMD (ConLoad) | |
DEF_CONSOLE_CMD (ConLoadScenario) | |
DEF_CONSOLE_CMD (ConLoadHeightmap) | |
DEF_CONSOLE_CMD (ConRemove) | |
DEF_CONSOLE_CMD (ConListFiles) | |
DEF_CONSOLE_CMD (ConListScenarios) | |
DEF_CONSOLE_CMD (ConListHeightmaps) | |
DEF_CONSOLE_CMD (ConChangeDirectory) | |
DEF_CONSOLE_CMD (ConPrintWorkingDirectory) | |
DEF_CONSOLE_CMD (ConClearBuffer) | |
static bool | ConKickOrBan (const char *argv, bool ban, const std::string &reason) |
DEF_CONSOLE_CMD (ConKick) | |
DEF_CONSOLE_CMD (ConBan) | |
DEF_CONSOLE_CMD (ConUnBan) | |
DEF_CONSOLE_CMD (ConBanList) | |
DEF_CONSOLE_CMD (ConPauseGame) | |
DEF_CONSOLE_CMD (ConUnpauseGame) | |
DEF_CONSOLE_CMD (ConRcon) | |
DEF_CONSOLE_CMD (ConStatus) | |
DEF_CONSOLE_CMD (ConServerInfo) | |
DEF_CONSOLE_CMD (ConClientNickChange) | |
DEF_CONSOLE_CMD (ConJoinCompany) | |
DEF_CONSOLE_CMD (ConMoveClient) | |
DEF_CONSOLE_CMD (ConResetCompany) | |
DEF_CONSOLE_CMD (ConNetworkClients) | |
DEF_CONSOLE_CMD (ConNetworkReconnect) | |
DEF_CONSOLE_CMD (ConNetworkConnect) | |
DEF_CONSOLE_CMD (ConExec) | |
DEF_CONSOLE_CMD (ConSchedule) | |
DEF_CONSOLE_CMD (ConReturn) | |
bool | CloseConsoleLogIfActive () |
const std::vector< GRFFile * > & | GetAllGRFFiles () |
void | ConPrintFramerate () |
Print performance statistics to game console. | |
void | ShowFramerateWindow () |
Open the general framerate window. | |
DEF_CONSOLE_CMD (ConScript) | |
DEF_CONSOLE_CMD (ConEcho) | |
DEF_CONSOLE_CMD (ConEchoC) | |
DEF_CONSOLE_CMD (ConNewGame) | |
DEF_CONSOLE_CMD (ConRestart) | |
DEF_CONSOLE_CMD (ConReload) | |
static void | PrintLineByLine (const std::string &full_string) |
Print a text buffer line by line to the console. | |
template<typename F , typename ... Args> | |
bool | PrintList (F list_function, Args... args) |
DEF_CONSOLE_CMD (ConListAILibs) | |
DEF_CONSOLE_CMD (ConListAI) | |
DEF_CONSOLE_CMD (ConListGameLibs) | |
DEF_CONSOLE_CMD (ConListGame) | |
DEF_CONSOLE_CMD (ConStartAI) | |
DEF_CONSOLE_CMD (ConReloadAI) | |
DEF_CONSOLE_CMD (ConStopAI) | |
DEF_CONSOLE_CMD (ConRescanAI) | |
DEF_CONSOLE_CMD (ConRescanGame) | |
DEF_CONSOLE_CMD (ConRescanNewGRF) | |
DEF_CONSOLE_CMD (ConGetSeed) | |
DEF_CONSOLE_CMD (ConGetDate) | |
DEF_CONSOLE_CMD (ConGetSysDate) | |
DEF_CONSOLE_CMD (ConAlias) | |
DEF_CONSOLE_CMD (ConScreenShot) | |
DEF_CONSOLE_CMD (ConInfoCmd) | |
DEF_CONSOLE_CMD (ConDebugLevel) | |
DEF_CONSOLE_CMD (ConExit) | |
DEF_CONSOLE_CMD (ConPart) | |
DEF_CONSOLE_CMD (ConHelp) | |
DEF_CONSOLE_CMD (ConListCommands) | |
DEF_CONSOLE_CMD (ConListAliases) | |
DEF_CONSOLE_CMD (ConCompanies) | |
DEF_CONSOLE_CMD (ConSay) | |
DEF_CONSOLE_CMD (ConSayCompany) | |
DEF_CONSOLE_CMD (ConSayClient) | |
static void | PerformNetworkAuthorizedKeyAction (std::string_view name, NetworkAuthorizedKeys *authorized_keys, ConNetworkAuthorizedKeyAction action, const std::string &authorized_key, CompanyID company=INVALID_COMPANY) |
DEF_CONSOLE_CMD (ConNetworkAuthorizedKey) | |
static ContentType | StringToContentType (const char *str) |
Resolve a string to a content type. | |
static void | OutputContentState (const ContentInfo *const ci) |
Outputs content state information to console. | |
DEF_CONSOLE_CMD (ConContent) | |
DEF_CONSOLE_CMD (ConFont) | |
DEF_CONSOLE_CMD (ConSetting) | |
DEF_CONSOLE_CMD (ConSettingNewgame) | |
DEF_CONSOLE_CMD (ConListSettings) | |
DEF_CONSOLE_CMD (ConGamelogPrint) | |
DEF_CONSOLE_CMD (ConNewGRFReload) | |
DEF_CONSOLE_CMD (ConListDirs) | |
DEF_CONSOLE_CMD (ConNewGRFProfile) | |
DEF_CONSOLE_CMD (ConFramerate) | |
DEF_CONSOLE_CMD (ConFramerateWindow) | |
static std::string | FormatLabel (uint32_t label) |
Format a label as a string. | |
static void | ConDumpRoadTypes () |
static void | ConDumpRailTypes () |
static void | ConDumpCargoTypes () |
DEF_CONSOLE_CMD (ConDumpInfo) | |
void | IConsoleStdLibRegister () |
Variables | |
static uint | _script_current_depth |
Depth of scripts running (used to abort execution when #ConReturn is encountered). | |
static std::string | _scheduled_monthly_script |
Script scheduled to execute by the 'schedule' console command (empty if no script is scheduled). | |
static IntervalTimer< TimerGameCalendar > | _scheduled_monthly_timer |
Timer that runs every month of game time for the 'schedule' console command. | |
static ConsoleFileList | _console_file_list_savegame {FT_SAVEGAME, true} |
File storage cache for savegames. | |
static ConsoleFileList | _console_file_list_scenario {FT_SCENARIO, false} |
File storage cache for scenarios. | |
static ConsoleFileList | _console_file_list_heightmap {FT_HEIGHTMAP, false} |
File storage cache for heightmaps. | |
static std::vector< std::pair< std::string_view, NetworkAuthorizedKeys * > > | _console_cmd_authorized_keys |
All the known authorized keys with their name. | |
Implementation of the console hooks.
Definition in file console_cmds.cpp.
#define DEF_CONSOLE_CMD | ( | function | ) | static bool function([[maybe_unused]] uint8_t argc, [[maybe_unused]] char *argv[]) |
Definition at line 110 of file console_cmds.cpp.
#define DEF_CONSOLE_HOOK | ( | function | ) | static ConsoleHookResult function(bool echo) |
Definition at line 111 of file console_cmds.cpp.
enum ConNetworkAuthorizedKeyAction |
Definition at line 1962 of file console_cmds.cpp.
|
extern |
Definition at line 63 of file console.cpp.
|
static |
Definition at line 2682 of file console_cmds.cpp.
|
static |
Definition at line 2644 of file console_cmds.cpp.
|
static |
Definition at line 2607 of file console_cmds.cpp.
|
static |
Definition at line 664 of file console_cmds.cpp.
|
extern |
Print performance statistics to game console.
Definition at line 1037 of file framerate_gui.cpp.
References anonymous_namespace{framerate_gui.cpp}::_pf_data, CC_ERROR, IConsolePrint(), anonymous_namespace{framerate_gui.cpp}::NUM_FRAMERATE_POINTS, PFE_AI0, PFE_DRAWING, PFE_GAMELOOP, PFE_MAX, and PFE_VIDEO.
DEF_CONSOLE_CMD | ( | ConAlias | ) |
Definition at line 1618 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConBan | ) |
Definition at line 730 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConBanList | ) |
Definition at line 786 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConChangeDirectory | ) |
Definition at line 605 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConClearBuffer | ) |
Definition at line 647 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConClientNickChange | ) |
Definition at line 898 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConCompanies | ) |
Definition at line 1864 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConContent | ) |
Definition at line 2143 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConDebugLevel | ) |
Definition at line 1741 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConDumpInfo | ) |
Definition at line 2742 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConEcho | ) |
Definition at line 1246 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConEchoC | ) |
Definition at line 1258 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConExec | ) |
Definition at line 1124 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConExit | ) |
Definition at line 1760 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConFont | ) |
Definition at line 2228 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConFramerate | ) |
Definition at line 2564 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConFramerateWindow | ) |
Definition at line 2575 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConGamelogPrint | ) |
Definition at line 2343 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConGetDate | ) |
Definition at line 1594 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConGetSeed | ) |
Definition at line 1582 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConGetSysDate | ) |
Definition at line 1606 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConHelp | ) |
Definition at line 1791 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConInfoCmd | ) |
Definition at line 1719 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConJoinCompany | ) |
Definition at line 932 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConKick | ) |
Definition at line 707 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListAI | ) |
Definition at line 1357 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListAILibs | ) |
Definition at line 1347 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListAliases | ) |
Definition at line 1847 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListCommands | ) |
Definition at line 1830 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListDirs | ) |
< Index of subdirectory type
< UI name for the directory
< Whether only the default (first existing) directory for this is interesting
Definition at line 2365 of file console_cmds.cpp.
References AI_DIR, AI_LIBRARY_DIR, AUTOSAVE_DIR, BASESET_DIR, CC_DEFAULT, CC_ERROR, CC_HELP, CC_INFO, FileExists(), GAME_DIR, GAME_LIBRARY_DIR, HEIGHTMAP_DIR, IConsolePrint(), NEWGRF_DIR, SAVE_DIR, SCENARIO_DIR, SCREENSHOT_DIR, SOCIAL_INTEGRATION_DIR, and StrEqualsIgnoreCase().
DEF_CONSOLE_CMD | ( | ConListFiles | ) |
Definition at line 557 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListGame | ) |
Definition at line 1377 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListGameLibs | ) |
Definition at line 1367 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListHeightmaps | ) |
Definition at line 589 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListScenarios | ) |
Definition at line 573 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConListSettings | ) |
Definition at line 2330 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConLoad | ) |
Definition at line 453 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConLoadHeightmap | ) |
Definition at line 505 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConLoadScenario | ) |
Definition at line 479 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConMoveClient | ) |
Definition at line 979 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConNetworkAuthorizedKey | ) |
Definition at line 2008 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConNetworkClients | ) |
Definition at line 1063 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConNetworkConnect | ) |
Definition at line 1106 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConNetworkReconnect | ) |
Definition at line 1075 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConNewGame | ) |
Definition at line 1270 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConNewGRFProfile | ) |
Definition at line 2431 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConNewGRFReload | ) |
Definition at line 2354 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConPart | ) |
Definition at line 1773 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConPauseGame | ) |
Definition at line 804 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConPrintWorkingDirectory | ) |
Definition at line 632 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConRcon | ) |
Definition at line 852 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConReload | ) |
Definition at line 1303 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConReloadAI | ) |
Definition at line 1459 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConRemove | ) |
Definition at line 531 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConRescanAI | ) |
Definition at line 1534 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConRescanGame | ) |
Definition at line 1551 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConRescanNewGRF | ) |
Definition at line 1568 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConResetCompany | ) |
Definition at line 1022 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConResetEnginePool | ) |
Reset status of the engine pool.
Definition at line 249 of file console_cmds.cpp.
References CC_ERROR, CC_HELP, IConsolePrint(), and EngineOverrideManager::ResetToCurrentNewGRFConfig().
DEF_CONSOLE_CMD | ( | ConResetEngines | ) |
Reset status of all engines.
Definition at line 233 of file console_cmds.cpp.
References CC_HELP, IConsolePrint(), and StartupEngines().
DEF_CONSOLE_CMD | ( | ConRestart | ) |
Definition at line 1282 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConReturn | ) |
Definition at line 1202 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConSave | ) |
Save the map to a file.
param filename the filename to save the map to.
Definition at line 413 of file console_cmds.cpp.
References CC_DEFAULT, CC_ERROR, CC_HELP, CC_INFO, DFT_GAME_FILE, IConsolePrint(), SAVE_DIR, SaveOrLoad(), SL_OK, and SLO_SAVE.
DEF_CONSOLE_CMD | ( | ConSaveConfig | ) |
Explicitly save the configuration.
Definition at line 440 of file console_cmds.cpp.
References CC_DEFAULT, CC_HELP, IConsolePrint(), and SaveToConfig().
DEF_CONSOLE_CMD | ( | ConSay | ) |
Definition at line 1890 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConSayClient | ) |
Definition at line 1935 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConSayCompany | ) |
Definition at line 1909 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConSchedule | ) |
Definition at line 1173 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConScreenShot | ) |
Definition at line 1638 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConScript | ) |
Definition at line 1221 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConScrollToTile | ) |
Scroll to a tile on the map.
param x tile number or tile x coordinate. param y optional y coordinate.
Definition at line 359 of file console_cmds.cpp.
References CC_ERROR, CC_HELP, GetArgumentInteger(), IConsolePrint(), ScrollMainWindowToTile(), Map::Size(), Map::SizeX(), Map::SizeY(), and TileXY().
DEF_CONSOLE_CMD | ( | ConServerInfo | ) |
Definition at line 882 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConSetting | ) |
Definition at line 2292 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConSettingNewgame | ) |
Definition at line 2311 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConStartAI | ) |
Definition at line 1387 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConStatus | ) |
Definition at line 871 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConStopAI | ) |
Definition at line 1497 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConUnBan | ) |
Definition at line 754 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConUnpauseGame | ) |
Definition at line 826 of file console_cmds.cpp.
DEF_CONSOLE_CMD | ( | ConZoomToLevel | ) |
Zoom map to given level.
param level As defined by ZoomLevel and as limited by zoom_min/zoom_max from GUISettings.
Definition at line 300 of file console_cmds.cpp.
References _settings_client, CC_ERROR, CC_HELP, DoZoomInOutWindow(), GetArgumentInteger(), GetMainWindow(), ClientSettings::gui, IConsolePrint(), Window::viewport, Viewport::zoom, ZOOM_IN, ZOOM_LVL_MAX, ZOOM_LVL_MIN, GUISettings::zoom_max, GUISettings::zoom_min, and ZOOM_OUT.
DEF_CONSOLE_HOOK | ( | ConHookClientOnly | ) |
Check whether we are a client in a network game.
Definition at line 150 of file console_cmds.cpp.
References _network_server, CC_ERROR, CHR_ALLOW, CHR_DISALLOW, IConsolePrint(), and NetworkAvailable().
DEF_CONSOLE_HOOK | ( | ConHookNeedNetwork | ) |
Check whether we are in a multiplayer game.
Definition at line 165 of file console_cmds.cpp.
References _network_server, _networking, CC_ERROR, CHR_ALLOW, CHR_DISALLOW, IConsolePrint(), ClientNetworkGameSocketHandler::IsConnected(), and NetworkAvailable().
DEF_CONSOLE_HOOK | ( | ConHookNeedNonDedicatedNetwork | ) |
Check whether we are in a multiplayer game and are playing, i.e.
we are not the dedicated server.
Definition at line 180 of file console_cmds.cpp.
References _network_dedicated, CC_ERROR, CHR_ALLOW, CHR_DISALLOW, IConsolePrint(), and NetworkAvailable().
DEF_CONSOLE_HOOK | ( | ConHookNewGRFDeveloperTool | ) |
Definition at line 217 of file console_cmds.cpp.
DEF_CONSOLE_HOOK | ( | ConHookNoNetwork | ) |
Check whether we are in singleplayer mode.
Definition at line 195 of file console_cmds.cpp.
References _networking, CC_ERROR, CHR_ALLOW, CHR_DISALLOW, and IConsolePrint().
DEF_CONSOLE_HOOK | ( | ConHookServerOnly | ) |
Check whether we are a server.
Definition at line 135 of file console_cmds.cpp.
References _network_server, CC_ERROR, CHR_ALLOW, CHR_DISALLOW, IConsolePrint(), and NetworkAvailable().
DEF_CONSOLE_HOOK | ( | ConHookServerOrNoNetwork | ) |
Check if are either in singleplayer or a server.
Definition at line 208 of file console_cmds.cpp.
References _network_server, _networking, CC_ERROR, CHR_ALLOW, CHR_DISALLOW, and IConsolePrint().
|
static |
Format a label as a string.
If all elements are visible ASCII (excluding space) then the label will be formatted as a string of 4 characters, otherwise it will be output as an 8-digit hexadecimal value.
label | Label to format. |
Definition at line 2598 of file console_cmds.cpp.
|
extern |
Definition at line 72 of file newgrf.cpp.
void IConsoleStdLibRegister | ( | ) |
Definition at line 2773 of file console_cmds.cpp.
|
inlinestatic |
Check network availability and inform in console about failure of detection.
Definition at line 122 of file console_cmds.cpp.
References _network_available, CC_ERROR, and IConsolePrint().
Referenced by DEF_CONSOLE_HOOK(), DEF_CONSOLE_HOOK(), DEF_CONSOLE_HOOK(), and DEF_CONSOLE_HOOK().
|
static |
Outputs content state information to console.
ci | the content info |
Definition at line 2133 of file console_cmds.cpp.
References CC_COMMAND, CC_ERROR, CC_INFO, CC_WHITE, CONTENT_TYPE_BEGIN, CONTENT_TYPE_END, FormatArrayAsHex(), IConsolePrint(), ContentInfo::id, lengthof, ContentInfo::md5sum, ContentInfo::name, ContentInfo::state, ContentInfo::type, and ContentInfo::unique_id.
|
static |
Definition at line 1968 of file console_cmds.cpp.
|
static |
Print a text buffer line by line to the console.
Lines are separated by '
'.
full_string | The multi-line string to print. |
Definition at line 1327 of file console_cmds.cpp.
References CC_DEFAULT, and IConsolePrint().
bool PrintList | ( | F | list_function, |
Args... | args | ||
) |
Definition at line 1337 of file console_cmds.cpp.
|
extern |
Open the general framerate window.
Definition at line 1024 of file framerate_gui.cpp.
Referenced by MenuClickHelp().
|
static |
Resolve a string to a content type.
Definition at line 2095 of file console_cmds.cpp.
References CONTENT_TYPE_AI, CONTENT_TYPE_AI_LIBRARY, CONTENT_TYPE_BASE_GRAPHICS, CONTENT_TYPE_END, CONTENT_TYPE_HEIGHTMAP, CONTENT_TYPE_NEWGRF, CONTENT_TYPE_SCENARIO, and StrEqualsIgnoreCase().
|
static |
All the known authorized keys with their name.
Definition at line 1956 of file console_cmds.cpp.
|
static |
File storage cache for heightmaps.
Definition at line 107 of file console_cmds.cpp.
|
static |
File storage cache for savegames.
Definition at line 105 of file console_cmds.cpp.
|
static |
File storage cache for scenarios.
Definition at line 106 of file console_cmds.cpp.
|
static |
Script scheduled to execute by the 'schedule' console command (empty if no script is scheduled).
Definition at line 57 of file console_cmds.cpp.
|
static |
Timer that runs every month of game time for the 'schedule' console command.
Definition at line 60 of file console_cmds.cpp.
|
static |
Depth of scripts running (used to abort execution when #ConReturn is encountered).
Definition at line 54 of file console_cmds.cpp.