17#include "network/core/network_game_info.h"
45#include "3rdparty/fmt/chrono.h"
49#include "table/strings.h"
81static std::optional<T>
ParseType(std::string_view arg)
84 if (i.has_value())
return static_cast<T
>(*i);
81static std::optional<T>
ParseType(std::string_view arg) {
…}
134 if (echo)
IConsolePrint(
CC_ERROR,
"You cannot use this command because there is no network available.");
229 if (_game_mode == GM_MENU) {
245 IConsolePrint(
CC_HELP,
"Reset status data of all engines. This might solve some issues with 'lost' engines. Usage: 'resetengines'.");
261 IConsolePrint(
CC_HELP,
"Reset NewGRF allocations of engine slots. This will remove invalid engine definitions, and might make default engines available again.");
265 if (_game_mode == GM_MENU) {
284static bool ConResetTile(std::span<std::string_view> argv)
292 if (argv.size() == 2) {
311 switch (argv.size()) {
330 auto level = ParseInteger<std::underlying_type_t<ZoomLevel>>(argv[1]);
331 if (level.has_value()) {
332 auto zoom_lvl =
static_cast<ZoomLevel>(*level);
367 IConsolePrint(
CC_HELP,
"'instant' will immediately move and redraw viewport without smooth scrolling.");
370 if (argv.size() < 2)
return false;
372 uint32_t arg_index = 1;
373 bool instant =
false;
374 if (argv[arg_index] ==
"instant") {
379 switch (argv.size() - arg_index) {
382 if (result.has_value()) {
396 if (x.has_value() && y.has_value()) {
416static bool ConSave(std::span<std::string_view> argv)
423 if (argv.size() == 2) {
424 std::string filename = fmt::format(
"{}.sav", argv[1]);
416static bool ConSave(std::span<std::string_view> argv) {
…}
445 IConsolePrint(
CC_HELP,
"Saves the configuration for new games to the configuration file, typically 'openttd.cfg'.");
446 IConsolePrint(
CC_HELP,
"It does not save the configuration of the current game to the configuration file.");
455static bool ConLoad(std::span<std::string_view> argv)
462 if (argv.size() != 2)
return false;
464 std::string_view file = argv[1];
467 if (item !=
nullptr) {
481static bool ConLoadScenario(std::span<std::string_view> argv)
484 IConsolePrint(
CC_HELP,
"Load a scenario by name or index. Usage: 'load_scenario <file | number>'.");
488 if (argv.size() != 2)
return false;
490 std::string_view file = argv[1];
493 if (item !=
nullptr) {
507static bool ConLoadHeightmap(std::span<std::string_view> argv)
510 IConsolePrint(
CC_HELP,
"Load a heightmap by name or index. Usage: 'load_heightmap <file | number>'.");
514 if (argv.size() != 2)
return false;
516 std::string_view file = argv[1];
519 if (item !=
nullptr) {
533static bool ConRemove(std::span<std::string_view> argv)
540 if (argv.size() != 2)
return false;
542 std::string_view file = argv[1];
545 if (item !=
nullptr) {
559static bool ConListFiles(std::span<std::string_view> argv)
562 IConsolePrint(
CC_HELP,
"List all loadable savegames and directories in the current dir via console. Usage: 'ls | dir'.");
575static bool ConListScenarios(std::span<std::string_view> argv)
591static bool ConListHeightmaps(std::span<std::string_view> argv)
607static bool ConChangeDirectory(std::span<std::string_view> argv)
614 if (argv.size() != 2)
return false;
616 std::string_view file = argv[1];
619 if (item !=
nullptr) {
636static bool ConPrintWorkingDirectory(std::span<std::string_view> argv)
651static bool ConClearBuffer(std::span<std::string_view> argv)
658 IConsoleClearBuffer();
668static bool ConKickOrBan(std::string_view arg,
bool ban, std::string_view reason)
672 if (arg.find_first_of(
".:") == std::string::npos) {
673 auto client_id = ParseType<ClientID>(arg);
674 if (!client_id.has_value()) {
715static bool ConKick(std::span<std::string_view> argv)
718 IConsolePrint(
CC_HELP,
"Kick a client from a network game. Usage: 'kick <ip | client-id> [<kick-reason>]'.");
723 if (argv.size() != 2 && argv.size() != 3)
return false;
726 if (argv.size() == 2)
return ConKickOrBan(argv[1],
false, {});
729 size_t kick_message_length = argv[2].size();
730 if (kick_message_length >= 255) {
731 IConsolePrint(
CC_ERROR,
"Maximum kick message length is 254 characters. You entered {} characters.", kick_message_length);
734 return ConKickOrBan(argv[1],
false, argv[2]);
738static bool ConBan(std::span<std::string_view> argv)
741 IConsolePrint(
CC_HELP,
"Ban a client from a network game. Usage: 'ban <ip | client-id> [<ban-reason>]'.");
747 if (argv.size() != 2 && argv.size() != 3)
return false;
750 if (argv.size() == 2)
return ConKickOrBan(argv[1],
true, {});
753 size_t kick_message_length = argv[2].size();
754 if (kick_message_length >= 255) {
755 IConsolePrint(
CC_ERROR,
"Maximum kick message length is 254 characters. You entered {} characters.", kick_message_length);
758 return ConKickOrBan(argv[1],
true, argv[2]);
762static bool ConUnBan(std::span<std::string_view> argv)
765 IConsolePrint(
CC_HELP,
"Unban a client from a network game. Usage: 'unban <ip | banlist-index>'.");
770 if (argv.size() != 2)
return false;
794static bool ConBanList(std::span<std::string_view> argv)
812static bool ConPauseGame(std::span<std::string_view> argv)
819 if (_game_mode == GM_MENU) {
834static bool ConUnpauseGame(std::span<std::string_view> argv)
841 if (_game_mode == GM_MENU) {
860static bool ConRcon(std::span<std::string_view> argv)
863 IConsolePrint(
CC_HELP,
"Remote control the server from another client. Usage: 'rcon <password> <command>'.");
864 IConsolePrint(
CC_HELP,
"Remember to enclose the command in quotes, otherwise only the first parameter is sent.");
865 IConsolePrint(
CC_HELP,
"When your client's public key is in the 'authorized keys' for 'rcon', the password is not checked and may be '*'.");
869 if (argv.size() < 3)
return false;
879static bool ConStatus(std::span<std::string_view> argv)
882 IConsolePrint(
CC_HELP,
"List the status of all clients connected to the server. Usage 'status'.");
890static bool ConServerInfo(std::span<std::string_view> argv)
894 IConsolePrint(
CC_HELP,
"You can change these values by modifying settings 'network.max_clients' and 'network.max_companies'.");
906static bool ConClientNickChange(std::span<std::string_view> argv)
908 if (argv.size() != 3) {
909 IConsolePrint(
CC_HELP,
"Change the nickname of a connected client. Usage: 'client_name <client-id> <new-name>'.");
914 auto client_id = ParseType<ClientID>(argv[1]);
915 if (!client_id.has_value()) {
943static std::optional<CompanyID> ParseCompanyID(std::string_view arg)
945 auto company_id = ParseType<CompanyID>(arg);
946 if (company_id.has_value() && *company_id <= MAX_COMPANIES)
return static_cast<CompanyID>(*company_id - 1);
950static bool ConJoinCompany(std::span<std::string_view> argv)
952 if (argv.size() < 2) {
958 auto company_id = ParseCompanyID(argv[1]);
959 if (!company_id.has_value()) {
965 if (info ==
nullptr) {
972 IConsolePrint(
CC_ERROR,
"Company does not exist. Company-id must be between 1 and {}.", MAX_COMPANIES);
1001static bool ConMoveClient(std::span<std::string_view> argv)
1003 if (argv.size() < 3) {
1004 IConsolePrint(
CC_HELP,
"Move a client to another company. Usage: 'move <client-id> <company-id>'.");
1005 IConsolePrint(
CC_HELP,
"For valid client-id see 'clients', for valid company-id see 'companies', use 255 for moving to spectators.");
1009 auto client_id = ParseType<ClientID>(argv[1]);
1010 if (!client_id.has_value()) {
1016 auto company_id = ParseCompanyID(argv[2]);
1017 if (!company_id.has_value()) {
1023 if (ci ==
nullptr) {
1029 IConsolePrint(
CC_ERROR,
"Company does not exist. Company-id must be between 1 and {}.", MAX_COMPANIES);
1054static bool ConResetCompany(std::span<std::string_view> argv)
1057 IConsolePrint(
CC_HELP,
"Remove an idle company from the game. Usage: 'reset_company <company-id>'.");
1058 IConsolePrint(
CC_HELP,
"For company-id's, see the list of companies from the dropdown menu. Company 1 is 1, etc.");
1062 if (argv.size() != 2)
return false;
1064 auto index = ParseCompanyID(argv[1]);
1065 if (!index.has_value()) {
1072 IConsolePrint(
CC_ERROR,
"Company does not exist. company-id must be between 1 and {}.", MAX_COMPANIES);
1086 assert(ci !=
nullptr);
1099static bool ConNetworkClients(std::span<std::string_view> argv)
1102 IConsolePrint(
CC_HELP,
"Get a list of connected clients including their ID, name, company-id, and IP. Usage: 'clients'.");
1111static bool ConNetworkReconnect(std::span<std::string_view> argv)
1114 IConsolePrint(
CC_HELP,
"Reconnect to server to which you were connected last time. Usage: 'reconnect [<company-id>]'.");
1115 IConsolePrint(
CC_HELP,
"Company 255 is spectator (default, if not specified), 254 means creating new company.");
1121 if (argv.size() >= 2) {
1122 auto company_id = ParseCompanyID(argv[1]);
1123 if (!company_id.has_value()) {
1128 playas = *company_id;
1142static bool ConNetworkConnect(std::span<std::string_view> argv)
1145 IConsolePrint(
CC_HELP,
"Connect to a remote OTTD server and join the game. Usage: 'connect <ip>'.");
1146 IConsolePrint(
CC_HELP,
"IP can contain port and company: 'IP[:Port][#Company]', eg: 'server.ottd.org:443#2'.");
1147 IConsolePrint(
CC_HELP,
"Company #255 is spectator all others are a certain company with Company 1 being #1.");
1151 if (argv.size() < 2)
return false;
1160static bool ConExec(std::span<std::string_view> argv)
1164 IConsolePrint(
CC_HELP,
"By passing '0' after the script name, no warning about a missing script file will be shown.");
1168 if (argv.size() < 2)
return false;
1172 if (!script_file.has_value()) {
1173 if (argv.size() == 2 || argv[2] !=
"0")
IConsolePrint(
CC_ERROR,
"Script file '{}' not found.", argv[1]);
1178 IConsolePrint(
CC_ERROR,
"Maximum 'exec' depth reached; script A is calling script B is calling script C ... more than 10 times.");
1186 while (fgets(buffer,
sizeof(buffer), *script_file) !=
nullptr) {
1188 std::string_view cmdline{buffer};
1189 auto last_non_newline = cmdline.find_last_not_of(
"\r\n");
1190 if (last_non_newline != std::string_view::npos) cmdline = cmdline.substr(0, last_non_newline + 1);
1200 if (ferror(*script_file) != 0) {
1208static bool ConSchedule(std::span<std::string_view> argv)
1210 if (argv.size() < 3 || std::string_view(argv[1]) !=
"on-next-calendar-month") {
1211 IConsolePrint(
CC_HELP,
"Schedule a local script to execute later. Usage: 'schedule on-next-calendar-month <script>'.");
1222 std::string_view filename = std::string_view(argv[2]);
1224 IConsolePrint(
CC_INFO,
"Script file '{}' was already scheduled to execute at the start of next calendar month.", filename);
1228 IConsolePrint(
CC_INFO,
"Script file '{}' scheduled to execute at the start of next calendar month.", filename);
1237static bool ConReturn(std::span<std::string_view> argv)
1251extern bool CloseConsoleLogIfActive();
1252extern std::span<const GRFFile> GetAllGRFFiles();
1256static bool ConScript(std::span<std::string_view> argv)
1258 extern std::optional<FileHandle> _iconsole_output_file;
1261 IConsolePrint(
CC_HELP,
"Start or stop logging console output to a file. Usage: 'script <filename>'.");
1266 if (!CloseConsoleLogIfActive()) {
1267 if (argv.size() < 2)
return false;
1270 if (!_iconsole_output_file.has_value()) {
1280static bool ConEcho(std::span<std::string_view> argv)
1287 if (argv.size() < 2)
return false;
1292static bool ConEchoC(std::span<std::string_view> argv)
1295 IConsolePrint(
CC_HELP,
"Print back the first argument to the console in a given colour. Usage: 'echoc <colour> <arg2>'.");
1299 if (argv.size() < 3)
return false;
1302 if (!colour.has_value() || !
IsInsideMM(*colour, TC_BEGIN, TC_END)) {
1311static bool ConNewGame(std::span<std::string_view> argv)
1315 IConsolePrint(
CC_HELP,
"The server can force a new game using 'newgame'; any client joined will rejoin after the server is done generating the new game.");
1320 if (argv.size() >= 2) {
1322 if (!param.has_value()) {
1333static bool ConRestart(std::span<std::string_view> argv)
1335 if (argv.empty() || argv.size() > 2) {
1337 IConsolePrint(
CC_HELP,
"Restarts a game, using either the current or newgame (default) settings.");
1338 IConsolePrint(
CC_HELP,
" * if you started from a new game, and your current/newgame settings haven't changed, the game will be identical to when you started it.");
1339 IConsolePrint(
CC_HELP,
" * if you started from a savegame / scenario / heightmap, the game might be different, because the current/newgame settings might differ.");
1343 if (argv.size() == 1 || std::string_view(argv[1]) ==
"newgame") {
1354static bool ConReload(std::span<std::string_view> argv)
1380 std::istringstream in(full_string);
1382 while (std::getline(in, line)) {
1387template <
typename F,
typename ... Args>
1388bool PrintList(F list_function, Args... args)
1390 std::string output_str;
1391 auto inserter = std::back_inserter(output_str);
1392 list_function(inserter, args...);
1398static bool ConListAILibs(std::span<std::string_view> argv)
1408static bool ConListAI(std::span<std::string_view> argv)
1418static bool ConListGameLibs(std::span<std::string_view> argv)
1428static bool ConListGame(std::span<std::string_view> argv)
1438static bool ConStartAI(std::span<std::string_view> argv)
1440 if (argv.empty() || argv.size() > 3) {
1442 IConsolePrint(
CC_HELP,
"Start a new AI. If <AI> is given, it starts that specific AI (if found).");
1443 IConsolePrint(
CC_HELP,
"If <settings> is given, it is parsed and the AI settings are set to that.");
1447 if (_game_mode != GM_NORMAL) {
1473 if (c->index != n)
break;
1478 if (argv.size() >= 2) {
1479 config->
Change(argv[1], -1,
false);
1487 if (consumer.AnyBytesLeft()) {
1488 auto version = consumer.TryReadIntegerBase<uint32_t>(10);
1489 if (!version.has_value()) {
1493 config->
Change(name, *version,
true);
1501 if (argv.size() == 3) {
1512static bool ConReloadAI(std::span<std::string_view> argv)
1514 if (argv.size() != 2) {
1516 IConsolePrint(
CC_HELP,
"Reload the AI with the given company id. For company-id's, see the list of companies from the dropdown menu. Company 1 is 1, etc.");
1520 if (_game_mode != GM_NORMAL) {
1530 auto company_id = ParseCompanyID(argv[1]);
1531 if (!company_id.has_value()) {
1555static bool ConStopAI(std::span<std::string_view> argv)
1557 if (argv.size() != 2) {
1559 IConsolePrint(
CC_HELP,
"Stop the AI with the given company id. For company-id's, see the list of companies from the dropdown menu. Company 1 is 1, etc.");
1563 if (_game_mode != GM_NORMAL) {
1573 auto company_id = ParseCompanyID(argv[1]);
1574 if (!company_id.has_value()) {
1597static bool ConRescanAI(std::span<std::string_view> argv)
1614static bool ConRescanGame(std::span<std::string_view> argv)
1631static bool ConRescanNewGRF(std::span<std::string_view> argv)
1639 IConsolePrint(
CC_ERROR,
"NewGRF scanning is already running. Please wait until completed to run again.");
1645static bool ConGetSeed(std::span<std::string_view> argv)
1649 IConsolePrint(
CC_HELP,
"The seed can be used to reproduce the exact same map as the game started with.");
1657static bool ConGetDate(std::span<std::string_view> argv)
1660 IConsolePrint(
CC_HELP,
"Returns the current date (year-month-day) of the game. Usage: 'getdate'.");
1669static bool ConGetSysDate(std::span<std::string_view> argv)
1672 IConsolePrint(
CC_HELP,
"Returns the current date (year-month-day) of your system. Usage: 'getsysdate'.");
1680static bool ConAlias(std::span<std::string_view> argv)
1685 IConsolePrint(
CC_HELP,
"Add a new alias, or redefine the behaviour of an existing alias . Usage: 'alias <name> <command>'.");
1689 if (argv.size() < 3)
return false;
1692 if (alias ==
nullptr) {
1700static bool ConScreenShot(std::span<std::string_view> argv)
1703 IConsolePrint(
CC_HELP,
"Create a screenshot of the game. Usage: 'screenshot [viewport | normal | big | giant | heightmap | minimap] [no_con] [size <width> <height>] [<filename>]'.");
1704 IConsolePrint(
CC_HELP,
" 'viewport' (default) makes a screenshot of the current viewport (including menus, windows).");
1708 IConsolePrint(
CC_HELP,
" 'heightmap' makes a heightmap screenshot of the map that can be loaded in as heightmap.");
1709 IConsolePrint(
CC_HELP,
" 'minimap' makes a top-viewed minimap screenshot of the whole world which represents one tile by one pixel.");
1710 IConsolePrint(
CC_HELP,
" 'no_con' hides the console to create the screenshot (only useful in combination with 'viewport').");
1711 IConsolePrint(
CC_HELP,
" 'size' sets the width and height of the viewport to make a screenshot of (only useful in combination with 'normal' or 'big').");
1712 IConsolePrint(
CC_HELP,
" A filename ending in # will prevent overwriting existing files and will number files counting upwards.");
1716 if (argv.size() > 7)
return false;
1720 uint32_t height = 0;
1722 uint32_t arg_index = 1;
1724 if (argv.size() > arg_index) {
1725 if (argv[arg_index] ==
"viewport") {
1728 }
else if (argv[arg_index] ==
"normal") {
1731 }
else if (argv[arg_index] ==
"big") {
1734 }
else if (argv[arg_index] ==
"giant") {
1737 }
else if (argv[arg_index] ==
"heightmap") {
1740 }
else if (argv[arg_index] ==
"minimap") {
1746 if (argv.size() > arg_index && argv[arg_index] ==
"no_con") {
1755 if (argv.size() > arg_index + 2 && argv[arg_index] ==
"size") {
1762 if (!t.has_value()) {
1769 if (!t.has_value()) {
1777 if (argv.size() > arg_index) {
1779 name = argv[arg_index];
1783 if (argv.size() > arg_index) {
1792static bool ConInfoCmd(std::span<std::string_view> argv)
1795 IConsolePrint(
CC_HELP,
"Print out debugging information about a command. Usage: 'info_cmd <cmd>'.");
1799 if (argv.size() < 2)
return false;
1802 if (cmd ==
nullptr) {
1814static bool ConDebugLevel(std::span<std::string_view> argv)
1817 IConsolePrint(
CC_HELP,
"Get/set the default debugging level for the game. Usage: 'debug_level [<level>]'.");
1818 IConsolePrint(
CC_HELP,
"Level can be any combination of names, levels. Eg 'net=5 ms=4'. Remember to enclose it in \"'\"s.");
1822 if (argv.size() > 2)
return false;
1824 if (argv.size() == 1) {
1833static bool ConExit(std::span<std::string_view> argv)
1846static bool ConPart(std::span<std::string_view> argv)
1849 IConsolePrint(
CC_HELP,
"Leave the currently joined/running game (only ingame). Usage: 'part'.");
1853 if (_game_mode != GM_NORMAL)
return false;
1864static bool ConHelp(std::span<std::string_view> argv)
1866 if (argv.size() == 2) {
1871 if (cmd !=
nullptr) {
1877 if (alias !=
nullptr) {
1879 if (cmd !=
nullptr) {
1891 IConsolePrint(TC_LIGHT_BLUE,
" ---- OpenTTD Console Help ---- ");
1903static bool ConListCommands(std::span<std::string_view> argv)
1912 if (argv.size() <= 1|| cmd->
name.find(argv[1]) != std::string::npos) {
1920static bool ConListAliases(std::span<std::string_view> argv)
1927 for (
auto &it :
IConsole::Aliases()) {
1929 if (argv.size() <= 1 || alias->
name.find(argv[1]) != std::string::npos) {
1937static bool ConCompanies(std::span<std::string_view> argv)
1946 std::string company_name =
GetString(STR_COMPANY_NAME, c->index);
1949 IConsolePrint(
CC_INFO,
"#:{}({}) Company Name: '{}' Year Founded: {} Money: {} Loan: {} Value: {} (T:{}, R:{}, P:{}, S:{}) {}",
1950 c->index + 1, colour, company_name,
1951 c->inaugurated_year, (int64_t)c->money, (int64_t)c->current_loan, (int64_t)
CalculateCompanyValue(c),
1953 c->group_all[
VEH_ROAD].num_vehicle,
1955 c->group_all[
VEH_SHIP].num_vehicle,
1956 c->is_ai ?
"AI" :
"");
1962static bool ConSay(std::span<std::string_view> argv)
1965 IConsolePrint(
CC_HELP,
"Chat to your fellow players in a multiplayer game. Usage: 'say \"<msg>\"'.");
1969 if (argv.size() != 2)
return false;
1981static bool ConSayCompany(std::span<std::string_view> argv)
1984 IConsolePrint(
CC_HELP,
"Chat to a certain company in a multiplayer game. Usage: 'say_company <company-no> \"<msg>\"'.");
1985 IConsolePrint(
CC_HELP,
"CompanyNo is the company that plays as company <companyno>, 1 through max_companies.");
1989 if (argv.size() != 3)
return false;
1991 auto company_id = ParseCompanyID(argv[1]);
1992 if (!company_id.has_value()) {
2012static bool ConSayClient(std::span<std::string_view> argv)
2015 IConsolePrint(
CC_HELP,
"Chat to a certain client in a multiplayer game. Usage: 'say_client <client-id> \"<msg>\"'.");
2020 if (argv.size() != 3)
return false;
2022 auto client_id = ParseType<ClientID>(argv[1]);
2023 if (!client_id.has_value()) {
2045enum ConNetworkAuthorizedKeyAction : uint8_t {
2051static void PerformNetworkAuthorizedKeyAction(std::string_view name,
NetworkAuthorizedKeys *authorized_keys, ConNetworkAuthorizedKeyAction action,
const std::string &authorized_key,
CompanyID company = CompanyID::Invalid())
2060 if (authorized_keys->
Contains(authorized_key)) {
2065 if (company == CompanyID::Invalid()) {
2066 authorized_keys->
Add(authorized_key);
2075 if (!authorized_keys->
Contains(authorized_key)) {
2080 if (company == CompanyID::Invalid()) {
2081 authorized_keys->
Remove(authorized_key);
2091static bool ConNetworkAuthorizedKey(std::span<std::string_view> argv)
2093 if (argv.size() <= 2) {
2094 IConsolePrint(
CC_HELP,
"List and update authorized keys. Usage: 'authorized_key list [type]|add [type] [key]|remove [type] [key]'.");
2097 IConsolePrint(
CC_HELP,
" remove: remove the given key from the authorized keys of the given type; use 'all' to remove all authorized keys.");
2098 IConsolePrint(
CC_HELP,
"Instead of a key, use 'client:<id>' to add/remove the key of that given client.");
2106 ConNetworkAuthorizedKeyAction action;
2107 std::string_view action_string = argv[1];
2109 action = CNAKA_LIST;
2113 action = CNAKA_REMOVE;
2119 std::string authorized_key;
2120 if (action != CNAKA_LIST) {
2121 if (argv.size() <= 3) {
2126 authorized_key = argv[3];
2128 auto value = ParseInteger<uint32_t>(authorized_key.substr(7));
2130 if (!value.has_value() || authorized_key.empty()) {
2142 std::string_view type = argv[2];
2144 for (
auto [name, authorized_keys] :
_console_cmd_authorized_keys) PerformNetworkAuthorizedKeyAction(name, authorized_keys, action, authorized_key);
2145 for (
Company *c :
Company::Iterate()) PerformNetworkAuthorizedKeyAction(fmt::format(
"company:{}", c->index + 1), &c->allow_list, action, authorized_key, c->index);
2150 auto value = ParseInteger<uint32_t>(type.substr(8));
2157 PerformNetworkAuthorizedKeyAction(type, &c->
allow_list, action, authorized_key, c->
index);
2164 PerformNetworkAuthorizedKeyAction(name, authorized_keys, action, authorized_key);
2174#if defined(WITH_ZLIB)
2180 static const std::initializer_list<std::pair<std::string_view, ContentType>> content_types = {
2188 for (
const auto &ct : content_types) {
2218 static const std::string_view types[] = {
"Base graphics",
"NewGRF",
"AI",
"AI library",
"Scenario",
"Heightmap",
"Base sound",
"Base music",
"Game script",
"GS library" };
2220 static const std::string_view states[] = {
"Not selected",
"Selected",
"Dep Selected",
"Installed",
"Unknown" };
2223 IConsolePrint(state_to_colour[
to_underlying(ci.
state)],
"{}, {}, {}, {}, {:08X}, {}", ci.
id, types[ci.
type - 1], states[
to_underlying(ci.
state)], ci.
name, ci.
unique_id,
FormatArrayAsHex(ci.
md5sum));
2226static bool ConContent(std::span<std::string_view> argv)
2234 if (argv.size() <= 1) {
2235 IConsolePrint(
CC_HELP,
"Query, select and download content. Usage: 'content update|upgrade|select [id]|unselect [all|id]|state [filter]|download'.");
2238 IConsolePrint(
CC_HELP,
" select: select a specific item given by its id. If no parameter is given, all selected content will be listed.");
2239 IConsolePrint(
CC_HELP,
" unselect: unselect a specific item given by its id or 'all' to unselect all.");
2240 IConsolePrint(
CC_HELP,
" state: show the download/select state of all downloadable content. Optionally give a filter string.");
2256 if (argv.size() <= 2) {
2271 }
else if (
auto content_id = ParseType<ContentID>(argv[2]); content_id.has_value()) {
2280 if (argv.size() <= 2) {
2286 }
else if (
auto content_id = ParseType<ContentID>(argv[2]); content_id.has_value()) {
2315static bool ConFont(std::span<std::string_view> argv)
2321 IConsolePrint(
CC_HELP,
" The \"Currently active\" configuration is the one actually in effect (after interface scaling and replacing unavailable fonts).");
2322 IConsolePrint(
CC_HELP,
" The \"Requested\" configuration is the one requested via console command or config file.");
2326 IConsolePrint(
CC_HELP,
" Set <font name> to \"\" for the default font. Note that <size> has no effect if the default font is in use, and fixed defaults are used instead.");
2327 IConsolePrint(
CC_HELP,
" If the sprite font is enabled in Game Options, it is used instead of the default font.");
2328 IConsolePrint(
CC_HELP,
" The <size> is automatically multiplied by the current interface scaling.");
2333 for (argfs =
FS_BEGIN; argfs < FS_END; argfs++) {
2338 if (argv.size() > 1 && argfs == FS_END)
return false;
2340 if (argv.size() > 2) {
2342 std::string font = setting->
font;
2343 uint size = setting->
size;
2344 uint8_t arg_index = 2;
2348 font = argv[arg_index++];
2351 if (argv.size() > arg_index) {
2354 if (v.has_value()) {
2360 SetFont(argfs, font, size);
2379static bool ConSetting(std::span<std::string_view> argv)
2387 if (argv.size() == 1 || argv.size() > 3)
return false;
2389 if (argv.size() == 2) {
2392 IConsoleSetSetting(argv[1], argv[2]);
2398static bool ConSettingNewgame(std::span<std::string_view> argv)
2401 IConsolePrint(
CC_HELP,
"Change setting for the next game. Usage: 'setting_newgame <name> [<value>]'.");
2406 if (argv.size() == 1 || argv.size() > 3)
return false;
2408 if (argv.size() == 2) {
2411 IConsoleSetSetting(argv[1], argv[2],
true);
2417static bool ConListSettings(std::span<std::string_view> argv)
2424 if (argv.size() > 2)
return false;
2430static bool ConGamelogPrint(std::span<std::string_view> argv)
2433 IConsolePrint(
CC_HELP,
"Print logged fundamental changes to the game since the start. Usage: 'gamelog'.");
2441static bool ConNewGRFReload(std::span<std::string_view> argv)
2444 IConsolePrint(
CC_HELP,
"Reloads all active NewGRFs from disk. Equivalent to reapplying NewGRFs via the settings, but without asking for confirmation. This might crash OpenTTD!");
2454 struct SubdirNameMap {
2456 std::string_view name;
2459 static const SubdirNameMap subdir_name_map[] = {
2476 if (argv.size() != 2) {
2477 IConsolePrint(
CC_HELP,
"List all search paths or default directories for various categories.");
2479 std::string cats{subdir_name_map[0].name};
2481 for (
const SubdirNameMap &sdn : subdir_name_map) {
2492 std::set<std::string> seen_dirs;
2493 for (
const SubdirNameMap &sdn : subdir_name_map) {
2498 std::string path = FioGetDirectory(sp, sdn.subdir);
2500 if (seen_dirs.find(path) != seen_dirs.end())
continue;
2501 seen_dirs.insert(path);
2506 if (!sdn.default_only || exists) {
2508 if (sdn.default_only)
break;
2521static bool ConNewGRFProfile(std::span<std::string_view> argv)
2524 IConsolePrint(
CC_HELP,
"Collect performance data about NewGRF sprite requests and callbacks. Sub-commands can be abbreviated.");
2530 IConsolePrint(
CC_HELP,
" Unselect one or more GRFs from profiling. Use the keyword \"all\" instead of a GRF number to unselect all. Removing an active profiler aborts data collection.");
2532 IConsolePrint(
CC_HELP,
" Begin profiling all selected GRFs. If a number of ticks is provided, profiling stops after that many game ticks. There are 74 ticks in a calendar day.");
2540 std::span<const GRFFile> files = GetAllGRFFiles();
2546 for (
const auto &grf : files) {
2548 bool selected = profiler != _newgrf_profilers.end();
2549 bool active = selected && profiler->active;
2551 std::string_view statustext = active ?
" (active)" : selected ?
" (selected)" :
"";
2552 IConsolePrint(tc,
"{}: [{:08X}] {}{}", i, std::byteswap(grf.grfid), grf.filename, statustext);
2560 for (
size_t argnum = 2; argnum < argv.size(); ++argnum) {
2562 if (!grfnum.has_value() || *grfnum < 1 ||
static_cast<size_t>(*grfnum) > files.size()) {
2566 const GRFFile *grf = &files[*grfnum - 1];
2567 if (std::any_of(_newgrf_profilers.begin(), _newgrf_profilers.end(), [&](
NewGRFProfiler &pr) { return pr.grffile == grf; })) {
2568 IConsolePrint(
CC_WARNING,
"GRF number {} [{:08X}] is already selected for profiling.", *grfnum, std::byteswap(grf->grfid));
2571 _newgrf_profilers.emplace_back(grf);
2578 for (
size_t argnum = 2; argnum < argv.size(); ++argnum) {
2580 _newgrf_profilers.clear();
2584 if (!grfnum.has_value() || *grfnum < 1 ||
static_cast<size_t>(*grfnum) > files.size()) {
2588 const GRFFile *grf = &files[*grfnum - 1];
2603 if (!grfids.empty()) grfids +=
", ";
2604 format_append(grfids,
"[{:08X}]", std::byteswap(pr.
grffile->grfid));
2610 if (argv.size() >= 3) {
2612 if (!ticks.has_value()) {
2613 IConsolePrint(
CC_ERROR,
"No valid amount of ticks was given, profiling will not stop automatically.");
2619 }
else if (_newgrf_profilers.empty()) {
2622 IConsolePrint(
CC_ERROR,
"Did not start profiling for any GRFs, all selected GRFs are already profiling.");
2629 NewGRFProfiler::FinishAll();
2650static void IConsoleDebugLibRegister()
2658static bool ConFramerate(std::span<std::string_view> argv)
2669static bool ConFramerateWindow(std::span<std::string_view> argv)
2694 if (std::isgraph(
GB(label, 24, 8)) && std::isgraph(
GB(label, 16, 8)) && std::isgraph(
GB(label, 8, 8)) && std::isgraph(
GB(label, 0, 8))) {
2695 return fmt::format(
"{:c}{:c}{:c}{:c}",
GB(label, 24, 8),
GB(label, 16, 8),
GB(label, 8, 8),
GB(label, 0, 8));
2698 return fmt::format(
"{:08X}", std::byteswap(label));
2701static void ConDumpRoadTypes()
2710 std::map<uint32_t, const GRFFile *> grfs;
2713 if (rti->
label == 0)
continue;
2716 if (grf !=
nullptr) {
2718 grfs.emplace(grfid, grf);
2722 RoadTypeIsTram(rt) ?
"Tram" :
"Road",
2730 GetStringPtr(rti->strings.name)
2733 for (
const auto &grf : grfs) {
2738static void ConDumpRailTypes()
2748 std::map<uint32_t, const GRFFile *> grfs;
2751 if (rti->
label == 0)
continue;
2754 if (grf !=
nullptr) {
2756 grfs.emplace(grfid, grf);
2768 GetStringPtr(rti->strings.name)
2771 for (
const auto &grf : grfs) {
2776static void ConDumpCargoTypes()
2796 std::map<uint32_t, const GRFFile *> grfs;
2799 const GRFFile *grf = spec->grffile;
2800 if (grf !=
nullptr) {
2802 grfs.emplace(grfid, grf);
2804 IConsolePrint(
CC_DEFAULT,
" {:02d} Bit: {:2d}, Label: {}, Callback mask: 0x{:02X}, Cargo class: {}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}, GRF: {:08X}, {}",
2808 spec->callback_mask.base(),
2826 GetStringPtr(spec->name)
2829 for (
const auto &grf : grfs) {
2834static bool ConDumpInfo(std::span<std::string_view> argv)
2836 if (argv.size() != 2) {
2854 ConDumpCargoTypes();
2865void IConsoleStdLibRegister()
2941#if defined(WITH_ZLIB)
2997 IConsoleDebugLibRegister();
Base functions for all AIs.
AIConfig stores the configuration settings of every AI.
constexpr enable_if_t< is_integral_v< T >, T > byteswap(T x) noexcept
Custom implementation of std::byteswap; remove once we build with C++23.
debug_inline static constexpr uint GB(const T x, const uint8_t s, const uint8_t n)
Fetch n bits from x, started at bit s.
@ NotPourable
Not Pourable (open wagon, but not hopper wagon)
@ Powderized
Powderized, moist protected (powder/silo wagon)
@ Hazardous
Hazardous cargo (Nuclear Fuel, Explosives, etc.)
@ NonPotable
Non-potable / non-food / dirty.
@ Bulk
Bulk cargo (Coal, Grain etc., Ores, Fruit)
@ Liquid
Liquids (Oil, Water, Rubber)
@ Potable
Potable / food / clean.
@ Oversized
Oversized (stake/flatbed wagon)
@ Armoured
Armoured cargo (Valuables, Gold, Diamonds)
@ Refrigerated
Refrigerated cargo (Food, Fruit)
@ Express
Express cargo (Goods, Food, Candy, but also possible for passengers)
@ Special
Special bit used for livery refit tricks instead of normal cargoes.
@ PieceGoods
Piece goods (Livestock, Wood, Steel, Paper)
@ Covered
Covered/Sheltered Freight (Transportation in Box Vans, Silo Wagons, etc.)
static AIConfig * GetConfig(CompanyID company, ScriptSettingSource source=SSS_DEFAULT)
Get the config of a company.
static void GetConsoleLibraryList(std::back_insert_iterator< std::string > &output_iterator)
Wrapper function for AIScanner::GetAIConsoleLibraryList.
static void GetConsoleList(std::back_insert_iterator< std::string > &output_iterator, bool newest_only)
Wrapper function for AIScanner::GetAIConsoleList.
static bool CanStartNew()
Is it possible to start a new AI company?
static void Rescan()
Rescans all searchpaths for available AIs.
constexpr bool Test(Tvalue_type value) const
Test if the value-th bit is set.
constexpr bool Any(const Timpl &other) const
Test if any of the given values are set.
void SelectUpgrade()
Select everything that's an update for something we've got.
void DownloadSelectedContent(uint &files, uint &bytes, bool fallback=false)
Actually begin downloading the content we selected.
void Select(ContentID cid)
Select a specific content id.
void UnselectAll()
Unselect everything that we've not downloaded so far.
void RequestContentList(ContentType type)
Request the content list for the given type.
void AddCallback(ContentCallback *cb)
Add a callback to this class.
void Unselect(ContentID cid)
Unselect a specific content id.
static bool IsConnected()
Check whether the client is actually connected (and in the game).
File list storage for the console, for caching the last 'ls' command.
void ValidateFileList(bool force_reload=false)
(Re-)validate the file storage cache.
bool file_list_valid
If set, the file list is valid.
AbstractFileType abstract_filetype
The abstract file type to list.
void InvalidateFileList()
Declare the file storage cache as being invalid, also clears all stored files.
bool show_dirs
Whether to show directories in the file list.
static std::optional< FileHandle > Open(const std::string &filename, std::string_view mode)
Open an RAII file handle if possible.
List of file information.
void BuildFileList(AbstractFileType abstract_filetype, SaveLoadOperation fop, bool show_dirs)
Construct a file list with the given kind of files, for the stated purpose.
const FiosItem * FindItem(std::string_view file)
Find file information of a file by its name from the file list.
Font cache for basic fonts.
virtual std::string GetFontName()=0
Get the name of this font.
bool HasParent()
Check whether the font cache has a parent.
virtual int GetFontSize() const
Get the nominal font size of the font.
static FontCache * Get(FontSize fs)
Get the font cache of a given font size.
static void GetConsoleList(std::back_insert_iterator< std::string > &output_iterator, bool newest_only)
Wrapper function for GameScanner::GetConsoleList.
static void GetConsoleLibraryList(std::back_insert_iterator< std::string > &output_iterator)
Wrapper function for GameScanner::GetConsoleLibraryList.
void PrintConsole()
Print the gamelog data to the console.
An interval timer will fire every interval, and will continue to fire until it is deleted.
Simple helper to (more easily) manage authorized keys.
bool Contains(std::string_view key) const
Check whether the given key is contains in these authorized keys.
bool Add(std::string_view key)
Add the given key to the authorized keys, when it is not already contained.
bool Remove(std::string_view key)
Remove the given key from the authorized keys, when it is exists.
This struct contains all the info that is needed to draw and construct tracks.
RailTypeLabel label
Unique 32 bit rail type identifier.
RailTypeFlags flags
Bit mask of rail type flags.
const GRFFile * grffile[RTSG_END]
NewGRF providing the Action3 for the railtype.
RoadTypeLabel label
Unique 32 bit road type identifier.
const GRFFile * grffile[ROTSG_END]
NewGRF providing the Action3 for the roadtype.
bool HasScript() const
Is this config attached to an Script? In other words, is there a Script that is assigned to this slot...
void Change(std::optional< std::string_view > name, int version=-1, bool force_exact_match=false)
Set another Script to be loaded in this slot.
void StringToSettings(std::string_view value)
Convert a string which is stored in the config file or savegames to custom settings of this Script.
Parse data from a string / buffer.
std::optional< T > TryReadIntegerBase(int base, bool clamp=false)
Try to read and parse an integer in number 'base', and then advance the reader.
std::string_view ReadUntilChar(char c, SeparatorUsage sep)
Read data until the first occurrence of 8-bit char 'c', and advance reader.
@ SKIP_ONE_SEPARATOR
Read and discard one separator, do not include it in the result.
static const std::string_view WHITESPACE_NO_NEWLINE
ASCII whitespace characters, excluding new-line.
static YearMonthDay ConvertDateToYMD(Date date)
Converts a Date to a Year, Month & Day.
static Date date
Current date in days (day counter).
Functions related to commands.
Commands
List of commands.
Money CalculateCompanyValue(const Company *c, bool including_loan=true)
Calculate the value of the company.
ReferenceThroughBaseContainer< std::array< Colours, MAX_COMPANIES > > _company_colours
NOSAVE: can be determined from company structs.
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
CompanyID _current_company
Company currently doing an action.
Command definitions related to companies.
Functions related to companies.
@ CCA_NEW_AI
Create a new AI company.
@ CCA_DELETE
Delete a company.
static constexpr CompanyID COMPANY_SPECTATOR
The client is spectating.
@ CALCA_REMOVE
Remove a public key.
@ CALCA_ADD
Create a public key.
static constexpr CompanyID COMPANY_NEW_COMPANY
The client wants a new company.
@ CRR_NONE
Dummy reason for actions that don't need one.
@ CRR_MANUAL
The company is manually removed.
static const uint NETWORK_PUBLIC_KEY_LENGTH
The maximum length of the hexadecimal encoded public keys, in bytes including '\0'.
void IConsoleCmdExec(std::string_view command_string, const uint recurse_count)
Execute a given command passed to us.
void IConsolePrint(TextColour colour_code, const std::string &string)
Handle the printing of text entered into the console or redirected there by any other means.
static void OutputContentState(const ContentInfo &ci)
Outputs content state information to console.
static const std::initializer_list< std::pair< std::string_view, NetworkAuthorizedKeys * > > _console_cmd_authorized_keys
All the known authorized keys with their name.
static std::string _scheduled_monthly_script
Script scheduled to execute by the 'schedule' console command (empty if no script is scheduled).
static bool ConScrollToTile(std::span< std::string_view > argv)
Scroll to a tile on the map.
static bool ConSaveConfig(std::span< std::string_view > argv)
Explicitly save the configuration.
void ShowFramerateWindow()
Open the general framerate window.
static bool ConResetEngines(std::span< std::string_view > argv)
Reset status of all engines.
static std::optional< T > ParseType(std::string_view arg)
Parse an integer using ParseInteger and convert it to the requested type.
static bool ConListDirs(std::span< std::string_view > argv)
static bool ConResetEnginePool(std::span< std::string_view > argv)
Reset status of the engine pool.
static ConsoleHookResult ConHookServerOrNoNetwork(bool echo)
Check if are either in singleplayer or a server.
static ConsoleFileList _console_file_list_scenario
File storage cache for scenarios.
static ConsoleFileList _console_file_list_heightmap
File storage cache for heightmaps.
static ConsoleHookResult ConHookServerOnly(bool echo)
Check whether we are a server.
static const IntervalTimer< TimerGameCalendar > _scheduled_monthly_timer
Timer that runs every month of game time for the 'schedule' console command.
static std::string FormatLabel(uint32_t label)
Format a label as a string.
static bool ConSave(std::span< std::string_view > argv)
Save the map to a file.
void ConPrintFramerate()
Print performance statistics to game console.
static ConsoleHookResult ConHookNeedNetwork(bool echo)
Check whether we are in a multiplayer game.
static ConsoleHookResult ConHookClientOnly(bool echo)
Check whether we are a client in a network game.
static bool ConZoomToLevel(std::span< std::string_view > argv)
Zoom map to given level.
static ContentType StringToContentType(std::string_view str)
Resolve a string to a content type.
static uint _script_current_depth
Depth of scripts running (used to abort execution when ConReturn is encountered).
static bool NetworkAvailable(bool echo)
Check network availability and inform in console about failure of detection.
static ConsoleHookResult ConHookNeedNonDedicatedNetwork(bool echo)
Check whether we are in a multiplayer game and are playing, i.e.
static ConsoleFileList _console_file_list_savegame
File storage cache for savegames.
static ConsoleHookResult ConHookNoNetwork(bool echo)
Check whether we are in singleplayer mode.
static void PrintLineByLine(const std::string &full_string)
Print a text buffer line by line to the console.
Console functions used outside of the console code.
void IConsoleClose()
Close the in-game console.
Internally used functions for the console.
ConsoleHookResult
Return values of console hooks (IConsoleHook).
@ CHR_HIDE
Hide the existence of the command.
@ CHR_DISALLOW
Disallow command execution.
@ CHR_ALLOW
Allow command execution.
static const uint ICON_CMDLN_SIZE
maximum length of a typed in command
static const TextColour CC_HELP
Colour for help lines.
static const TextColour CC_WHITE
White console lines for various things such as the welcome.
static const TextColour CC_INFO
Colour for information lines.
static const TextColour CC_COMMAND
Colour for the console's commands.
static const TextColour CC_WARNING
Colour for warning lines.
static const TextColour CC_DEBUG
Colour for debug output.
static const TextColour CC_DEFAULT
Default colour of the console.
static const TextColour CC_ERROR
Colour for error lines.
void SetDebugString(std::string_view s, SetDebugStringErrorFunc error_func)
Set debugging levels by parsing the text in s.
std::string GetDebugString()
Print out the current debug-level.
Functions related to debugging.
void StartupEngines()
Start/initialise all our engines.
Functions related to engines.
constexpr std::underlying_type_t< enum_type > to_underlying(enum_type e)
Implementation of std::to_underlying (from C++23)
bool FioRemove(const std::string &filename)
Remove a file.
std::optional< FileHandle > FioFOpenFile(std::string_view filename, std::string_view mode, Subdirectory subdir, size_t *filesize)
Opens a OpenTTD file somewhere in a personal or global directory.
bool FileExists(std::string_view filename)
Test whether the given filename exists.
bool FioCheckFileExists(std::string_view filename, Subdirectory subdir)
Check whether the given file exists.
Functions for Standard In/Out file operations.
@ SLO_SAVE
File is being saved.
@ SLO_LOAD
File is being loaded.
@ DFT_FIOS_DRIVE
A drive (letter) entry.
@ DFT_GAME_FILE
Save game or scenario file.
@ DFT_FIOS_DIR
A directory entry.
@ DFT_FIOS_PARENT
A parent directory entry.
Searchpath
Types of searchpaths OpenTTD might use.
Subdirectory
The different kinds of subdirectories OpenTTD uses.
@ AI_LIBRARY_DIR
Subdirectory for all AI libraries.
@ SCREENSHOT_DIR
Subdirectory for all screenshots.
@ SOCIAL_INTEGRATION_DIR
Subdirectory for all social integration plugins.
@ GAME_LIBRARY_DIR
Subdirectory for all GS libraries.
@ AI_DIR
Subdirectory for all AI files.
@ SCENARIO_DIR
Base directory for all scenarios.
@ BASE_DIR
Base directory for all subdirectories.
@ SAVE_DIR
Base directory for all savegames.
@ HEIGHTMAP_DIR
Subdirectory of scenario for heightmaps.
@ NEWGRF_DIR
Subdirectory for all NewGRFs.
@ AUTOSAVE_DIR
Subdirectory of save for autosaves.
@ BASESET_DIR
Subdirectory for all base data (base sets, intro game)
@ GAME_DIR
Subdirectory for all game scripts.
AbstractFileType
The different abstract types of files that the system knows about.
@ FT_SCENARIO
old or new scenario
@ FT_HEIGHTMAP
heightmap file
@ FT_SAVEGAME
old or new savegame
@ FT_INVALID
Invalid or unknown file type.
std::string FiosGetCurrentPath()
Get the current path/working directory.
bool FiosBrowseTo(const FiosItem *item)
Browse to a new path based on the passed item, starting at _fios_path.
Declarations for savegames operations.
void InitFontCache(bool monospace)
(Re)initialize the font cache related things, i.e.
Functions to read fonts from files and cache them.
FontCacheSubSetting * GetFontCacheSubSetting(FontSize fs)
Get the settings of a given font size.
Base functions for all Games.
Gamelog _gamelog
Gamelog instance.
Functions to be called to log fundamental changes to the game.
Functions related to world/map generation.
static const uint32_t GENERATE_NEW_SEED
Create a new random seed.
void StartNewGameWithoutGUI(uint32_t seed)
Start a normal game without the GUI.
PauseModes _pause_mode
The current pause mode.
SwitchMode _switch_mode
The next mainloop command.
FontSize
Available font sizes.
@ FS_MONO
Index of the monospaced font in the font tables.
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Functions related to OTTD's landscape.
bool DoZoomInOutWindow(ZoomStateChange how, Window *w)
Zooms a viewport in a window in or out.
static debug_inline TileIndex TileXY(uint x, uint y)
Returns the TileIndex of a coordinate.
constexpr bool IsInsideMM(const size_t x, const size_t min, const size_t max) noexcept
Checks if a value is in an interval.
Miscellaneous command definitions.
ClientID _redirect_console_to_client
If not invalid, redirect the console output to a client.
bool _network_available
is network mode available?
bool _networking
are we in networking mode?
StringList _network_ban_list
The banned clients.
bool _network_dedicated
are we a dedicated server?
bool _network_server
network-server is active
bool NetworkClientConnectGame(std::string_view connection_string, CompanyID default_company, const std::string &join_server_password)
Join a client to the server at with the given connection string.
ClientID _network_own_client_id
Our client identifier.
Basic functions/variables used all over the place.
AdminID _redirect_console_to_admin
Redirection of the (remote) console to the admin.
Server part of the admin network protocol.
Base core network types and some helper functions to access them.
void NetworkClientSendRcon(std::string_view password, std::string_view command)
Send a remote console command.
void NetworkClientSendChat(NetworkAction action, DestType type, int dest, std::string_view msg, int64_t data)
Send a chat message.
void NetworkClientRequestMove(CompanyID company_id)
Notify the server of this client wanting to be moved to another company.
bool NetworkIsValidClientName(std::string_view client_name)
Check whether the given client name is deemed valid for use in network games.
Client part of the network protocol.
ClientNetworkContentSocketHandler _network_content_client
The client we use to connect to the server.
Part of the network protocol handling content distribution.
std::string _network_server_invite_code
Our invite code as indicated by the Game Coordinator.
Network functions used by other parts of OpenTTD.
bool NetworkServerChangeClientName(ClientID client_id, const std::string &new_name)
Change the client name of the given client.
void NetworkPrintClients()
Print all the clients to the console.
void NetworkServerDoMove(ClientID client_id, CompanyID company_id)
Handle the tid-bits of moving a client from one company to another.
bool NetworkCompanyHasClients(CompanyID company)
Check whether a particular company has clients.
void NetworkServerKickClient(ClientID client_id, std::string_view reason)
Kick a single client.
std::string_view NetworkGetPublicKeyOfClient(ClientID client_id)
Get the public key of the client with the given id.
void NetworkServerSendChat(NetworkAction action, DestType type, int dest, std::string_view msg, ClientID from_id, int64_t data=0, bool from_admin=false)
Send an actual chat message.
void NetworkServerShowStatusToConsole()
Show the status message of all clients on the console.
uint NetworkServerKickOrBanIP(ClientID client_id, bool ban, std::string_view reason)
Ban, or kick, everyone joined from the given client's IP.
@ DESTTYPE_CLIENT
Send message/notice to only a certain client (Private)
@ DESTTYPE_TEAM
Send message/notice to everyone playing the same company (Team)
@ DESTTYPE_BROADCAST
Send message/notice to all clients (All)
ClientID
'Unique' identifier to be given to clients
@ INVALID_CLIENT_ID
Client is not part of anything.
@ CLIENT_ID_SERVER
Servers always have this ID.
Base for the NewGRF implementation.
void ReloadNewGRFData()
Reload all NewGRF files during a running game.
Profiling of NewGRF action 2 handling.
bool RequestNewGRFScan(NewGRFScanCallback *callback)
Request a new NewGRF scan.
@ Error
A game paused because a (critical) error.
@ Normal
A game normally paused.
@ SM_START_HEIGHTMAP
Load a heightmap and start a new game from it.
@ SM_MENU
Switch to game intro menu.
@ SM_RESTARTGAME
Restart --> 'Random game' with current settings.
@ SM_RELOADGAME
Reload the savegame / scenario / heightmap you started the game with.
@ SM_LOAD_GAME
Load game, Play Scenario.
const RailTypeInfo * GetRailTypeInfo(RailType railtype)
Returns a pointer to the Railtype information for a given railtype.
RailTypeFlag
Railtype flag bit numbers.
@ Catenary
Bit number for drawing a catenary.
@ Allow90Deg
Bit number for always allowed 90 degree turns, regardless of setting.
@ Disallow90Deg
Bit number for never allowed 90 degree turns, regardless of setting.
@ Hidden
Bit number for hiding from selection.
@ NoSpriteCombine
Bit number for using non-combined junctions.
@ NoLevelCrossing
Bit number for disallowing level crossings.
@ RTSG_GROUND
Main group of ground images.
RailType
Enumeration for all possible railtypes.
@ RAILTYPE_BEGIN
Used for iterations.
@ RAILTYPE_END
Used for iterations.
RoadTypeFlag
Roadtype flag bit numbers.
@ NoHouses
Bit number for setting this roadtype as not house friendly.
@ TownBuild
Bit number for allowing towns to build this roadtype.
const RoadTypeInfo * GetRoadTypeInfo(RoadType roadtype)
Returns a pointer to the Roadtype information for a given roadtype.
@ ROTSG_GROUND
Required: Main group of ground images.
RoadType
The different roadtypes we support.
@ ROADTYPE_END
Used for iterations.
@ ROADTYPE_BEGIN
Used for iterations.
A number of safeguards to prevent using unsafe methods.
SaveOrLoadResult SaveOrLoad(std::string_view filename, SaveLoadOperation fop, DetailedFileType dft, Subdirectory sb, bool threaded)
Main Save or Load function where the high-level saveload functions are handled.
FileToSaveLoad _file_to_saveload
File to save or load in the openttd loop.
void DoExitSave()
Do a save when exiting the game (_settings_client.gui.autosave_on_exit)
Functions/types related to saving and loading games.
@ SL_OK
completed successfully
bool MakeScreenshot(ScreenshotType t, const std::string &name, uint32_t width, uint32_t height)
Schedule making a screenshot.
Functions to make screenshots.
ScreenshotType
Type of requested screenshot.
@ SC_VIEWPORT
Screenshot of viewport.
@ SC_ZOOMEDIN
Fully zoomed in screenshot of the visible area.
@ SC_HEIGHTMAP
Heightmap of the world.
@ SC_WORLD
World screenshot.
@ SC_MINIMAP
Minimap screenshot.
@ SC_DEFAULTZOOM
Zoomed to default zoom level screenshot of the visible area.
void IConsoleGetSetting(std::string_view name, bool force_newgame)
Output value of a specific setting to the console.
void SaveToConfig()
Save the values to the configuration file.
GameSettings _settings_game
Game settings of a running game or the scenario editor.
void IConsoleListSettings(std::string_view prefilter)
List all settings and their value to the console.
ClientSettings _settings_client
The current settings for this game.
Functions related to setting/changing the settings.
Definition of base types and functions in a cross-platform compatible way.
#define lengthof(array)
Return the length of an fixed size array.
std::string FormatArrayAsHex(std::span< const uint8_t > data)
Format a byte array into a continuous hex string.
bool StrEqualsIgnoreCase(std::string_view str1, std::string_view str2)
Compares two string( view)s for equality, while ignoring the case of the characters.
bool StrStartsWithIgnoreCase(std::string_view str, std::string_view prefix)
Check whether the given string starts with the given prefix, ignoring case.
bool StrContainsIgnoreCase(std::string_view str, std::string_view value)
Checks if a string is contained in another string, while ignoring the case of the characters.
static std::optional< T > ParseInteger(std::string_view arg, int base=10, bool clamp=false)
Change a string into its number representation.
std::string GetString(StringID string)
Resolve the given StringID into a std::string with formatting but no parameters.
Functions related to OTTD's strings.
bool ai_in_multiplayer
so we allow AIs in multiplayer
Class to backup a specific variable and restore it upon destruction of this object to prevent stack v...
Specification of a cargo type.
NetworkSettings network
settings related to the network
GUISettings gui
settings related to the GUI
NetworkAuthorizedKeys allow_list
Public keys of clients that are allowed to join this company.
static bool IsHumanID(auto index)
Is this company a company not controlled by a NoAI program?
void OnConnect(bool success) override
Callback for when the connection has finished.
void OnDownloadComplete(ContentID cid) override
We have finished downloading a file.
void OnDisconnect() override
Callback for when the connection got disconnected.
Callbacks for notifying others about incoming data.
Container for all important information about a piece of content.
uint32_t unique_id
Unique ID; either GRF ID or shortname.
MD5Hash md5sum
The MD5 checksum.
State state
Whether the content info is selected (for download)
std::string name
Name of the content.
ContentID id
Unique (server side) ID for the content.
ContentType type
Type of content.
@ Selected
The content has been manually selected.
@ Autoselected
The content has been selected as dependency.
static bool ResetToCurrentNewGRFConfig()
Tries to reset the engine mapping to match the current NewGRF configuration.
void Set(const FiosItem &item)
Set the title of the file.
Deals with finding savegames.
DetailedFileType detailed
Detailed file type.
AbstractFileType abstract
Abstract file type.
Settings for a single font.
std::string font
The name of the font, or path to the font.
uint size
The (requested) size of the font.
Dynamic data of a loaded NewGRF.
bool autosave_on_exit
save an autosave when you quit the game, but do not ask "Do you really want to quit?...
ZoomLevel zoom_min
minimum zoom out level
bool newgrf_developer_tools
activate NewGRF developer tools and allow modifying NewGRFs in an existing game
ZoomLevel zoom_max
maximum zoom out level
uint8_t map_x
X size of map.
uint8_t map_y
Y size of map.
uint32_t generation_seed
noise seed for world generation
AISettings ai
what may the AI do?
GameCreationSettings game_creation
settings used during the creation of a game (map)
–Aliases– Aliases are like shortcuts for complex functions, variable assignments, etc.
std::string cmdline
command(s) that is/are being aliased
std::string name
name of the alias
IConsoleCmdProc * proc
process executed when command is typed
IConsoleHook * hook
any special trigger action that needs executing
std::string name
name of command
static void AliasRegister(const std::string &name, std::string_view cmd)
Register a an alias for an already existing command in the console.
static IConsoleAlias * AliasGet(const std::string &name)
Find the alias pointed to by its string.
static void CmdRegister(const std::string &name, IConsoleCmdProc *proc, IConsoleHook *hook=nullptr)
Register a new command to be used in the console.
static IConsoleCmd * CmdGet(const std::string &name)
Find the command pointed to by its string.
static uint SizeY()
Get the size of the map along the Y.
static debug_inline uint SizeX()
Get the size of the map along the X.
static debug_inline uint LogX()
Logarithm of the map size along the X side.
static uint LogY()
Logarithm of the map size along the y side.
static debug_inline uint Size()
Get the size of the map.
Container for all information known about a client.
static NetworkClientInfo * GetByClientID(ClientID client_id)
Return the CI given it's client-identifier.
bool CanJoinCompany(CompanyID company_id) const
Returns whether the given company can be joined by this client.
CompanyID client_playas
As which company is this client playing (CompanyID)
ClientID client_id
Client identifier (same as ClientState->client_id)
uint8_t clients_on
Current count of clients on server.
uint8_t max_clients
maximum amount of clients
uint8_t max_companies
maximum amount of companies
NetworkAuthorizedKeys admin_authorized_keys
Public keys of clients that are authorized to use the admin network.
NetworkAuthorizedKeys rcon_authorized_keys
Public keys of clients that are authorized to use the rconsole (server side).
std::string last_joined
Last joined server.
NetworkAuthorizedKeys server_authorized_keys
Public keys of clients that are authorized to connect to the game.
Callback profiler for NewGRF development.
static void StartTimer(uint64_t ticks)
Start the timeout timer that will finish all profiling sessions.
bool active
Is this profiler collecting data.
const GRFFile * grffile
Which GRF is being profiled.
static void AbortTimer()
Abort the timeout timer, so the timer callback is never called.
static size_t GetNumItems()
Returns number of valid items in the pool.
Tindex index
Index of this pool item.
static bool IsValidID(auto index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
static Titem * GetIfValid(auto index)
Returns Titem with given index.
static constexpr size_t MAX_SIZE
Make template parameter accessible from outside.
Data structure for viewport, display of a part of the world.
ZoomLevel zoom
The zoom level of the viewport.
Data structure for an opened window.
std::unique_ptr< ViewportData > viewport
Pointer to viewport data, if present.
uint32_t ContentID
Unique identifier for the content.
ContentType
The values in the enum are important; they are used as database 'keys'.
@ CONTENT_TYPE_AI_LIBRARY
The content consists of an AI library.
@ CONTENT_TYPE_BASE_GRAPHICS
The content consists of base graphics.
@ CONTENT_TYPE_AI
The content consists of an AI.
@ CONTENT_TYPE_SCENARIO
The content consists of a scenario.
@ CONTENT_TYPE_NEWGRF
The content consists of a NewGRF.
@ CONTENT_TYPE_BEGIN
Helper to mark the begin of the types.
@ CONTENT_TYPE_END
Helper to mark the end of the types.
@ CONTENT_TYPE_HEIGHTMAP
The content consists of a heightmap.
bool IsValidTile(Tile tile)
Checks if a tile is valid.
Definition of Interval and OneShot timers.
@ VEH_ROAD
Road vehicle type.
@ VEH_AIRCRAFT
Aircraft vehicle type.
@ VEH_SHIP
Ship vehicle type.
@ VEH_TRAIN
Train vehicle type.
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
Functions related to (drawing on) viewports.
@ ZOOM_IN
Zoom in (get more detailed view).
@ ZOOM_OUT
Zoom out (get helicopter view).
Window * GetMainWindow()
Get the main window, i.e.
void SetWindowDirty(WindowClass cls, WindowNumber number)
Mark window as dirty (in need of repainting)
Window functions not directly related to making/drawing windows.
@ WC_CONSOLE
Console; Window numbers:
ZoomLevel
All zoom levels we know.
@ Begin
Begin for iteration.