320 lines
10 KiB
C++
320 lines
10 KiB
C++
//////////////////////////////////////////////////////////////////////////////////////
|
|
// akashi - a server for Attorney Online 2 //
|
|
// Copyright (C) 2020 scatterflower //
|
|
// //
|
|
// This program is free software: you can redistribute it and/or modify //
|
|
// it under the terms of the GNU Affero General Public License as //
|
|
// published by the Free Software Foundation, either version 3 of the //
|
|
// License, or (at your option) any later version. //
|
|
// //
|
|
// This program is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU Affero General Public License for more details. //
|
|
// //
|
|
// You should have received a copy of the GNU Affero General Public License //
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
|
//////////////////////////////////////////////////////////////////////////////////////
|
|
#include "include/aoclient.h"
|
|
|
|
// This file is for commands under the messaging category in aoclient.h
|
|
// Be sure to register the command in the header before adding it here!
|
|
|
|
void AOClient::cmdPos(int argc, QStringList argv)
|
|
{
|
|
changePosition(argv[0]);
|
|
updateEvidenceList(server->areas[current_area]);
|
|
}
|
|
|
|
void AOClient::cmdForcePos(int argc, QStringList argv)
|
|
{
|
|
bool ok;
|
|
QList<AOClient*> targets;
|
|
AreaData* area = server->areas[current_area];
|
|
int target_id = argv[1].toInt(&ok);
|
|
int forced_clients = 0;
|
|
if (!ok && argv[1] != "*") {
|
|
sendServerMessage("That does not look like a valid ID.");
|
|
return;
|
|
}
|
|
else if (ok) {
|
|
AOClient* target_client = server->getClientByID(target_id);
|
|
if (target_client != nullptr)
|
|
targets.append(target_client);
|
|
else {
|
|
sendServerMessage("Target ID not found!");
|
|
return;
|
|
}
|
|
}
|
|
|
|
else if (argv[1] == "*") { // force all clients in the area
|
|
for (AOClient* client : server->clients) {
|
|
if (client->current_area == current_area)
|
|
targets.append(client);
|
|
}
|
|
}
|
|
for (AOClient* target : targets) {
|
|
target->sendServerMessage("Position forcibly changed by CM.");
|
|
target->changePosition(argv[0]);
|
|
forced_clients++;
|
|
}
|
|
sendServerMessage("Forced " + QString::number(forced_clients) + " into pos " + argv[0] + ".");
|
|
}
|
|
|
|
void AOClient::cmdG(int argc, QStringList argv)
|
|
{
|
|
QString sender_name = ooc_name;
|
|
QString sender_area = server->area_names.value(current_area);
|
|
QString sender_message = argv.join(" ");
|
|
for (AOClient* client : server->clients) {
|
|
if (client->global_enabled)
|
|
client->sendPacket("CT", {"[G][" + sender_area + "]" + sender_name, sender_message});
|
|
}
|
|
return;
|
|
}
|
|
|
|
void AOClient::cmdNeed(int argc, QStringList argv)
|
|
{
|
|
QString sender_area = server->area_names.value(current_area);
|
|
QString sender_message = argv.join(" ");
|
|
for (AOClient* client : server->clients) {
|
|
if (client->advert_enabled) {
|
|
client->sendServerMessage({"=== Advert ===\n[" + sender_area + "] needs " + sender_message+ "."});
|
|
}
|
|
}
|
|
}
|
|
|
|
void AOClient::cmdSwitch(int argc, QStringList argv)
|
|
{
|
|
int selected_char_id = server->getCharID(argv.join(" "));
|
|
if (selected_char_id == -1) {
|
|
sendServerMessage("That does not look like a valid character.");
|
|
return;
|
|
}
|
|
if (changeCharacter(selected_char_id)) {
|
|
char_id = selected_char_id;
|
|
}
|
|
else {
|
|
sendServerMessage("The character you picked is either taken or invalid.");
|
|
}
|
|
}
|
|
|
|
void AOClient::cmdRandomChar(int argc, QStringList argv)
|
|
{
|
|
AreaData* area = server->areas[current_area];
|
|
int selected_char_id;
|
|
bool taken = true;
|
|
while (taken) {
|
|
selected_char_id = genRand(0, server->characters.size() - 1);
|
|
if (!area->characters_taken.contains(selected_char_id)) {
|
|
taken = false;
|
|
}
|
|
}
|
|
if (changeCharacter(selected_char_id)) {
|
|
char_id = selected_char_id;
|
|
}
|
|
}
|
|
|
|
void AOClient::cmdToggleGlobal(int argc, QStringList argv)
|
|
{
|
|
global_enabled = !global_enabled;
|
|
QString str_en = global_enabled ? "shown" : "hidden";
|
|
sendServerMessage("Global chat set to " + str_en);
|
|
}
|
|
|
|
void AOClient::cmdPM(int arc, QStringList argv)
|
|
{
|
|
bool ok;
|
|
int target_id = argv.takeFirst().toInt(&ok); // using takeFirst removes the ID from our list of arguments...
|
|
if (!ok) {
|
|
sendServerMessage("That does not look like a valid ID.");
|
|
return;
|
|
}
|
|
AOClient* target_client = server->getClientByID(target_id);
|
|
if (target_client == nullptr) {
|
|
sendServerMessage("No client with that ID found.");
|
|
return;
|
|
}
|
|
if (target_client->pm_mute) {
|
|
sendServerMessage("That user is not recieving PMs.");
|
|
return;
|
|
}
|
|
QString message = argv.join(" "); //...which means it will not end up as part of the message
|
|
target_client->sendServerMessage("Message from " + ooc_name + " (" + QString::number(id) + "): " + message);
|
|
}
|
|
|
|
void AOClient::cmdAnnounce(int argc, QStringList argv)
|
|
{
|
|
sendServerBroadcast("=== Announcement ===\r\n" + argv.join(" ") + "\r\n=============");
|
|
}
|
|
|
|
void AOClient::cmdM(int argc, QStringList argv)
|
|
{
|
|
QString sender_name = ooc_name;
|
|
QString sender_message = argv.join(" ");
|
|
for (AOClient* client : server->clients) {
|
|
if (client->checkAuth(ACLFlags.value("MODCHAT")))
|
|
client->sendPacket("CT", {"[M]" + sender_name, sender_message});
|
|
}
|
|
return;
|
|
}
|
|
|
|
void AOClient::cmdGM(int argc, QStringList argv)
|
|
{
|
|
QString sender_name = ooc_name;
|
|
QString sender_area = server->area_names.value(current_area);
|
|
QString sender_message = argv.join(" ");
|
|
for (AOClient* client : server->clients) {
|
|
if (client->global_enabled) {
|
|
client->sendPacket("CT", {"[G][" + sender_area + "]" + "["+sender_name+"][M]", sender_message});
|
|
}
|
|
}
|
|
}
|
|
|
|
void AOClient::cmdLM(int argc, QStringList argv)
|
|
{
|
|
QString sender_name = ooc_name;
|
|
QString sender_message = argv.join(" ");
|
|
server->broadcast(AOPacket("CT", {"["+sender_name+"][M]", sender_message}), current_area);
|
|
}
|
|
|
|
void AOClient::cmdGimp(int argc, QStringList argv)
|
|
{
|
|
bool conv_ok = false;
|
|
int uid = argv[0].toInt(&conv_ok);
|
|
if (!conv_ok) {
|
|
sendServerMessage("Invalid user ID.");
|
|
return;
|
|
}
|
|
|
|
AOClient* target = server->getClientByID(uid);
|
|
|
|
if (target->is_gimped)
|
|
sendServerMessage("That player is already gimped!");
|
|
else {
|
|
sendServerMessage("Gimped player.");
|
|
target->sendServerMessage("You have been gimped! " + getReprimand());
|
|
}
|
|
target->is_gimped = true;
|
|
}
|
|
|
|
void AOClient::cmdUnGimp(int argc, QStringList argv)
|
|
{
|
|
bool conv_ok = false;
|
|
int uid = argv[0].toInt(&conv_ok);
|
|
if (!conv_ok) {
|
|
sendServerMessage("Invalid user ID.");
|
|
return;
|
|
}
|
|
|
|
AOClient* target = server->getClientByID(uid);
|
|
|
|
if (!(target->is_gimped))
|
|
sendServerMessage("That player is not gimped!");
|
|
else {
|
|
sendServerMessage("Ungimped player.");
|
|
target->sendServerMessage("A moderator has ungimped you! " + getReprimand(true));
|
|
}
|
|
target->is_gimped = false;
|
|
}
|
|
|
|
void AOClient::cmdDisemvowel(int argc, QStringList argv)
|
|
{
|
|
bool conv_ok = false;
|
|
int uid = argv[0].toInt(&conv_ok);
|
|
if (!conv_ok) {
|
|
sendServerMessage("Invalid user ID.");
|
|
return;
|
|
}
|
|
|
|
AOClient* target = server->getClientByID(uid);
|
|
|
|
if (target->is_disemvoweled)
|
|
sendServerMessage("That player is already disemvoweled!");
|
|
else {
|
|
sendServerMessage("Disemvoweled player.");
|
|
target->sendServerMessage("You have been disemvoweled! " + getReprimand());
|
|
}
|
|
target->is_disemvoweled = true;
|
|
}
|
|
|
|
void AOClient::cmdUnDisemvowel(int argc, QStringList argv)
|
|
{
|
|
bool conv_ok = false;
|
|
int uid = argv[0].toInt(&conv_ok);
|
|
if (!conv_ok) {
|
|
sendServerMessage("Invalid user ID.");
|
|
return;
|
|
}
|
|
|
|
AOClient* target = server->getClientByID(uid);
|
|
|
|
if (!(target->is_disemvoweled))
|
|
sendServerMessage("That player is not disemvoweled!");
|
|
else {
|
|
sendServerMessage("Undisemvoweled player.");
|
|
target->sendServerMessage("A moderator has undisemvoweled you! " + getReprimand(true));
|
|
}
|
|
target->is_disemvoweled = false;
|
|
}
|
|
|
|
void AOClient::cmdShake(int argc, QStringList argv)
|
|
{
|
|
bool conv_ok = false;
|
|
int uid = argv[0].toInt(&conv_ok);
|
|
if (!conv_ok) {
|
|
sendServerMessage("Invalid user ID.");
|
|
return;
|
|
}
|
|
|
|
AOClient* target = server->getClientByID(uid);
|
|
|
|
if (target->is_shaken)
|
|
sendServerMessage("That player is already shaken!");
|
|
else {
|
|
sendServerMessage("Shook player.");
|
|
target->sendServerMessage("A moderator has shaken your words! " + getReprimand());
|
|
}
|
|
target->is_shaken = true;
|
|
}
|
|
|
|
void AOClient::cmdUnShake(int argc, QStringList argv)
|
|
{
|
|
bool conv_ok = false;
|
|
int uid = argv[0].toInt(&conv_ok);
|
|
if (!conv_ok) {
|
|
sendServerMessage("Invalid user ID.");
|
|
return;
|
|
}
|
|
|
|
AOClient* target = server->getClientByID(uid);
|
|
|
|
if (!(target->is_shaken))
|
|
sendServerMessage("That player is not shaken!");
|
|
else {
|
|
sendServerMessage("Unshook player.");
|
|
target->sendServerMessage("A moderator has unshook you! " + getReprimand(true));
|
|
}
|
|
target->is_shaken = false;
|
|
}
|
|
|
|
void AOClient::cmdMutePM(int argc, QStringList argv)
|
|
{
|
|
pm_mute = !pm_mute;
|
|
QString str_en = pm_mute ? "muted" : "unmuted";
|
|
sendServerMessage("PM's are now " + str_en);
|
|
}
|
|
|
|
void AOClient::cmdToggleAdverts(int argc, QStringList argv)
|
|
{
|
|
advert_enabled = !advert_enabled;
|
|
QString str_en = advert_enabled ? "on" : "off";
|
|
sendServerMessage("Advertisements turned " + str_en);
|
|
}
|
|
|
|
void AOClient::cmdAfk(int argc, QStringList argv)
|
|
{
|
|
is_afk = true;
|
|
sendServerMessage("You are now AFK.");
|
|
}
|