From ccfb6481cfa782994f856cfca851b4ae43e28c88 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Tue, 1 Sep 2020 15:43:48 -0500 Subject: [PATCH 01/12] make no gui build --- akashi.pro | 7 +++--- include/advertiser.h | 2 +- include/akashimain.h | 52 -------------------------------------- include/server.h | 2 +- src/advertiser.cpp | 2 +- src/akashimain.cpp | 60 -------------------------------------------- src/aoclient.cpp | 2 +- src/main.cpp | 54 ++++++++++++++++++++++++++++----------- 8 files changed, 47 insertions(+), 134 deletions(-) delete mode 100644 include/akashimain.h delete mode 100644 src/akashimain.cpp diff --git a/akashi.pro b/akashi.pro index e9b5a5d..fa4e238 100644 --- a/akashi.pro +++ b/akashi.pro @@ -1,6 +1,7 @@ -QT += core gui network websockets - -greaterThan(QT_MAJOR_VERSION, 4): QT += widgets +QT += network websockets core +QT -= gui +TEMPLATE = app +# greaterThan(QT_MAJOR_VERSION, 4): QT += widgets CONFIG += c++11 diff --git a/include/advertiser.h b/include/advertiser.h index 3d1f81f..b2c5752 100644 --- a/include/advertiser.h +++ b/include/advertiser.h @@ -20,7 +20,7 @@ #include "include/aopacket.h" -#include +#include #include #include #include diff --git a/include/akashimain.h b/include/akashimain.h deleted file mode 100644 index 8f18aec..0000000 --- a/include/akashimain.h +++ /dev/null @@ -1,52 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////// -// akashi - a server for Attorney Online 2 // -// Copyright (C) 2020 scatterflower // -// // -// This program is free software: you can redistribute it and/or modify // -// it under the terms of the GNU Affero General Public License as // -// published by the Free Software Foundation, either version 3 of the // -// License, or (at your option) any later version. // -// // -// This program is distributed in the hope that it will be useful, // -// but WITHOUT ANY WARRANTY; without even the implied warranty of // -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // -// GNU Affero General Public License for more details. // -// // -// You should have received a copy of the GNU Affero General Public License // -// along with this program. If not, see . // -////////////////////////////////////////////////////////////////////////////////////// -#ifndef AKASHIMAIN_H -#define AKASHIMAIN_H - -#include "include/advertiser.h" -#include "include/config_manager.h" -#include "include/server.h" - -#include -#include -#include - -QT_BEGIN_NAMESPACE -namespace Ui { -class AkashiMain; -} -QT_END_NAMESPACE - -class AkashiMain : public QMainWindow { - Q_OBJECT - - public: - AkashiMain(QWidget* parent = nullptr); - ~AkashiMain(); - - ConfigManager config_manager; - - void generateDefaultConfig(bool backup_old); - void updateConfig(int current_version); - - private: - Ui::AkashiMain* ui; - Advertiser* advertiser; - Server* server; -}; -#endif // AKASHIMAIN_H diff --git a/include/server.h b/include/server.h index f1b8bbf..ff5be5a 100644 --- a/include/server.h +++ b/include/server.h @@ -23,7 +23,7 @@ #include "include/area_data.h" #include "include/ws_proxy.h" -#include +#include #include #include #include diff --git a/src/advertiser.cpp b/src/advertiser.cpp index 67e1f35..79af152 100644 --- a/src/advertiser.cpp +++ b/src/advertiser.cpp @@ -62,7 +62,7 @@ void Advertiser::socketConnected() AOPacket ao_packet("SCC", {concat_ports, name, description, - "akashi v" + QApplication::applicationVersion()}); + "akashi v" + QCoreApplication::applicationVersion()}); QByteArray data = ao_packet.toUtf8(); socket->write(data); diff --git a/src/akashimain.cpp b/src/akashimain.cpp deleted file mode 100644 index 155336d..0000000 --- a/src/akashimain.cpp +++ /dev/null @@ -1,60 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////// -// akashi - a server for Attorney Online 2 // -// Copyright (C) 2020 scatterflower // -// // -// This program is free software: you can redistribute it and/or modify // -// it under the terms of the GNU Affero General Public License as // -// published by the Free Software Foundation, either version 3 of the // -// License, or (at your option) any later version. // -// // -// This program is distributed in the hope that it will be useful, // -// but WITHOUT ANY WARRANTY; without even the implied warranty of // -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // -// GNU Affero General Public License for more details. // -// // -// You should have received a copy of the GNU Affero General Public License // -// along with this program. If not, see . // -////////////////////////////////////////////////////////////////////////////////////// -#include "include/akashimain.h" -#include "ui_akashimain.h" - -AkashiMain::AkashiMain(QWidget* parent) - : QMainWindow(parent), config_manager(), ui(new Ui::AkashiMain) -{ - 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 - ConfigManager::server_settings settings; - bool config_valid = config_manager.loadServerSettings(&settings); - - if (!config_valid) { - // TODO: send signal config invalid - config_manager.generateDefaultConfig(true); - } - else { - if (settings.advertise_server) { - // TODO: send signal advertiser started - advertiser = - new Advertiser(settings.ms_ip, settings.port, - settings.ws_port, settings.local_port, - settings.name, settings.description, this); - advertiser->contactMasterServer(); - } - - // TODO: start the server here - // TODO: send signal server starting. - server = new Server(settings.port, settings.ws_port); - server->start(); - } - } -} - -AkashiMain::~AkashiMain() -{ - delete ui; - delete advertiser; - delete server; -} diff --git a/src/aoclient.cpp b/src/aoclient.cpp index d2a58a8..a7cb36b 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -73,7 +73,7 @@ void AOClient::handlePacket(AOPacket packet) // Lord forgive me if (packet.header == "HI") { setHwid(packet.contents[0]); - sendPacket("ID", {"271828", "akashi", QApplication::applicationVersion()}); + sendPacket("ID", {"271828", "akashi", QCoreApplication::applicationVersion()}); } else if (packet.header == "ID") { QSettings config("config.ini", QSettings::IniFormat); diff --git a/src/main.cpp b/src/main.cpp index c21be04..352bdef 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -15,13 +15,14 @@ // You should have received a copy of the GNU Affero General Public License // // along with this program. If not, see . // ////////////////////////////////////////////////////////////////////////////////////// -#include "include/akashimain.h" - +#include "include/advertiser.h" +#include "include/server.h" +#include "include/config_manager.h" #ifdef _WIN32 #include #endif -#include +#include #include #include #include @@ -29,6 +30,9 @@ #include #include +Advertiser* advertiser; +Server* server; + int main(int argc, char* argv[]) { #ifdef _WIN32 @@ -46,9 +50,9 @@ int main(int argc, char* argv[]) } } #endif - QApplication app(argc, argv); - QApplication::setApplicationName("akashi"); - QApplication::setApplicationVersion("0.0.1"); + QCoreApplication app(argc, argv); + QCoreApplication::setApplicationName("akashi"); + QCoreApplication::setApplicationVersion("0.0.1"); QSettings config("config.ini", QSettings::IniFormat); config.beginGroup("Options"); @@ -70,23 +74,43 @@ int main(int argc, char* argv[]) parser.addHelpOption(); parser.addVersionOption(); - QCommandLineOption headlessOption( - QStringList() << "l" - << "headless", - app.translate("main", "Run the server without a GUI.")); QCommandLineOption verboseNetworkOption( QStringList() << "nv" << "verbose-network", app.translate("main", "Write all network traffic to the console.")); - parser.addOption(headlessOption); parser.addOption(verboseNetworkOption); parser.process(app); - bool headless = parser.isSet(headlessOption); - AkashiMain w; - if (!headless) - w.show(); + qDebug("Main application started"); + + ConfigManager config_manager; + if (config_manager.initConfig()) { + // Config is sound, so proceed with starting the server + // Validate some of the config before passing it on + ConfigManager::server_settings settings; + bool config_valid = config_manager.loadServerSettings(&settings); + + if (!config_valid) { + // TODO: send signal config invalid + config_manager.generateDefaultConfig(true); + } + else { + if (settings.advertise_server) { + // TODO: send signal advertiser started + advertiser = + new Advertiser(settings.ms_ip, settings.port, + settings.ws_port, settings.local_port, + settings.name, settings.description); + advertiser->contactMasterServer(); + } + + // TODO: start the server here + // TODO: send signal server starting. + server = new Server(settings.port, settings.ws_port); + server->start(); + } + } return app.exec(); } From c408b35198319d49c3b3cdd6b8d3e2934bf008c0 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Tue, 1 Sep 2020 16:19:08 -0500 Subject: [PATCH 02/12] remove all ui stuff --- akashi.pro | 8 - resource/forms/akashimain.ui | 615 ------------------------------ resource/translation/akashi_es.qm | Bin 289 -> 0 bytes resource/translation/akashi_es.ts | 25 -- src/main.cpp | 15 - 5 files changed, 663 deletions(-) delete mode 100644 resource/forms/akashimain.ui delete mode 100644 resource/translation/akashi_es.qm delete mode 100644 resource/translation/akashi_es.ts diff --git a/akashi.pro b/akashi.pro index fa4e238..738d623 100644 --- a/akashi.pro +++ b/akashi.pro @@ -26,15 +26,7 @@ SOURCES += $$files($$PWD/src/*.cpp) HEADERS += $$files($$PWD/include/*.h) -FORMS += $$files($$PWD/resource/forms/*.ui) - -TRANSLATIONS += \ - resource/translation/akashi_es.ts - # Default rules for deployment. qnx: target.path = /tmp/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target - -RESOURCES += \ - resources.qrc diff --git a/resource/forms/akashimain.ui b/resource/forms/akashimain.ui deleted file mode 100644 index 1f4f34d..0000000 --- a/resource/forms/akashimain.ui +++ /dev/null @@ -1,615 +0,0 @@ - - - AkashiMain - - - true - - - - 0 - 0 - 640 - 483 - - - - - Ubuntu - - - - AkashiMain - - - Qt::LeftToRight - - - /*background-color: rgb(240, 240, 240);*/ -background-color: rgb(53, 53, 53); - - - QTabWidget::Rounded - - - - - true - - - - - 0 - - - - - false - - - color: rgb(243, 243, 243); - - - 0 - - - - - 0 - 0 - - - - Qt::LeftToRight - - - - - - Server - - - - 0 - - - 9 - - - 9 - - - 9 - - - 9 - - - - - true - - - - 0 - 0 - - - - - 22 - - - - Qt::LeftToRight - - - false - - - /*background-color: rgb(45, 57, 67);*/ -background-color: rgba(191, 64, 64, 0); -color: rgb(240, 240, 240); -padding: 16px 3px 16px 3px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(11, 24, 35, 255), stop:1 rgba(61, 73, 82, 255));*/ - - - Server name - - - Qt::AlignCenter - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 2 - 2 - - - - - - - - - 0 - 0 - - - - - 18 - - - - color: rgb(240, 240, 240); -background-color: rgb(246, 36, 81); -padding: 12px 18px 12px 18px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(202, 0, 43, 255), stop:1 rgba(255, 43, 89, 255));*/ - - - Offline - - - Qt::AlignCenter - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 0 - 24 - - - - - - - - 0 - - - QLayout::SetDefaultConstraint - - - 0 - - - 0 - - - 0 - - - 0 - - - - - true - - - - 0 - 0 - - - - - 20 - - - - Qt::LeftToRight - - - false - - - QPushButton { - border: none; - border-radius: 4px; - background-color: rgb(31, 215, 141); - /*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(0, 193, 115, 255), stop:1 rgba(33, 251, 163, 255));*/ - color: rgb(240, 240, 240); - padding: 20px 30px 20px 30px; -} - -QPushButton:pressed { - background-color: rgb(72, 240, 164); -} - -QPushButton:flat { - border: none; /* no border for a flat push button */ -} - - - Start - - - false - - - - - - - - - Qt::Vertical - - - QSizePolicy::MinimumExpanding - - - - 20 - 40 - - - - - - - - 2 - - - - - Qt::Horizontal - - - - 0 - 0 - - - - - - - - - 0 - 0 - - - - - 11 - - - - background-color: rgb(45, 57, 67); -background-color: rgb(45, 57, 67, 0); -color: rgb(240, 240, 240); -/*padding: 16px 3px 16px 3px;*/ -padding: 3px 8px 3px 8px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(11, 24, 35, 255), stop:1 rgba(61, 73, 82, 255));*/ - - - Master Server connection status: - - - - - - - - 0 - 0 - - - - - 12 - - - - color: rgb(240, 240, 240); -background-color: rgb(246, 36, 81); -border-radius: 4px; -padding: 3px 8px 3px 8px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(202, 0, 43, 255), stop:1 rgba(255, 43, 89, 255));*/ - - - Not connected - - - - - - - Qt::Horizontal - - - QSizePolicy::MinimumExpanding - - - - 0 - 0 - - - - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 0 - 24 - - - - - - - - 6 - - - QLayout::SetDefaultConstraint - - - 0 - - - 0 - - - - - 2 - - - QLayout::SetDefaultConstraint - - - - - - 0 - 0 - - - - - 12 - - - - Qt::LeftToRight - - - color: rgb(240, 240, 240); -background-color: rgb(43, 135, 211); -padding: 3px 8px 3px 8px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(36, 128, 204, 255), stop:1 rgba(78, 175, 255, 255));*/ - - - QFrame::NoFrame - - - QFrame::Plain - - - Players - - - Qt::AlignCenter - - - false - - - - - - - true - - - - 0 - 0 - - - - - 14 - - - - color: rgb(240, 240, 240); -/*background-color: rgb(45, 57, 67);*/ -background-color: rgb(45, 57, 67, 0); -padding: 4px 8px 4px 8px; -border-top-right-radius: 2px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(11, 24, 35, 255), stop:1 rgba(61, 73, 82, 255));*/ - - - 0/100 - - - Qt::AlignCenter - - - - - - - - - 2 - - - - - - 0 - 0 - - - - - 12 - - - - color: rgb(240, 240, 240); -background-color: rgb(43, 135, 211); -padding: 3px 8px 3px 8px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(36, 128, 204, 255), stop:1 rgba(78, 175, 255, 255));*/ - - - Software - - - Qt::AlignCenter - - - - - - - - 14 - - - - color: rgb(240, 240, 240); -/*background-color: rgb(45, 57, 67);*/ -background-color: rgb(45, 57, 67, 0); -padding: 4px 8px 4px 8px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(11, 24, 35, 255), stop:1 rgba(61, 73, 82, 255));*/ - - - Akashi - - - Qt::AlignCenter - - - - - - - - - 2 - - - - - - 0 - 0 - - - - - 12 - - - - color: rgb(240, 240, 240); -background-color: rgb(43, 135, 211); -padding: 3px 8px 3px 8px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(36, 128, 204, 255), stop:1 rgba(78, 175, 255, 255));*/ - - - Version - - - Qt::AlignCenter - - - - - - - - 14 - - - - color: rgb(240, 240, 240); -/*background-color: rgb(45, 57, 67);*/ -background-color: rgb(45, 57, 67, 0); -padding: 4px 8px 4px 8px; -border-radius: 4px; -/*background-color: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0, stop:0 rgba(11, 24, 35, 255), stop:1 rgba(61, 73, 82, 255));*/ - - - 0.0.1 - - - Qt::AlignCenter - - - - - - - - - - - - Options - - - - - - - - - - 0 - 0 - 640 - 22 - - - - - - - - diff --git a/resource/translation/akashi_es.qm b/resource/translation/akashi_es.qm deleted file mode 100644 index 2ccbd6bc10da5a63f038d76a1044c8c3a9c100fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmcE7ks@*G{hX<16=n7(EZlq7iGhJZfH7|BP9R;)baUS$AkB~o#2=V}gbPC`Lmq - - - - AkashiMain - - - AkashiMain - - - - - main - - - A server for Attorney Online 2 - Un servidor para Attorney Online 2 - - - - Run the server without a GUI - Empezar el servidor sin interfaz - - - diff --git a/src/main.cpp b/src/main.cpp index 352bdef..7937cf6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,7 +28,6 @@ #include #include #include -#include Advertiser* advertiser; Server* server; @@ -54,20 +53,6 @@ int main(int argc, char* argv[]) QCoreApplication::setApplicationName("akashi"); QCoreApplication::setApplicationVersion("0.0.1"); - 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 translator; - translator.load("akashi_" + language, ":/resource/translation/"); - app.installTranslator(&translator); - QCommandLineParser parser; parser.setApplicationDescription( app.translate("main", "A server for Attorney Online 2")); From 169656a567e94ea4bd8fec98d3f3dc910f0b10a8 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 00:47:16 -0500 Subject: [PATCH 03/12] clean up project --- akashi.pro | 6 ------ 1 file changed, 6 deletions(-) diff --git a/akashi.pro b/akashi.pro index 738d623..e987da8 100644 --- a/akashi.pro +++ b/akashi.pro @@ -1,7 +1,6 @@ QT += network websockets core QT -= gui TEMPLATE = app -# greaterThan(QT_MAJOR_VERSION, 4): QT += widgets CONFIG += c++11 @@ -25,8 +24,3 @@ RC_ICONS = resource/icon/akashi.ico SOURCES += $$files($$PWD/src/*.cpp) HEADERS += $$files($$PWD/include/*.h) - -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target From 0724b0accde51c21e04c4cfab1ba9aef1d9e52d9 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 00:57:08 -0500 Subject: [PATCH 04/12] remove now unused stuff from main.cpp --- src/main.cpp | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 7937cf6..6556a54 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,55 +18,19 @@ #include "include/advertiser.h" #include "include/server.h" #include "include/config_manager.h" -#ifdef _WIN32 -#include -#endif #include -#include -#include #include -#include -#include Advertiser* advertiser; Server* server; int main(int argc, char* argv[]) { -#ifdef _WIN32 - if (AttachConsole(ATTACH_PARENT_PROCESS)) { - freopen("CONOUT$", "w", stdout); - freopen("CONOUT$", "w", stderr); - } -#endif -#ifdef __linux__ - // We have to do this before the QApplication is instantiated - // As a result, we can't use QCommandLineParser - for(int i = 0; i < argc; i++) { - if(strcmp("-l", argv[i]) == 0 || strcmp("--headless", argv[i]) == 0){ - setenv("QT_QPA_PLATFORM", "minimal", 1); - } - } -#endif QCoreApplication app(argc, argv); QCoreApplication::setApplicationName("akashi"); QCoreApplication::setApplicationVersion("0.0.1"); - QCommandLineParser parser; - parser.setApplicationDescription( - app.translate("main", "A server for Attorney Online 2")); - parser.addHelpOption(); - parser.addVersionOption(); - - QCommandLineOption verboseNetworkOption( - QStringList() << "nv" - << "verbose-network", - app.translate("main", "Write all network traffic to the console.")); - parser.addOption(verboseNetworkOption); - - parser.process(app); - qDebug("Main application started"); ConfigManager config_manager; From f72cb575fefa13de793b42bd9d54444f6c178940 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 00:58:21 -0500 Subject: [PATCH 05/12] remove unnecessary ini entry --- resources.qrc | 5 ----- src/config_manager.cpp | 1 - 2 files changed, 6 deletions(-) delete mode 100644 resources.qrc diff --git a/resources.qrc b/resources.qrc deleted file mode 100644 index 4117cd0..0000000 --- a/resources.qrc +++ /dev/null @@ -1,5 +0,0 @@ - - - resource/translation/akashi_es.qm - - diff --git a/src/config_manager.cpp b/src/config_manager.cpp index 1d2f06f..4209495 100644 --- a/src/config_manager.cpp +++ b/src/config_manager.cpp @@ -207,7 +207,6 @@ void ConfigManager::generateDefaultConfig(bool backup_old) // 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"); From 857e36b83500811dcbb41e31b39e393bfe13ea42 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 08:10:42 -0500 Subject: [PATCH 06/12] don't try to generate config from scratch --- config/areas.ini | 5 + config/characters.txt | 51 ++++++++++ config/config.ini | 18 ++++ config/music.txt | 49 ++++++++++ include/config_manager.h | 3 +- src/config_manager.cpp | 199 ++++----------------------------------- src/main.cpp | 10 +- 7 files changed, 151 insertions(+), 184 deletions(-) create mode 100644 config/areas.ini create mode 100644 config/characters.txt create mode 100644 config/config.ini create mode 100644 config/music.txt diff --git a/config/areas.ini b/config/areas.ini new file mode 100644 index 0000000..14f79ca --- /dev/null +++ b/config/areas.ini @@ -0,0 +1,5 @@ +[Basement] +background=gs4 + +[Courtroom 1] +background=gs4 diff --git a/config/characters.txt b/config/characters.txt new file mode 100644 index 0000000..a7648cc --- /dev/null +++ b/config/characters.txt @@ -0,0 +1,51 @@ +Adrian +Apollo +April +Armstrong +Atmey +Butz +Diego +Edgeworth +Edgeworthw +Ema +EmaSkye +Franny +Franziska +Gant +Gavin +Gavin K +Godot +Gregory +Grossberg +Gumshoe +Gumshoey +Hawk +Hobo_Phoenix +Ini +Judge +Judge's Bro +Klav +Klavier +Kristoph +Lana +Layton +Lotta +Luis +Maggey +Manfred +Marshall +Matt +Maya +Mia +Miles +Oldbag +Payne +Pearl +Phoenix +Valant +Vasquez +Wellington +Winston +WinstonPayne +Young Mia +Zak diff --git a/config/config.ini b/config/config.ini new file mode 100644 index 0000000..c99be8d --- /dev/null +++ b/config/config.ini @@ -0,0 +1,18 @@ +[Info] +version=1 + +[Options] +advertise=true +hostname=$H +language=en +max_message_size=256 +max_players=100 +modpass=password +ms_ip=master.aceattorneyonline.com +ms_port=27016 +multiclient_limit=16 +port=27016 +server_description=This is my flashy new server +server_name=My First Server +webao_enable=true +webao_port=27017 diff --git a/config/music.txt b/config/music.txt new file mode 100644 index 0000000..585b439 --- /dev/null +++ b/config/music.txt @@ -0,0 +1,49 @@ +Announce The Truth (AA).opus +Announce The Truth (AJ).opus +Announce The Truth (JFA).opus +Announce The Truth (Miles).opus +Announce The Truth (T&T).opus +Confrontation ~ Presto 2009.opus +Crises of Fate.opus +Forgotten Legend.opus +Godot - The Fragrance of Dark Coffee.opus +Great Revival ~ Franziska von Karma.opus +Great Revival ~ Miles Edgeworth.opus +Hotline of Fate.opus +Interesting People.opus +Logic and Trick.opus +Luke Atmey ~ I Just Want Love.opus +Noisy People.opus +OBJECTION (AA).opus +Objection (AJ).opus +OBJECTION (JFA).opus +Objection (Miles).opus +OBJECTION (T&T).opus +Others ~ Guilty love.opus +Prelude (AA).opus +Prelude (AJ).opus +Prologue (AA).opus +Pursuit (AA) - variation.opus +Pursuit (AA).opus +Pursuit (AJ).opus +Pursuit (DS).opus +Pursuit (JFA) - variation.opus +Pursuit (JFA).opus +Pursuit (Miles).opus +Pursuit (T&T) - variation.opus +Pursuit (T&T).opus +Pursuit ~ I Want to Find the Truth (Orchestra).opus +Questioning AA (Allegro).opus +Questioning AA (Moderato).opus +Questioning AJ (Allegro).opus +Questioning AJ (Moderato).opus +Questioning JFA (Allegro).opus +Questioning JFA (Moderato).opus +Questioning T&T (Allegro).opus +Questioning T&T (Moderato).opus +Speak up Pup.opus +Suspense (AA).opus +The Great Truth Burglar.opus +Trial (AA).opus +Trial (AJ).opus +Trial (Miles).opus diff --git a/include/config_manager.h b/include/config_manager.h index 223f87f..e433e17 100644 --- a/include/config_manager.h +++ b/include/config_manager.h @@ -30,8 +30,7 @@ class ConfigManager { public: ConfigManager(); bool initConfig(); - void generateDefaultConfig(bool backup_old); - void updateConfig(int current_version); + bool updateConfig(int current_version); struct server_settings { QString ms_ip; diff --git a/src/config_manager.cpp b/src/config_manager.cpp index 4209495..fbbd744 100644 --- a/src/config_manager.cpp +++ b/src/config_manager.cpp @@ -19,166 +19,43 @@ ConfigManager::ConfigManager() { - config = new QSettings("config.ini", QSettings::IniFormat); + config = new QSettings("config/config.ini", QSettings::IniFormat); } // Validate and set up the config bool ConfigManager::initConfig() { - QFileInfo char_list_info("characters.txt"); - if (!(char_list_info.exists() && char_list_info.isFile())) { - // TODO: signals go here - QFile char_list("characters.txt"); - if (!char_list.open(QIODevice::WriteOnly | QIODevice::Text)) - qDebug() << "Couldn't create character list"; - QTextStream file_stream(&char_list); - - qDebug() << "Creating vanilla character list"; - - file_stream << "Adrian\n"; - file_stream << "Apollo\n"; - file_stream << "April\n"; - file_stream << "Armstrong\n"; - file_stream << "Atmey\n"; - file_stream << "Butz\n"; - file_stream << "Diego\n"; - file_stream << "Edgeworth\n"; - file_stream << "Edgeworthw\n"; - file_stream << "Ema\n"; - file_stream << "EmaSkye\n"; - file_stream << "Franny\n"; - file_stream << "Franziska\n"; - file_stream << "Gant\n"; - file_stream << "Gavin\n"; - file_stream << "Gavin K\n"; - file_stream << "Godot\n"; - file_stream << "Gregory\n"; - file_stream << "Grossberg\n"; - file_stream << "Gumshoe\n"; - file_stream << "Gumshoey\n"; - file_stream << "Hawk\n"; - file_stream << "Hobo_Phoenix\n"; - file_stream << "Ini\n"; - file_stream << "Judge\n"; - file_stream << "Judge's Bro\n"; - file_stream << "Klav\n"; - file_stream << "Klavier\n"; - file_stream << "Kristoph\n"; - file_stream << "Lana\n"; - file_stream << "Layton\n"; - file_stream << "Lotta\n"; - file_stream << "Luis\n"; - file_stream << "Maggey\n"; - file_stream << "Manfred\n"; - file_stream << "Marshall\n"; - file_stream << "Matt\n"; - file_stream << "Maya\n"; - file_stream << "Mia\n"; - file_stream << "Miles\n"; - file_stream << "Oldbag\n"; - file_stream << "Payne\n"; - file_stream << "Pearl\n"; - file_stream << "Phoenix\n"; - file_stream << "Valant\n"; - file_stream << "Vasquez\n"; - file_stream << "Wellington\n"; - file_stream << "Winston\n"; - file_stream << "WinstonPayne\n"; - file_stream << "Young Mia\n"; - file_stream << "Zak\n"; - - char_list.flush(); - char_list.close(); - } - - QFileInfo music_list_info("music.txt"); - if (!(music_list_info.exists() && music_list_info.isFile())) { - QFile music_list("music.txt"); - if (!music_list.open(QIODevice::WriteOnly | QIODevice::Text)) - qDebug() << "Couldn't create music list"; - QTextStream file_stream(&music_list); - - qDebug() << "Creating vanilla music list"; - - file_stream << "Announce The Truth (AA).opus\n"; - file_stream << "Announce The Truth (AJ).opus\n"; - file_stream << "Announce The Truth (JFA).opus\n"; - file_stream << "Announce The Truth (Miles).opus\n"; - file_stream << "Announce The Truth (T&T).opus\n"; - file_stream << "Confrontation ~ Presto 2009.opus\n"; - file_stream << "Crises of Fate.opus\n"; - file_stream << "Forgotten Legend.opus\n"; - file_stream << "Godot - The Fragrance of Dark Coffee.opus\n"; - file_stream << "Great Revival ~ Franziska von Karma.opus\n"; - file_stream << "Great Revival ~ Miles Edgeworth.opus\n"; - file_stream << "Hotline of Fate.opus\n"; - file_stream << "Interesting People.opus\n"; - file_stream << "Logic and Trick.opus\n"; - file_stream << "Luke Atmey ~ I Just Want Love.opus\n"; - file_stream << "Noisy People.opus\n"; - file_stream << "OBJECTION (AA).opus\n"; - file_stream << "Objection (AJ).opus\n"; - file_stream << "OBJECTION (JFA).opus\n"; - file_stream << "Objection (Miles).opus\n"; - file_stream << "OBJECTION (T&T).opus\n"; - file_stream << "Others ~ Guilty love.opus\n"; - file_stream << "Prelude (AA).opus\n"; - file_stream << "Prelude (AJ).opus\n"; - file_stream << "Prologue (AA).opus\n"; - file_stream << "Pursuit (AA) - variation.opus\n"; - file_stream << "Pursuit (AA).opus\n"; - file_stream << "Pursuit (AJ).opus\n"; - file_stream << "Pursuit (DS).opus\n"; - file_stream << "Pursuit (JFA) - variation.opus\n"; - file_stream << "Pursuit (JFA).opus\n"; - file_stream << "Pursuit (Miles).opus\n"; - file_stream << "Pursuit (T&T) - variation.opus\n"; - file_stream << "Pursuit (T&T).opus\n"; - file_stream << "Pursuit ~ I Want to Find the Truth (Orchestra).opus\n"; - file_stream << "Questioning AA (Allegro).opus\n"; - file_stream << "Questioning AA (Moderato).opus\n"; - file_stream << "Questioning AJ (Allegro).opus\n"; - file_stream << "Questioning AJ (Moderato).opus\n"; - file_stream << "Questioning JFA (Allegro).opus\n"; - file_stream << "Questioning JFA (Moderato).opus\n"; - file_stream << "Questioning T&T (Allegro).opus\n"; - file_stream << "Questioning T&T (Moderato).opus\n"; - file_stream << "Speak up Pup.opus\n"; - file_stream << "Suspense (AA).opus\n"; - file_stream << "The Great Truth Burglar.opus\n"; - file_stream << "Trial (AA).opus\n"; - file_stream << "Trial (AJ).opus\n"; - file_stream << "Trial (Miles).opus\n"; - - music_list.flush(); - music_list.close(); + QFileInfo config_dir_info("config/"); + if (!config_dir_info.exists() || !config_dir_info.isDir()) { + qCritical() << "Config directory doesn't exist!"; + 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 + QFileInfo check_file("config/config.ini"); if (!(check_file.exists() && check_file.isFile())) { - // TODO: send signal config doesn't exist - generateDefaultConfig(false); + qCritical() << "config.ini doesn't exist!"; } else { - // TODO: send signal config is invalid - generateDefaultConfig(true); + qCritical() << "config.ini is invalid!"; } 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); + if (version_number_is_valid) { + if (updateConfig(current_version)) + qWarning() << "config.ini was out of date, and has been updated. Please review the changes, and restart the server."; + else + qCritical() << "config.ini is invalid!"; + } else - generateDefaultConfig(true); // Version number isn't a number at all - // This means the config is invalid - // TODO: send invalid config signal + qCritical() << "config.ini is invalid!"; // Version number isn't a number at all + // This means the config is invalid return false; } else { @@ -187,56 +64,19 @@ bool ConfigManager::initConfig() } } -// 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"); - } - - // 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("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) +bool 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); + return false; } else if (current_version < 0) { // Negative version number? Invalid! - generateDefaultConfig(true); + return false; } else { // TODO: send signal config is out of date, and is being updated @@ -252,6 +92,7 @@ void ConfigManager::updateConfig(int current_version) break; // This is the newest version, and nothing more needs to be // done } + return true; } } diff --git a/src/main.cpp b/src/main.cpp index 6556a54..1854a77 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -39,11 +39,12 @@ int main(int argc, char* argv[]) // Validate some of the config before passing it on ConfigManager::server_settings settings; bool config_valid = config_manager.loadServerSettings(&settings); - if (!config_valid) { - // TODO: send signal config invalid - config_manager.generateDefaultConfig(true); + qCritical() << "config.ini is invalid!"; + qCritical() << "Exiting server due to configuration issue."; + return EXIT_FAILURE; } + else { if (settings.advertise_server) { // TODO: send signal advertiser started @@ -59,6 +60,9 @@ int main(int argc, char* argv[]) server = new Server(settings.port, settings.ws_port); server->start(); } + } else { + qCritical() << "Exiting server due to configuration issue."; + return EXIT_FAILURE; } return app.exec(); From 24dfc3cdb87c5fbbacc672912393f43919f2052f Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 08:23:23 -0500 Subject: [PATCH 07/12] add validation for extra config files --- include/config_manager.h | 1 + src/config_manager.cpp | 32 +++++++++++++++++++++++++++++++- src/server.cpp | 4 ++++ 3 files changed, 36 insertions(+), 1 deletion(-) diff --git a/include/config_manager.h b/include/config_manager.h index e433e17..cd5b8ae 100644 --- a/include/config_manager.h +++ b/include/config_manager.h @@ -46,6 +46,7 @@ class ConfigManager { private: QSettings* config; + bool fileExists(QFileInfo *file); }; #endif // CONFIG_MANAGER_H diff --git a/src/config_manager.cpp b/src/config_manager.cpp index fbbd744..086ec90 100644 --- a/src/config_manager.cpp +++ b/src/config_manager.cpp @@ -31,12 +31,37 @@ bool ConfigManager::initConfig() return false; } + // Check that areas, characters, and music lists all exist + QFileInfo areas_info("config/areas.ini"); + QFileInfo characters_info("config/characters.txt"); + QFileInfo music_info("config/music.txt"); + + if (!fileExists(&areas_info)) { + qCritical() << "areas.ini doesn't exist!"; + return false; + } + else { + QSettings areas_ini("config/areas.ini", QSettings::IniFormat); + if (areas_ini.childGroups().length() < 1) { + qCritical() << "areas.ini is invalid!"; + return false; + } + } + if (!fileExists(&characters_info)) { + qCritical() << "characters.txt doesn't exist!"; + return false; + } + if (!fileExists(&music_info)) { + qCritical() << "music.txt doesn't exist!"; + return false; + } + config->beginGroup("Info"); QString config_version = config->value("version", "none").toString(); config->endGroup(); if (config_version == "none") { QFileInfo check_file("config/config.ini"); - if (!(check_file.exists() && check_file.isFile())) { + if (!fileExists(&check_file)) { qCritical() << "config.ini doesn't exist!"; } else { @@ -133,3 +158,8 @@ bool ConfigManager::loadServerSettings(server_settings* settings) return true; } } + +bool ConfigManager::fileExists(QFileInfo* file) +{ + return (file->exists() && file->isFile()); +} diff --git a/src/server.cpp b/src/server.cpp index c21c89e..33a98b4 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -65,6 +65,10 @@ void Server::start() for (int i = 0; i < area_names.length(); i++) { QString area_name = area_names[i]; areas.insert(i, new AreaData(characters, area_name, i)); + areas_ini.beginGroup(area_name); + // TODO: more area config + areas[i]->background = areas_ini.value("background", "gs4").toString(); + areas_ini.endGroup(); qDebug() << "Added area" << area_name; } } From 002136ac63a6a3a3e81c1cc9c05f1b4f0c34b9cf Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 08:31:27 -0500 Subject: [PATCH 08/12] add default config files --- .gitignore | 3 +-- {config => bin/config}/areas.ini | 0 {config => bin/config}/characters.txt | 0 {config => bin/config}/config.ini | 0 {config => bin/config}/music.txt | 0 src/server.cpp | 4 ++-- 6 files changed, 3 insertions(+), 4 deletions(-) rename {config => bin/config}/areas.ini (100%) rename {config => bin/config}/characters.txt (100%) rename {config => bin/config}/config.ini (100%) rename {config => bin/config}/music.txt (100%) diff --git a/.gitignore b/.gitignore index 4b0c703..feaffc7 100644 --- a/.gitignore +++ b/.gitignore @@ -70,6 +70,5 @@ Thumbs.db *.dll *.exe -bin/ build/ - +bin/akashi diff --git a/config/areas.ini b/bin/config/areas.ini similarity index 100% rename from config/areas.ini rename to bin/config/areas.ini diff --git a/config/characters.txt b/bin/config/characters.txt similarity index 100% rename from config/characters.txt rename to bin/config/characters.txt diff --git a/config/config.ini b/bin/config/config.ini similarity index 100% rename from config/config.ini rename to bin/config/config.ini diff --git a/config/music.txt b/bin/config/music.txt similarity index 100% rename from config/music.txt rename to bin/config/music.txt diff --git a/src/server.cpp b/src/server.cpp index 33a98b4..127d9b3 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -43,14 +43,14 @@ void Server::start() if(ws_port != -1) proxy->start(); - QFile char_list("characters.txt"); + QFile char_list("config/characters.txt"); char_list.open(QIODevice::ReadOnly | QIODevice::Text); while (!char_list.atEnd()) { characters.append(char_list.readLine().trimmed()); } char_list.close(); - QFile music_file("music.txt"); + QFile music_file("config/music.txt"); music_file.open(QIODevice::ReadOnly | QIODevice::Text); while (!music_file.atEnd()) { music_list.append(music_file.readLine().trimmed()); From 63e1ddf36ac640300b5ed70a715f020974a33f81 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 08:37:25 -0500 Subject: [PATCH 09/12] change config to user-neutral name --- .gitignore | 1 + bin/{config => config_sample}/areas.ini | 0 bin/{config => config_sample}/characters.txt | 0 bin/{config => config_sample}/config.ini | 0 bin/{config => config_sample}/music.txt | 0 5 files changed, 1 insertion(+) rename bin/{config => config_sample}/areas.ini (100%) rename bin/{config => config_sample}/characters.txt (100%) rename bin/{config => config_sample}/config.ini (100%) rename bin/{config => config_sample}/music.txt (100%) diff --git a/.gitignore b/.gitignore index feaffc7..8c9b4dd 100644 --- a/.gitignore +++ b/.gitignore @@ -72,3 +72,4 @@ Thumbs.db build/ bin/akashi +bin/config/ diff --git a/bin/config/areas.ini b/bin/config_sample/areas.ini similarity index 100% rename from bin/config/areas.ini rename to bin/config_sample/areas.ini diff --git a/bin/config/characters.txt b/bin/config_sample/characters.txt similarity index 100% rename from bin/config/characters.txt rename to bin/config_sample/characters.txt diff --git a/bin/config/config.ini b/bin/config_sample/config.ini similarity index 100% rename from bin/config/config.ini rename to bin/config_sample/config.ini diff --git a/bin/config/music.txt b/bin/config_sample/music.txt similarity index 100% rename from bin/config/music.txt rename to bin/config_sample/music.txt From a474787c4dbd70c08e368178777ae11868bc0324 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 08:40:37 -0500 Subject: [PATCH 10/12] sorry but i wrote all of this uwu --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 0414d3d..92a2d24 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,4 @@ A C++ server for Attorney Online 2 Copyright © scatterflower 2020 -UI Design and Code - Copyright © windrammer 2020 - If you want to support the development of akashi, feel free to give a one-time gift at [liberapay](https://liberapay.com/scatterflower/) From 619b42e1bbedac406bd3fdb9178fe3e5c732e415 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 08:51:14 -0500 Subject: [PATCH 11/12] fix up all config file paths --- src/aoclient.cpp | 7 ++----- src/server.cpp | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/src/aoclient.cpp b/src/aoclient.cpp index a7cb36b..08522a3 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -76,7 +76,7 @@ void AOClient::handlePacket(AOPacket packet) sendPacket("ID", {"271828", "akashi", QCoreApplication::applicationVersion()}); } else if (packet.header == "ID") { - QSettings config("config.ini", QSettings::IniFormat); + QSettings config("config/config.ini", QSettings::IniFormat); config.beginGroup("Options"); QString max_players = config.value("max_players").toString(); config.endGroup(); @@ -114,10 +114,7 @@ void AOClient::handlePacket(AOPacket packet) fullArup(); // Give client all the area data arup(ARUPType::PLAYER_COUNT, true); // Tell everyone there is a new player - QSettings areas_ini("areas.ini", QSettings::IniFormat); - QStringList areas = areas_ini.childGroups(); - - sendPacket("FA", areas); + sendPacket("FA", server->area_names); sendPacket("OPPASS", {"DEADBEEF"}); sendPacket("DONE"); } diff --git a/src/server.cpp b/src/server.cpp index 127d9b3..59b663f 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -60,7 +60,7 @@ void Server::start() music_list.insert(0, "Music"); // TODO: add verification that this exists - QSettings areas_ini("areas.ini", QSettings::IniFormat); + QSettings areas_ini("config/areas.ini", QSettings::IniFormat); area_names = areas_ini.childGroups(); for (int i = 0; i < area_names.length(); i++) { QString area_name = area_names[i]; From 59691578010164a3a2fadc12a3eef1e83c8de901 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Wed, 2 Sep 2020 08:53:09 -0500 Subject: [PATCH 12/12] change music category name so that webAO likes it --- src/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.cpp b/src/server.cpp index 59b663f..51ef6ea 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -57,7 +57,7 @@ void Server::start() } music_file.close(); if(music_list[0].contains(".")) // Add a default category if none exists - music_list.insert(0, "Music"); + music_list.insert(0, "==Music=="); // TODO: add verification that this exists QSettings areas_ini("config/areas.ini", QSettings::IniFormat);