Implement clearcm command

This commit is contained in:
Salanto 2021-09-19 17:00:14 +02:00
parent 64ccf249ea
commit 18281ae401
3 changed files with 30 additions and 2 deletions

View File

@ -628,5 +628,10 @@
"name":"help",
"usage":"/help <Command>",
"text":"Shows you information about a command, if available. The only argument is the command name. About Syntax : <Argument> are mandatory arguments. 'Argument' are optional arguments. [Argument|OtherArgument] is that two argument types are valid, but only one can be used."
}
},
{
"name":"clearcm",
"usage":"/clearcm",
"text":"Removes all CMs from the current area. This command takes no arguments."
},
]

View File

@ -1265,6 +1265,15 @@ class AOClient : public QObject {
*/
void cmdNoticeGlobal(int argc, QStringList argv);
/**
* @brief Removes all CMs from the current area.
*
* @details This command is a bandaid fix to the issue that clients may end up ghosting when improperly disconnected from the server.
*
* @iscommand
*/
void cmdClearCM(int argc, QStringList argv);
///@}
/**
@ -2145,7 +2154,8 @@ class AOClient : public QObject {
{"notice", {ACLFlags.value("SEND_NOTICE"), 1, &AOClient::cmdNotice}},
{"noticeg", {ACLFlags.value("SEND_NOTICE"), 1, &AOClient::cmdNoticeGlobal}},
{"togglejukebox", {ACLFlags.value("None"), 0, &AOClient::cmdToggleJukebox}},
{"help", {ACLFlags.value("NONE"), 1, &AOClient::cmdHelp}}
{"help", {ACLFlags.value("NONE"), 1, &AOClient::cmdHelp}},
{"clearcm", {ACLFlags.value("KICK"), 0, &AOClient::cmdClearCM}}
};
/**

View File

@ -592,3 +592,16 @@ void AOClient::cmdNoticeGlobal(int argc, QStringList argv)
sendNotice(argv.join(" "), true);
}
void AOClient::cmdClearCM(int argc, QStringList argv)
{
Q_UNUSED(argc);
Q_UNUSED(argv);
AreaData* l_area = server->m_areas.value(m_current_area);
foreach (int l_client_id,l_area->owners()) {
l_area->removeOwner(l_client_id);
}
arup(ARUPType::CM, true);
sendServerMessage("Removed all CMs from this area.");
}