Esempio n. 1
0
int main(int argc, char *argv[])
{
//	qInstallMsgHandler(myMessageOutput);
	QApplication app(argc, argv);
#ifdef Q_OS_MAC
	QDir baseDir(app.applicationDirPath());
	baseDir.cdUp();
	baseDir.cdUp();
	baseDir.cdUp();
	QDir pluginsDir = baseDir;
	pluginsDir.cd("PlugIns");
	app.addLibraryPath(pluginsDir.absolutePath());
#endif
#ifdef Q_OS_WIN
	app.addLibraryPath(app.applicationDirPath() + "/plugins");
#endif
	QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));

	QCoreApplication::setOrganizationName("Cockatrice");
	QCoreApplication::setOrganizationDomain("cockatrice.de");
	QCoreApplication::setApplicationName("Cockatrice");
	
	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;
#ifdef Q_OS_MAC
	if (!db->getLoadSuccess())
		if (db->loadCardDatabase(baseDir.absolutePath() + "/cards.xml"))
			settingsCache->setCardDatabasePath(baseDir.absolutePath() + "/cards.xml");
	if (!QDir(settingsCache->getDeckPath()).exists())
		settingsCache->setDeckPath(baseDir.absolutePath() + "/decks");
	if (!QDir(settingsCache->getPicsPath()).exists())
		settingsCache->setPicsPath(baseDir.absolutePath() + "/pics");
#endif
	if (!db->getLoadSuccess() || !QDir(settingsCache->getDeckPath()).exists() || settingsCache->getDeckPath().isEmpty() || settingsCache->getPicsPath().isEmpty() || !QDir(settingsCache->getPicsPath()).exists()) {
		DlgSettings dlgSettings;
		dlgSettings.show();
		app.exec();
		startMainProgram = (db->getLoadSuccess() && QDir(settingsCache->getDeckPath()).exists() && !settingsCache->getDeckPath().isEmpty() && QDir(settingsCache->getPicsPath()).exists() && !settingsCache->getPicsPath().isEmpty());
	}
	
	if (startMainProgram) {
		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;
}
Esempio n. 2
0
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());
    
#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");
    }
    if (!QDir().mkpath(settingsCache->getPicsPath() + "/CUSTOM"))
        qDebug() << "Could not create " + settingsCache->getPicsPath().toUtf8() + "/CUSTOM. Will fall back on default card images.";
        
#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;
}
Esempio n. 3
0
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
    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());

#ifdef PORTABLE_BUILD
    const QString dataDir = "data/";
#elif 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");
    }
    if (!QDir().mkpath(settingsCache->getPicsPath() + "/CUSTOM"))
        qDebug() << "Could not create " + settingsCache->getPicsPath().toUtf8() + "/CUSTOM. Will fall back on default card images.";

    if (!settingsValid() || db->getLoadStatus() != Ok) {
        qDebug("main(): invalid settings or load status");
        DlgSettings dlgSettings;
        dlgSettings.show();
        app.exec();
    }

    // load custom databased after LoadStatus check, so that they don't bring up the settings dialog
    if (QDir().mkpath(dataDir + "/customsets"))
    {
        // if the dir exists (or has just been created)
        db->loadCustomCardDatabases(dataDir + "/customsets");
    } else {
        qDebug() << "Could not create " + dataDir + "/customsets folder.";
    }

    if (settingsValid()) {
        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");

        app.exec();
    }

    qDebug("Event loop finished, terminating...");
    delete db;
    delete settingsCache;
    delete rng;
    PingPixmapGenerator::clear();
    CountryPixmapGenerator::clear();
    UserLevelPixmapGenerator::clear();

    return 0;
}