Add documentation for the judgelog, updateJudgeLog(), and the /judgelog command.
This commit is contained in:
parent
d98eedd6e9
commit
0aa772ea89
@ -1389,6 +1389,13 @@ class AOClient : public QObject {
|
|||||||
*/
|
*/
|
||||||
void cmd8Ball(int argc, QStringList argv);
|
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);
|
void cmdJudgeLog(int argc, QStringList argv);
|
||||||
|
|
||||||
///@}
|
///@}
|
||||||
@ -1633,6 +1640,15 @@ class AOClient : public QObject {
|
|||||||
*/
|
*/
|
||||||
QString last_message;
|
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);
|
void updateJudgeLog(AreaData* area, AOClient* client, QString action);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -273,6 +273,11 @@ class AreaData : public QObject {
|
|||||||
EvidenceMod evi_mod;
|
EvidenceMod evi_mod;
|
||||||
QMap<QString, QString> notecards;
|
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;
|
QStringList judgelog;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user