Files
pokerth/src/pokerth.cpp
T

256 lines
10 KiB
C++
Raw Normal View History

/*****************************************************************************
* PokerTH - The open source texas holdem engine *
* Copyright (C) 2006-2012 Felix Hammer, Florian Thauer, Lothar May *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Affero General Public License as *
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
* *
* You should have received a copy of the GNU Affero General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
* *
* Additional permission under GNU AGPL version 3 section 7 *
* *
* If you modify this program, or any covered work, by linking or *
* combining it with the OpenSSL project's OpenSSL library (or a *
* modified version of that library), containing parts covered by the *
* terms of the OpenSSL or SSLeay licenses, the authors of PokerTH *
* (Felix Hammer, Florian Thauer, Lothar May) grant you additional *
* permission to convey the resulting work. *
* Corresponding Source for a non-source form of such a combination *
* shall include the source code for the parts of OpenSSL used as well *
* as that of the covered work. *
*****************************************************************************/
#include <boost/asio.hpp>
#include <iostream>
#include <cstdlib>
#include <ctime>
2007-01-13 02:40:33 +00:00
#include <qapplication.h>
2013-08-28 10:49:03 +02:00
#include <QtWidgets>
#include <QtGui>
#include <QtCore>
2007-04-30 23:18:31 +00:00
#ifdef __APPLE__
2013-08-31 00:42:03 +02:00
#if QT_VERSION < 0x050000
#include <QMacStyle>
2007-04-30 23:18:31 +00:00
#endif
2013-08-31 00:42:03 +02:00
#endif
2007-01-13 02:40:33 +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"
#include "log.h"
2008-06-08 10:50:08 +00:00
#include "startsplash.h"
#include "game_defs.h"
#include <net/socket_startup.h>
#include <third_party/qtsingleapplication/qtsingleapplication.h>
2007-01-13 02:40:33 +00:00
#ifdef _MSC_VER
#ifdef _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#define ENABLE_LEAK_CHECK() \
2012-12-13 17:06:54 +01:00
{ \
int tmpFlag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG); \
tmpFlag |= _CRTDBG_LEAK_CHECK_DF; \
_CrtSetDbgFlag(tmpFlag); \
}
#endif
#endif
#ifndef ENABLE_LEAK_CHECK
#define ENABLE_LEAK_CHECK()
#endif
using namespace std;
2008-09-02 22:04:18 +00:00
class startWindowImpl;
class Game;
2007-01-13 02:40:33 +00:00
int main( int argc, char **argv )
{
2012-12-21 01:01:01 +01:00
//ENABLE_LEAK_CHECK();
2012-12-21 01:01:01 +01:00
//_CrtSetBreakAlloc(49937);
socket_startup();
curl_global_init(CURL_GLOBAL_NOTHING);
2008-04-24 22:11:43 +00:00
#ifdef __APPLE__
2012-12-21 01:01:01 +01:00
// 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
/////// can be removed for non-qt-guis ////////////
SharedTools::QtSingleApplication a( "PokerTH", argc, argv );
if (a.sendMessage("Wake up!")) {
return 0;
}
2012-12-21 01:01:01 +01:00
//create defaultconfig
ConfigFile *myConfig = new ConfigFile(argv[0], false);
Log *myLog = new Log(myConfig);
2012-12-21 01:01:01 +01:00
// set PlastiqueStyle even for mac-version to prevent artefacts on styled widgets
2013-08-28 10:49:03 +02:00
#if QT_VERSION < 0x050000
2012-12-21 01:01:01 +01:00
a.setStyle(new QPlastiqueStyle);
2013-08-28 10:49:03 +02:00
#endif
2012-12-21 01:01:01 +01:00
QString myAppDataPath = QString::fromUtf8(myConfig->readConfigString("AppDataDir").c_str());
//set QApplication default font
QFontDatabase::addApplicationFont (myAppDataPath +"fonts/n019003l.pfb");
QFontDatabase::addApplicationFont (myAppDataPath +"fonts/VeraBd.ttf");
QFontDatabase::addApplicationFont (myAppDataPath +"fonts/c059013l.pfb");
QFontDatabase::addApplicationFont (myAppDataPath +"fonts/DejaVuSans-Bold.ttf");
2007-12-05 00:39:51 +00:00
2007-09-04 22:54:07 +00:00
#ifdef _WIN32
2012-12-21 01:01:01 +01:00
QString font1String("QApplication, QWidget, QDialog { font-size: 12px; }");
2012-05-12 15:17:58 +02:00
#elif __APPLE__
2012-12-21 01:01:01 +01:00
// QString font1String("font-family: \"Lucida Grande\";");
QString font1String("QApplication, QWidget, QDialog { font-size: 11px; }");
2012-05-12 15:17:58 +02:00
#elif ANDROID
2012-12-21 01:01:01 +01:00
QString font1String("QApplication, QWidget, QDialog { font-family: \"Nimbus Sans L\"; font-size: 26px; }");
QPalette p = a.palette();
p.setColor(QPalette::Button, QColor::fromRgb(80,80,80));
p.setColor(QPalette::Base, QColor::fromRgb(80,80,80));
p.setColor(QPalette::Window, QColor::fromRgb(50,50,50));
p.setColor(QPalette::ButtonText, QColor::fromRgb(255,255,255));
p.setColor(QPalette::Disabled, QPalette::ButtonText, QColor::fromRgb(100,100,100));
p.setColor(QPalette::WindowText, QColor::fromRgb(255,255,255));
p.setColor(QPalette::Disabled, QPalette::WindowText, QColor::fromRgb(100,100,100));
p.setColor(QPalette::Text, QColor::fromRgb(255,255,255));
p.setColor(QPalette::Disabled, QPalette::Text, QColor::fromRgb(100,100,100));
p.setColor(QPalette::Link, QColor::fromRgb(192,192,255));
p.setColor(QPalette::LinkVisited, QColor::fromRgb(192,192,255));
a.setPalette(p);
#elif MAEMO
QString font1String("QApplication, QWidget, QDialog { font-family: \"Nimbus Sans L\"; font-size: 22px; }");
QPalette p = a.palette();
p.setColor(QPalette::Button, QColor::fromRgb(80,80,80));
p.setColor(QPalette::Base, QColor::fromRgb(80,80,80));
p.setColor(QPalette::Window, QColor::fromRgb(50,50,50));
p.setColor(QPalette::ButtonText, QColor::fromRgb(255,255,255));
p.setColor(QPalette::Disabled, QPalette::ButtonText, QColor::fromRgb(100,100,100));
p.setColor(QPalette::WindowText, QColor::fromRgb(255,255,255));
p.setColor(QPalette::Disabled, QPalette::WindowText, QColor::fromRgb(100,100,100));
p.setColor(QPalette::Text, QColor::fromRgb(255,255,255));
p.setColor(QPalette::Disabled, QPalette::Text, QColor::fromRgb(100,100,100));
2012-12-21 01:01:01 +01:00
p.setColor(QPalette::Link, QColor::fromRgb(192,192,255));
p.setColor(QPalette::LinkVisited, QColor::fromRgb(192,192,255));
a.setPalette(p);
#else
2012-12-21 01:01:01 +01:00
QString font1String("QApplication, QWidget, QDialog { font-family: \"Nimbus Sans L\"; font-size: 12px; }");
#endif
2012-12-21 01:01:01 +01:00
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
2012-05-06 20:57:04 +00:00
#ifdef ANDROID
2012-12-29 21:56:12 +01:00
//check if custom background pictures for the resolution are there. Otherwise create them!
QString UserDataDir = QString::fromUtf8(myConfig->readConfigString("UserDataDir").c_str());
2012-12-21 01:01:01 +01:00
QDesktopWidget dw;
2012-12-29 21:56:12 +01:00
int screenWidth = dw.screenGeometry().width();
int screenHeight = dw.screenGeometry().height();
QString customStartWindowBgFileString(UserDataDir+"/startwindowbg10_"+QString::number(screenWidth)+"x"+QString::number(screenHeight)+".png");
QString customWelcomePokerTHFileString(UserDataDir+"/welcomepokerth10_"+QString::number(screenWidth)+"x"+QString::number(screenHeight)+".png");
QFile customStartWindowBgFile(customStartWindowBgFileString);
QFile customWelcomePokerTHFile(customWelcomePokerTHFileString);
QSplashScreen preSplashFirstRun;
if(!customStartWindowBgFile.exists()) {
//load preSplashPix to show that PokerTH is already running during first time pics calculation
QPixmap prePixBase(":/gfx/logoChip3D.png");
QPixmap prePix(300, 200);
prePix.fill(Qt::transparent); // force alpha channel
{
QPainter painter(&prePix);
painter.drawPixmap(0, 0, prePixBase);
painter.setPen(Qt::white);
painter.drawText(10, 160, "loading ...");
}
preSplashFirstRun.setPixmap(prePix);
preSplashFirstRun.show();
QPixmap pix(":/android/android-data/gfx/gui/misc/startwindowbg10_mobile.png");
pix = pix.scaled(screenWidth, screenHeight, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation);
pix.save(customStartWindowBgFileString);
}
if(!customWelcomePokerTHFile.exists()) {
QPixmap base(customStartWindowBgFileString);
//scale overlay "have a lot of fun" at first
QPixmap overlay(":/android/android-data/gfx/gui/misc/welcomepokerth10_mobile.png");
overlay = overlay.scaled(screenWidth, screenHeight, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation);
QPixmap result(base.width(), base.height());
result.fill(Qt::transparent); // force alpha channel
{
QPainter painter(&result);
painter.drawPixmap(0, 0, base);
painter.drawPixmap(0, 0, overlay);
}
result.save(customWelcomePokerTHFileString);
preSplashFirstRun.hide();
}
QPixmap pixmap;
if(customWelcomePokerTHFile.exists()) {
pixmap.load(QFileInfo(customWelcomePokerTHFile).absoluteFilePath());
}
else {
//if custom welcome pic could not be saved locally we need to scale it on the fly
pixmap.load(":/android/android-data/gfx/gui/misc/welcomepokerth10_mobile.png");
pixmap = pixmap.scaled(screenWidth, screenHeight, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation);
}
2012-12-28 20:24:00 +01:00
#else
2012-12-29 21:56:12 +01:00
QPixmap pixmap(myAppDataPath + "gfx/gui/misc/welcomepokerth10_desktop.png");
2012-05-06 20:57:04 +00:00
#endif
2012-12-21 01:01:01 +01:00
StartSplash splash(pixmap);
if(!myConfig->readConfigInt("DisableSplashScreenOnStartup")) {
splash.show();
splash.showMessage(QString("Version %1").arg(POKERTH_BETA_RELEASE_STRING), 0x0042, QColor(255,255,255));
}
2012-12-21 01:01:01 +01:00
//Set translations
QTranslator qtTranslator;
qtTranslator.load(QString(myAppDataPath +"translations/qt_") + QString::fromStdString(myConfig->readConfigString("Language")));
a.installTranslator(&qtTranslator);
2007-06-15 18:59:28 +00:00
2012-12-21 01:01:01 +01:00
QTranslator translator;
translator.load(QString(myAppDataPath +"translations/pokerth_") + QString::fromStdString(myConfig->readConfigString("Language")));
a.installTranslator(&translator);
2007-12-13 19:52:48 +00:00
2012-12-21 01:01:01 +01:00
qRegisterMetaType<unsigned>("unsigned");
qRegisterMetaType<boost::shared_ptr<Game> >("boost::shared_ptr<Game>");
qRegisterMetaType<ServerStats>("ServerStats");
qRegisterMetaType<DenyGameInvitationReason>("DenyGameInvitationReason");
///////////////////////////////////////////////////
2007-05-20 13:03:43 +00:00
2012-12-21 01:01:01 +01:00
startWindowImpl mainWin(myConfig,myLog);
a.setActivationWindow(&mainWin, true);
2012-12-21 01:01:01 +01:00
int retVal = a.exec();
2012-12-21 01:01:01 +01:00
curl_global_cleanup();
socket_cleanup();
2012-12-21 01:01:01 +01:00
return retVal;
2007-01-13 02:40:33 +00:00
}