summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-16 11:36:57 +0000
committertruelight <truelight@openttd.org>2004-12-16 11:36:57 +0000
commit732ea8ca13b39c2aae67fc293ac48f31f0cf4c51 (patch)
tree1bbe6a65fbab389221996b854b42c5fd5a0d12a9 /console_cmds.c
parent9d2fe22f86604179094f950900d16fc152582616 (diff)
downloadopenttd-732ea8ca13b39c2aae67fc293ac48f31f0cf4c51.tar.xz
(svn r1129) -Add: [Network] Added 'reset_company <company-id>'. If a company is
empty (no clients logged on to it), a server can delete a company via this command in the console.
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/console_cmds.c b/console_cmds.c
index 1cb33ede1..3c2a8e0c9 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -214,6 +214,59 @@ DEF_CONSOLE_CMD(ConKick)
return NULL;
}
+DEF_CONSOLE_CMD(ConResetCompany)
+{
+ Player *p;
+ ClientState *cs;
+ NetworkClientInfo *ci;
+
+ if (argc == 2) {
+ uint32 index = atoi(argv[1]);
+
+ /* Check valid range */
+ if (index < 1 || index > MAX_PLAYERS) {
+ IConsolePrintF(_iconsole_color_error, "Company does not exist. Company-ID must be between 1 and %d.", MAX_PLAYERS);
+ return NULL;
+ }
+
+ /* Check if company does exist */
+ index--;
+ p = DEREF_PLAYER(index);
+ if (!p->is_active) {
+ IConsolePrintF(_iconsole_color_error, "Company does not exist.");
+ return NULL;
+ }
+
+ if (p->is_ai) {
+ IConsolePrintF(_iconsole_color_error, "Company is owned by an AI.");
+ return NULL;
+ }
+
+ /* Check if the company has active players */
+ FOR_ALL_CLIENTS(cs) {
+ ci = DEREF_CLIENT_INFO(cs);
+ if (ci->client_playas-1 == index) {
+ IConsolePrintF(_iconsole_color_error, "Cannot remove company: a client is connected to that company.");
+ return NULL;
+ }
+ }
+ ci = NetworkFindClientInfoFromIndex(NETWORK_SERVER_INDEX);
+ if (ci->client_playas-1 == index) {
+ IConsolePrintF(_iconsole_color_error, "Cannot remove company: a client is connected to that company.");
+ return NULL;
+ }
+
+ /* It is safe to remove this company */
+ DoCommandP(0, 2, index, NULL, CMD_PLAYER_CTRL);
+ IConsolePrint(_iconsole_color_default, "Company deleted.");
+ return NULL;
+ }
+
+ IConsolePrint(_iconsole_color_default, "Unknown usage. Usage: reset_company <company-id>.");
+
+ return NULL;
+}
+
DEF_CONSOLE_CMD(ConNetworkClients)
{
NetworkClientInfo *ci;
@@ -720,6 +773,10 @@ DEF_CONSOLE_CMD(ConSet) {
// setting the server advertising on/off
if (strcmp(argv[1],"server_advertise") == 0) {
+ if (!_network_server) {
+ IConsolePrintF(_iconsole_color_error, "You are not the server");
+ return NULL;
+ }
if (argc == 3) {
if (strcmp(argv[2], "on") == 0 || atoi(argv[2]) == 1)
_network_advertise = true;
@@ -844,6 +901,8 @@ void IConsoleStdLibRegister(void)
IConsoleCmdHook("say_client", ICONSOLE_HOOK_ACCESS, ConCmdHookNeedNetwork);
IConsoleCmdRegister("kick", ConKick);
IConsoleCmdHook("kick", ICONSOLE_HOOK_ACCESS, ConCmdHookNoNetClient);
+ IConsoleCmdRegister("reset_company", ConResetCompany);
+ IConsoleCmdHook("reset_company", ICONSOLE_HOOK_ACCESS, ConCmdHookNoNetClient);
IConsoleCmdRegister("connect", ConNetworkConnect);
IConsoleCmdHook("connect", ICONSOLE_HOOK_ACCESS, ConCmdHookNoNetServer);
IConsoleCmdRegister("clients", ConNetworkClients);
@@ -851,6 +910,8 @@ void IConsoleStdLibRegister(void)
IConsoleCmdHook("status", ICONSOLE_HOOK_ACCESS, ConCmdHookNoNetClient);
IConsoleCmdHook("resetengines", ICONSOLE_HOOK_ACCESS, ConCmdHookNoNetwork);
+ IConsoleAliasRegister("clean_company", "reset_company");
+
IConsoleVarRegister("net_frame_freq", &_network_frame_freq, ICONSOLE_VAR_UINT8);
IConsoleVarHook("net_frame_freq", ICONSOLE_HOOK_ACCESS, ConVarHookNoNetClient);
IConsoleVarRegister("net_sync_freq", &_network_sync_freq, ICONSOLE_VAR_UINT16);