Merge pull request #120 from Salanto/add-asset-packet

Add asset packet + network encoding
This commit is contained in:
scatterflower 2021-05-11 08:44:09 -05:00 committed by GitHub
commit f01db9b22e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 0 deletions

View File

@ -20,6 +20,7 @@ maximum_statements=10
multiclient_limit=15
maximum_characters=256
message_floodguard=250
asset_url=Your WebAO asset url here.
[Dice]
max_value=100

View File

@ -317,6 +317,10 @@ class Server : public QObject {
* @brief The minimum time between IC messages, in milliseconds.
*/
int message_floodguard;
/**
* @brief URL send to the client during handshake to set the remote repository URL.
*/
QUrl asset_url;
public slots:
/**

View File

@ -265,6 +265,10 @@ void AOClient::sendPacket(AOPacket packet)
#ifdef NET_DEBUG
qDebug() << "Sent packet:" << packet.header << ":" << packet.contents;
#endif
packet.contents.replaceInStrings("#", "<num>")
.replaceInStrings("%", "<percent>")
.replaceInStrings("$", "<dollar>")
.replaceInStrings("&", "<and>");
socket->write(packet.toUtf8());
socket->flush();
}

View File

@ -63,6 +63,11 @@ void AOClient::pktSoftwareId(AreaData* area, int argc, QStringList argv, AOPacke
sendPacket("PN", {QString::number(server->player_count), server->max_players});
sendPacket("FL", feature_list);
if (server->asset_url.isValid()) {
QByteArray asset_url = server->asset_url.toEncoded(QUrl::EncodeSpaces);
sendPacket("ASS", {asset_url});
}
}
void AOClient::pktBeginLoad(AreaData* area, int argc, QStringList argv, AOPacket packet)

View File

@ -295,6 +295,9 @@ void Server::loadServerConfig()
message_floodguard = config.value("message_floodguard", "250").toInt(&message_floodguard_conversion_success);
if (!message_floodguard_conversion_success)
message_floodguard = 30;
asset_url = config.value("asset_url","").toString().toUtf8();
if (!asset_url.isValid())
asset_url = NULL;
config.endGroup();
//Load dice values