From 28ed456386d5991e7528726b30835ff7e106277a Mon Sep 17 00:00:00 2001 From: scatterflower Date: Sun, 23 Aug 2020 14:45:11 -0500 Subject: [PATCH] clang format --- .clang-format | 2 + include/advertiser.h | 31 +++--- include/akashimain.h | 30 +++--- include/config_manager.h | 22 ++-- include/packet_manager.h | 4 +- include/server.h | 15 ++- src/advertiser.cpp | 75 +++++++------ src/akashimain.cpp | 62 ++++++----- src/config_manager.cpp | 222 +++++++++++++++++++++------------------ src/main.cpp | 57 +++++----- src/packet_manager.cpp | 12 +-- src/server.cpp | 9 +- 12 files changed, 283 insertions(+), 258 deletions(-) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..a050582 --- /dev/null +++ b/.clang-format @@ -0,0 +1,2 @@ +BasedOnStyle: LLVM +BreakBeforeBraces: Stroustrup diff --git a/include/advertiser.h b/include/advertiser.h index d6badf4..fa631ba 100644 --- a/include/advertiser.h +++ b/include/advertiser.h @@ -3,34 +3,35 @@ #include -#include -#include #include #include +#include +#include class Advertiser : public QObject { - Q_OBJECT + Q_OBJECT public: - Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port, QString p_name, QString p_description); - void contactMasterServer(); + Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port, + QString p_name, QString p_description); + void contactMasterServer(); signals: public slots: - void readData(); - void socketConnected(); - void socketDisconnected(); + void readData(); + void socketConnected(); + void socketDisconnected(); private: - QString ip; - int port; - int ws_port; - int local_port; - QString name; - QString description; + QString ip; + int port; + int ws_port; + int local_port; + QString name; + QString description; - QTcpSocket *socket; + QTcpSocket *socket; }; #endif // MASTER_H diff --git a/include/akashimain.h b/include/akashimain.h index 64d1c60..7b7aee3 100644 --- a/include/akashimain.h +++ b/include/akashimain.h @@ -5,30 +5,32 @@ #include #include +#include #include #include -#include QT_BEGIN_NAMESPACE -namespace Ui { class AkashiMain; } +namespace Ui { +class AkashiMain; +} QT_END_NAMESPACE -class AkashiMain : public QMainWindow -{ - Q_OBJECT +class AkashiMain : public QMainWindow { + Q_OBJECT public: - AkashiMain(QWidget *parent = nullptr); - ~AkashiMain(); + AkashiMain(QWidget *parent = nullptr); + ~AkashiMain(); - QSettings config; - ConfigManager config_manager; + QSettings config; + ConfigManager config_manager; + + void generateDefaultConfig(bool backup_old); + void updateConfig(int current_version); - void generateDefaultConfig(bool backup_old); - void updateConfig(int current_version); private: - Ui::AkashiMain *ui; - Advertiser *advertiser; - Server *server; + Ui::AkashiMain *ui; + Advertiser *advertiser; + Server *server; }; #endif // AKASHIMAIN_H diff --git a/include/config_manager.h b/include/config_manager.h index 04e133c..e391fea 100644 --- a/include/config_manager.h +++ b/include/config_manager.h @@ -3,22 +3,24 @@ #define CONFIG_VERSION 1 -#include -#include -#include #include +#include +#include +#include -class ConfigManager{ +class ConfigManager { public: - ConfigManager(QSettings*); - bool initConfig(); - void generateDefaultConfig(bool backup_old); - void updateConfig(int current_version); + ConfigManager(QSettings *); + bool initConfig(); + void generateDefaultConfig(bool backup_old); + void updateConfig(int current_version); - bool loadServerSettings(QString* ms_ip, int* port, int* ws_port, int* local_port, QString* name, QString* description, bool* advertise_server); + bool loadServerSettings(QString *ms_ip, int *port, int *ws_port, + int *local_port, QString *name, QString *description, + bool *advertise_server); private: - QSettings* config; + QSettings *config; }; #endif // CONFIG_MANAGER_H diff --git a/include/packet_manager.h b/include/packet_manager.h index 02ec333..14b9618 100644 --- a/include/packet_manager.h +++ b/include/packet_manager.h @@ -4,9 +4,9 @@ #include #include -class PacketManager{ +class PacketManager { public: - static QString buildPacket(QString header, QStringList contents); + static QString buildPacket(QString header, QStringList contents); }; #endif // PACKET_MANAGER_H diff --git a/include/server.h b/include/server.h index db8468e..c30dba9 100644 --- a/include/server.h +++ b/include/server.h @@ -1,20 +1,19 @@ #ifndef SERVER_H #define SERVER_H -#include #include +#include -class Server : public QObject -{ - Q_OBJECT +class Server : public QObject { + Q_OBJECT public: - Server(int p_port, int p_ws_port); - void start(); + Server(int p_port, int p_ws_port); + void start(); private: - int port; - int ws_port; + int port; + int ws_port; }; #endif // SERVER_H diff --git a/src/advertiser.cpp b/src/advertiser.cpp index 34d5923..472a7f4 100644 --- a/src/advertiser.cpp +++ b/src/advertiser.cpp @@ -1,49 +1,56 @@ #include "include/advertiser.h" -Advertiser::Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port, QString p_name, QString p_description) +Advertiser::Advertiser(QString p_ip, int p_port, int p_ws_port, + int p_local_port, QString p_name, QString p_description) { - ip = p_ip; - port = p_port; - ws_port = p_ws_port; - local_port = p_local_port; - name = p_name; - description = p_description; + ip = p_ip; + port = p_port; + ws_port = p_ws_port; + local_port = p_local_port; + name = p_name; + description = p_description; } -void Advertiser::contactMasterServer() { - socket = new QTcpSocket(this); - connect(socket, SIGNAL(readyRead()), this, SLOT(readData())); - connect(socket, SIGNAL(connected()), this, SLOT(socketConnected())); - connect(socket, SIGNAL(disconnected()), this, SLOT(socketDisconnected())); +void Advertiser::contactMasterServer() +{ + socket = new QTcpSocket(this); + connect(socket, SIGNAL(readyRead()), this, SLOT(readData())); + connect(socket, SIGNAL(connected()), this, SLOT(socketConnected())); + connect(socket, SIGNAL(disconnected()), this, SLOT(socketDisconnected())); - socket->setSocketOption(QAbstractSocket::KeepAliveOption, 1); - socket->connectToHost(ip, port); + socket->setSocketOption(QAbstractSocket::KeepAliveOption, 1); + socket->connectToHost(ip, port); } -void Advertiser::readData() { - // The information coming back from the MS isn't very useful - // However, it can be useful to see it when debugging - // TODO: master network debug switch - // qDebug() << socket->readAll(); +void Advertiser::readData() +{ + // The information coming back from the MS isn't very useful + // However, it can be useful to see it when debugging + // TODO: master network debug switch + // qDebug() << socket->readAll(); } -void Advertiser::socketConnected() { - // TODO: fire a signal here, i18n - qDebug("Connected to the master server"); - QString concat_ports; - if(ws_port == -1) - concat_ports = QString::number(local_port); - else - concat_ports = QString::number(local_port) + "&" + QString::number(ws_port); +void Advertiser::socketConnected() +{ + // TODO: fire a signal here, i18n + qDebug("Connected to the master server"); + QString concat_ports; + if (ws_port == -1) + concat_ports = QString::number(local_port); + else + concat_ports = QString::number(local_port) + "&" + QString::number(ws_port); - QString ao_packet = PacketManager::buildPacket("SCC", {concat_ports, name, description, "akashi v" + QApplication::applicationVersion()}); - QByteArray data = ao_packet.toUtf8(); + QString ao_packet = PacketManager::buildPacket( + "SCC", {concat_ports, name, description, + "akashi v" + QApplication::applicationVersion()}); + QByteArray data = ao_packet.toUtf8(); - socket->write(data); - socket->flush(); + socket->write(data); + socket->flush(); } -void Advertiser::socketDisconnected() { - // TODO: fire a signal here, i18n - qDebug("Connection to master server lost"); +void Advertiser::socketDisconnected() +{ + // TODO: fire a signal here, i18n + qDebug("Connection to master server lost"); } diff --git a/src/akashimain.cpp b/src/akashimain.cpp index 3990a6e..ea784ae 100644 --- a/src/akashimain.cpp +++ b/src/akashimain.cpp @@ -2,41 +2,39 @@ #include "ui_akashimain.h" AkashiMain::AkashiMain(QWidget *parent) - : QMainWindow(parent) - , config("config.ini", QSettings::IniFormat) - , config_manager(&config) - , ui(new Ui::AkashiMain) + : QMainWindow(parent), config("config.ini", QSettings::IniFormat), + config_manager(&config), ui(new Ui::AkashiMain) { - ui->setupUi(this); - qDebug("Main application started"); + ui->setupUi(this); + qDebug("Main application started"); - if(config_manager.initConfig()) { - // Config is sound, so proceed with starting the server - // Validate some of the config before passing it on - QString ms_ip, name, description; - int port, ws_port, local_port; - bool advertise_server; - bool config_valid = config_manager.loadServerSettings(&ms_ip, &port, &ws_port, &local_port, &name, &description, &advertise_server); + if (config_manager.initConfig()) { + // Config is sound, so proceed with starting the server + // Validate some of the config before passing it on + QString ms_ip, name, description; + int port, ws_port, local_port; + bool advertise_server; + bool config_valid = config_manager.loadServerSettings( + &ms_ip, &port, &ws_port, &local_port, &name, &description, + &advertise_server); - if(!config_valid) { - // TODO: send signal config invalid - config_manager.generateDefaultConfig(true); - } else { - if(advertise_server) { - advertiser = new Advertiser(ms_ip, port, ws_port, local_port, name, description); - advertiser->contactMasterServer(); - } - - // TODO: start the server here - // TODO: send signal server starting. - server = new Server(port, ws_port); - server->start(); - } + if (!config_valid) { + // TODO: send signal config invalid + config_manager.generateDefaultConfig(true); } + else { + if (advertise_server) { + advertiser = + new Advertiser(ms_ip, port, ws_port, local_port, name, description); + advertiser->contactMasterServer(); + } + + // TODO: start the server here + // TODO: send signal server starting. + server = new Server(port, ws_port); + server->start(); + } + } } -AkashiMain::~AkashiMain() -{ - delete ui; -} - +AkashiMain::~AkashiMain() { delete ui; } diff --git a/src/config_manager.cpp b/src/config_manager.cpp index 1724344..3b8484d 100644 --- a/src/config_manager.cpp +++ b/src/config_manager.cpp @@ -1,132 +1,144 @@ #include -ConfigManager::ConfigManager(QSettings* p_config) -{ - config = p_config; -} +ConfigManager::ConfigManager(QSettings *p_config) { config = p_config; } // Validate and set up the config bool ConfigManager::initConfig() { - config->beginGroup("Info"); - QString config_version = config->value("version", "none").toString(); - config->endGroup(); - if(config_version == "none") { - QFileInfo check_file("config.ini"); - // TODO: put proper translatable warnings here - if (!(check_file.exists() && check_file.isFile())){ - // TODO: send signal config doesn't exist - generateDefaultConfig(false); - } else { - // TODO: send signal config is invalid - generateDefaultConfig(true); - } - return false; + config->beginGroup("Info"); + QString config_version = config->value("version", "none").toString(); + config->endGroup(); + if (config_version == "none") { + QFileInfo check_file("config.ini"); + // TODO: put proper translatable warnings here + if (!(check_file.exists() && check_file.isFile())) { + // TODO: send signal config doesn't exist + generateDefaultConfig(false); } - else if(config_version != QString::number(CONFIG_VERSION)) { - bool version_number_is_valid; - int current_version = config_version.toInt(&version_number_is_valid); - if(version_number_is_valid) - updateConfig(current_version); - else - generateDefaultConfig(true); // Version number isn't a number at all - // This means the config is invalid - // TODO: send invalid config signal - return false; - } else { - // Config is valid and up to date, so let's go ahead - return true; + else { + // TODO: send signal config is invalid + generateDefaultConfig(true); } + return false; + } + else if (config_version != QString::number(CONFIG_VERSION)) { + bool version_number_is_valid; + int current_version = config_version.toInt(&version_number_is_valid); + if (version_number_is_valid) + updateConfig(current_version); + else + generateDefaultConfig(true); // Version number isn't a number at all + // This means the config is invalid + // TODO: send invalid config signal + return false; + } + else { + // Config is valid and up to date, so let's go ahead + return true; + } } -// Setting backup_old to true will move the existing config.ini to config_old.ini +// Setting backup_old to true will move the existing config.ini to +// config_old.ini void ConfigManager::generateDefaultConfig(bool backup_old) { - qDebug() << "Config is invalid or missing, making a new one..."; - QDir dir = QDir::current(); - if(backup_old) { - // TODO: failsafe if config_old.ini already exists - dir.rename("config.ini", "config_old.ini"); - } + qDebug() << "Config is invalid or missing, making a new one..."; + QDir dir = QDir::current(); + if (backup_old) { + // TODO: failsafe if config_old.ini already exists + dir.rename("config.ini", "config_old.ini"); + } - // Group: Info - // This contains basic metadata about the config - config->beginGroup("Info"); - config->setValue("version", CONFIG_VERSION); - config->endGroup(); + // Group: Info + // This contains basic metadata about the config + config->beginGroup("Info"); + config->setValue("version", CONFIG_VERSION); + config->endGroup(); - // Group: Options - // This contains general configuration - config->beginGroup("Options"); - config->setValue("language", "en"); - config->setValue("hostname", "$H"); - config->setValue("max_players", "100"); - config->setValue("port", "27016"); - config->setValue("webao_enable", "true"); - config->setValue("webao_port", "27017"); - config->setValue("modpass", "password"); - config->setValue("advertise", "true"); - config->setValue("ms_ip", "master.aceattorneyonline.com"); - config->setValue("ms_port", "27016"); - config->setValue("server_name", "My First Server"); - config->setValue("server_description", "This is my flashy new server"); - config->setValue("multiclient_limit", "16"); - config->setValue("max_message_size", "256"); - config->endGroup(); + // Group: Options + // This contains general configuration + config->beginGroup("Options"); + config->setValue("language", "en"); + config->setValue("hostname", "$H"); + config->setValue("max_players", "100"); + config->setValue("port", "27016"); + config->setValue("webao_enable", "true"); + config->setValue("webao_port", "27017"); + config->setValue("modpass", "password"); + config->setValue("advertise", "true"); + config->setValue("ms_ip", "master.aceattorneyonline.com"); + config->setValue("ms_port", "27016"); + config->setValue("server_name", "My First Server"); + config->setValue("server_description", "This is my flashy new server"); + config->setValue("multiclient_limit", "16"); + config->setValue("max_message_size", "256"); + config->endGroup(); } // Ensure version continuity with config versions void ConfigManager::updateConfig(int current_version) { - if(current_version > CONFIG_VERSION) { - // Config version is newer than the latest version, and the config is invalid - // This could also mean the server is out of date, and the user should be shown a relevant message - // Regardless, regen the config anyways - // TODO: send signal config is invalid - generateDefaultConfig(true); - } - else if (current_version < 0){ - // Negative version number? Invalid! - generateDefaultConfig(true); - } else { - // TODO: send signal config is out of date, and is being updated - // Update the config as needed using a switch. This is nice because we can fall through as we go up the version ladder. - switch(current_version){ - case 0: // Version 0 doesn't actually exist, but we should check for it just in case - case 1: - config->beginGroup("Info"); - config->setValue("version", CONFIG_VERSION); - config->endGroup(); - break; // This is the newest version, and nothing more needs to be done - } + if (current_version > CONFIG_VERSION) { + // Config version is newer than the latest version, and the config is + // invalid This could also mean the server is out of date, and the user + // should be shown a relevant message Regardless, regen the config anyways + // TODO: send signal config is invalid + generateDefaultConfig(true); + } + else if (current_version < 0) { + // Negative version number? Invalid! + generateDefaultConfig(true); + } + else { + // TODO: send signal config is out of date, and is being updated + // Update the config as needed using a switch. This is nice because we can + // fall through as we go up the version ladder. + switch (current_version) { + case 0: // Version 0 doesn't actually exist, but we should check for it just + // in case + case 1: + config->beginGroup("Info"); + config->setValue("version", CONFIG_VERSION); + config->endGroup(); + break; // This is the newest version, and nothing more needs to be done } + } } // Validate and retriever settings related to advertising and the server -bool ConfigManager::loadServerSettings(QString* ms_ip, int* port, int* ws_port, int* local_port, QString* name, QString* description, bool* advertise_server) +bool ConfigManager::loadServerSettings(QString *ms_ip, int *port, int *ws_port, + int *local_port, QString *name, + QString *description, + bool *advertise_server) { - bool port_conversion_success; - bool ws_port_conversion_success; - bool local_port_conversion_success; - config->beginGroup("Options"); - *ms_ip = config->value("ms_ip", "master.aceattorneyonline.com").toString(); - *port = config->value("ms_port", "27016").toInt(&port_conversion_success); - *ws_port = config->value("webao_port", "27017").toInt(&ws_port_conversion_success); - *local_port = config->value("port", "27016").toInt(&local_port_conversion_success); - *name = config->value("server_name", "My First Server").toString(); - *description = config->value("server_description", "This is my flashy new server").toString(); - config->endGroup(); - if(!port_conversion_success || !ws_port_conversion_success || !local_port_conversion_success) { - return false; - } else { - if(config->value("advertise", "true").toString() != "true") - *advertise_server = false; - else - *advertise_server = true; + bool port_conversion_success; + bool ws_port_conversion_success; + bool local_port_conversion_success; + config->beginGroup("Options"); + *ms_ip = config->value("ms_ip", "master.aceattorneyonline.com").toString(); + *port = config->value("ms_port", "27016").toInt(&port_conversion_success); + *ws_port = + config->value("webao_port", "27017").toInt(&ws_port_conversion_success); + *local_port = + config->value("port", "27016").toInt(&local_port_conversion_success); + *name = config->value("server_name", "My First Server").toString(); + *description = + config->value("server_description", "This is my flashy new server") + .toString(); + config->endGroup(); + if (!port_conversion_success || !ws_port_conversion_success || + !local_port_conversion_success) { + return false; + } + else { + if (config->value("advertise", "true").toString() != "true") + *advertise_server = false; + else + *advertise_server = true; - if(config->value("webao_enable", "true").toString() != "true") - *ws_port = -1; + if (config->value("webao_enable", "true").toString() != "true") + *ws_port = -1; - return true; - } + return true; + } } diff --git a/src/main.cpp b/src/main.cpp index 4d53c9c..85b1a29 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,45 +1,50 @@ #include "include/akashimain.h" #include -#include #include +#include #include #include -#include #include +#include int main(int argc, char *argv[]) { - QApplication app(argc, argv); - QApplication::setApplicationName("akashi"); - QApplication::setApplicationVersion("0.0.1"); + QApplication app(argc, argv); + QApplication::setApplicationName("akashi"); + QApplication::setApplicationVersion("0.0.1"); - QSettings config("config.ini", QSettings::IniFormat); - config.beginGroup("Options"); - QString language = config.value("language", QLocale().bcp47Name()).toString(); + QSettings config("config.ini", QSettings::IniFormat); + config.beginGroup("Options"); + QString language = config.value("language", QLocale().bcp47Name()).toString(); - QTranslator qt_translator; - qt_translator.load("qt_" + language, QLibraryInfo::location(QLibraryInfo::TranslationsPath)); - app.installTranslator(&qt_translator); + QTranslator qt_translator; + qt_translator.load("qt_" + language, + QLibraryInfo::location(QLibraryInfo::TranslationsPath)); + app.installTranslator(&qt_translator); - QTranslator translator; - translator.load("akashi_" + language, ":/resource/translation/"); - app.installTranslator(&translator); + QTranslator translator; + translator.load("akashi_" + language, ":/resource/translation/"); + app.installTranslator(&translator); - QCommandLineParser parser; - parser.setApplicationDescription(app.translate("main", "A server for Attorney Online 2")); - parser.addHelpOption(); - parser.addVersionOption(); + QCommandLineParser parser; + parser.setApplicationDescription( + app.translate("main", "A server for Attorney Online 2")); + parser.addHelpOption(); + parser.addVersionOption(); - QCommandLineOption headlessOption(QStringList() << "l" << "headless", app.translate("main", "Run the server without a GUI")); - parser.addOption(headlessOption); + QCommandLineOption headlessOption( + QStringList() << "l" + << "headless", + app.translate("main", "Run the server without a GUI")); + parser.addOption(headlessOption); - parser.process(app); - bool headless = parser.isSet(headlessOption); + parser.process(app); + bool headless = parser.isSet(headlessOption); - AkashiMain w; - if(!headless) - w.show(); + AkashiMain w; + if (!headless) + w.show(); - return app.exec(); + return app.exec(); } diff --git a/src/packet_manager.cpp b/src/packet_manager.cpp index 370c878..db51d25 100644 --- a/src/packet_manager.cpp +++ b/src/packet_manager.cpp @@ -2,11 +2,11 @@ QString PacketManager::buildPacket(QString header, QStringList contents) { - QString ao_packet = header; - for(int i = 0; i < contents.length(); i++){ - ao_packet += "#" + contents[i]; - } - ao_packet += "#%"; + QString ao_packet = header; + for (int i = 0; i < contents.length(); i++) { + ao_packet += "#" + contents[i]; + } + ao_packet += "#%"; - return ao_packet; + return ao_packet; } diff --git a/src/server.cpp b/src/server.cpp index b180194..b5a3a6e 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -2,11 +2,8 @@ Server::Server(int p_port, int p_ws_port) { - port = p_port; - ws_port = p_ws_port; + port = p_port; + ws_port = p_ws_port; } -void Server::start() -{ - -} +void Server::start() {}