
* Replace packet handler with templates * Move all packet functions into classes * Liberal use of Q_UNSUED * Add correct argument count to packets * Fix windows build issues * Partially implement argument type validation * Where applicable. * Checking if we can convert from a string to a string would be useless * Fix unit tests for AOPacket Co-authored-by: scatterflower <marisa@scatterflower.online> Co-authored-by: Salanto <62221668+Salanto@users.noreply.github.com>
32 lines
707 B
C++
32 lines
707 B
C++
#include "include/packet/packet_generic.h"
|
|
|
|
#include <QDebug>
|
|
|
|
PacketGeneric::PacketGeneric(QString header, QStringList contents) :
|
|
AOPacket(contents),
|
|
header(header)
|
|
{
|
|
}
|
|
|
|
PacketInfo PacketGeneric::getPacketInfo() const
|
|
{
|
|
PacketInfo info{
|
|
.acl_permission = ACLRole::Permission::NONE,
|
|
.min_args = 0,
|
|
.header = header};
|
|
return info;
|
|
}
|
|
|
|
void PacketGeneric::handlePacket(AreaData *area, AOClient &client) const
|
|
{
|
|
Q_UNUSED(area)
|
|
Q_UNUSED(client)
|
|
qDebug() << "ERROR: Cannot handle generic packet: " << header;
|
|
qDebug() << "Packet is either unimplemented, or is meant to be sent to client";
|
|
}
|
|
|
|
bool PacketGeneric::validatePacket() const
|
|
{
|
|
return true;
|
|
}
|