232 lines
7.7 KiB
C++
232 lines
7.7 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 <QSettings>
|
|
#include <QIcon>
|
|
#include <QDir>
|
|
#include <QDesktopServices>
|
|
|
|
#include "main.h"
|
|
#include "window_main.h"
|
|
#include "dlg_settings.h"
|
|
#include "carddatabase.h"
|
|
#include "settingscache.h"
|
|
#include "pixmapgenerator.h"
|
|
#include "rng_sfmt.h"
|
|
#include "soundengine.h"
|
|
|
|
//Q_IMPORT_PLUGIN(qjpeg)
|
|
|
|
CardDatabase *db;
|
|
QTranslator *translator, *qtTranslator;
|
|
SettingsCache *settingsCache;
|
|
RNG_Abstract *rng;
|
|
SoundEngine *soundEngine;
|
|
|
|
const QString translationPrefix = "cockatrice";
|
|
#ifdef TRANSLATION_PATH
|
|
QString translationPath = TRANSLATION_PATH;
|
|
#else
|
|
QString translationPath = QString();
|
|
#endif
|
|
|
|
#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);
|
|
}
|
|
|
|
bool settingsValid()
|
|
{
|
|
return QDir(settingsCache->getDeckPath()).exists() &&
|
|
!settingsCache->getDeckPath().isEmpty() &&
|
|
QDir(settingsCache->getPicsPath()).exists() &&
|
|
!settingsCache->getPicsPath().isEmpty();
|
|
}
|
|
|
|
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");
|
|
|
|
if (translationPath.isEmpty()) {
|
|
#ifdef Q_OS_MAC
|
|
translationPath = QLibraryInfo::location(QLibraryInfo::TranslationsPath);
|
|
#elif defined(Q_OS_WIN)
|
|
translationPath = app.applicationDirPath() + "/translations";
|
|
#endif
|
|
}
|
|
|
|
rng = new RNG_SFMT;
|
|
settingsCache = new SettingsCache;
|
|
db = new CardDatabase;
|
|
|
|
qtTranslator = new QTranslator;
|
|
translator = new QTranslator;
|
|
installNewTranslator();
|
|
|
|
qsrand(QDateTime::currentDateTime().toTime_t());
|
|
|
|
bool startMainProgram = true;
|
|
#if QT_VERSION < 0x050000
|
|
const QString dataDir = QDesktopServices::storageLocation(QDesktopServices::DataLocation);
|
|
#else
|
|
const QString dataDir = QStandardPaths::standardLocations(QStandardPaths::DataLocation).first();
|
|
#endif
|
|
if (!db->getLoadSuccess())
|
|
if (db->loadCardDatabase(dataDir + "/cards.xml"))
|
|
settingsCache->setCardDatabasePath(dataDir + "/cards.xml");
|
|
if (settingsCache->getTokenDatabasePath().isEmpty())
|
|
settingsCache->setTokenDatabasePath(dataDir + "/tokens.xml");
|
|
if (!QDir(settingsCache->getDeckPath()).exists() || settingsCache->getDeckPath().isEmpty()) {
|
|
QDir().mkpath(dataDir + "/decks");
|
|
settingsCache->setDeckPath(dataDir + "/decks");
|
|
}
|
|
if (!QDir(settingsCache->getReplaysPath()).exists() || settingsCache->getReplaysPath().isEmpty()) {
|
|
QDir().mkpath(dataDir + "/replays");
|
|
settingsCache->setReplaysPath(dataDir + "/replays");
|
|
}
|
|
if (!QDir(settingsCache->getPicsPath()).exists() || settingsCache->getPicsPath().isEmpty()) {
|
|
QDir().mkpath(dataDir + "/pics");
|
|
settingsCache->setPicsPath(dataDir + "/pics");
|
|
}
|
|
|
|
#ifdef Q_OS_MAC
|
|
if(settingsCache->getHandBgPath().isEmpty() &&
|
|
settingsCache->getStackBgPath().isEmpty() &&
|
|
settingsCache->getTableBgPath().isEmpty() &&
|
|
settingsCache->getPlayerBgPath().isEmpty())
|
|
{
|
|
QString srcDir = QLibraryInfo::location(QLibraryInfo::DataPath);
|
|
QString destDir = dataDir + "/zonebg";
|
|
QDir tmpDir(destDir);
|
|
if(!tmpDir.exists())
|
|
{
|
|
// try to install the default images for the current user and set the settigs value
|
|
settingsCache->copyPath(srcDir + "/zonebg", destDir);
|
|
|
|
settingsCache->setHandBgPath(destDir + "/fabric_green.png");
|
|
settingsCache->setStackBgPath(destDir + "/fabric_red.png");
|
|
settingsCache->setTableBgPath(destDir + "/fabric_blue.png");
|
|
settingsCache->setPlayerBgPath(destDir + "/fabric_gray.png");
|
|
}
|
|
}
|
|
|
|
if(settingsCache->getSoundPath().isEmpty())
|
|
{
|
|
QString srcDir = QLibraryInfo::location(QLibraryInfo::DataPath);
|
|
QString destDir = dataDir + "/sounds";
|
|
QDir tmpDir(destDir);
|
|
if(!tmpDir.exists())
|
|
{
|
|
// try to install the default sounds for the current user and set the settigs value
|
|
settingsCache->copyPath(srcDir + "/sounds", destDir);
|
|
|
|
settingsCache->setSoundPath(destDir);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
if (!settingsValid() || db->getLoadStatus() != Ok) {
|
|
qDebug("main(): invalid settings or load status");
|
|
DlgSettings dlgSettings;
|
|
dlgSettings.show();
|
|
app.exec();
|
|
}
|
|
|
|
if (settingsValid()) {
|
|
qDebug("main(): starting main program");
|
|
soundEngine = new SoundEngine;
|
|
qDebug("main(): SoundEngine constructor finished");
|
|
|
|
MainWindow ui;
|
|
qDebug("main(): MainWindow constructor finished");
|
|
|
|
QIcon icon(":/resources/appicon.svg");
|
|
ui.setWindowIcon(icon);
|
|
|
|
ui.show();
|
|
qDebug("main(): ui.show() finished");
|
|
|
|
app.exec();
|
|
}
|
|
|
|
qDebug("Event loop finished, terminating...");
|
|
delete db;
|
|
delete settingsCache;
|
|
delete rng;
|
|
PingPixmapGenerator::clear();
|
|
CountryPixmapGenerator::clear();
|
|
UserLevelPixmapGenerator::clear();
|
|
|
|
return 0;
|
|
}
|