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(); }