2007-01-13 02:40:33 +00:00
|
|
|
/***************************************************************************
|
|
|
|
|
* Copyright (C) 2006 by FThauer FHammer *
|
|
|
|
|
* f.thauer@web.de *
|
|
|
|
|
* *
|
|
|
|
|
* 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. *
|
|
|
|
|
***************************************************************************/
|
2007-01-16 22:42:02 +00:00
|
|
|
|
2009-08-02 15:11:40 +00:00
|
|
|
#include <boost/asio.hpp>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <ctime>
|
2007-01-13 02:40:33 +00:00
|
|
|
#include <qapplication.h>
|
2009-08-02 15:11:40 +00:00
|
|
|
#include <QtGui>
|
|
|
|
|
#include <QtCore>
|
2007-04-30 23:18:31 +00:00
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
|
#include <QMacStyle>
|
|
|
|
|
#endif
|
2007-01-13 02:40:33 +00:00
|
|
|
|
2009-08-02 15:11:40 +00:00
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
2007-01-13 02:40:33 +00:00
|
|
|
#include "session.h"
|
2008-09-02 22:04:18 +00:00
|
|
|
#include "startwindowimpl.h"
|
2007-05-05 19:02:11 +00:00
|
|
|
#include "configfile.h"
|
2008-06-08 10:50:08 +00:00
|
|
|
#include "startsplash.h"
|
|
|
|
|
#include "game_defs.h"
|
2007-02-18 16:04:00 +00:00
|
|
|
#include <net/socket_startup.h>
|
2009-09-13 18:11:48 +00:00
|
|
|
#include <third_party/qtsingleapplication/qtsingleapplication.h>
|
2007-01-13 02:40:33 +00:00
|
|
|
|
2007-02-19 00:39:44 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
#define _CRTDBG_MAP_ALLOC
|
|
|
|
|
#include <crtdbg.h>
|
|
|
|
|
|
|
|
|
|
#define ENABLE_LEAK_CHECK() \
|
|
|
|
|
{ \
|
|
|
|
|
int tmpFlag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG); \
|
|
|
|
|
tmpFlag |= _CRTDBG_LEAK_CHECK_DF; \
|
|
|
|
|
_CrtSetDbgFlag(tmpFlag); \
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef ENABLE_LEAK_CHECK
|
|
|
|
|
#define ENABLE_LEAK_CHECK()
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-03-21 12:32:46 +00:00
|
|
|
//Uncomment this for RELEASE on Linux/Unix/BSD (static Qt only)
|
2009-06-07 20:23:06 +00:00
|
|
|
//#include <QtPlugin>
|
|
|
|
|
//Q_IMPORT_PLUGIN(qjpeg)
|
|
|
|
|
//Q_IMPORT_PLUGIN(qgif)
|
2007-09-15 22:35:35 +00:00
|
|
|
|
2010-05-29 14:05:41 +00:00
|
|
|
|
2009-03-21 12:32:46 +00:00
|
|
|
#ifdef _WIN32 // Always use static Qt on Windows.
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
|
Q_IMPORT_PLUGIN(qjpeg)
|
|
|
|
|
Q_IMPORT_PLUGIN(qgif)
|
|
|
|
|
#endif
|
2007-09-15 22:35:35 +00:00
|
|
|
|
2007-01-19 23:25:42 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
2008-09-02 22:04:18 +00:00
|
|
|
class startWindowImpl;
|
2007-05-20 00:16:29 +00:00
|
|
|
class Game;
|
2007-01-13 02:40:33 +00:00
|
|
|
|
|
|
|
|
int main( int argc, char **argv )
|
|
|
|
|
{
|
2007-10-01 07:17:05 +00:00
|
|
|
|
2007-02-25 23:16:26 +00:00
|
|
|
//ENABLE_LEAK_CHECK();
|
2007-02-19 00:39:44 +00:00
|
|
|
|
|
|
|
|
//_CrtSetBreakAlloc(49937);
|
2007-02-18 16:04:00 +00:00
|
|
|
socket_startup();
|
2008-04-24 22:11:43 +00:00
|
|
|
curl_global_init(CURL_GLOBAL_NOTHING);
|
|
|
|
|
|
2007-01-16 22:42:02 +00:00
|
|
|
/////// can be removed for non-qt-guis ////////////
|
2009-09-13 18:11:48 +00:00
|
|
|
QtSingleApplication a( argc, argv );
|
|
|
|
|
|
2009-09-13 18:51:36 +00:00
|
|
|
if (a.sendMessage("Wake up!")) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-06-25 00:25:52 +00:00
|
|
|
|
2010-07-08 17:04:17 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
|
// The following needs to be done directly after the application is created.
|
|
|
|
|
QDir dir(QApplication::applicationDirPath());
|
|
|
|
|
dir.cdUp();
|
|
|
|
|
dir.cd("plugins");
|
|
|
|
|
QApplication::setLibraryPaths(QStringList(dir.absolutePath()));
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-10-01 07:17:05 +00:00
|
|
|
//create defaultconfig
|
2008-02-10 12:38:12 +00:00
|
|
|
ConfigFile *myConfig = new ConfigFile(argv[0], false);
|
2007-10-01 07:17:05 +00:00
|
|
|
|
2007-06-25 00:25:52 +00:00
|
|
|
// set PlastiqueStyle even for mac-version to prevent artefacts on styled widgets
|
2010-07-22 20:35:11 +00:00
|
|
|
a.setStyle(new QPlastiqueStyle);
|
2007-09-03 00:26:38 +00:00
|
|
|
|
2007-09-08 22:01:30 +00:00
|
|
|
QString myAppDataPath = QString::fromUtf8(myConfig->readConfigString("AppDataDir").c_str());
|
2007-09-04 22:54:07 +00:00
|
|
|
//set QApplication default font
|
2007-12-04 22:41:38 +00:00
|
|
|
|
2007-12-05 00:39:51 +00:00
|
|
|
QFontDatabase::addApplicationFont (myAppDataPath +"fonts/n019003l.pfb");
|
|
|
|
|
QFontDatabase::addApplicationFont (myAppDataPath +"fonts/VeraBd.ttf");
|
|
|
|
|
QFontDatabase::addApplicationFont (myAppDataPath +"fonts/c059013l.pfb");
|
|
|
|
|
|
2007-09-04 22:54:07 +00:00
|
|
|
#ifdef _WIN32
|
2010-07-22 21:58:25 +00:00
|
|
|
QString font1String("QApplication, QWidget, QDialog { font-size: 12px; }");
|
2010-07-22 20:35:11 +00:00
|
|
|
#else
|
2010-07-22 19:49:31 +00:00
|
|
|
#ifdef __APPLE__
|
2010-07-22 20:35:11 +00:00
|
|
|
// QString font1String("font-family: \"Lucida Grande\";");
|
2010-07-22 21:47:53 +00:00
|
|
|
QString font1String("QApplication, QWidget, QDialog { font-size: 11px; }");
|
2010-07-22 19:49:31 +00:00
|
|
|
#else
|
2010-07-22 20:35:11 +00:00
|
|
|
QString font1String("QApplication, QWidget, QDialog { font-family: \"Nimbus Sans L\"; font-size: 12px; }");
|
2010-07-22 19:49:31 +00:00
|
|
|
#endif
|
2010-07-22 20:35:11 +00:00
|
|
|
#endif
|
|
|
|
|
a.setStyleSheet(font1String + " QDialogButtonBox, QMessageBox { dialogbuttonbox-buttons-have-icons: 1; dialog-ok-icon: url(:/gfx/dialog_ok_apply.png); dialog-cancel-icon: url(:/gfx/dialog_close.png); dialog-close-icon: url(:/gfx/dialog_close.png); dialog-yes-icon: url(:/gfx/dialog_ok_apply.png); dialog-no-icon: url(:/gfx/dialog_close.png) }");
|
2008-06-08 10:50:08 +00:00
|
|
|
|
|
|
|
|
QPixmap *pixmap = new QPixmap(myAppDataPath + "gfx/gui/misc/welcomepokerth.png");
|
2009-06-07 20:23:06 +00:00
|
|
|
StartSplash splash(*pixmap);
|
|
|
|
|
if(!myConfig->readConfigInt("DisableSplashScreenOnStartup")) {
|
|
|
|
|
splash.show();
|
|
|
|
|
splash.showMessage(QString("Version %1").arg(POKERTH_BETA_RELEASE_STRING), 0x0042, QColor(153,213,0));
|
|
|
|
|
}
|
2008-06-08 10:50:08 +00:00
|
|
|
|
2007-09-04 22:54:07 +00:00
|
|
|
//Set translations
|
2007-06-15 18:59:28 +00:00
|
|
|
QTranslator qtTranslator;
|
2007-09-08 22:01:30 +00:00
|
|
|
qtTranslator.load(QString(myAppDataPath +"translations/qt_") + QString::fromStdString(myConfig->readConfigString("Language")));
|
2007-06-15 18:59:28 +00:00
|
|
|
a.installTranslator(&qtTranslator);
|
|
|
|
|
|
2007-05-20 00:16:29 +00:00
|
|
|
QTranslator translator;
|
2007-09-08 22:01:30 +00:00
|
|
|
translator.load(QString(myAppDataPath +"translations/pokerth_") + QString::fromStdString(myConfig->readConfigString("Language")));
|
2007-06-15 18:59:28 +00:00
|
|
|
a.installTranslator(&translator);
|
2007-12-13 19:52:48 +00:00
|
|
|
|
2007-09-02 16:36:52 +00:00
|
|
|
qRegisterMetaType<unsigned>("unsigned");
|
2007-05-20 00:16:29 +00:00
|
|
|
qRegisterMetaType<boost::shared_ptr<Game> >("boost::shared_ptr<Game>");
|
2007-10-20 22:22:11 +00:00
|
|
|
qRegisterMetaType<ServerStats>("ServerStats");
|
2010-03-30 20:16:47 +00:00
|
|
|
qRegisterMetaType<DenyGameInvitationReason>("DenyGameInvitationReason");
|
2007-05-20 13:03:43 +00:00
|
|
|
///////////////////////////////////////////////////
|
|
|
|
|
|
2010-07-13 21:27:04 +00:00
|
|
|
startWindowImpl mainWin(myConfig);
|
2010-07-22 20:21:36 +00:00
|
|
|
a.setActivationWindow(&mainWin, true);
|
2009-09-13 18:11:48 +00:00
|
|
|
|
2007-02-18 16:04:00 +00:00
|
|
|
int retVal = a.exec();
|
2008-06-08 10:50:08 +00:00
|
|
|
|
2008-04-19 13:36:55 +00:00
|
|
|
curl_global_cleanup();
|
2007-02-18 16:04:00 +00:00
|
|
|
socket_cleanup();
|
2010-07-13 21:27:04 +00:00
|
|
|
|
|
|
|
|
|
2007-02-18 16:04:00 +00:00
|
|
|
return retVal;
|
2008-06-08 10:50:08 +00:00
|
|
|
|
2007-01-13 02:40:33 +00:00
|
|
|
}
|