From 760d46b206164d507d4c1126f3fe835982f18de1 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sun, 18 Apr 2021 14:45:53 -0500 Subject: [PATCH 1/6] add /charcurse and /uncharcurse this code makes me want to die. please end my suffering. --- include/aoclient.h | 33 +++++++++++++++++++ src/aoclient.cpp | 4 +++ src/commands/messaging.cpp | 67 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 104 insertions(+) diff --git a/include/aoclient.h b/include/aoclient.h index 7c05caf..80b3c09 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -260,11 +260,18 @@ class AOClient : public QObject { */ bool advert_enabled = true; + /** + * @brief If true, the client is restricted to only changing into certain characters. + */ + bool is_charcursed = false; + /** * @brief Timer for tracking user interaction. Automatically restarted whenever a user interacts (i.e. sends any packet besides CH) */ QTimer* afk_timer; + QStringList charcurse_list; + public slots: /** @@ -1453,6 +1460,8 @@ class AOClient : public QObject { * @brief Toggles whether a client will recieve @ref cmdPM private messages or not. * * @details No arguments. + * + * @iscommand */ void cmdMutePM(int argc, QStringList argv); @@ -1460,6 +1469,8 @@ class AOClient : public QObject { * @brief Toggles whether a client will recieve @ref cmdNeed "advertisement" messages. * * @details No arguments. + * + * @iscommand */ void cmdToggleAdverts(int argc, QStringList argv); @@ -1472,6 +1483,26 @@ class AOClient : public QObject { */ void cmdAfk(int argc, QStringList argv); + /** + * @brief Restricts a target client to a set of characters that they can switch from, blocking them from other characters. + * + * @details The first argument is the **target's ID** whom the client wants to charcurse. + * + * The second argument is one or more character names the client wants to restrict to, comma separated. + * + * @iscommand + */ + void cmdCharCurse(int argc, QStringList argv); + + /** + * @brief Removes the charcurse status from a client. + * + * @details The only argument is the **target's ID** whom the client wants to uncharcurse. + * + * @iscommand + */ + void cmdUnCharCurse(int argc, QStringList argv); + ///@} /** @@ -1888,6 +1919,8 @@ class AOClient : public QObject { {"block_dj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdBlockDj}}, {"unblockdj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockDj}}, {"unblock_dj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockDj}}, + {"charcurse", {ACLFlags.value("MUTE"), 1, &AOClient::cmdCharCurse}}, + {"uncharcurse", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnCharCurse}}, }; /** diff --git a/src/aoclient.cpp b/src/aoclient.cpp index 6e8dfbd..d6394e7 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -148,6 +148,10 @@ bool AOClient::changeCharacter(int char_id) if(char_id >= server->characters.length()) return false; + if (is_charcursed && !charcurse_list.contains(QString::number(char_id))) { + return false; + } + if (char_id >= 0) { QString char_selected = server->characters[char_id]; bool taken = area->characters_taken.contains(char_id); diff --git a/src/commands/messaging.cpp b/src/commands/messaging.cpp index 0be4203..e2cafa1 100644 --- a/src/commands/messaging.cpp +++ b/src/commands/messaging.cpp @@ -302,3 +302,70 @@ void AOClient::cmdAfk(int argc, QStringList argv) is_afk = true; sendServerMessage("You are now AFK."); } + +void AOClient::cmdCharCurse(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_charcursed) { + sendServerMessage("That player is already charcursed!"); + return; + } + + if (argc == 1) { + target->charcurse_list.append(QString::number(server->getCharID(current_char))); + } + + else { + argv.removeFirst(); //remove the UID + QString names = argv.join(" "); + argv = names.split(", "); + QString char_name; + foreach (char_name, argv) { + QString converted_char_id = QString::number(server->getCharID(char_name)); + argv.replaceInStrings(char_name, converted_char_id); + } + if (argv.contains("-1")) { + sendServerMessage("One of these characters was not found."); + return; + } + target->charcurse_list = argv; + } + + //Kick back to char select screen + if (!target->charcurse_list.contains(QString::number(server->getCharID(current_char)))) { + target->current_char = ""; + target->sendPacket("DONE"); + } + target->is_charcursed = true; + target->sendServerMessage("You have been charcursed!"); + sendServerMessage("Charcursed player."); +} + +void AOClient::cmdUnCharCurse(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_charcursed) { + sendServerMessage("That player is not charcursed!"); + return; + } + target->is_charcursed = false; + target->charcurse_list.clear(); + sendServerMessage("Uncharcursed plater."); + target->sendServerMessage("You were uncharcursed."); +} From 08ba6ef27843d32f41fb9d0252ac0021de3e1902 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Sun, 18 Apr 2021 18:57:33 -0500 Subject: [PATCH 2/6] change curse list to int list, marked unavailable chars as taken --- include/aoclient.h | 2 +- include/server.h | 2 ++ src/aoclient.cpp | 2 +- src/commands/messaging.cpp | 17 +++++++++-------- src/server.cpp | 25 ++++++++++++++++++++++++- 5 files changed, 37 insertions(+), 11 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index e198ed5..ffe0dce 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -272,7 +272,7 @@ class AOClient : public QObject { */ QTimer* afk_timer; - QStringList charcurse_list; + QList charcurse_list; /** * @brief Temporary client permission if client is allowed to save a testimony to server storage. diff --git a/include/server.h b/include/server.h index 0017621..caae0e3 100644 --- a/include/server.h +++ b/include/server.h @@ -259,6 +259,8 @@ class Server : public QObject { */ QStringList loadConfigFile(QString filename); + QStringList getCursedCharsTaken(AOClient* client, QStringList chars_taken); + /** * @brief List holding the contents of 8ball.txt, used by /8ball. */ diff --git a/src/aoclient.cpp b/src/aoclient.cpp index df0e26d..5ccfdf6 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -148,7 +148,7 @@ bool AOClient::changeCharacter(int char_id) if(char_id >= server->characters.length()) return false; - if (is_charcursed && !charcurse_list.contains(QString::number(char_id))) { + if (is_charcursed && !charcurse_list.contains(char_id)) { return false; } diff --git a/src/commands/messaging.cpp b/src/commands/messaging.cpp index 71c39d9..4e73ae2 100644 --- a/src/commands/messaging.cpp +++ b/src/commands/messaging.cpp @@ -335,7 +335,7 @@ void AOClient::cmdCharCurse(int argc, QStringList argv) } if (argc == 1) { - target->charcurse_list.append(QString::number(server->getCharID(current_char))); + target->charcurse_list.append(server->getCharID(current_char)); } else { @@ -343,23 +343,23 @@ void AOClient::cmdCharCurse(int argc, QStringList argv) QString names = argv.join(" "); argv = names.split(", "); QString char_name; + target->charcurse_list.clear(); foreach (char_name, argv) { - QString converted_char_id = QString::number(server->getCharID(char_name)); - argv.replaceInStrings(char_name, converted_char_id); + target->charcurse_list.append(server->getCharID(char_name)); } - if (argv.contains("-1")) { + if (target->charcurse_list.contains(-1)) { sendServerMessage("One of these characters was not found."); return; } - target->charcurse_list = argv; } //Kick back to char select screen - if (!target->charcurse_list.contains(QString::number(server->getCharID(current_char)))) { - target->current_char = ""; + if (!target->charcurse_list.contains(server->getCharID(current_char))) { + target->changeCharacter(-1); target->sendPacket("DONE"); } target->is_charcursed = true; + server->updateCharsTaken(server->areas.value(current_area)); target->sendServerMessage("You have been charcursed!"); sendServerMessage("Charcursed player."); } @@ -381,7 +381,8 @@ void AOClient::cmdUnCharCurse(int argc, QStringList argv) } target->is_charcursed = false; target->charcurse_list.clear(); - sendServerMessage("Uncharcursed plater."); + server->updateCharsTaken(server->areas.value(current_area)); + sendServerMessage("Uncharcursed player."); target->sendServerMessage("You were uncharcursed."); } diff --git a/src/server.cpp b/src/server.cpp index 382e5a2..e0c5825 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -151,7 +151,30 @@ void Server::updateCharsTaken(AreaData* area) } AOPacket response_cc("CharsCheck", chars_taken); - broadcast(response_cc, area->index); + + for (AOClient* client : clients) { + if (client->current_area == area->index){ + if (!client->is_charcursed) + client->sendPacket(response_cc); + else { + QStringList chars_taken_cursed = getCursedCharsTaken(client, chars_taken); + AOPacket response_cc_cursed("CharsCheck", chars_taken_cursed); + client->sendPacket(response_cc_cursed); + } + } + } +} + +QStringList Server::getCursedCharsTaken(AOClient* client, QStringList chars_taken) +{ + QStringList chars_taken_cursed; + for (int i = 0; i < chars_taken.length(); i++) { + if (!client->charcurse_list.contains(i)) + chars_taken_cursed.append("-1"); + else + chars_taken_cursed.append(chars_taken.value(i)); + } + return chars_taken_cursed; } void Server::broadcast(AOPacket packet, int area_index) From 4f6706ae94d24361432bdda6bb62e884b3cdaa90 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Sun, 18 Apr 2021 19:18:52 -0500 Subject: [PATCH 3/6] fix a few small bugs --- src/commands/messaging.cpp | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/src/commands/messaging.cpp b/src/commands/messaging.cpp index 4e73ae2..65597ca 100644 --- a/src/commands/messaging.cpp +++ b/src/commands/messaging.cpp @@ -327,7 +327,7 @@ void AOClient::cmdCharCurse(int argc, QStringList argv) return; } - AOClient* target = server->getClientByID(uid); + AOClient* target = server->getClientByID(uid); if (target->is_charcursed) { sendServerMessage("That player is already charcursed!"); @@ -337,29 +337,31 @@ void AOClient::cmdCharCurse(int argc, QStringList argv) if (argc == 1) { target->charcurse_list.append(server->getCharID(current_char)); } - else { argv.removeFirst(); //remove the UID - QString names = argv.join(" "); - argv = names.split(", "); - QString char_name; target->charcurse_list.clear(); - foreach (char_name, argv) { - target->charcurse_list.append(server->getCharID(char_name)); - } - if (target->charcurse_list.contains(-1)) { - sendServerMessage("One of these characters was not found."); - return; + for (QString char_name : argv) { + int char_id = server->getCharID(char_name); + if (char_id == -1) { + sendServerMessage("Could not find character: " + char_name); + return; + } + target->charcurse_list.append(char_id); } } + target->is_charcursed = true; + //Kick back to char select screen - if (!target->charcurse_list.contains(server->getCharID(current_char))) { + if (!target->charcurse_list.contains(server->getCharID(target->current_char))) { target->changeCharacter(-1); + server->updateCharsTaken(server->areas.value(current_area)); target->sendPacket("DONE"); } - target->is_charcursed = true; - server->updateCharsTaken(server->areas.value(current_area)); + else { + server->updateCharsTaken(server->areas.value(current_area)); + } + target->sendServerMessage("You have been charcursed!"); sendServerMessage("Charcursed player."); } @@ -373,7 +375,7 @@ void AOClient::cmdUnCharCurse(int argc, QStringList argv) return; } - AOClient* target = server->getClientByID(uid); + AOClient* target = server->getClientByID(uid); if (!target->is_charcursed) { sendServerMessage("That player is not charcursed!"); From 21d7ade72036e8436d2f31dcc4909ab140b96157 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Sun, 18 Apr 2021 19:26:37 -0500 Subject: [PATCH 4/6] go back to comma separated --- src/commands/messaging.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/commands/messaging.cpp b/src/commands/messaging.cpp index 65597ca..c335de7 100644 --- a/src/commands/messaging.cpp +++ b/src/commands/messaging.cpp @@ -338,9 +338,11 @@ void AOClient::cmdCharCurse(int argc, QStringList argv) target->charcurse_list.append(server->getCharID(current_char)); } else { - argv.removeFirst(); //remove the UID + argv.removeFirst(); + QStringList char_names = argv.join(" ").split(","); + target->charcurse_list.clear(); - for (QString char_name : argv) { + for (QString char_name : char_names) { int char_id = server->getCharID(char_name); if (char_id == -1) { sendServerMessage("Could not find character: " + char_name); From 5d1094c12d25864d3184701becc9d24ac387990b Mon Sep 17 00:00:00 2001 From: scatterflower Date: Sun, 18 Apr 2021 19:44:34 -0500 Subject: [PATCH 5/6] fix messed up merge conflict resolution --- include/aoclient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index 137ddfd..254066b 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1986,7 +1986,7 @@ class AOClient : public QObject { {"unblock_dj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockDj}}, {"charcurse", {ACLFlags.value("MUTE"), 1, &AOClient::cmdCharCurse}}, {"uncharcurse", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnCharCurse}}, - {"charselect", {ACLFlags.value("NONE"), 0, &AOClient::cmdCharSelect}} + {"charselect", {ACLFlags.value("NONE"), 0, &AOClient::cmdCharSelect}}, {"a", {ACLFlags.value("NONE"), 2, &AOClient::cmdA}}, {"s", {ACLFlags.value("NONE"), 0, &AOClient::cmdS}} }; From fcce8d9699ef1df88b887d95d1b2593bbf6db8c4 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sun, 18 Apr 2021 20:50:44 -0500 Subject: [PATCH 6/6] Document charcurse_list, fix /charcurse --- include/aoclient.h | 3 +++ src/commands/messaging.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index 254066b..3a25c36 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -272,6 +272,9 @@ class AOClient : public QObject { */ QTimer* afk_timer; + /** + * @brief The list of char IDs a charcursed player is allowed to switch to. + */ QList charcurse_list; /** diff --git a/src/commands/messaging.cpp b/src/commands/messaging.cpp index dcd1144..044169d 100644 --- a/src/commands/messaging.cpp +++ b/src/commands/messaging.cpp @@ -335,7 +335,7 @@ void AOClient::cmdCharCurse(int argc, QStringList argv) } if (argc == 1) { - target->charcurse_list.append(server->getCharID(current_char)); + target->charcurse_list.append(server->getCharID(target->current_char)); } else { argv.removeFirst();