From 5277a7dd7c5a59f08e1ce6d1999128bec7c40d54 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Tue, 23 Mar 2021 20:42:53 -0500 Subject: [PATCH 01/11] i was supposed to not commit this all at once but i forgot --- include/aoclient.h | 56 ++++++++---- src/commands.cpp | 211 ++++++++++++++++++++++++++++++++++++++------- src/packets.cpp | 17 ++++ 3 files changed, 237 insertions(+), 47 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index 690adbb..11ea067 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -46,10 +46,9 @@ class AOClient : public QObject { QString getIpid(); void calculateIpid(); + // user metadata int id; - QHostAddress remote_ip; - QString password; bool joined; int current_area; QString current_char; @@ -57,8 +56,9 @@ class AOClient : public QObject { QString moderator_name = ""; QString ooc_name = ""; QString showname = ""; - bool global_enabled = true; - bool is_muted = false; + + QString password; // for character passwords + struct ClientVersion { QString string; int release = -1; @@ -67,6 +67,21 @@ class AOClient : public QObject { }; ClientVersion version; + // user preferences + bool global_enabled = true; + bool adverts_enabled = true; + bool pm_enabled = true; + + // punitive conditions + bool is_muted = false; + bool is_ooc_muted = false; + bool is_dj_blocked = false; + bool is_wtce_blocked = false; + bool is_shaken = false; + bool is_disemvoweled = false; + bool is_gimped = false; + int char_curse = -1; + QMap ACLFlags { {"NONE", 0ULL}, {"KICK", 1ULL << 0}, @@ -83,10 +98,6 @@ class AOClient : public QObject { {"SUPER", ~0ULL} }; - bool is_shaken; - bool is_disemvoweled; - bool is_gimped; - public slots: void clientDisconnected(); void clientData(); @@ -118,9 +129,9 @@ class AOClient : public QObject { void changePosition(QString new_pos); void arup(ARUPType type, bool broadcast); void fullArup(); - void sendServerMessage(QString message); - void sendServerMessageArea(QString message); - void sendServerBroadcast(QString message); + void sendServerMessage(QString message); // send a server OOC message to just this client + void sendServerMessageArea(QString message); // send a server OOC message to all clients in current area + void sendServerBroadcast(QString message); // send a server OOC message to all clients in the server bool checkAuth(unsigned long long acl_mask); // Packet headers @@ -229,9 +240,15 @@ class AOClient : public QObject { void cmdAnnounce(int argc, QStringList argv); void cmdM(int argc, QStringList argv); void cmdGM(int argc, QStringList argv); - void cmdMute(int argc, QStringList argv); - void cmdUnmute(int argc, QStringList argv); void cmdBans(int argc, QStringList argv); + void cmdMute(int argc, QStringList argv); + void cmdUnMute(int argc, QStringList argv); + void cmdOocMute(int argc, QStringList argv); + void cmdOocUnMute(int argc, QStringList argv); + void cmdBlockDj(int argc, QStringList argv); + void cmdUnBlockDj(int argc, QStringList argv); + void cmdBlockWtce(int argc, QStringList argv); + void cmdUnBlockWtce(int argc, QStringList argv); // Casing/RP void cmdPlay(int argc, QStringList argv); void cmdNeed(int argc, QStringList argv); @@ -258,6 +275,7 @@ class AOClient : public QObject { int genRand(int min, int max); void diceThrower(int argc, QStringList argv, RollType Type); long long parseTime(QString input); + QString getReprimand(bool positive = false); // Command function global variables bool change_auth_started = false; @@ -324,12 +342,20 @@ class AOClient : public QObject { {"m", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdM}}, {"gm", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdGM}}, {"mute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdMute}}, - {"unmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnmute}}, + {"unmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnMute}}, {"bans", {ACLFlags.value("BAN"), 0, &AOClient::cmdBans}}, {"unban", {ACLFlags.value("BAN"), 1, &AOClient::cmdUnBan}}, {"removeuser", {ACLFlags.value("MODIFY_USERS"), 1, &AOClient::cmdRemoveUser}}, {"subtheme", {ACLFlags.value("CM"), 1, &AOClient::cmdSubTheme}}, - {"about", {ACLFlags.value("NONE"), 0, &AOClient::cmdAbout}} + {"about", {ACLFlags.value("NONE"), 0, &AOClient::cmdAbout}}, + {"oocmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}}, + {"ooc_mute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}}, + {"oocunmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocUnMute}}, + {"ooc_unmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocUnMute}}, + {"blockdj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdBlockDj}}, + {"unblockdj", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockDj}}, + {"blockwtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdBlockWtce}}, + {"unblockwtce", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnBlockWtce}}, }; QString partial_packet; diff --git a/src/commands.cpp b/src/commands.cpp index 2455016..3f3aa4e 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -953,38 +953,6 @@ void AOClient::cmdGM(int argc, QStringList argv) } } -void AOClient::cmdMute(int argc, QStringList argv) -{ - bool conv_ok = false; - int uid = argv[0].toInt(&conv_ok); - if (!conv_ok) { - sendServerMessage("Invalid user ID."); - return; - } - - if (server->getClientByID(uid)->is_muted) - sendServerMessage("That player is already muted!"); - else - sendServerMessage("Muted player."); - server->getClientByID(uid)->is_muted = true; -} - -void AOClient::cmdUnmute(int argc, QStringList argv) -{ - bool conv_ok = false; - int uid = argv[0].toInt(&conv_ok); - if (!conv_ok) { - sendServerMessage("Invalid user ID."); - return; - } - - if (!server->getClientByID(uid)->is_muted) - sendServerMessage("That player is already unmuted!"); - else - sendServerMessage("Unmuted player."); - server->getClientByID(uid)->is_muted = false; -} - void AOClient::cmdBans(int argc, QStringList argv) { QStringList recent_bans; @@ -1035,6 +1003,167 @@ void AOClient::cmdAbout(int argc, QStringList argv) sendPacket("CT", {"The akashi dev team", "Thank you for using akashi! Made with love by scatterflower, with help from in1tiate and Salanto. akashi " + QCoreApplication::applicationVersion()}); } + +void AOClient::cmdMute(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_muted) + sendServerMessage("That player is already muted!"); + else { + sendServerMessage("Muted player."); + target->sendServerMessage("You were muted by a moderator. " + getReprimand()); + } + target->is_muted = true; +} + +void AOClient::cmdUnMute(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_muted) + sendServerMessage("That player is not muted!"); + else { + sendServerMessage("Unmuted player."); + target->sendServerMessage("You were unmuted by a moderator. " + getReprimand(true)); + } + target->is_muted = false; +} + +void AOClient::cmdOocMute(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_ooc_muted) + sendServerMessage("That player is already OOC muted!"); + else { + sendServerMessage("OOC muted player."); + target->sendServerMessage("You were OOC muted by a moderator. " + getReprimand()); + } + target->is_ooc_muted = true; +} + +void AOClient::cmdOocUnMute(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_ooc_muted) + sendServerMessage("That player is not OOC muted!"); + else { + sendServerMessage("OOC unmuted player."); + target->sendServerMessage("You were OOC unmuted by a moderator. " + getReprimand(true)); + } + target->is_ooc_muted = false; +} + +void AOClient::cmdBlockDj(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_dj_blocked) + sendServerMessage("That player is already DJ blocked!"); + else { + sendServerMessage("DJ blocked player."); + target->sendServerMessage("You were blocked from changing the music by a moderator. " + getReprimand()); + } + target->is_dj_blocked = true; +} + +void AOClient::cmdUnBlockDj(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_dj_blocked) + sendServerMessage("That player is not DJ blocked!"); + else { + sendServerMessage("DJ permissions restored to player."); + target->sendServerMessage("A moderator restored your music permissions. " + getReprimand(true)); + } + target->is_dj_blocked = false; +} + +void AOClient::cmdBlockWtce(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_wtce_blocked) + sendServerMessage("That player is already judge blocked!"); + else { + sendServerMessage("Revoked player's access to judge controls."); + target->sendServerMessage("A moderator revoked your judge controls access. " + getReprimand()); + } + target->is_wtce_blocked = true; +} + +void AOClient::cmdUnBlockWtce(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_wtce_blocked) + sendServerMessage("That player is not judge blocked!"); + else { + sendServerMessage("Restored player's access to judge controls."); + target->sendServerMessage("A moderator restored your judge controls access. " + getReprimand(true)); + } + target->is_wtce_blocked = false; +} + QStringList AOClient::buildAreaList(int area_idx) { QStringList entries; @@ -1193,3 +1322,21 @@ long long AOClient::parseTime(QString input) return total; } + +QString AOClient::getReprimand(bool positive) +{ + QString filename = positive ? "praise" : "reprimands"; + QFileInfo reprimands_info("config/text/" + filename + ".txt"); + if (!(reprimands_info.exists() && reprimands_info.isFile())) { + qWarning() << filename + ".txt doesn't exist!"; + return ""; + } + QStringList reprimands; + QFile file("config/text/" + filename + ".txt"); + file.open(QIODevice::ReadOnly | QIODevice::Text); + while (!file.atEnd()) { + reprimands.append(file.readLine().trimmed()); + } + file.close(); + return reprimands[genRand(0, reprimands.size() - 1)]; +} diff --git a/src/packets.cpp b/src/packets.cpp index 80e89ce..3ed0fd9 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -172,6 +172,11 @@ void AOClient::pktIcChat(AreaData* area, int argc, QStringList argv, AOPacket pa void AOClient::pktOocChat(AreaData* area, int argc, QStringList argv, AOPacket packet) { + if (is_ooc_muted) { + sendServerMessage("You are OOC muted, and cannot speak."); + return; + } + ooc_name = dezalgo(argv[0]).replace(QRegExp("\\[|\\]|\\{|\\}|\\#|\\$|\\%|\\&"), ""); // no fucky wucky shit here if (ooc_name.isEmpty() || ooc_name == server->getServerName()) // impersonation & empty name protection return; @@ -203,6 +208,10 @@ void AOClient::pktPing(AreaData* area, int argc, QStringList argv, AOPacket pack void AOClient::pktChangeMusic(AreaData* area, int argc, QStringList argv, AOPacket packet) { + if (is_dj_blocked) { + sendServerMessage("You are blocked from changing the music."); + return; + } // Due to historical reasons, this // packet has two functions: // Change area, and set music. @@ -243,6 +252,10 @@ void AOClient::pktChangeMusic(AreaData* area, int argc, QStringList argv, AOPack void AOClient::pktWtCe(AreaData* area, int argc, QStringList argv, AOPacket packet) { + if (is_wtce_blocked) { + sendServerMessage("You are blocked from using the judge controls."); + return; + } if (QDateTime::currentDateTime().toSecsSinceEpoch() - last_wtce_time <= 5) return; last_wtce_time = QDateTime::currentDateTime().toSecsSinceEpoch(); @@ -251,6 +264,10 @@ void AOClient::pktWtCe(AreaData* area, int argc, QStringList argv, AOPacket pack void AOClient::pktHpBar(AreaData* area, int argc, QStringList argv, AOPacket packet) { + if (is_wtce_blocked) { + sendServerMessage("You are blocked from using the judge controls."); + return; + } if (argv[0] == "1") { area->def_hp = std::min(std::max(0, argv[1].toInt()), 10); } From 7e28cb0bdf85526928dc837783ff593ff45de5a9 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Tue, 23 Mar 2021 20:44:13 -0500 Subject: [PATCH 02/11] add config sample files --- bin/config_sample/text/praise.txt | 10 ++++++++++ bin/config_sample/text/reprimands.txt | 11 +++++++++++ 2 files changed, 21 insertions(+) create mode 100644 bin/config_sample/text/praise.txt create mode 100644 bin/config_sample/text/reprimands.txt diff --git a/bin/config_sample/text/praise.txt b/bin/config_sample/text/praise.txt new file mode 100644 index 0000000..5cad5b1 --- /dev/null +++ b/bin/config_sample/text/praise.txt @@ -0,0 +1,10 @@ +:3 +\o/ +Be safe! +Have fun! +Be careful! +Have a nice day! +Be responsible! +Be good! +I believe in you! + diff --git a/bin/config_sample/text/reprimands.txt b/bin/config_sample/text/reprimands.txt new file mode 100644 index 0000000..9ed1548 --- /dev/null +++ b/bin/config_sample/text/reprimands.txt @@ -0,0 +1,11 @@ +>:( +;w; +I should have you held in contempt. +You should be ashamed of yourself. +Tsk, tsk. +What did you do this time? +You're better than this. +*sigh* +Didn't anyone ever teach you manners? +Really? +Shameful. \ No newline at end of file From ed3b043f40b2a2b09ea01193a20935e79af5eff4 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Tue, 30 Mar 2021 22:06:02 -0500 Subject: [PATCH 03/11] use iniswaps for pairing --- include/aoclient.h | 5 +++++ src/packets.cpp | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index effbfcf..069ccf0 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -123,6 +123,11 @@ class AOClient : public QObject { */ QString current_char; + /** + * @brief The internal name of the character the client is iniswapped to. + */ + QString current_iniswap; + /** * @brief If true, the client is a logged-in moderator. */ diff --git a/src/packets.cpp b/src/packets.cpp index 80e89ce..8c2465f 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -404,6 +404,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) } qDebug() << "INI swap detected from " << getIpid(); } + current_iniswap = incoming_args[2].toString(); args.append(incoming_args[2].toString()); // emote @@ -513,7 +514,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) QString other_flip = "0"; for (AOClient* client : server->clients) { if (client->pairing_with == char_id && other_charid != char_id && client->char_id == pairing_with) { - other_name = server->characters.at(other_charid); + other_name = client->current_iniswap; other_emote = client->emote; other_offset = client->offset; other_flip = client->flipping; From 43b12ea5aa875829d8a5f43180708c492f35402a Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 31 Mar 2021 19:16:34 +0200 Subject: [PATCH 04/11] Update packets.cpp The AO Client supports up to twelve colors by default. --- src/packets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packets.cpp b/src/packets.cpp index 80e89ce..6eb3438 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -486,7 +486,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) // text color int text_color = incoming_args[14].toInt(); - if (text_color != 0 && text_color != 1 && text_color != 2 && text_color != 3 && text_color != 4 && text_color != 5 && text_color != 6) + if (text_color < 0 || text_color > 11) return invalid; args.append(QString::number(text_color)); From 327f6c0060fa70d9e365fcead0024b90f54dac07 Mon Sep 17 00:00:00 2001 From: in1tiate <32779090+in1tiate@users.noreply.github.com> Date: Wed, 31 Mar 2021 14:31:03 -0500 Subject: [PATCH 05/11] fix capitalization --- include/aoclient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index f003eb7..3541cc5 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1039,7 +1039,7 @@ class AOClient : public QObject { * * @see #is_muted */ - void cmdUnmute(int argc, QStringList argv); + void cmdUnMute(int argc, QStringList argv); /** * @brief OOC-mutes a client. From c49c71a7d4a2fc271a4ea0e578d1773450ad0f09 Mon Sep 17 00:00:00 2001 From: in1tiate <32779090+in1tiate@users.noreply.github.com> Date: Wed, 31 Mar 2021 14:32:29 -0500 Subject: [PATCH 06/11] fix capitalization 2 electric boogaloo --- include/aoclient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index 3541cc5..89ced81 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1500,7 +1500,7 @@ class AOClient : public QObject { {"m", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdM}}, {"gm", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdGM}}, {"mute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdMute}}, - {"unmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnmute}}, + {"unmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnMute}}, {"oocmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}}, {"ooc_mute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}}, {"oocunmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocUnMute}}, From bb103d009ea3ff54f9eee29633b6c3344934ad8b Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 1 Apr 2021 13:12:20 -0500 Subject: [PATCH 07/11] dox --- include/aoclient.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/aoclient.h b/include/aoclient.h index 069ccf0..214189c 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -125,6 +125,8 @@ class AOClient : public QObject { /** * @brief The internal name of the character the client is iniswapped to. + * + * @note This will be the same as current_char if the client is not iniswapped. */ QString current_iniswap; From ca7fe9095842186760cdc315d421c555d2a6619b Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 1 Apr 2021 13:14:14 -0500 Subject: [PATCH 08/11] check the other client's pos against ours before pairing --- src/packets.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/packets.cpp b/src/packets.cpp index 80e89ce..96a81dc 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -512,7 +512,10 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) QString other_offset = "0"; QString other_flip = "0"; for (AOClient* client : server->clients) { - if (client->pairing_with == char_id && other_charid != char_id && client->char_id == pairing_with) { + if (client->pairing_with == char_id + && other_charid != char_id + && client->char_id == pairing_with + && client->pos == pos) { other_name = server->characters.at(other_charid); other_emote = client->emote; other_offset = client->offset; From 953e9a50c754a14c90213e0053e47b3690621f26 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Sat, 3 Apr 2021 03:10:06 -0500 Subject: [PATCH 09/11] fix ipids not being generated --- src/server.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server.cpp b/src/server.cpp index 148dce2..5bf4403 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -134,6 +134,7 @@ void Server::clientConnected() // tsuserver4. It should disable fantacrypt // completely in any client 2.4.3 or newer client->sendPacket(decryptor); + client->calculateIpid(); #ifdef NET_DEBUG qDebug() << client->remote_ip.toString() << "connected"; #endif From 5e79cf3f9f314e0f46c68f9941d407cd25186996 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Sat, 3 Apr 2021 03:29:52 -0500 Subject: [PATCH 10/11] allow blank showname --- src/packets.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/packets.cpp b/src/packets.cpp index 7d24fe4..ac6dce0 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -512,6 +512,8 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) if (incoming_args.length() > 15) { // showname QString incoming_showname = dezalgo(incoming_args[15].toString().trimmed()); + if (incoming_showname.length() == 0) + incoming_showname = " "; args.append(incoming_showname); showname = incoming_showname; From 737f2f102e3d56b152ee3f8dfa041dd7ad7db65d Mon Sep 17 00:00:00 2001 From: scatterflower Date: Sat, 3 Apr 2021 03:49:36 -0500 Subject: [PATCH 11/11] update ver string --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 8560141..d754691 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -36,7 +36,7 @@ int main(int argc, char* argv[]) { QCoreApplication app(argc, argv); QCoreApplication::setApplicationName("akashi"); - QCoreApplication::setApplicationVersion("apricot r2 prerelease"); + QCoreApplication::setApplicationVersion("apricot r2"); std::atexit(cleanup); ConfigManager config_manager;