Add a new system of loading configuration files for commands.

- Adds ConfigManager::verifyCommandConfig(), which verifies the command config files found in config/text/ exist and are files.
- Adds Server::loadConfigFile(), which returns the contents of a txt file in config/text/ into a stringlist.
- Adds Server::loadCommandConfig(), which loads stringlists for commands to utilize using loadConfigFile().
This commit is contained in:
MangosArentLiterature 2021-04-08 22:51:04 -05:00
parent 036c2907a1
commit 290862c504
4 changed files with 70 additions and 0 deletions

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

@ -216,6 +216,33 @@ class Server : public QObject {
*/ */
QTimer* timer; QTimer* timer;
/**
* @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.

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

@ -96,6 +96,7 @@ void Server::start()
QString area_name = raw_area_names[i]; QString area_name = raw_area_names[i];
areas.insert(i, new AreaData(area_name, i)); areas.insert(i, new AreaData(area_name, i));
} }
loadCommandConfig();
} }
void Server::clientConnected() void Server::clientConnected()
@ -215,6 +216,25 @@ int Server::getCharID(QString char_name)
return -1; // character does not exist return -1; // character does not exist
} }
void Server::loadCommandConfig()
{
magic_8ball_answers.append(loadConfigFile("8ball"));
praise_list.append(loadConfigFile("praise"));
reprimands_list.append(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;
}
Server::~Server() Server::~Server()
{ {
for (AOClient* client : clients) { for (AOClient* client : clients) {