Merge pull request #66 from AttorneyOnline/config-loading

Add a new system for loading configuration files
This commit is contained in:
scatterflower 2021-04-14 00:30:31 -05:00 committed by GitHub
commit 56572e681c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 231 additions and 136 deletions

View File

@ -89,6 +89,14 @@ class Advertiser : public QObject {
*/ */
void socketDisconnected(); void socketDisconnected();
/**
* @brief Handles updating the advertiser and recontacting the master server.
*
* @param p_name The new server name.
* @param p_desc The new server description.
*/
void reloadRequested(QString p_name, QString p_desc);
private: private:
/** /**
* @copydoc ConfigManager::server_settings::ms_ip * @copydoc ConfigManager::server_settings::ms_ip

View File

@ -1399,6 +1399,15 @@ class AOClient : public QObject {
*/ */
void cmd8Ball(int argc, QStringList argv); void cmd8Ball(int argc, QStringList argv);
/**
* @brief Reloads all server configuration files.
*
* @details No arguments.
*
* @iscommand
*/
void cmdReload(int argc, QStringList argv);
/** /**
* @brief Sends an out-of-character message with the judgelog of an area. * @brief Sends an out-of-character message with the judgelog of an area.
* *
@ -1616,6 +1625,7 @@ class AOClient : public QObject {
{"judgelog", {ACLFlags.value("CM"), 0, &AOClient::cmdJudgeLog}}, {"judgelog", {ACLFlags.value("CM"), 0, &AOClient::cmdJudgeLog}},
{"allow_blankposting", {ACLFlags.value("MODCHAT"), 0, &AOClient::cmdAllow_Blankposting}}, {"allow_blankposting", {ACLFlags.value("MODCHAT"), 0, &AOClient::cmdAllow_Blankposting}},
{"baninfo", {ACLFlags.value("BAN"), 1, &AOClient::cmdBanInfo}}, {"baninfo", {ACLFlags.value("BAN"), 1, &AOClient::cmdBanInfo}},
{"reload", {ACLFlags.value("SUPER"), 0, &AOClient::cmdReload}},
}; };
/** /**

View File

@ -289,6 +289,11 @@ class AreaData : public QObject {
* @brief The last IC packet sent in an area. * @brief The last IC packet sent in an area.
*/ */
QStringList last_ic_message; QStringList last_ic_message;
/**
* @brief The value of logger in config.ini.
*/
QString log_type;
}; };
#endif // AREA_DATA_H #endif // AREA_DATA_H

View File

@ -93,6 +93,13 @@ class ConfigManager {
* @return See brief description. * @return See brief description.
*/ */
bool fileExists(QFileInfo *file); bool fileExists(QFileInfo *file);
/**
* @brief Verifies the existence of the command configuration files found in config/text/.
*
* @return True if the config files exist, and are files. False otherwise.
*/
bool verifyCommandConfig();
}; };
#endif // CONFIG_MANAGER_H #endif // CONFIG_MANAGER_H

View File

@ -125,24 +125,6 @@ class Server : public QObject {
*/ */
void broadcast(AOPacket packet); void broadcast(AOPacket packet);
/**
* @brief Returns the server's name according to the configuration file.
*
* @return See brief description.
*/
QString getServerName();
/**
* @brief Returns some value regarding the @ref AOClient::diceThrower "dice thrower commands".
*
* @param value_type `max_value` for the maximum amount of faces a die may have,
* `max_dice` for the maximum amount of dice that may be thrown at once.
*
* @return The associated value if it is found in the configuration file under the "Dice" section,
* or `100` if not.
*/
int getDiceValue(QString value_type);
/** /**
* @brief Returns the character's character ID (= their index in the character list). * @brief Returns the character's character ID (= their index in the character list).
* *
@ -199,23 +181,89 @@ class Server : public QObject {
*/ */
DBManager* db_manager; DBManager* db_manager;
/**
* @brief The max amount of players on the server.
*/
QString max_players;
/** /**
* @brief The user-facing server name. * @brief The user-facing server name.
*
* @note Unused. getServerName() serves its purpose instead.
*/ */
QString server_name; QString server_name;
/**
* @brief The server description.
*/
QString server_desc;
/** /**
* @brief The Message Of The Day of the server, shown upon entry to the server and on request. * @brief The Message Of The Day of the server, shown upon entry to the server and on request.
*/ */
QString MOTD; QString MOTD;
/**
* @brief The authorization type of the server.
*
* @details In simple mode, the modpass stored in config.ini is used for moderator logins. In advanced mode, logins found in the database are used.
*/
QString auth_type;
/**
* @brief The modpass for moderator login with simple auth_type.
*/
QString modpass;
/**
* @brief The amount of subscripts zalgo is stripped by.
*/
int zalgo_tolerance;
/**
* @brief The highest value dice can have.
*/
uint dice_value;
/**
* @brief The max amount of dice that can be rolled at once.
*/
int max_dice;
/** /**
* @brief The server-wide global timer. * @brief The server-wide global timer.
*/ */
QTimer* timer; QTimer* timer;
/**
* @brief Loads values from config.ini.
*/
void loadServerConfig();
/**
* @brief Loads the configuration files for commands into stringlists.
*/
void loadCommandConfig();
/**
* @brief Returns a stringlist with the contents of a .txt file from config/text/.
*
* @param Name of the file to load.
*/
QStringList loadConfigFile(QString filename);
/**
* @brief List holding the contents of 8ball.txt, used by /8ball.
*/
QStringList magic_8ball_answers;
/**
* @brief List holding the contents of praise.txt, used by AOClient::getReprimand.
*/
QStringList praise_list;
/**
* @brief List holding the contents of reprimands.txt, used by AOClient::getReprimand.
*/
QStringList reprimands_list;
public slots: public slots:
/** /**
* @brief Handles a new connection. * @brief Handles a new connection.
@ -225,6 +273,16 @@ class Server : public QObject {
*/ */
void clientConnected(); void clientConnected();
signals:
/**
* @brief Sends the server name and description, emitted by /reload.
*
* @param p_name The server name.
* @param p_desc The server description.
*/
void reloadRequest(QString p_name, QString p_desc);
private: private:
/** /**
* @brief The proxy used for WebSocket connections. * @brief The proxy used for WebSocket connections.

View File

@ -64,6 +64,13 @@ void Advertiser::socketDisconnected()
qDebug("Connection to master server lost"); qDebug("Connection to master server lost");
} }
void Advertiser::reloadRequested(QString p_name, QString p_desc)
{
name = p_name;
description = p_desc;
socketConnected();
}
Advertiser::~Advertiser() Advertiser::~Advertiser()
{ {
socket->deleteLater(); socket->deleteLater();

View File

@ -276,17 +276,17 @@ void AOClient::calculateIpid()
void AOClient::sendServerMessage(QString message) void AOClient::sendServerMessage(QString message)
{ {
sendPacket("CT", {server->getServerName(), message, "1"}); sendPacket("CT", {server->server_name, message, "1"});
} }
void AOClient::sendServerMessageArea(QString message) void AOClient::sendServerMessageArea(QString message)
{ {
server->broadcast(AOPacket("CT", {server->getServerName(), message, "1"}), current_area); server->broadcast(AOPacket("CT", {server->server_name, message, "1"}), current_area);
} }
void AOClient::sendServerBroadcast(QString message) void AOClient::sendServerBroadcast(QString message)
{ {
server->broadcast(AOPacket("CT", {server->getServerName(), message, "1"})); server->broadcast(AOPacket("CT", {server->server_name, message, "1"}));
} }
bool AOClient::checkAuth(unsigned long long acl_mask) bool AOClient::checkAuth(unsigned long long acl_mask)
@ -300,14 +300,11 @@ bool AOClient::checkAuth(unsigned long long acl_mask)
else if (!authenticated) { else if (!authenticated) {
return false; return false;
} }
QSettings settings("config/config.ini", QSettings::IniFormat); if (server->auth_type == "advanced") {
settings.beginGroup("Options");
QString auth_type = settings.value("auth", "simple").toString();
if (auth_type == "advanced") {
unsigned long long user_acl = server->db_manager->getACL(moderator_name); unsigned long long user_acl = server->db_manager->getACL(moderator_name);
return (user_acl & acl_mask) != 0; return (user_acl & acl_mask) != 0;
} }
else if (auth_type == "simple") { else if (server->auth_type == "simple") {
return authenticated; return authenticated;
} }
} }

View File

@ -43,6 +43,7 @@ AreaData::AreaData(QString p_name, int p_index) :
QSettings config_ini("config/config.ini", QSettings::IniFormat); QSettings config_ini("config/config.ini", QSettings::IniFormat);
config_ini.beginGroup("Options"); config_ini.beginGroup("Options");
int log_size = config_ini.value("logbuffer", 50).toInt(); int log_size = config_ini.value("logbuffer", 50).toInt();
log_type = config_ini.value("logger","modcall").toString();
config_ini.endGroup(); config_ini.endGroup();
if (log_size == 0) if (log_size == 0)
log_size = 500; log_size = 500;

View File

@ -27,21 +27,16 @@ void AOClient::cmdDefault(int argc, QStringList argv)
void AOClient::cmdLogin(int argc, QStringList argv) void AOClient::cmdLogin(int argc, QStringList argv)
{ {
QSettings config("config/config.ini", QSettings::IniFormat);
config.beginGroup("Options");
QString modpass = config.value("modpass", "default").toString();
QString auth_type = config.value("auth", "simple").toString();
if (authenticated) { if (authenticated) {
sendServerMessage("You are already logged in!"); sendServerMessage("You are already logged in!");
return; return;
} }
if (auth_type == "simple") { if (server->auth_type == "simple") {
if (modpass == "") { if (server->modpass == "") {
sendServerMessage("No modpass is set! Please set a modpass before authenticating."); sendServerMessage("No modpass is set! Please set a modpass before authenticating.");
} }
else if(argv[0] == modpass) { else if(argv[0] == server->modpass) {
sendPacket("AUTH", {"1"}); // Client: "You were granted the Disable Modcalls button." sendPacket("AUTH", {"1"}); // Client: "You were granted the Disable Modcalls button."
sendServerMessage("Logged in as a moderator."); // pre-2.9.1 clients are hardcoded to display the mod UI when this string is sent in OOC sendServerMessage("Logged in as a moderator."); // pre-2.9.1 clients are hardcoded to display the mod UI when this string is sent in OOC
authenticated = true; authenticated = true;
@ -52,7 +47,7 @@ void AOClient::cmdLogin(int argc, QStringList argv)
} }
server->areas.value(current_area)->logger->logLogin(this, authenticated, "moderator"); server->areas.value(current_area)->logger->logLogin(this, authenticated, "moderator");
} }
else if (auth_type == "advanced") { else if (server->auth_type == "advanced") {
if (argc < 2) { if (argc < 2) {
sendServerMessage("You must specify a username and a password"); sendServerMessage("You must specify a username and a password");
return; return;
@ -194,11 +189,7 @@ void AOClient::cmdKick(int argc, QStringList argv)
void AOClient::cmdChangeAuth(int argc, QStringList argv) void AOClient::cmdChangeAuth(int argc, QStringList argv)
{ {
QSettings settings("config/config.ini", QSettings::IniFormat); if (server->auth_type == "simple") {
settings.beginGroup("Options");
QString auth_type = settings.value("auth", "simple").toString();
if (auth_type == "simple") {
change_auth_started = true; change_auth_started = true;
sendServerMessage("WARNING!\nThis command will change how logging in as a moderator works.\nOnly proceed if you know what you are doing\nUse the command /rootpass to set the password for your root account."); sendServerMessage("WARNING!\nThis command will change how logging in as a moderator works.\nOnly proceed if you know what you are doing\nUse the command /rootpass to set the password for your root account.");
} }
@ -214,6 +205,7 @@ void AOClient::cmdSetRootPass(int argc, QStringList argv)
QSettings settings("config/config.ini", QSettings::IniFormat); QSettings settings("config/config.ini", QSettings::IniFormat);
settings.beginGroup("Options"); settings.beginGroup("Options");
settings.setValue("auth", "advanced"); settings.setValue("auth", "advanced");
server->auth_type = "advanced";
#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0) #if QT_VERSION < QT_VERSION_CHECK(5, 10, 0)
qsrand(QDateTime::currentMSecsSinceEpoch()); qsrand(QDateTime::currentMSecsSinceEpoch());
@ -835,14 +827,11 @@ void AOClient::cmdToggleGlobal(int argc, QStringList argv)
void AOClient::cmdMods(int argc, QStringList argv) void AOClient::cmdMods(int argc, QStringList argv)
{ {
QStringList entries; QStringList entries;
QSettings config("config/config.ini", QSettings::IniFormat);
config.beginGroup("Options");
QString auth_type = config.value("auth", "simple").toString();
int online_count = 0; int online_count = 0;
for (AOClient* client : server->clients) { for (AOClient* client : server->clients) {
if (client->authenticated) { if (client->authenticated) {
entries << "---"; entries << "---";
if (auth_type != "simple") if (server->auth_type != "simple")
entries << "Moderator: " + client->moderator_name; entries << "Moderator: " + client->moderator_name;
entries << "OOC name: " + client->ooc_name; entries << "OOC name: " + client->ooc_name;
entries << "ID: " + QString::number(client->id); entries << "ID: " + QString::number(client->id);
@ -1256,35 +1245,18 @@ void AOClient::cmdNoteCardReveal(int argc, QStringList argv)
void AOClient::cmd8Ball(int argc, QStringList argv) void AOClient::cmd8Ball(int argc, QStringList argv)
{ {
QFileInfo magic8ball_info("config/text/8ball.txt"); if (server->magic_8ball_answers.isEmpty()) {
if (!(magic8ball_info.exists() && magic8ball_info.isFile())) { qWarning() << "8ball.txt is empty!";
qWarning() << "8ball.txt doesn't exist!"; sendServerMessage("8ball.txt is empty.");
sendServerMessage("8ball.txt doesn't exist."); }
}
else { else {
QStringList answers; int answerindex = server->magic_8ball_answers.size();
QFile file("config/text/8ball.txt"); QString response = server->magic_8ball_answers[(genRand(1, answerindex))];
file.open(QIODevice::ReadOnly | QIODevice::Text); QString sender_name = ooc_name;
while (!file.atEnd()) { QString sender_message = argv.join(" ");
answers.append(file.readLine().trimmed());
sendServerMessageArea(sender_name + " asked the magic 8-ball, \"" + sender_message + "\" and the answer is: " + response);
} }
file.close();
if (answers.isEmpty()) {
qWarning() << "8ball.txt is empty!";
sendServerMessage("8ball.txt is empty.");
}
else {
int answerindex = answers.size();
QString response = answers[(genRand(1, answerindex))];
QString sender_name = ooc_name;
QString sender_message = argv.join(" ");
sendServerMessageArea(sender_name + " asked the magic 8-ball, \"" + sender_message + "\" and the answer is: " + response);
}
}
} }
void AOClient::cmdJudgeLog(int argc, QStringList argv) void AOClient::cmdJudgeLog(int argc, QStringList argv)
@ -1356,6 +1328,14 @@ void AOClient::cmdBanInfo(int argc, QStringList argv)
sendServerMessage(ban_info.join("\n")); sendServerMessage(ban_info.join("\n"));
} }
void AOClient::cmdReload(int argc, QStringList argv)
{
server->loadServerConfig();
server->loadCommandConfig();
emit server->reloadRequest(server->server_name, server->server_desc);
sendServerMessage("Reloaded configurations");
}
QStringList AOClient::buildAreaList(int area_idx) QStringList AOClient::buildAreaList(int area_idx)
{ {
QStringList entries; QStringList entries;
@ -1405,8 +1385,8 @@ int AOClient::genRand(int min, int max)
void AOClient::diceThrower(int argc, QStringList argv, RollType type) void AOClient::diceThrower(int argc, QStringList argv, RollType type)
{ {
QString sender_name = ooc_name; QString sender_name = ooc_name;
int max_value = server->getDiceValue("max_value"); int max_value = server->dice_value;
int max_dice = server->getDiceValue("max_dice"); int max_dice = server->max_dice;
int bounded_value; int bounded_value;
int bounded_amount; int bounded_amount;
QString dice_results; QString dice_results;
@ -1528,18 +1508,10 @@ long long AOClient::parseTime(QString input)
QString AOClient::getReprimand(bool positive) QString AOClient::getReprimand(bool positive)
{ {
QString filename = positive ? "praise" : "reprimands"; if (positive) {
QFileInfo reprimands_info("config/text/" + filename + ".txt"); return server->praise_list[genRand(0, server->praise_list.size() - 1)];
if (!(reprimands_info.exists() && reprimands_info.isFile())) { }
qWarning() << filename + ".txt doesn't exist!"; else {
return ""; return server->reprimands_list[genRand(0, server->reprimands_list.size() - 1)];
} }
QStringList reprimands;
QFile file("config/text/" + filename + ".txt");
file.open(QIODevice::ReadOnly | QIODevice::Text);
while (!file.atEnd()) {
reprimands.append(file.readLine().trimmed());
}
file.close();
return reprimands[genRand(0, reprimands.size() - 1)];
} }

View File

@ -91,6 +91,9 @@ bool ConfigManager::initConfig()
qCritical() << "config.ini is invalid!"; qCritical() << "config.ini is invalid!";
return false; return false;
} }
if (!(verifyCommandConfig())) {
return false;
}
else { else {
// Config is valid and up to date, so let's go ahead // Config is valid and up to date, so let's go ahead
@ -176,3 +179,16 @@ bool ConfigManager::fileExists(QFileInfo* file)
{ {
return (file->exists() && file->isFile()); return (file->exists() && file->isFile());
} }
bool ConfigManager::verifyCommandConfig()
{
QStringList filelist = {"8ball", "praise", "reprimands"};
foreach (QString filename, filelist) {
QFileInfo file("config/text/" + filename + ".txt");
if (!(fileExists(&file))) {
qCritical() << (filename + ".txt doesn't exist!");
return false;
}
}
return true;
}

View File

@ -77,13 +77,10 @@ QString Logger::buildEntry(AOClient *client, QString type, QString message)
void Logger::addEntry(QString entry) void Logger::addEntry(QString entry)
{ {
QSettings config("config/config.ini", QSettings::IniFormat);
config.beginGroup("Options");
QString log_type = config.value("logging", "modcall").toString();
if (buffer.length() < max_length) { if (buffer.length() < max_length) {
buffer.enqueue(entry); buffer.enqueue(entry);
if (log_type == "full") { if (area->log_type == "full") {
flush(); flush();
} }
} }
else { else {
@ -99,20 +96,20 @@ void Logger::flush()
dir.mkpath("."); dir.mkpath(".");
} }
QSettings config("config/config.ini", QSettings::IniFormat);
config.beginGroup("Options");
QString log_type = config.value("logging", "modcall").toString();
QFile logfile; QFile logfile;
if (log_type == "modcall") { if (area->log_type == "modcall") {
logfile.setFileName(QString("logs/report_%1_%2.log").arg((area->name), (QDateTime::currentDateTime().toString("yyyy-MM-dd_hhmmss")))); logfile.setFileName(QString("logs/report_%1_%2.log").arg((area->name), (QDateTime::currentDateTime().toString("yyyy-MM-dd_hhmmss"))));
} }
else if (log_type == "full") { else if (area->log_type == "full") {
logfile.setFileName(QString("logs/%1.log").arg(QDate::currentDate().toString("yyyy-MM-dd"))); logfile.setFileName(QString("logs/%1.log").arg(QDate::currentDate().toString("yyyy-MM-dd")));
} }
if (logfile.open(QIODevice::WriteOnly | QIODevice::Append)) { else {
QTextStream file_stream(&logfile); qCritical("Invalid logger set!");
while (!buffer.isEmpty()) }
file_stream << buffer.dequeue(); if (logfile.open(QIODevice::WriteOnly | QIODevice::Append)) {
QTextStream file_stream(&logfile);
while (!buffer.isEmpty())
file_stream << buffer.dequeue();
} }
logfile.close(); logfile.close();
} }

View File

@ -62,6 +62,7 @@ int main(int argc, char* argv[])
} }
server = new Server(settings.port, settings.ws_port); server = new Server(settings.port, settings.ws_port);
QObject::connect(server, &Server::reloadRequest, advertiser, &Advertiser::reloadRequested);
server->start(); server->start();
} }
} else { } else {

View File

@ -37,10 +37,7 @@ void AOClient::pktHardwareId(AreaData* area, int argc, QStringList argv, AOPacke
void AOClient::pktSoftwareId(AreaData* area, int argc, QStringList argv, AOPacket packet) void AOClient::pktSoftwareId(AreaData* area, int argc, QStringList argv, AOPacket packet)
{ {
QSettings config("config/config.ini", QSettings::IniFormat);
config.beginGroup("Options");
QString max_players = config.value("max_players").toString();
config.endGroup();
// Full feature list as of AO 2.8.5 // Full feature list as of AO 2.8.5
// The only ones that are critical to ensuring the server works are // The only ones that are critical to ensuring the server works are
@ -64,7 +61,7 @@ void AOClient::pktSoftwareId(AreaData* area, int argc, QStringList argv, AOPacke
version.minor = match.captured(3).toInt(); version.minor = match.captured(3).toInt();
} }
sendPacket("PN", {QString::number(server->player_count), max_players}); sendPacket("PN", {QString::number(server->player_count), server->max_players});
sendPacket("FL", feature_list); sendPacket("FL", feature_list);
} }
@ -181,7 +178,7 @@ void AOClient::pktOocChat(AreaData* area, int argc, QStringList argv, AOPacket p
} }
ooc_name = dezalgo(argv[0]).replace(QRegExp("\\[|\\]|\\{|\\}|\\#|\\$|\\%|\\&"), ""); // no fucky wucky shit here ooc_name = dezalgo(argv[0]).replace(QRegExp("\\[|\\]|\\{|\\}|\\#|\\$|\\%|\\&"), ""); // no fucky wucky shit here
if (ooc_name.isEmpty() || ooc_name == server->getServerName()) // impersonation & empty name protection if (ooc_name.isEmpty() || ooc_name == server->server_name) // impersonation & empty name protection
return; return;
QString message = dezalgo(argv[1]); QString message = dezalgo(argv[1]);
@ -633,14 +630,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
QString AOClient::dezalgo(QString p_text) QString AOClient::dezalgo(QString p_text)
{ {
QSettings config("config/config.ini", QSettings::IniFormat); QRegExp rxp("([\u0300-\u036f\u1ab0-\u1aff\u1dc0-\u1dff\u20d0-\u20ff\ufe20-\ufe2f\u115f\u1160\u3164]{" + QRegExp::escape(QString::number(server->zalgo_tolerance)) + ",})");
config.beginGroup("Options");
bool zalgo_tolerance_conversion_success;
int zalgo_tolerance = config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
if (!zalgo_tolerance_conversion_success)
zalgo_tolerance = 3;
QRegExp rxp("([\u0300-\u036f\u1ab0-\u1aff\u1dc0-\u1dff\u20d0-\u20ff\ufe20-\ufe2f\u115f\u1160\u3164]{" + QRegExp::escape(QString::number(zalgo_tolerance)) + ",})");
QString filtered = p_text.replace(rxp, ""); QString filtered = p_text.replace(rxp, "");
return filtered; return filtered;
} }

View File

@ -51,7 +51,8 @@ void Server::start()
qDebug() << "Server listening on" << port; qDebug() << "Server listening on" << port;
} }
MOTD = config.value("motd","MOTD is not set.").toString(); loadServerConfig();
loadCommandConfig();
proxy = new WSProxy(port, ws_port, this); proxy = new WSProxy(port, ws_port, this);
if(ws_port != -1) if(ws_port != -1)
@ -168,24 +169,6 @@ void Server::broadcast(AOPacket packet)
} }
} }
QString Server::getServerName()
{
QSettings settings("config/config.ini", QSettings::IniFormat);
settings.beginGroup("Options");
QString server_name = settings.value("server_name", "Akashi").toString();
return server_name;
}
int Server::getDiceValue(QString value_type)
{
QSettings settings("config/config.ini", QSettings::IniFormat);
settings.beginGroup("Dice");
int value = settings.value(value_type, "100").toUInt();
settings.endGroup();
return value;
}
QList<AOClient*> Server::getClientsByIpid(QString ipid) QList<AOClient*> Server::getClientsByIpid(QString ipid)
{ {
QList<AOClient*> return_clients; QList<AOClient*> return_clients;
@ -215,6 +198,49 @@ int Server::getCharID(QString char_name)
return -1; // character does not exist return -1; // character does not exist
} }
void Server::loadCommandConfig()
{
magic_8ball_answers = (loadConfigFile("8ball"));
praise_list = (loadConfigFile("praise"));
reprimands_list = (loadConfigFile("reprimands"));
}
QStringList Server::loadConfigFile(QString filename)
{
QStringList stringlist;
QFile file("config/text/" + filename + ".txt");
file.open(QIODevice::ReadOnly | QIODevice::Text);
while (!(file.atEnd())) {
stringlist.append(file.readLine().trimmed());
}
file.close();
return stringlist;
}
void Server::loadServerConfig()
{
QSettings config("config/config.ini", QSettings::IniFormat);
config.beginGroup("Options");
//Load config.ini values
max_players = config.value("max_players","100").toString();
server_name = config.value("server_name","An Unnamed Server").toString();
server_desc = config.value("server_description","This is a placeholder server description. Tell the world of AO who you are here!").toString();
MOTD = config.value("motd","MOTD is not set.").toString();
auth_type = config.value("auth","simple").toString();
modpass = config.value("modpass","").toString();
bool zalgo_tolerance_conversion_success;
zalgo_tolerance = config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
if (!zalgo_tolerance_conversion_success)
zalgo_tolerance = 3;
config.endGroup();
//Load dice values
config.beginGroup("Dice");
dice_value = config.value("value_type", "100").toInt();
max_dice = config.value("max_dice","100").toInt();
config.endGroup();
}
Server::~Server() Server::~Server()
{ {
for (AOClient* client : clients) { for (AOClient* client : clients) {