euthanize morton, code cleanup
This commit is contained in:
parent
122e993a8b
commit
b1dfeec8f5
@ -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 {
|
QList<bool> casing_preferences = {false, false, false, false, false};
|
||||||
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;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief If true, the client's in-character messages will have their word order randomised.
|
* @brief If true, the client's in-character messages will have their word order randomised.
|
||||||
|
@ -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)
|
void AOClient::pktSetCase(AreaData* area, int argc, QStringList argv, AOPacket packet)
|
||||||
{
|
{
|
||||||
casing_preferences.caselist = argv[0];
|
|
||||||
QList<bool> prefs_list;
|
QList<bool> prefs_list;
|
||||||
for (int i = 1; i <=6; i++) {
|
for (int i = 2; i <=6; i++) {
|
||||||
bool is_int = false;
|
bool is_int = false;
|
||||||
bool pref = argv[i].toInt(&is_int);
|
bool pref = argv[i].toInt(&is_int);
|
||||||
if (!is_int)
|
if (!is_int)
|
||||||
return;
|
return;
|
||||||
prefs_list.append(pref);
|
prefs_list.append(pref);
|
||||||
}
|
}
|
||||||
casing_preferences.cm = prefs_list[0];
|
casing_preferences = prefs_list;
|
||||||
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];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AOClient::pktAnnounceCase(AreaData* area, int argc, QStringList argv, AOPacket packet)
|
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];
|
QString case_title = argv[0];
|
||||||
QStringList needed_roles;
|
QStringList needed_roles;
|
||||||
QList<bool> needs_list;
|
QList<bool> 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 + "!";
|
QString message = "=== Case Announcement ===\r\n" + ooc_name == "" ? current_char : ooc_name + " needs " + needed_roles.join(", ") + " for " + case_title == "" ? "a case" : case_title + "!";
|
||||||
|
|
||||||
QList<AOClient*> clients_to_alert;
|
QList<AOClient*> clients_to_alert;
|
||||||
// this is morton the indented if statement
|
// here lies morton, RIP
|
||||||
// please do not feed morton
|
|
||||||
for (AOClient* client : server->clients) {
|
for (AOClient* client : server->clients) {
|
||||||
if (((client->casing_preferences.defense && needed_roles.contains("defense attorney")) ||
|
QSet<bool> matches = client->casing_preferences.toSet().intersect(needs_list.toSet());
|
||||||
(client->casing_preferences.prosecution && needed_roles.contains("prosecutor")) ||
|
if (matches.isEmpty() && !clients_to_alert.contains(client))
|
||||||
(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))
|
|
||||||
clients_to_alert.append(client);
|
clients_to_alert.append(client);
|
||||||
}
|
}
|
||||||
// morton is a little ugly but we love him anyway
|
|
||||||
|
|
||||||
for (AOClient* client : clients_to_alert) {
|
for (AOClient* client : clients_to_alert) {
|
||||||
client->sendPacket(AOPacket("CASEA", {message, argv[1], argv[2], argv[3], argv[4], argv[5], "1"}));
|
client->sendPacket(AOPacket("CASEA", {message, argv[1], argv[2], argv[3], argv[4], argv[5], "1"}));
|
||||||
|
Loading…
Reference in New Issue
Block a user