2013-06-08 12:56:58 +00:00
|
|
|
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
|
2013-09-29 11:44:04 +00:00
|
|
|
#include "stdpch.h"
|
|
|
|
|
2013-06-08 12:56:58 +00:00
|
|
|
#include "client_config_dialog.h"
|
|
|
|
#include "system.h"
|
|
|
|
|
2015-12-06 15:51:36 +00:00
|
|
|
#include <QSplashScreen>
|
|
|
|
|
2015-12-13 12:09:25 +00:00
|
|
|
#ifdef QT_STATICPLUGIN
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
|
2015-12-23 14:00:49 +00:00
|
|
|
#if defined(Q_OS_WIN32)
|
2015-12-13 12:09:25 +00:00
|
|
|
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
2015-12-23 14:00:49 +00:00
|
|
|
#elif defined(Q_OS_MAC)
|
2015-12-13 12:09:25 +00:00
|
|
|
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
2015-12-23 14:00:49 +00:00
|
|
|
#elif defined(Q_OS_UNIX)
|
|
|
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
2015-12-25 14:28:11 +00:00
|
|
|
Q_IMPORT_PLUGIN(QXcbGlxIntegrationPlugin)
|
2015-12-13 12:09:25 +00:00
|
|
|
#endif
|
2015-12-23 14:00:49 +00:00
|
|
|
|
2015-12-13 12:09:25 +00:00
|
|
|
#endif
|
|
|
|
|
2015-12-23 14:00:49 +00:00
|
|
|
int main(sint32 argc, char **argv)
|
2013-06-08 12:56:58 +00:00
|
|
|
{
|
2016-01-11 09:09:10 +00:00
|
|
|
NLMISC::CApplicationContext applicationContext;
|
|
|
|
|
2015-12-23 14:00:49 +00:00
|
|
|
QApplication app(argc, argv);
|
2015-12-06 15:52:48 +00:00
|
|
|
|
|
|
|
QApplication::setWindowIcon(QIcon(":/resources/welcome_icon.png"));
|
|
|
|
QPixmap pixmap(":/resources/splash_screen.png" );
|
2013-06-08 12:56:58 +00:00
|
|
|
QSplashScreen splash( pixmap );
|
|
|
|
|
|
|
|
splash.show();
|
|
|
|
|
2015-12-06 15:55:37 +00:00
|
|
|
QString locale = QLocale::system().name().left(2);
|
|
|
|
|
|
|
|
QTranslator localTranslator;
|
|
|
|
if (localTranslator.load(QString(":/translations/ryzom_configuration_%1.qm").arg(locale)))
|
|
|
|
{
|
|
|
|
app.installTranslator(&localTranslator);
|
|
|
|
}
|
|
|
|
|
2013-06-08 12:56:58 +00:00
|
|
|
CSystem::GetInstance().config.load( "client.cfg" );
|
|
|
|
|
|
|
|
CClientConfigDialog d;
|
|
|
|
d.show();
|
|
|
|
splash.finish( &d );
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|