Document AOPacket, link docs for network protocol to relevant classes
This commit is contained in:
parent
58ac797e78
commit
bd5ff8d65e
@ -27,6 +27,9 @@
|
||||
|
||||
/**
|
||||
* @brief A communicator class to update the master server on the server's status.
|
||||
*
|
||||
* @see https://github.com/AttorneyOnline/docs/blob/master/docs/development/network.md#master-server-protocol
|
||||
* for more explanation about how to communicate with the master server.
|
||||
*/
|
||||
class Advertiser : public QObject {
|
||||
Q_OBJECT
|
||||
|
@ -23,14 +23,51 @@
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
|
||||
/**
|
||||
* @brief An Attorney Online 2 compatible packet.
|
||||
*
|
||||
* @see https://github.com/AttorneyOnline/docs/blob/master/docs/development/network.md for a general explanation
|
||||
* on Attorney Online 2's network protocol.
|
||||
*/
|
||||
class AOPacket {
|
||||
public:
|
||||
/**
|
||||
* @brief Creates an AOPacket with the given header and contents.
|
||||
*
|
||||
* @param p_header The header for the packet.
|
||||
* @param p_contents The contents of the packet.
|
||||
*/
|
||||
AOPacket(QString p_header, QStringList p_contents);
|
||||
|
||||
/**
|
||||
* @brief AOPacket Interprets a string of a full (header + content) packet into an AOPacket.
|
||||
*
|
||||
* @param packet The string to interpret.
|
||||
*/
|
||||
AOPacket(QString packet);
|
||||
|
||||
/**
|
||||
* @brief Returns the string representation of the packet.
|
||||
*
|
||||
* @return See brief description.
|
||||
*/
|
||||
QString toString();
|
||||
|
||||
/**
|
||||
* @brief Convenience function over AOPacket::toString() + QString::toUtf8().
|
||||
*
|
||||
* @return A UTF-8 representation of the packet.
|
||||
*/
|
||||
QByteArray toUtf8();
|
||||
|
||||
/**
|
||||
* @brief The string that indentifies the type of the packet.
|
||||
*/
|
||||
QString header;
|
||||
|
||||
/**
|
||||
* @brief The list of parameters for the packet. Can be empty.
|
||||
*/
|
||||
QStringList contents;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user