Merge pull request #74 from AttorneyOnline/caseannouncements
Implement case announcements
This commit is contained in:
commit
59fb56bd61
@ -218,6 +218,12 @@ class AOClient : public QObject {
|
|||||||
{"SUPER", ~0ULL },
|
{"SUPER", ~0ULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief A list of 5 casing preferences (def, pro, judge, jury, steno)
|
||||||
|
*/
|
||||||
|
QList<bool> casing_preferences = {false, false, false, false, false};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @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.
|
||||||
*/
|
*/
|
||||||
@ -472,6 +478,12 @@ class AOClient : public QObject {
|
|||||||
/// Implements [editing evidence](https://github.com/AttorneyOnline/docs/blob/master/docs/development/network.md#edit).
|
/// Implements [editing evidence](https://github.com/AttorneyOnline/docs/blob/master/docs/development/network.md#edit).
|
||||||
void pktEditEvidence(AreaData* area, int argc, QStringList argv, AOPacket packet);
|
void pktEditEvidence(AreaData* area, int argc, QStringList argv, AOPacket packet);
|
||||||
|
|
||||||
|
/// Implements [updating casing preferences](https://github.com/AttorneyOnline/docs/blob/master/docs/development/network.md#case-preferences-update).
|
||||||
|
void pktSetCase(AreaData* area, int argc, QStringList argv, AOPacket packet);
|
||||||
|
|
||||||
|
/// Implements [announcing a case](https://github.com/AttorneyOnline/docs/blob/master/docs/development/network.md#case-alert).
|
||||||
|
void pktAnnounceCase(AreaData* area, int argc, QStringList argv, AOPacket packet);
|
||||||
|
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -622,6 +634,8 @@ class AOClient : public QObject {
|
|||||||
{"PE", {ACLFlags.value("NONE"), 3, &AOClient::pktAddEvidence }},
|
{"PE", {ACLFlags.value("NONE"), 3, &AOClient::pktAddEvidence }},
|
||||||
{"DE", {ACLFlags.value("NONE"), 1, &AOClient::pktRemoveEvidence }},
|
{"DE", {ACLFlags.value("NONE"), 1, &AOClient::pktRemoveEvidence }},
|
||||||
{"EE", {ACLFlags.value("NONE"), 4, &AOClient::pktEditEvidence }},
|
{"EE", {ACLFlags.value("NONE"), 4, &AOClient::pktEditEvidence }},
|
||||||
|
{"SETCASE", {ACLFlags.value("NONE"), 7, &AOClient::pktSetCase }},
|
||||||
|
{"CASEA", {ACLFlags.value("NONE"), 6, &AOClient::pktAnnounceCase }},
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -311,6 +311,7 @@ bool AOClient::checkAuth(unsigned long long acl_mask)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
QString AOClient::getIpid() { return ipid; }
|
QString AOClient::getIpid() { return ipid; }
|
||||||
|
|
||||||
Server* AOClient::getServer() { return server; };
|
Server* AOClient::getServer() { return server; };
|
||||||
|
@ -344,6 +344,59 @@ void AOClient::pktEditEvidence(AreaData* area, int argc, QStringList argv, AOPac
|
|||||||
sendEvidenceList(area);
|
sendEvidenceList(area);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AOClient::pktSetCase(AreaData* area, int argc, QStringList argv, AOPacket packet)
|
||||||
|
{
|
||||||
|
QList<bool> prefs_list;
|
||||||
|
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 = prefs_list;
|
||||||
|
}
|
||||||
|
|
||||||
|
void AOClient::pktAnnounceCase(AreaData* area, int argc, QStringList argv, AOPacket packet)
|
||||||
|
{
|
||||||
|
QString case_title = argv[0];
|
||||||
|
QStringList needed_roles;
|
||||||
|
QList<bool> needs_list;
|
||||||
|
for (int i = 1; i <=5; i++) {
|
||||||
|
bool is_int = false;
|
||||||
|
bool need = argv[i].toInt(&is_int);
|
||||||
|
if (!is_int)
|
||||||
|
return;
|
||||||
|
needs_list.append(need);
|
||||||
|
}
|
||||||
|
QStringList roles = {"defense attorney", "prosecutor", "judge", "jurors", "stenographer"};
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
if (needs_list[i])
|
||||||
|
needed_roles.append(roles[i]);
|
||||||
|
}
|
||||||
|
if (needed_roles.isEmpty())
|
||||||
|
return;
|
||||||
|
|
||||||
|
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;
|
||||||
|
// here lies morton, RIP
|
||||||
|
QSet<bool> needs_set = needs_list.toSet();
|
||||||
|
for (AOClient* client : server->clients) {
|
||||||
|
QSet<bool> matches = client->casing_preferences.toSet().intersect(needs_set);
|
||||||
|
if (!matches.isEmpty() && !clients_to_alert.contains(client))
|
||||||
|
clients_to_alert.append(client);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (AOClient* client : clients_to_alert) {
|
||||||
|
client->sendPacket(AOPacket("CASEA", {message, argv[1], argv[2], argv[3], argv[4], argv[5], "1"}));
|
||||||
|
// you may be thinking, "hey wait a minute the network protocol documentation doesn't mention that last argument!"
|
||||||
|
// if you are in fact thinking that, you are correct! it is not in the documentation!
|
||||||
|
// however for some inscrutable reason Attorney Online 2 will outright reject a CASEA packet that does not have
|
||||||
|
// at least 7 arguments despite only using the first 6. Cera, i kneel. you have truly broken me.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void AOClient::sendEvidenceList(AreaData* area)
|
void AOClient::sendEvidenceList(AreaData* area)
|
||||||
{
|
{
|
||||||
for (AOClient* client : server->clients) {
|
for (AOClient* client : server->clients) {
|
||||||
@ -719,6 +772,4 @@ void AOClient::updateJudgeLog(AreaData* area, AOClient* client, QString action)
|
|||||||
area->judgelog.append(logmessage);
|
area->judgelog.append(logmessage);
|
||||||
}
|
}
|
||||||
else area->judgelog.append(logmessage);
|
else area->judgelog.append(logmessage);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user