From b1dfeec8f5a92c89bc77c6ba0b8e5de01ab76254 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 15 Apr 2021 13:58:41 -0500 Subject: [PATCH] euthanize morton, code cleanup --- include/aoclient.h | 19 ++----------------- src/packets.cpp | 25 +++++-------------------- 2 files changed, 7 insertions(+), 37 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index a99c8e6..79bcbf1 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -220,24 +220,9 @@ class AOClient : public QObject { /** - * @brief A structure for storing the client's casing alert preferences. + * @brief A list of 5 casing preferences (def, pro, judge, jury, steno) */ - struct CasingPreferences { - QString caselist = ""; //!< The list of cases this user is willing to host (assuming they are also willing to CM) (unused) - bool cm = false; //!< If the user is willing to host cases (unused) - bool defense = false; //!< If the user is willing to defend a case / play as a defense attorney (or a co-defense attorney) - bool prosecution = false; //!< If the user is willing to prosecute a case / play as a prosecutor (or a co-prosecutor) - bool judge = false; //!< If the user is willing to judge a case - bool jury = false; //!< If the user is willing to be a member of the jury in a case - bool stenographer = false; //!< If the user is willing to be the stenographer of a case - }; - - /** - * @brief The client's casing alert preferences. - * - * @see The struct itself for more details. - */ - CasingPreferences casing_preferences; + QList casing_preferences = {false, false, false, false, false}; /** * @brief If true, the client's in-character messages will have their word order randomised. diff --git a/src/packets.cpp b/src/packets.cpp index c2f77e0..9790289 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -346,28 +346,19 @@ void AOClient::pktEditEvidence(AreaData* area, int argc, QStringList argv, AOPac void AOClient::pktSetCase(AreaData* area, int argc, QStringList argv, AOPacket packet) { - casing_preferences.caselist = argv[0]; QList prefs_list; - for (int i = 1; i <=6; i++) { + for (int i = 2; i <=6; i++) { bool is_int = false; bool pref = argv[i].toInt(&is_int); if (!is_int) return; prefs_list.append(pref); } - casing_preferences.cm = prefs_list[0]; - casing_preferences.defense = prefs_list[1]; - casing_preferences.prosecution = prefs_list[2]; - casing_preferences.judge = prefs_list[3]; - casing_preferences.jury = prefs_list[4]; - casing_preferences.stenographer = prefs_list[5]; + casing_preferences = prefs_list; } void AOClient::pktAnnounceCase(AreaData* area, int argc, QStringList argv, AOPacket packet) { - // the following is an example of the type of code AO2 makes me write - // you may wish to do something more pleasant rather than read this garbage - // taking a bath in battery acid, for instance QString case_title = argv[0]; QStringList needed_roles; QList needs_list; @@ -389,18 +380,12 @@ void AOClient::pktAnnounceCase(AreaData* area, int argc, QStringList argv, AOPac QString message = "=== Case Announcement ===\r\n" + ooc_name == "" ? current_char : ooc_name + " needs " + needed_roles.join(", ") + " for " + case_title == "" ? "a case" : case_title + "!"; QList clients_to_alert; - // this is morton the indented if statement - // please do not feed morton + // here lies morton, RIP for (AOClient* client : server->clients) { - if (((client->casing_preferences.defense && needed_roles.contains("defense attorney")) || - (client->casing_preferences.prosecution && needed_roles.contains("prosecutor")) || - (client->casing_preferences.judge && needed_roles.contains("judge")) || - (client->casing_preferences.jury && needed_roles.contains("jurors")) || - (client->casing_preferences.stenographer && needed_roles.contains("stenographer"))) - && !clients_to_alert.contains(client)) + QSet matches = client->casing_preferences.toSet().intersect(needs_list.toSet()); + if (matches.isEmpty() && !clients_to_alert.contains(client)) clients_to_alert.append(client); } - // morton is a little ugly but we love him anyway for (AOClient* client : clients_to_alert) { client->sendPacket(AOPacket("CASEA", {message, argv[1], argv[2], argv[3], argv[4], argv[5], "1"}));