
* 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>
77 lines
2.5 KiB
C++
77 lines
2.5 KiB
C++
#include "include/packet/packet_id.h"
|
|
#include "include/config_manager.h"
|
|
#include "include/server.h"
|
|
|
|
#include <QDebug>
|
|
|
|
PacketID::PacketID(QStringList &contents) :
|
|
AOPacket(contents)
|
|
{
|
|
}
|
|
|
|
PacketInfo PacketID::getPacketInfo() const
|
|
{
|
|
PacketInfo info{
|
|
.acl_permission = ACLRole::Permission::NONE,
|
|
.min_args = 2,
|
|
.header = "ID"};
|
|
return info;
|
|
}
|
|
|
|
void PacketID::handlePacket(AreaData *area, AOClient &client) const
|
|
{
|
|
Q_UNUSED(area)
|
|
|
|
if (client.m_version.major == 2) {
|
|
// No double sending of the ID packet!
|
|
client.sendPacket("BD", {"A protocol error has been encountered. Packet : ID"});
|
|
client.m_socket->close();
|
|
return;
|
|
}
|
|
|
|
// Full feature list as of AO 2.8.5
|
|
// The only ones that are critical to ensuring the server works are
|
|
// "noencryption" and "fastloading"
|
|
QStringList l_feature_list = {
|
|
"noencryption", "yellowtext", "prezoom",
|
|
"flipping", "customobjections", "fastloading",
|
|
"deskmod", "evidence", "cccc_ic_support",
|
|
"arup", "casing_alerts", "modcall_reason",
|
|
"looping_sfx", "additive", "effects",
|
|
"y_offset", "expanded_desk_mods", "auth_packet"};
|
|
|
|
client.m_version.string = m_content[1];
|
|
QRegularExpression rx("\\b(\\d+)\\.(\\d+)\\.(\\d+)\\b"); // matches X.X.X (e.g. 2.9.0, 2.4.10, etc.)
|
|
QRegularExpressionMatch l_match = rx.match(client.m_version.string);
|
|
if (l_match.hasMatch()) {
|
|
client.m_version.release = l_match.captured(1).toInt();
|
|
client.m_version.major = l_match.captured(2).toInt();
|
|
client.m_version.minor = l_match.captured(3).toInt();
|
|
}
|
|
if (m_content[0] == "webAO") {
|
|
client.m_version.release = 2;
|
|
client.m_version.major = 10;
|
|
client.m_version.minor = 0;
|
|
}
|
|
|
|
if (client.m_version.release != 2) {
|
|
// No valid ID packet resolution.
|
|
client.sendPacket("BD", {"A protocol error has been encountered. Packet : ID\nMajor version not recognised."});
|
|
client.m_socket->close();
|
|
return;
|
|
}
|
|
|
|
client.sendPacket("PN", {QString::number(client.getServer()->getPlayerCount()), QString::number(ConfigManager::maxPlayers()), ConfigManager::serverDescription()});
|
|
client.sendPacket("FL", l_feature_list);
|
|
|
|
if (ConfigManager::assetUrl().isValid()) {
|
|
QByteArray l_asset_url = ConfigManager::assetUrl().toEncoded(QUrl::EncodeSpaces);
|
|
client.sendPacket("ASS", {l_asset_url});
|
|
}
|
|
}
|
|
|
|
bool PacketID::validatePacket() const
|
|
{
|
|
return true;
|
|
}
|