Add documentation for the judgelog, updateJudgeLog(), and the /judgelog command.

This commit is contained in:
MangosArentLiterature 2021-04-06 13:49:08 -05:00
parent d98eedd6e9
commit 0aa772ea89
2 changed files with 21 additions and 0 deletions

View File

@ -1389,6 +1389,13 @@ class AOClient : public QObject {
*/
void cmd8Ball(int argc, QStringList argv);
/**
* @brief Sends an out-of-character message with the judgelog of an area.
*
* @details No arguments.
*
* @iscommand
*/
void cmdJudgeLog(int argc, QStringList argv);
///@}
@ -1633,6 +1640,15 @@ class AOClient : public QObject {
*/
QString last_message;
/**
* @brief A helper function to add recorded packets to an area's judgelog.
*
* @param area Pointer to the area where the packet was sent.
*
* @param client Pointer to the client that sent the packet.
*
* @param action String containing the info that is being recorded.
*/
void updateJudgeLog(AreaData* area, AOClient* client, QString action);
};

View File

@ -273,6 +273,11 @@ class AreaData : public QObject {
EvidenceMod evi_mod;
QMap<QString, QString> notecards;
/**
* @brief The judgelog of an area.
*
* @details This list contains up to 10 recorded packets of the most recent judge actions (WT/CE or penalty updates) in an area.
*/
QStringList judgelog;
};