Merge pull request #219 from Salanto/fix-modern-advertiser

Fix incorrect playercount when advertising
This commit is contained in:
Rosemary Witchaven 2021-12-21 07:46:38 -06:00 committed by GitHub
commit b64030ae68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 59 additions and 87 deletions

View File

@ -74,7 +74,10 @@ advertise=false
debug=false debug=false
; The IP address of the master server. Unless something happens to the default one, you shouldn't change this. ; The IP address of the master server. Unless something happens to the default one, you shouldn't change this.
ms_ip=https://ms3.oldmud0.workers.dev/servers ms_ip=https://servers.aceattorneyonline.com/servers
; Optional hostname of your server. Can either be an IP or a DNS name. Disabled automatic IP detection of ms3.
hostname=
[Dice] [Dice]
; The maximum number of sides dice can be rolled with. ; The maximum number of sides dice can be rolled with.

View File

@ -448,6 +448,12 @@ class ConfigManager {
*/ */
static QUrl advertiserHTTPIP(); static QUrl advertiserHTTPIP();
/**
* @brief Returns an optional hostname paramemter for the advertiser.
* If used allows user to set a custom IP or domain name.
*/
static QString advertiserHostname();
/** /**
* @brief Returns the uptime of the server in miliseconds. * @brief Returns the uptime of the server in miliseconds.
*/ */

View File

@ -20,25 +20,7 @@
#include <QtNetwork> #include <QtNetwork>
#include <QObject> #include <QObject>
#include "include/config_manager.h"
//Don't question this. It needs to be here for some reason.
struct advertiser_config {
QString name;
QString description;
int port;
int ws_port;
int players;
QUrl masterserver;
bool debug;
};
struct update_advertiser_config {
QString name;
QString description;
int players;
QUrl masterserver;
bool debug;
};
/** /**
* @brief Represents the advertiser of the server. Sends current server information to masterserver. * @brief Represents the advertiser of the server. Sends current server information to masterserver.
@ -72,16 +54,14 @@ public slots:
void msRequestFinished(QNetworkReply *f_reply); void msRequestFinished(QNetworkReply *f_reply);
/** /**
* @brief Sets the values being advertised to masterserver. * @brief Updates the playercount of the server in the advertiser.
* @param config Configuration struct for the advertiser. Always includes ALL settings.
*/ */
void setAdvertiserSettings(advertiser_config config); void updatePlayerCount(int f_current_players);
/** /**
* @brief Sets the updated values being advertiser to masterserver. * @brief Updates advertisement values
* @param config Configuration struct for the advertiser. Only includes partial information, as ports can't be changed.
*/ */
void updateAdvertiserSettings(update_advertiser_config config); void updateAdvertiserSettings();
private: private:
@ -95,6 +75,11 @@ private:
*/ */
QString m_name; QString m_name;
/**
* @brief Optional hostname of the server. Can either be an IP or a DNS name. Disabled automatic IP detection of ms3.
*/
QString m_hostname;
/** /**
* @brief Description of the server that is displayed in the client when the server is selected. * @brief Description of the server that is displayed in the client when the server is selected.
*/ */

View File

@ -169,16 +169,6 @@ class Server : public QObject {
*/ */
int getCharID(QString char_name); int getCharID(QString char_name);
/**
* @brief Creates an HTTP advertiser config struct and emits it using server::reloadHTTPRequest.
*/
void setHTTPAdvertiserConfig();
/**
* @brief Updates the modern advertiser configuration on configuration reload.
*/
void updateHTTPAdvertiserConfig();
/** /**
* @brief Checks if an IP is in a subnet of the IPBanlist. * @brief Checks if an IP is in a subnet of the IPBanlist.
**/ **/
@ -303,16 +293,15 @@ class Server : public QObject {
void reloadRequest(QString p_name, QString p_desc); void reloadRequest(QString p_name, QString p_desc);
/** /**
* @brief Sends all necessary info for the modern advertiser. * @brief Updates the playercount in the modern advertiser.
* @param Struct that contains all configuration for the advertiser
*/ */
void setHTTPConfiguration(struct advertiser_config config); void updatePlayerCount(int f_current_players);
/** /**
* @brief Sends a partial update to the modern advertiser. * @brief Triggers a partial update of the modern advertiser as some information, such as ports
* @param Struct that contains partial information about the server to update the advertised information. * can't be updated while the server is running.
*/ */
void updateHTTPConfiguration(struct update_advertiser_config config); void updateHTTPConfiguration();
/** /**
* @brief Sends a modcall webhook request, emitted by AOClient::pktModcall. * @brief Sends a modcall webhook request, emitted by AOClient::pktModcall.

View File

@ -54,6 +54,7 @@ void AOClient::clientDisconnected()
#endif #endif
if (m_joined) { if (m_joined) {
server->m_player_count--; server->m_player_count--;
emit server->updatePlayerCount(server->m_player_count);
server->m_areas[m_current_area]->clientLeftArea(server->getCharID(m_current_char)); server->m_areas[m_current_area]->clientLeftArea(server->getCharID(m_current_char));
arup(ARUPType::PLAYER_COUNT, true); arup(ARUPType::PLAYER_COUNT, true);
} }

View File

@ -592,6 +592,11 @@ QUrl ConfigManager::advertiserHTTPIP()
return m_settings->value("ModernAdvertiser/ms_ip","").toUrl(); return m_settings->value("ModernAdvertiser/ms_ip","").toUrl();
} }
QString ConfigManager::advertiserHostname()
{
return m_settings->value("ModernAdvertiser/hostname","").toString();
}
qint64 ConfigManager::uptime() qint64 ConfigManager::uptime()
{ {
return m_uptimeTimer->elapsed(); return m_uptimeTimer->elapsed();

View File

@ -5,6 +5,15 @@ HTTPAdvertiser::HTTPAdvertiser()
m_manager = new QNetworkAccessManager(); m_manager = new QNetworkAccessManager();
connect(m_manager, &QNetworkAccessManager::finished, connect(m_manager, &QNetworkAccessManager::finished,
this, &HTTPAdvertiser::msRequestFinished); this, &HTTPAdvertiser::msRequestFinished);
m_name = ConfigManager::serverName();
m_hostname = ConfigManager::advertiserHostname();
m_description = ConfigManager::serverDescription();
m_port = ConfigManager::serverPort();
m_ws_port = ConfigManager::webaoPort();
m_masterserver = ConfigManager::advertiserHTTPIP();
m_debug = ConfigManager::advertiserHTTPDebug();
} }
HTTPAdvertiser::~HTTPAdvertiser() HTTPAdvertiser::~HTTPAdvertiser()
@ -21,6 +30,11 @@ void HTTPAdvertiser::msAdvertiseServer()
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
QJsonObject l_json; QJsonObject l_json;
if (!m_hostname.isEmpty()) {
l_json["ip"] = m_hostname;
}
l_json["port"] = m_port; l_json["port"] = m_port;
if (m_ws_port != -1) { if (m_ws_port != -1) {
l_json["ws_port"] = m_ws_port; l_json["ws_port"] = m_ws_port;
@ -66,26 +80,18 @@ void HTTPAdvertiser::msRequestFinished(QNetworkReply *f_reply)
f_reply->deleteLater(); f_reply->deleteLater();
} }
void HTTPAdvertiser::setAdvertiserSettings(advertiser_config config) void HTTPAdvertiser::updatePlayerCount(int f_current_players)
{ {
m_name = config.name; m_players = f_current_players;
m_description = config.description;
m_port = config.port;
m_ws_port = config.ws_port;
m_players = config.players;
m_masterserver = config.masterserver;
m_debug = config.debug;
msAdvertiseServer();
} }
void HTTPAdvertiser::updateAdvertiserSettings(update_advertiser_config config) void HTTPAdvertiser::updateAdvertiserSettings()
{ {
m_name = config.name; m_name = ConfigManager::serverName();
m_description = config.description; m_hostname = ConfigManager::advertiserHostname();
m_players = config.players; m_description = ConfigManager::serverDescription();
m_masterserver = config.masterserver; m_masterserver = ConfigManager::advertiserHTTPIP();
m_debug = config.debug; m_debug = ConfigManager::advertiserHTTPDebug();
} }

View File

@ -133,6 +133,7 @@ void AOClient::pktLoadingDone(AreaData* area, int argc, QStringList argv, AOPack
} }
server->m_player_count++; server->m_player_count++;
emit server->updatePlayerCount(server->m_player_count);
area->clientJoinedArea(); area->clientJoinedArea();
m_joined = true; m_joined = true;
server->updateCharsTaken(area); server->updateCharsTaken(area);

View File

@ -69,11 +69,12 @@ void Server::start()
connect(httpAdvertiserTimer, &QTimer::timeout, connect(httpAdvertiserTimer, &QTimer::timeout,
httpAdvertiser, &HTTPAdvertiser::msAdvertiseServer); httpAdvertiser, &HTTPAdvertiser::msAdvertiseServer);
connect(this, &Server::setHTTPConfiguration, connect(this, &Server::updatePlayerCount,
httpAdvertiser, &HTTPAdvertiser::setAdvertiserSettings); httpAdvertiser, &HTTPAdvertiser::updatePlayerCount);
connect(this, &Server::updateHTTPConfiguration, connect(this, &Server::updateHTTPConfiguration,
httpAdvertiser, &HTTPAdvertiser::updateAdvertiserSettings); httpAdvertiser, &HTTPAdvertiser::updateAdvertiserSettings);
setHTTPAdvertiserConfig(); emit updatePlayerCount(m_player_count);
httpAdvertiser->msAdvertiseServer();
httpAdvertiserTimer->start(300000); httpAdvertiserTimer->start(300000);
} }
@ -232,7 +233,7 @@ void Server::reloadSettings()
{ {
ConfigManager::reloadSettings(); ConfigManager::reloadSettings();
emit reloadRequest(ConfigManager::serverName(), ConfigManager::serverDescription()); emit reloadRequest(ConfigManager::serverName(), ConfigManager::serverDescription());
updateHTTPAdvertiserConfig(); emit updateHTTPConfiguration();
handleDiscordIntegration(); handleDiscordIntegration();
logger->loadLogtext(); logger->loadLogtext();
m_music_list = ConfigManager::musiclist(); m_music_list = ConfigManager::musiclist();
@ -321,31 +322,6 @@ int Server::getCharID(QString char_name)
return -1; // character does not exist return -1; // character does not exist
} }
void Server::setHTTPAdvertiserConfig()
{
advertiser_config config;
config.name = ConfigManager::serverName();
config.description = ConfigManager::serverDescription();
config.port = ConfigManager::serverPort();
config.ws_port = ConfigManager::webaoPort();
config.players = ConfigManager::maxPlayers();
config.masterserver = ConfigManager::advertiserHTTPIP();
config.debug = ConfigManager::advertiserHTTPDebug();
emit setHTTPConfiguration(config);
}
void Server::updateHTTPAdvertiserConfig()
{
update_advertiser_config config;
config.name = ConfigManager::serverName();
config.description = ConfigManager::serverDescription();
config.players = ConfigManager::maxPlayers();
config.masterserver = ConfigManager::advertiserHTTPIP();
config.debug = ConfigManager::advertiserHTTPDebug();
emit updateHTTPConfiguration(config);
}
QQueue<QString> Server::getAreaBuffer(const QString &f_areaName) QQueue<QString> Server::getAreaBuffer(const QString &f_areaName)
{ {
return logger->buffer(f_areaName); return logger->buffer(f_areaName);