/*************************************************************************** * Copyright (C) 2008 by Max-Wilhelm Bruker * * brukie@gmx.net * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include "main.h" #include "QtNetwork/QNetworkInterface" #include "carddatabase.h" #include "dlg_settings.h" #include "featureset.h" #include "logger.h" #include "pixmapgenerator.h" #include "rng_sfmt.h" #include "settingscache.h" #include "soundengine.h" #include "spoilerbackgroundupdater.h" #include "thememanager.h" #include "version_string.h" #include "window_main.h" #include #include #include #include #include #include #include #include #include #include #include #include CardDatabase *db; QTranslator *translator, *qtTranslator; RNG_Abstract *rng; SoundEngine *soundEngine; QSystemTrayIcon *trayIcon; ThemeManager *themeManager; const QString translationPrefix = "cockatrice"; QString translationPath; static void CockatriceLogger(QtMsgType type, const QMessageLogContext &ctx, const QString &message) { Logger::getInstance().log(type, ctx, message); } void installNewTranslator() { QString lang = SettingsCache::instance().getLang(); QString qtNameHint = "qt_" + lang; #if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)) QString qtTranslationPath = QLibraryInfo::path(QLibraryInfo::TranslationsPath); #else QString qtTranslationPath = QLibraryInfo::location(QLibraryInfo::TranslationsPath); #endif bool qtTranslationLoaded = qtTranslator->load(qtNameHint, qtTranslationPath); if (!qtTranslationLoaded) { qDebug() << "Unable to load qt translation" << qtNameHint << "at" << qtTranslationPath; } else { qDebug() << "Loaded qt translation" << qtNameHint << "at" << qtTranslationPath; } qApp->installTranslator(qtTranslator); QString appNameHint = translationPrefix + "_" + lang; bool appTranslationLoaded = qtTranslator->load(appNameHint, translationPath); if (!appTranslationLoaded) { qDebug() << "Unable to load" << translationPrefix << "translation" << appNameHint << "at" << translationPath; } else { qDebug() << "Loaded" << translationPrefix << "translation" << appNameHint << "at" << translationPath; } qApp->installTranslator(translator); } QString const generateClientID() { QString macList; foreach (QNetworkInterface interface, QNetworkInterface::allInterfaces()) { if (interface.hardwareAddress() != "") if (interface.hardwareAddress() != "00:00:00:00:00:00:00:E0") macList += interface.hardwareAddress() + "."; } QString strClientID = QCryptographicHash::hash(macList.toUtf8(), QCryptographicHash::Sha1).toHex().right(15); return strClientID; } int main(int argc, char *argv[]) { QApplication app(argc, argv); QObject::connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit())); qInstallMessageHandler(CockatriceLogger); #ifdef Q_OS_WIN app.addLibraryPath(app.applicationDirPath() + "/plugins"); #endif // These values are only used by the settings loader/saver // Wrong or outdated values are kept to not break things QCoreApplication::setOrganizationName("Cockatrice"); QCoreApplication::setOrganizationDomain("cockatrice.de"); QCoreApplication::setApplicationName("Cockatrice"); QCoreApplication::setApplicationVersion(VERSION_STRING); #ifdef Q_OS_MAC qApp->setAttribute(Qt::AA_DontShowIconsInMenus, true); #endif #ifdef Q_OS_MAC translationPath = qApp->applicationDirPath() + "/../Resources/translations"; #elif defined(Q_OS_WIN) translationPath = qApp->applicationDirPath() + "/translations"; #else // linux translationPath = qApp->applicationDirPath() + "/../share/cockatrice/translations"; #endif QCommandLineParser parser; parser.setApplicationDescription("Cockatrice"); parser.addHelpOption(); parser.addVersionOption(); parser.addOptions( {{{"c", "connect"}, QCoreApplication::translate("main", "Connect on startup"), "user:pass@host:port"}, {{"d", "debug-output"}, QCoreApplication::translate("main", "Debug to file")}}); parser.process(app); if (parser.isSet("debug-output")) { Logger::getInstance().logToFile(true); } rng = new RNG_SFMT; themeManager = new ThemeManager; soundEngine = new SoundEngine; db = new CardDatabase; qtTranslator = new QTranslator; translator = new QTranslator; installNewTranslator(); QLocale::setDefault(QLocale::English); qDebug("main(): starting main program"); MainWindow ui; if (parser.isSet("connect")) { ui.setConnectTo(parser.value("connect")); } qDebug("main(): MainWindow constructor finished"); ui.setWindowIcon(QPixmap("theme:cockatrice")); #if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) // set name of the app desktop file; used by wayland to load the window icon QGuiApplication::setDesktopFileName("cockatrice"); #endif SettingsCache::instance().setClientID(generateClientID()); // If spoiler mode is enabled, we will download the spoilers // then reload the DB. otherwise just reload the DB SpoilerBackgroundUpdater spoilerBackgroundUpdater; ui.show(); qDebug("main(): ui.show() finished"); #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) app.setAttribute(Qt::AA_UseHighDpiPixmaps); #endif app.exec(); qDebug("Event loop finished, terminating..."); delete db; delete rng; PingPixmapGenerator::clear(); CountryPixmapGenerator::clear(); UserLevelPixmapGenerator::clear(); return 0; }