mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 17:14:52 -07:00
* main.cpp: removed path checking and db loading * card database: merge card loading methods into a single one * settings cache: take care of returning safe paths for decks, replays, etc.. * main window: if db loading fails (eg. first run), propose to run oracle NSIS: propose to run cockatrice instead of oracle Rework card database loading * Move carddatabase-related method out of deckeditor tab * Load cards in another thread and render them progressively * Optimize database reload after enabled sets change Fix deck editor column width * removed the noCard hack. * getCard() no more creates cards instead of just returning existing ones * Fix the “edit tokens” dialog. * PictureLoader: avoid trying to download twice the same card * PictureLoader: correct return of card background * AbstractCardItem: avoid recalculating card color at every paint Use a different file to save custom tokens Misc required improvements * Use nullptr; * Refactor CardInfoWidget to use CardInfoPicture and CardInfoText instead of duplicating code; * Added CardInfo::getColorChar() * Fixed some potential crashes * removed dead code related to CardInfoWidget * Don't require a restart after adding a new custom sets file * Bump CMake requirements to 3.1
175 lines
5.5 KiB
C++
175 lines
5.5 KiB
C++
/***************************************************************************
|
|
* 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 <QApplication>
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
#include <QTextCodec>
|
|
#include <QtPlugin>
|
|
#include <QTranslator>
|
|
#include <QLibraryInfo>
|
|
#include <QDateTime>
|
|
#include <QDir>
|
|
#include <QDebug>
|
|
#include <QSystemTrayIcon>
|
|
#include "QtNetwork/QNetworkInterface"
|
|
#include <QCryptographicHash>
|
|
#include "main.h"
|
|
#include "window_main.h"
|
|
#include "dlg_settings.h"
|
|
#include "carddatabase.h"
|
|
#include "settingscache.h"
|
|
#include "thememanager.h"
|
|
#include "pixmapgenerator.h"
|
|
#include "rng_sfmt.h"
|
|
#include "soundengine.h"
|
|
#include "featureset.h"
|
|
|
|
//Q_IMPORT_PLUGIN(qjpeg)
|
|
|
|
CardDatabase *db;
|
|
QTranslator *translator, *qtTranslator;
|
|
SettingsCache *settingsCache;
|
|
RNG_Abstract *rng;
|
|
SoundEngine *soundEngine;
|
|
QSystemTrayIcon *trayIcon;
|
|
ThemeManager *themeManager;
|
|
|
|
const QString translationPrefix = "cockatrice";
|
|
QString translationPath;
|
|
|
|
#if QT_VERSION < 0x050000
|
|
static void myMessageOutput(QtMsgType /*type*/, const char *msg)
|
|
{
|
|
QFile file("qdebug.txt");
|
|
file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text);
|
|
QTextStream out(&file);
|
|
out << msg << endl;
|
|
file.close();
|
|
}
|
|
#else
|
|
static void myMessageOutput(QtMsgType /*type*/, const QMessageLogContext &, const QString &msg)
|
|
{
|
|
QFile file("qdebug.txt");
|
|
file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text);
|
|
QTextStream out(&file);
|
|
out << msg << endl;
|
|
file.close();
|
|
}
|
|
#endif
|
|
|
|
void installNewTranslator()
|
|
{
|
|
QString lang = settingsCache->getLang();
|
|
|
|
qtTranslator->load("qt_" + lang, QLibraryInfo::location(QLibraryInfo::TranslationsPath));
|
|
qApp->installTranslator(qtTranslator);
|
|
translator->load(translationPrefix + "_" + lang, 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);
|
|
|
|
if (app.arguments().contains("--debug-output"))
|
|
{
|
|
#if QT_VERSION < 0x050000
|
|
qInstallMsgHandler(myMessageOutput);
|
|
#else
|
|
qInstallMessageHandler(myMessageOutput);
|
|
#endif
|
|
}
|
|
#ifdef Q_OS_WIN
|
|
app.addLibraryPath(app.applicationDirPath() + "/plugins");
|
|
#endif
|
|
|
|
#if QT_VERSION < 0x050000
|
|
// gone in Qt5, all source files _MUST_ be utf8-encoded
|
|
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
|
|
#endif
|
|
|
|
QCoreApplication::setOrganizationName("Cockatrice");
|
|
QCoreApplication::setOrganizationDomain("cockatrice.de");
|
|
QCoreApplication::setApplicationName("Cockatrice");
|
|
|
|
#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
|
|
|
|
rng = new RNG_SFMT;
|
|
settingsCache = new SettingsCache;
|
|
themeManager = new ThemeManager;
|
|
soundEngine = new SoundEngine;
|
|
db = new CardDatabase;
|
|
|
|
qtTranslator = new QTranslator;
|
|
translator = new QTranslator;
|
|
installNewTranslator();
|
|
|
|
qsrand(QDateTime::currentDateTime().toTime_t());
|
|
|
|
qDebug("main(): starting main program");
|
|
|
|
MainWindow ui;
|
|
qDebug("main(): MainWindow constructor finished");
|
|
|
|
ui.setWindowIcon(QPixmap("theme:cockatrice"));
|
|
|
|
settingsCache->setClientID(generateClientID());
|
|
|
|
ui.show();
|
|
qDebug("main(): ui.show() finished");
|
|
#if QT_VERSION > 0x050000
|
|
app.setAttribute(Qt::AA_UseHighDpiPixmaps);
|
|
#endif
|
|
app.exec();
|
|
|
|
qDebug("Event loop finished, terminating...");
|
|
delete db;
|
|
delete settingsCache;
|
|
delete rng;
|
|
PingPixmapGenerator::clear();
|
|
CountryPixmapGenerator::clear();
|
|
UserLevelPixmapGenerator::clear();
|
|
|
|
return 0;
|
|
}
|