dolphin/Source/Core/DolphinQt2/Main.cpp

97 lines
3.2 KiB
C++
Raw Normal View History

2015-11-27 09:33:07 +01:00
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include <OptionParser.h>
#include <QAbstractEventDispatcher>
2015-11-27 09:33:07 +01:00
#include <QApplication>
2017-05-20 23:41:02 +02:00
#include <QMessageBox>
#include <QObject>
2015-11-27 09:33:07 +01:00
2017-05-20 23:41:02 +02:00
#include "Core/Analytics.h"
2015-11-27 09:33:07 +01:00
#include "Core/BootManager.h"
#include "Core/Core.h"
#include "DolphinQt2/Host.h"
#include "DolphinQt2/InDevelopmentWarning.h"
2015-11-27 09:33:07 +01:00
#include "DolphinQt2/MainWindow.h"
#include "DolphinQt2/Resources.h"
#include "DolphinQt2/Settings.h"
#include "UICommon/CommandLineParse.h"
2015-11-27 09:33:07 +01:00
#include "UICommon/UICommon.h"
int main(int argc, char* argv[])
{
2017-05-30 22:42:21 +02:00
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
QApplication app(argc, argv);
2015-11-27 09:33:07 +01:00
auto parser = CommandLineParse::CreateParser(CommandLineParse::ParserOptions::IncludeGUIOptions);
const optparse::Values& options = CommandLineParse::ParseArguments(parser.get(), argc, argv);
const std::vector<std::string> args = parser->args();
UICommon::SetUserDirectory(static_cast<const char*>(options.get("user")));
UICommon::CreateDirectories();
UICommon::Init();
Resources::Init();
2015-11-27 09:33:07 +01:00
// Whenever the event loop is about to go to sleep, dispatch the jobs
// queued in the Core first.
QObject::connect(QAbstractEventDispatcher::instance(), &QAbstractEventDispatcher::aboutToBlock,
&app, &Core::HostDispatchJobs);
auto& settings = Settings::Instance();
int retval = 0;
if (settings.IsInDevelopmentWarningEnabled())
{
InDevelopmentWarning warning_box;
retval = warning_box.exec() == QDialog::Rejected;
}
if (!retval)
{
2017-05-20 23:41:02 +02:00
DolphinAnalytics::Instance()->ReportDolphinStart("qt");
MainWindow win;
win.show();
2017-05-20 23:41:02 +02:00
#if defined(USE_ANALYTICS) && USE_ANALYTICS
if (!settings.HasAskedForAnalyticsPermission())
2017-05-20 23:41:02 +02:00
{
QMessageBox analytics_prompt(&win);
analytics_prompt.setIcon(QMessageBox::Question);
analytics_prompt.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
analytics_prompt.setText(QObject::tr(
"Do you authorize Dolphin to report this information to Dolphin's developers?"));
analytics_prompt.setInformativeText(
QObject::tr("If authorized, Dolphin can collect data on its performance, "
"feature usage, and configuration, as well as data on your system's "
"hardware and operating system.\n\n"
"No private data is ever collected. This data helps us understand "
"how people and emulated games use Dolphin and prioritize our "
"efforts. It also helps us identify rare configurations that are "
"causing bugs, performance and stability issues.\n"
"This authorization can be revoked at any time through Dolphin's "
"settings.\n\n"));
const int answer = analytics_prompt.exec();
settings.SetAskedForAnalyticsPermission(true);
settings.SetAnalyticsEnabled(answer == QMessageBox::Yes);
settings.Save();
2017-05-20 23:41:02 +02:00
DolphinAnalytics::Instance()->ReloadConfig();
}
#endif
retval = app.exec();
}
2015-11-27 09:33:07 +01:00
BootManager::Stop();
Core::Shutdown();
UICommon::Shutdown();
Host::GetInstance()->deleteLater();
2015-11-27 09:33:07 +01:00
return retval;
2015-11-27 09:33:07 +01:00
}