2013-09-07 07:30:58 +05:30
|
|
|
#include "MultiMC.h"
|
2014-04-06 07:29:37 +05:30
|
|
|
#include "BuildConfig.h"
|
2016-10-30 07:07:38 +05:30
|
|
|
#include "MainWindow.h"
|
|
|
|
#include "InstanceWindow.h"
|
2015-07-05 05:59:41 +05:30
|
|
|
#include "pages/BasePageProvider.h"
|
|
|
|
#include "pages/global/MultiMCPage.h"
|
|
|
|
#include "pages/global/MinecraftPage.h"
|
|
|
|
#include "pages/global/JavaPage.h"
|
|
|
|
#include "pages/global/ProxyPage.h"
|
|
|
|
#include "pages/global/ExternalToolsPage.h"
|
|
|
|
#include "pages/global/AccountListPage.h"
|
2015-10-02 03:42:53 +05:30
|
|
|
#include "pages/global/PasteEEPage.h"
|
2014-04-06 02:28:47 +05:30
|
|
|
|
2016-10-21 12:37:26 +05:30
|
|
|
#include "themes/ITheme.h"
|
|
|
|
#include "themes/SystemTheme.h"
|
|
|
|
#include "themes/DarkTheme.h"
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
#include <iostream>
|
|
|
|
#include <QDir>
|
2013-12-07 00:29:58 +05:30
|
|
|
#include <QFileInfo>
|
2013-09-07 07:30:58 +05:30
|
|
|
#include <QNetworkAccessManager>
|
2013-09-09 03:13:19 +05:30
|
|
|
#include <QTranslator>
|
|
|
|
#include <QLibraryInfo>
|
2013-10-14 07:29:21 +05:30
|
|
|
#include <QMessageBox>
|
2013-12-07 00:29:58 +05:30
|
|
|
#include <QStringList>
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDebug>
|
2016-10-22 05:13:36 +05:30
|
|
|
#include <QStyleFactory>
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "InstanceList.h"
|
2016-10-03 04:25:54 +05:30
|
|
|
#include "FolderInstanceProvider.h"
|
|
|
|
#include "minecraft/ftb/FTBInstanceProvider.h"
|
|
|
|
|
2016-02-28 00:28:40 +05:30
|
|
|
#include <minecraft/auth/MojangAccountList.h>
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "icons/IconList.h"
|
2016-02-28 00:28:40 +05:30
|
|
|
//FIXME: get rid of this
|
|
|
|
#include "minecraft/legacy/LwjglVersionList.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "minecraft/MinecraftVersionList.h"
|
2016-02-28 00:28:40 +05:30
|
|
|
#include "minecraft/liteloader/LiteLoaderVersionList.h"
|
|
|
|
#include "minecraft/forge/ForgeVersionList.h"
|
2013-09-16 04:24:39 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "net/HttpMetaCache.h"
|
|
|
|
#include "net/URLConstants.h"
|
|
|
|
#include "Env.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "java/JavaUtils.h"
|
2013-10-07 04:14:34 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "updater/UpdateChecker.h"
|
2013-10-07 04:14:34 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "tools/JProfiler.h"
|
|
|
|
#include "tools/JVisualVM.h"
|
|
|
|
#include "tools/MCEditTool.h"
|
2014-02-15 18:49:35 +05:30
|
|
|
|
2015-03-02 02:50:57 +05:30
|
|
|
#include <xdgicon.h>
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/INISettingsObject.h"
|
|
|
|
#include "settings/Setting.h"
|
2015-02-02 06:44:14 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "trans/TranslationDownloader.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2016-02-28 00:28:40 +05:30
|
|
|
#include "minecraft/ftb/FTBPlugin.h"
|
2014-03-06 02:50:45 +05:30
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <Commandline.h>
|
|
|
|
#include <FileSystem.h>
|
2016-01-05 12:02:52 +05:30
|
|
|
#include <DesktopServices.h>
|
2016-10-30 07:07:38 +05:30
|
|
|
#include <LocalPeer.h>
|
2015-10-05 05:17:27 +05:30
|
|
|
|
2016-06-09 05:28:50 +05:30
|
|
|
#if defined Q_OS_WIN32
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
using namespace Commandline;
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2016-10-29 01:24:12 +05:30
|
|
|
MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
2016-06-09 05:28:50 +05:30
|
|
|
#if defined Q_OS_WIN32
|
|
|
|
// attach the parent console
|
|
|
|
if(AttachConsole(ATTACH_PARENT_PROCESS))
|
|
|
|
{
|
|
|
|
// if attach succeeds, reopen and sync all the i/o
|
|
|
|
if(freopen("CON", "w", stdout))
|
|
|
|
{
|
|
|
|
std::cout.sync_with_stdio();
|
|
|
|
}
|
|
|
|
if(freopen("CON", "w", stderr))
|
|
|
|
{
|
|
|
|
std::cerr.sync_with_stdio();
|
|
|
|
}
|
|
|
|
if(freopen("CON", "r", stdin))
|
|
|
|
{
|
|
|
|
std::cin.sync_with_stdio();
|
|
|
|
}
|
|
|
|
auto out = GetStdHandle (STD_OUTPUT_HANDLE);
|
|
|
|
DWORD written;
|
|
|
|
const char * endline = "\n";
|
|
|
|
WriteConsole(out, endline, strlen(endline), &written, NULL);
|
|
|
|
consoleAttached = true;
|
|
|
|
}
|
|
|
|
#endif
|
2013-10-29 01:25:12 +05:30
|
|
|
setOrganizationName("MultiMC");
|
|
|
|
setApplicationName("MultiMC5");
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
startTime = QDateTime::currentDateTime();
|
|
|
|
|
2014-01-01 20:12:43 +05:30
|
|
|
setAttribute(Qt::AA_UseHighDpiPixmaps);
|
2013-10-26 13:08:21 +05:30
|
|
|
// Don't quit on hiding the last window
|
|
|
|
this->setQuitOnLastWindowClosed(false);
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Commandline parsing
|
|
|
|
QHash<QString, QVariant> args;
|
|
|
|
{
|
|
|
|
Parser parser(FlagStyle::GNU, ArgumentStyle::SpaceAndEquals);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// --help
|
|
|
|
parser.addSwitch("help");
|
|
|
|
parser.addShortOpt("help", 'h');
|
|
|
|
parser.addDocumentation("help", "display this help and exit.");
|
|
|
|
// --version
|
|
|
|
parser.addSwitch("version");
|
|
|
|
parser.addShortOpt("version", 'V');
|
|
|
|
parser.addDocumentation("version", "display program version and exit.");
|
|
|
|
// --dir
|
|
|
|
parser.addOption("dir", applicationDirPath());
|
|
|
|
parser.addShortOpt("dir", 'd');
|
2013-09-23 03:53:50 +05:30
|
|
|
parser.addDocumentation("dir", "use the supplied directory as MultiMC root instead of "
|
|
|
|
"the binary location (use '.' for current)");
|
2015-09-30 03:41:00 +05:30
|
|
|
// --launch
|
|
|
|
parser.addOption("launch");
|
|
|
|
parser.addShortOpt("launch", 'l');
|
|
|
|
parser.addDocumentation("launch", "launch the specified instance (by instance ID)");
|
2014-05-22 11:19:45 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// parse the arguments
|
|
|
|
try
|
|
|
|
{
|
|
|
|
args = parser.parse(arguments());
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
catch (ParsingError e)
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
|
|
|
std::cerr << "CommandLineError: " << e.what() << std::endl;
|
2013-09-23 03:53:50 +05:30
|
|
|
std::cerr << "Try '%1 -h' to get help on MultiMC's command line parameters."
|
|
|
|
<< std::endl;
|
2013-09-07 07:30:58 +05:30
|
|
|
m_status = MultiMC::Failed;
|
|
|
|
return;
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// display help and exit
|
|
|
|
if (args["help"].toBool())
|
|
|
|
{
|
|
|
|
std::cout << qPrintable(parser.compileHelp(arguments()[0]));
|
|
|
|
m_status = MultiMC::Succeeded;
|
|
|
|
return;
|
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// display version and exit
|
|
|
|
if (args["version"].toBool())
|
|
|
|
{
|
2015-12-28 09:15:49 +05:30
|
|
|
std::cout << "Version " << BuildConfig.printableVersionString().toStdString() << std::endl;
|
2014-04-06 02:28:47 +05:30
|
|
|
std::cout << "Git " << BuildConfig.GIT_COMMIT.toStdString() << std::endl;
|
2013-09-07 07:30:58 +05:30
|
|
|
m_status = MultiMC::Succeeded;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-10-30 07:07:38 +05:30
|
|
|
m_instanceIdToLaunch = args["launch"].toString();
|
2015-01-31 21:29:03 +05:30
|
|
|
|
|
|
|
QString origcwdPath = QDir::currentPath();
|
|
|
|
QString binPath = applicationDirPath();
|
2014-01-03 06:59:05 +05:30
|
|
|
QString adjustedBy;
|
2015-12-27 08:04:03 +05:30
|
|
|
QString dataPath;
|
2013-09-07 07:30:58 +05:30
|
|
|
// change directory
|
2014-01-03 06:59:05 +05:30
|
|
|
QString dirParam = args["dir"].toString();
|
2014-01-05 21:17:12 +05:30
|
|
|
if (!dirParam.isEmpty())
|
2014-01-03 06:59:05 +05:30
|
|
|
{
|
|
|
|
// the dir param. it makes multimc data path point to whatever the user specified
|
|
|
|
// on command line
|
|
|
|
adjustedBy += "Command line " + dirParam;
|
|
|
|
dataPath = dirParam;
|
|
|
|
}
|
2014-01-05 04:36:55 +05:30
|
|
|
else
|
|
|
|
{
|
|
|
|
dataPath = applicationDirPath();
|
|
|
|
adjustedBy += "Fallback to binary path " + dataPath;
|
|
|
|
}
|
2014-01-05 21:17:12 +05:30
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
if (!FS::ensureFolderPathExists(dataPath) || !QDir::setCurrent(dataPath))
|
2014-01-03 06:59:05 +05:30
|
|
|
{
|
|
|
|
// BAD STUFF. WHAT DO?
|
|
|
|
m_status = MultiMC::Failed;
|
|
|
|
return;
|
|
|
|
}
|
2016-10-30 14:57:18 +05:30
|
|
|
auto appID = ApplicationId::fromPathAndVersion(QDir::currentPath(), BuildConfig.printableVersionString());
|
2016-10-30 08:15:41 +05:30
|
|
|
m_peerInstance = new LocalPeer(this, appID);
|
2016-10-30 07:07:38 +05:30
|
|
|
connect(m_peerInstance, &LocalPeer::messageReceived, this, &MultiMC::messageReceived);
|
|
|
|
if(m_peerInstance->isClient())
|
|
|
|
{
|
|
|
|
if(m_instanceIdToLaunch.isEmpty())
|
|
|
|
{
|
|
|
|
m_peerInstance->sendMessage("activate", 2000);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_peerInstance->sendMessage(m_instanceIdToLaunch, 2000);
|
|
|
|
}
|
2016-10-31 05:27:40 +05:30
|
|
|
m_status = MultiMC::Succeeded;
|
2016-10-30 07:07:38 +05:30
|
|
|
return;
|
|
|
|
}
|
2014-01-03 06:59:05 +05:30
|
|
|
|
2014-07-27 19:20:03 +05:30
|
|
|
#ifdef Q_OS_LINUX
|
2015-10-05 05:17:27 +05:30
|
|
|
QDir foo(FS::PathCombine(binPath, ".."));
|
2016-10-30 07:07:38 +05:30
|
|
|
m_rootPath = foo.absolutePath();
|
2014-07-27 19:20:03 +05:30
|
|
|
#elif defined(Q_OS_WIN32)
|
2016-10-30 07:19:07 +05:30
|
|
|
m_rootPath = binPath;
|
2014-07-27 19:20:03 +05:30
|
|
|
#elif defined(Q_OS_MAC)
|
2015-10-05 05:30:03 +05:30
|
|
|
QDir foo(FS::PathCombine(binPath, "../.."));
|
2016-10-30 07:19:07 +05:30
|
|
|
m_rootPath = foo.absolutePath();
|
2014-07-27 19:20:03 +05:30
|
|
|
#endif
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
// init the logger
|
|
|
|
initLogger();
|
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "MultiMC 5, (c) 2013-2015 MultiMC Contributors";
|
2015-12-28 09:15:49 +05:30
|
|
|
qDebug() << "Version : " << BuildConfig.printableVersionString();
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Git commit : " << BuildConfig.GIT_COMMIT;
|
2015-12-28 09:15:49 +05:30
|
|
|
qDebug() << "Git refspec : " << BuildConfig.GIT_REFSPEC;
|
2014-01-03 06:59:05 +05:30
|
|
|
if (adjustedBy.size())
|
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Work dir before adjustment : " << origcwdPath;
|
|
|
|
qDebug() << "Work dir after adjustment : " << QDir::currentPath();
|
|
|
|
qDebug() << "Adjusted by : " << adjustedBy;
|
2014-01-03 06:59:05 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Work dir : " << QDir::currentPath();
|
2014-01-03 06:59:05 +05:30
|
|
|
}
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Binary path : " << binPath;
|
2016-10-30 07:07:38 +05:30
|
|
|
qDebug() << "Application root path : " << m_rootPath;
|
|
|
|
if(!m_instanceIdToLaunch.isEmpty())
|
2016-08-10 01:59:17 +05:30
|
|
|
{
|
2016-10-30 07:07:38 +05:30
|
|
|
qDebug() << "ID of instance to launch : " << m_instanceIdToLaunch;
|
2016-08-10 01:59:17 +05:30
|
|
|
}
|
2014-01-03 06:59:05 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// load settings
|
2016-10-29 01:24:12 +05:30
|
|
|
initGlobalSettings();
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2014-01-04 20:43:28 +05:30
|
|
|
// load translations
|
|
|
|
initTranslations();
|
|
|
|
|
2013-12-02 05:25:24 +05:30
|
|
|
// initialize the updater
|
2015-12-28 09:15:49 +05:30
|
|
|
if(BuildConfig.UPDATER_ENABLED)
|
|
|
|
{
|
|
|
|
m_updateChecker.reset(new UpdateChecker(BuildConfig.CHANLIST_URL, BuildConfig.VERSION_CHANNEL, BuildConfig.VERSION_BUILD));
|
|
|
|
}
|
2014-01-12 23:58:42 +05:30
|
|
|
|
2014-09-30 05:35:44 +05:30
|
|
|
m_translationChecker.reset(new TranslationDownloader());
|
|
|
|
|
2015-02-01 16:14:47 +05:30
|
|
|
initIcons();
|
2016-10-21 12:37:26 +05:30
|
|
|
initThemes();
|
2016-10-31 05:27:40 +05:30
|
|
|
initInstances();
|
|
|
|
initAccounts();
|
|
|
|
initNetwork();
|
2015-05-20 01:58:51 +05:30
|
|
|
|
2015-01-31 21:29:03 +05:30
|
|
|
m_translationChecker->downloadTranslations();
|
2014-01-07 02:32:58 +05:30
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
//FIXME: what to do with these?
|
2016-10-31 05:27:40 +05:30
|
|
|
m_profilers.insert("jprofiler", std::shared_ptr<BaseProfilerFactory>(new JProfilerFactory()));
|
|
|
|
m_profilers.insert("jvisualvm", std::shared_ptr<BaseProfilerFactory>(new JVisualVMFactory()));
|
2014-02-15 18:49:35 +05:30
|
|
|
for (auto profiler : m_profilers.values())
|
|
|
|
{
|
2014-09-06 21:46:56 +05:30
|
|
|
profiler->registerSettings(m_settings);
|
2014-02-15 18:49:35 +05:30
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
|
|
|
|
//FIXME: what to do with these?
|
2014-07-27 19:20:03 +05:30
|
|
|
m_tools.insert("mcedit", std::shared_ptr<BaseDetachedToolFactory>(new MCEditFactory()));
|
2014-02-16 15:16:14 +05:30
|
|
|
for (auto tool : m_tools.values())
|
|
|
|
{
|
2014-09-06 21:46:56 +05:30
|
|
|
tool->registerSettings(m_settings);
|
2014-02-16 15:16:14 +05:30
|
|
|
}
|
2014-02-15 18:49:35 +05:30
|
|
|
|
2014-01-05 17:47:42 +05:30
|
|
|
connect(this, SIGNAL(aboutToQuit()), SLOT(onExit()));
|
2016-10-30 07:07:38 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
m_status = MultiMC::Initialized;
|
2016-10-30 07:07:38 +05:30
|
|
|
|
|
|
|
setIconTheme(settings()->get("IconTheme").toString());
|
|
|
|
setApplicationTheme(settings()->get("ApplicationTheme").toString());
|
2016-10-31 05:27:40 +05:30
|
|
|
|
2016-10-30 07:07:38 +05:30
|
|
|
if(!m_instanceIdToLaunch.isEmpty())
|
|
|
|
{
|
|
|
|
auto inst = instances()->getInstanceById(m_instanceIdToLaunch);
|
|
|
|
if(inst)
|
|
|
|
{
|
|
|
|
minecraftlist();
|
|
|
|
launch(inst, true, nullptr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
showMainWindow();
|
2013-09-07 07:30:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
MultiMC::~MultiMC()
|
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (m_mmc_translator)
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
removeTranslator(m_mmc_translator.get());
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
2013-09-23 03:53:50 +05:30
|
|
|
if (m_qt_translator)
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
removeTranslator(m_qt_translator.get());
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
2016-06-09 05:28:50 +05:30
|
|
|
#if defined Q_OS_WIN32
|
|
|
|
if(consoleAttached)
|
|
|
|
{
|
|
|
|
const char * endline = "\n";
|
|
|
|
auto out = GetStdHandle (STD_OUTPUT_HANDLE);
|
|
|
|
DWORD written;
|
|
|
|
WriteConsole(out, endline, strlen(endline), &written, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
2013-09-07 07:30:58 +05:30
|
|
|
}
|
|
|
|
|
2016-10-30 07:07:38 +05:30
|
|
|
void MultiMC::messageReceived(const QString& message)
|
|
|
|
{
|
|
|
|
if(message == "activate")
|
|
|
|
{
|
|
|
|
showMainWindow();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto inst = instances()->getInstanceById(message);
|
|
|
|
if(inst)
|
|
|
|
{
|
|
|
|
launch(inst, true, nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-29 04:18:33 +05:30
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
#include "CertWorkaround.h"
|
|
|
|
#endif
|
|
|
|
|
2016-10-31 05:27:40 +05:30
|
|
|
void MultiMC::initNetwork()
|
2015-05-20 01:58:51 +05:30
|
|
|
{
|
2016-10-31 05:27:40 +05:30
|
|
|
// init the http meta cache
|
|
|
|
ENV.initHttpMetaCache();
|
|
|
|
|
|
|
|
// create the global network manager
|
|
|
|
ENV.m_qnam.reset(new QNetworkAccessManager(this));
|
|
|
|
|
|
|
|
// init proxy settings
|
|
|
|
{
|
|
|
|
QString proxyTypeStr = settings()->get("ProxyType").toString();
|
|
|
|
QString addr = settings()->get("ProxyAddr").toString();
|
|
|
|
int port = settings()->get("ProxyPort").value<qint16>();
|
|
|
|
QString user = settings()->get("ProxyUser").toString();
|
|
|
|
QString pass = settings()->get("ProxyPass").toString();
|
|
|
|
ENV.updateProxySettings(proxyTypeStr, addr, port, user, pass);
|
|
|
|
}
|
|
|
|
|
2015-05-20 01:58:51 +05:30
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
Q_INIT_RESOURCE(certs);
|
2015-09-29 04:18:33 +05:30
|
|
|
RebuildQtCertificates();
|
2015-05-20 01:58:51 +05:30
|
|
|
QFile equifaxFile(":/certs/Equifax_Secure_Certificate_Authority.pem");
|
|
|
|
equifaxFile.open(QIODevice::ReadOnly);
|
|
|
|
QSslCertificate equifaxCert(equifaxFile.readAll(), QSsl::Pem);
|
|
|
|
QSslSocket::addDefaultCaCertificate(equifaxCert);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-09-09 04:50:17 +05:30
|
|
|
void MultiMC::initTranslations()
|
|
|
|
{
|
2014-01-04 20:43:28 +05:30
|
|
|
QLocale locale(m_settings->get("Language").toString());
|
|
|
|
QLocale::setDefault(locale);
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Your language is" << locale.bcp47Name();
|
2013-09-22 07:51:36 +05:30
|
|
|
m_qt_translator.reset(new QTranslator());
|
2014-01-04 20:43:28 +05:30
|
|
|
if (m_qt_translator->load("qt_" + locale.bcp47Name(),
|
2013-09-23 03:53:50 +05:30
|
|
|
QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Loading Qt Language File for"
|
2014-01-04 20:43:28 +05:30
|
|
|
<< locale.bcp47Name().toLocal8Bit().constData() << "...";
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!installTranslator(m_qt_translator.get()))
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qCritical() << "Loading Qt Language File failed.";
|
2013-09-22 07:51:36 +05:30
|
|
|
m_qt_translator.reset();
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_qt_translator.reset();
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
m_mmc_translator.reset(new QTranslator());
|
2015-12-27 08:04:03 +05:30
|
|
|
if (m_mmc_translator->load("mmc_" + locale.bcp47Name(), FS::PathCombine(QDir::currentPath(), "translations")))
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Loading MMC Language File for"
|
2014-01-04 20:43:28 +05:30
|
|
|
<< locale.bcp47Name().toLocal8Bit().constData() << "...";
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!installTranslator(m_mmc_translator.get()))
|
2013-09-09 04:50:17 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qCritical() << "Loading MMC Language File failed.";
|
2013-09-22 07:51:36 +05:30
|
|
|
m_mmc_translator.reset();
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_mmc_translator.reset();
|
2013-09-09 04:50:17 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-01 16:14:47 +05:30
|
|
|
void MultiMC::initIcons()
|
|
|
|
{
|
|
|
|
auto setting = MMC->settings()->getSetting("IconsDir");
|
2016-04-10 07:59:29 +05:30
|
|
|
m_icons.reset(new IconList(QString(":/icons/instances/"), setting->get().toString()));
|
2015-02-01 16:14:47 +05:30
|
|
|
connect(setting.get(), &Setting::SettingChanged,[&](const Setting &, QVariant value)
|
|
|
|
{
|
2016-04-10 07:59:29 +05:30
|
|
|
m_icons->directoryChanged(value.toString());
|
2015-02-01 16:14:47 +05:30
|
|
|
});
|
2016-05-03 03:57:28 +05:30
|
|
|
ENV.registerIconList(m_icons);
|
2015-02-01 16:14:47 +05:30
|
|
|
}
|
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
void appDebugOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg)
|
|
|
|
{
|
|
|
|
const char *levels = "DWCF";
|
|
|
|
const QString format("%1 %2 %3\n");
|
|
|
|
|
|
|
|
qint64 msecstotal = MMC->timeSinceStart();
|
|
|
|
qint64 seconds = msecstotal / 1000;
|
|
|
|
qint64 msecs = msecstotal % 1000;
|
|
|
|
QString foo;
|
|
|
|
char buf[1025] = {0};
|
|
|
|
::snprintf(buf, 1024, "%5lld.%03lld", seconds, msecs);
|
|
|
|
|
|
|
|
QString out = format.arg(buf).arg(levels[type]).arg(msg);
|
|
|
|
|
2016-10-27 20:30:37 +05:30
|
|
|
MMC->logFile->write(out.toUtf8());
|
|
|
|
MMC->logFile->flush();
|
2015-02-02 06:44:14 +05:30
|
|
|
QTextStream(stderr) << out.toLocal8Bit();
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
|
2016-10-31 05:27:40 +05:30
|
|
|
static void moveFile(const QString &oldName, const QString &newName)
|
|
|
|
{
|
|
|
|
QFile::remove(newName);
|
|
|
|
QFile::copy(oldName, newName);
|
|
|
|
QFile::remove(oldName);
|
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void MultiMC::initLogger()
|
|
|
|
{
|
2013-12-21 15:35:44 +05:30
|
|
|
static const QString logBase = "MultiMC-%0.log";
|
|
|
|
|
|
|
|
moveFile(logBase.arg(3), logBase.arg(4));
|
|
|
|
moveFile(logBase.arg(2), logBase.arg(3));
|
|
|
|
moveFile(logBase.arg(1), logBase.arg(2));
|
|
|
|
moveFile(logBase.arg(0), logBase.arg(1));
|
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
qInstallMessageHandler(appDebugOutput);
|
|
|
|
|
2016-10-29 05:04:43 +05:30
|
|
|
logFile = std::unique_ptr<QFile>(new QFile(logBase.arg(0)));
|
2015-02-02 06:44:14 +05:30
|
|
|
logFile->open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate);
|
2013-10-06 04:43:40 +05:30
|
|
|
}
|
|
|
|
|
2016-10-31 05:27:40 +05:30
|
|
|
void MultiMC::initInstances()
|
|
|
|
{
|
|
|
|
auto InstDirSetting = m_settings->getSetting("InstanceDir");
|
|
|
|
// instance path: check for problems with '!' in instance path and warn the user in the log
|
|
|
|
// and rememer that we have to show him a dialog when the gui starts (if it does so)
|
|
|
|
QString instDir = m_settings->get("InstanceDir").toString();
|
|
|
|
qDebug() << "Instance path : " << instDir;
|
|
|
|
if (FS::checkProblemticPathJava(QDir(instDir)))
|
|
|
|
{
|
|
|
|
qWarning() << "Your instance path contains \'!\' and this is known to cause java problems";
|
|
|
|
}
|
|
|
|
m_instances.reset(new InstanceList(m_settings, InstDirSetting->get().toString(), this));
|
|
|
|
m_instanceFolder = new FolderInstanceProvider(m_settings, instDir);
|
|
|
|
connect(InstDirSetting.get(), &Setting::SettingChanged, m_instanceFolder, &FolderInstanceProvider::on_InstFolderChanged);
|
|
|
|
m_instances->addInstanceProvider(m_instanceFolder);
|
|
|
|
m_instances->addInstanceProvider(new FTBInstanceProvider(m_settings));
|
|
|
|
qDebug() << "Loading Instances...";
|
|
|
|
m_instances->loadList(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiMC::initAccounts()
|
|
|
|
{
|
|
|
|
// and accounts
|
|
|
|
m_accounts.reset(new MojangAccountList(this));
|
|
|
|
qDebug() << "Loading accounts...";
|
|
|
|
m_accounts->setListFilePath("accounts.json", true);
|
|
|
|
m_accounts->loadList();
|
|
|
|
}
|
|
|
|
|
2016-10-29 01:24:12 +05:30
|
|
|
void MultiMC::initGlobalSettings()
|
2013-09-07 07:30:58 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_settings.reset(new INISettingsObject("multimc.cfg", this));
|
2013-09-23 03:53:50 +05:30
|
|
|
// Updates
|
2014-04-06 02:28:47 +05:30
|
|
|
m_settings->registerSetting("UpdateChannel", BuildConfig.VERSION_CHANNEL);
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("AutoUpdate", true);
|
2016-10-21 12:37:26 +05:30
|
|
|
|
|
|
|
// Theming
|
2014-05-25 06:52:17 +05:30
|
|
|
m_settings->registerSetting("IconTheme", QString("multimc"));
|
2016-10-21 12:37:26 +05:30
|
|
|
m_settings->registerSetting("ApplicationTheme", QString("system"));
|
2014-02-14 02:30:51 +05:30
|
|
|
|
2014-01-05 07:16:47 +05:30
|
|
|
// Notifications
|
2014-01-03 23:49:27 +05:30
|
|
|
m_settings->registerSetting("ShownNotifications", QString());
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2014-11-09 01:47:28 +05:30
|
|
|
// Remembered state
|
|
|
|
m_settings->registerSetting("LastUsedGroupForNewInstance", QString());
|
|
|
|
|
2014-11-10 10:56:17 +05:30
|
|
|
QString defaultMonospace;
|
2014-12-04 02:18:27 +05:30
|
|
|
int defaultSize = 11;
|
2014-11-10 10:56:17 +05:30
|
|
|
#ifdef Q_OS_WIN32
|
2014-12-04 02:18:27 +05:30
|
|
|
defaultMonospace = "Courier";
|
|
|
|
defaultSize = 10;
|
2014-11-11 20:13:32 +05:30
|
|
|
#elif defined(Q_OS_MAC)
|
2014-11-10 10:56:17 +05:30
|
|
|
defaultMonospace = "Menlo";
|
|
|
|
#else
|
|
|
|
defaultMonospace = "Monospace";
|
|
|
|
#endif
|
2016-10-29 01:24:12 +05:30
|
|
|
|
|
|
|
// resolve the font so the default actually matches
|
|
|
|
QFont consoleFont;
|
|
|
|
consoleFont.setFamily(defaultMonospace);
|
|
|
|
consoleFont.setStyleHint(QFont::Monospace);
|
|
|
|
consoleFont.setFixedPitch(true);
|
|
|
|
QFontInfo consoleFontInfo(consoleFont);
|
|
|
|
QString resolvedDefaultMonospace = consoleFontInfo.family();
|
|
|
|
QFont resolvedFont(resolvedDefaultMonospace);
|
|
|
|
qDebug() << "Detected default console font:" << resolvedDefaultMonospace
|
|
|
|
<< ", substitutions:" << resolvedFont.substitutions().join(',');
|
|
|
|
|
|
|
|
m_settings->registerSetting("ConsoleFont", resolvedDefaultMonospace);
|
2014-12-04 02:18:27 +05:30
|
|
|
m_settings->registerSetting("ConsoleFontSize", defaultSize);
|
2015-06-11 05:19:13 +05:30
|
|
|
m_settings->registerSetting("ConsoleMaxLines", 100000);
|
|
|
|
m_settings->registerSetting("ConsoleOverflowStop", true);
|
2014-11-10 00:18:35 +05:30
|
|
|
|
2015-02-02 05:39:28 +05:30
|
|
|
FTBPlugin::initialize(m_settings);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Folders
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("InstanceDir", "instances");
|
|
|
|
m_settings->registerSetting({"CentralModsDir", "ModsDir"}, "mods");
|
|
|
|
m_settings->registerSetting({"LWJGLDir", "LwjglDir"}, "lwjgl");
|
|
|
|
m_settings->registerSetting("IconsDir", "icons");
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-12-29 22:21:16 +05:30
|
|
|
// Editors
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("JsonEditor", QString());
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2014-01-04 20:43:28 +05:30
|
|
|
// Language
|
|
|
|
m_settings->registerSetting("Language", QLocale(QLocale::system().language()).bcp47Name());
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Console
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("ShowConsole", true);
|
|
|
|
m_settings->registerSetting("AutoCloseConsole", true);
|
2014-01-18 03:25:10 +05:30
|
|
|
m_settings->registerSetting("LogPrePostOutput", true);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Console Colors
|
2014-01-01 19:38:40 +05:30
|
|
|
// m_settings->registerSetting("SysMessageColor", QColor(Qt::blue));
|
|
|
|
// m_settings->registerSetting("StdOutColor", QColor(Qt::black));
|
|
|
|
// m_settings->registerSetting("StdErrColor", QColor(Qt::red));
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Window Size
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting({"LaunchMaximized", "MCWindowMaximize"}, false);
|
|
|
|
m_settings->registerSetting({"MinecraftWinWidth", "MCWindowWidth"}, 854);
|
|
|
|
m_settings->registerSetting({"MinecraftWinHeight", "MCWindowHeight"}, 480);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2014-01-07 02:32:58 +05:30
|
|
|
// Proxy Settings
|
2015-02-06 05:11:36 +05:30
|
|
|
m_settings->registerSetting("ProxyType", "None");
|
2014-01-07 02:32:58 +05:30
|
|
|
m_settings->registerSetting({"ProxyAddr", "ProxyHostName"}, "127.0.0.1");
|
|
|
|
m_settings->registerSetting("ProxyPort", 8080);
|
|
|
|
m_settings->registerSetting({"ProxyUser", "ProxyUsername"}, "");
|
|
|
|
m_settings->registerSetting({"ProxyPass", "ProxyPassword"}, "");
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Memory
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting({"MinMemAlloc", "MinMemoryAlloc"}, 512);
|
|
|
|
m_settings->registerSetting({"MaxMemAlloc", "MaxMemoryAlloc"}, 1024);
|
2015-02-02 14:12:36 +05:30
|
|
|
m_settings->registerSetting("PermGen", 128);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Java Settings
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("JavaPath", "");
|
2015-05-04 04:50:48 +05:30
|
|
|
m_settings->registerSetting("JavaTimestamp", 0);
|
2016-06-16 05:50:23 +05:30
|
|
|
m_settings->registerSetting("JavaArchitecture", "");
|
2015-05-04 04:50:48 +05:30
|
|
|
m_settings->registerSetting("JavaVersion", "");
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("LastHostname", "");
|
2014-06-28 03:35:00 +05:30
|
|
|
m_settings->registerSetting("JavaDetectionHack", "");
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("JvmArgs", "");
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
// Minecraft launch method
|
|
|
|
m_settings->registerSetting("MCLaunchMethod", "LauncherPart");
|
|
|
|
|
2015-05-24 18:19:54 +05:30
|
|
|
// Wrapper command for launch
|
|
|
|
m_settings->registerSetting("WrapperCommand", "");
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// Custom Commands
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting({"PreLaunchCommand", "PreLaunchCmd"}, "");
|
2014-01-01 20:47:49 +05:30
|
|
|
m_settings->registerSetting({"PostExitCommand", "PostExitCmd"}, "");
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
// The cat
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("TheCat", false);
|
2013-09-23 03:53:50 +05:30
|
|
|
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("InstSortMode", "Name");
|
|
|
|
m_settings->registerSetting("SelectedInstance", QString());
|
2013-11-03 06:15:25 +05:30
|
|
|
|
|
|
|
// Window state and geometry
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("MainWindowState", "");
|
|
|
|
m_settings->registerSetting("MainWindowGeometry", "");
|
2013-11-23 06:11:28 +05:30
|
|
|
|
2014-01-01 19:38:40 +05:30
|
|
|
m_settings->registerSetting("ConsoleWindowState", "");
|
|
|
|
m_settings->registerSetting("ConsoleWindowGeometry", "");
|
2013-11-23 06:11:28 +05:30
|
|
|
|
2014-01-02 07:50:34 +05:30
|
|
|
m_settings->registerSetting("SettingsGeometry", "");
|
2014-06-03 05:04:44 +05:30
|
|
|
|
|
|
|
m_settings->registerSetting("PagedGeometry", "");
|
2015-05-29 05:52:02 +05:30
|
|
|
|
|
|
|
// Jar mod nag dialog in version page
|
|
|
|
m_settings->registerSetting("JarModNagSeen", false);
|
2015-07-05 05:59:41 +05:30
|
|
|
|
2015-10-02 03:42:53 +05:30
|
|
|
// paste.ee API key
|
|
|
|
m_settings->registerSetting("PasteEEAPIKey", "multimc");
|
2015-07-05 05:59:41 +05:30
|
|
|
|
|
|
|
// Init page provider
|
|
|
|
{
|
|
|
|
m_globalSettingsProvider = std::make_shared<GenericPageProvider>(tr("Settings"));
|
|
|
|
m_globalSettingsProvider->addPage<MultiMCPage>();
|
|
|
|
m_globalSettingsProvider->addPage<MinecraftPage>();
|
|
|
|
m_globalSettingsProvider->addPage<JavaPage>();
|
|
|
|
m_globalSettingsProvider->addPage<ProxyPage>();
|
|
|
|
m_globalSettingsProvider->addPage<ExternalToolsPage>();
|
|
|
|
m_globalSettingsProvider->addPage<AccountListPage>();
|
2015-10-02 03:42:53 +05:30
|
|
|
m_globalSettingsProvider->addPage<PasteEEPage>();
|
2015-07-05 05:59:41 +05:30
|
|
|
}
|
2013-09-07 07:30:58 +05:30
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<LWJGLVersionList> MultiMC::lwjgllist()
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!m_lwjgllist)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_lwjgllist.reset(new LWJGLVersionList());
|
2015-02-02 05:39:28 +05:30
|
|
|
ENV.registerVersionList("org.lwjgl.legacy", m_lwjgllist);
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
return m_lwjgllist;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<ForgeVersionList> MultiMC::forgelist()
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!m_forgelist)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_forgelist.reset(new ForgeVersionList());
|
2015-02-02 05:39:28 +05:30
|
|
|
ENV.registerVersionList("net.minecraftforge", m_forgelist);
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
return m_forgelist;
|
|
|
|
}
|
|
|
|
|
2014-02-20 03:04:17 +05:30
|
|
|
std::shared_ptr<LiteLoaderVersionList> MultiMC::liteloaderlist()
|
|
|
|
{
|
|
|
|
if (!m_liteloaderlist)
|
|
|
|
{
|
|
|
|
m_liteloaderlist.reset(new LiteLoaderVersionList());
|
2015-02-02 05:39:28 +05:30
|
|
|
ENV.registerVersionList("com.mumfrey.liteloader", m_liteloaderlist);
|
2014-02-20 03:04:17 +05:30
|
|
|
}
|
|
|
|
return m_liteloaderlist;
|
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<MinecraftVersionList> MultiMC::minecraftlist()
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-23 03:53:50 +05:30
|
|
|
if (!m_minecraftlist)
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_minecraftlist.reset(new MinecraftVersionList());
|
2015-02-03 07:09:15 +05:30
|
|
|
ENV.registerVersionList("net.minecraft", m_minecraftlist);
|
2013-09-16 04:24:39 +05:30
|
|
|
}
|
|
|
|
return m_minecraftlist;
|
|
|
|
}
|
|
|
|
|
2016-01-02 05:05:54 +05:30
|
|
|
std::shared_ptr<JavaInstallList> MultiMC::javalist()
|
2013-10-14 07:29:21 +05:30
|
|
|
{
|
|
|
|
if (!m_javalist)
|
|
|
|
{
|
2016-01-02 05:05:54 +05:30
|
|
|
m_javalist.reset(new JavaInstallList());
|
2015-02-03 07:09:15 +05:30
|
|
|
ENV.registerVersionList("com.java", m_javalist);
|
2013-10-14 07:29:21 +05:30
|
|
|
}
|
|
|
|
return m_javalist;
|
|
|
|
}
|
|
|
|
|
2015-06-08 06:13:16 +05:30
|
|
|
// from <sys/stat.h>
|
|
|
|
#ifndef S_IRUSR
|
|
|
|
#define __S_IREAD 0400 /* Read by owner. */
|
|
|
|
#define __S_IWRITE 0200 /* Write by owner. */
|
|
|
|
#define __S_IEXEC 0100 /* Execute by owner. */
|
|
|
|
#define S_IRUSR __S_IREAD /* Read by owner. */
|
|
|
|
#define S_IWUSR __S_IWRITE /* Write by owner. */
|
|
|
|
#define S_IXUSR __S_IEXEC /* Execute by owner. */
|
|
|
|
|
|
|
|
#define S_IRGRP (S_IRUSR >> 3) /* Read by group. */
|
|
|
|
#define S_IWGRP (S_IWUSR >> 3) /* Write by group. */
|
|
|
|
#define S_IXGRP (S_IXUSR >> 3) /* Execute by group. */
|
|
|
|
|
|
|
|
#define S_IROTH (S_IRGRP >> 3) /* Read by others. */
|
|
|
|
#define S_IWOTH (S_IWGRP >> 3) /* Write by others. */
|
|
|
|
#define S_IXOTH (S_IXGRP >> 3) /* Execute by others. */
|
|
|
|
#endif
|
|
|
|
static QFile::Permissions unixModeToPermissions(const int mode)
|
|
|
|
{
|
|
|
|
QFile::Permissions perms;
|
|
|
|
|
|
|
|
if (mode & S_IRUSR)
|
|
|
|
{
|
|
|
|
perms |= QFile::ReadUser;
|
|
|
|
}
|
|
|
|
if (mode & S_IWUSR)
|
|
|
|
{
|
|
|
|
perms |= QFile::WriteUser;
|
|
|
|
}
|
|
|
|
if (mode & S_IXUSR)
|
|
|
|
{
|
|
|
|
perms |= QFile::ExeUser;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode & S_IRGRP)
|
|
|
|
{
|
|
|
|
perms |= QFile::ReadGroup;
|
|
|
|
}
|
|
|
|
if (mode & S_IWGRP)
|
|
|
|
{
|
|
|
|
perms |= QFile::WriteGroup;
|
|
|
|
}
|
|
|
|
if (mode & S_IXGRP)
|
|
|
|
{
|
|
|
|
perms |= QFile::ExeGroup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode & S_IROTH)
|
|
|
|
{
|
|
|
|
perms |= QFile::ReadOther;
|
|
|
|
}
|
|
|
|
if (mode & S_IWOTH)
|
|
|
|
{
|
|
|
|
perms |= QFile::WriteOther;
|
|
|
|
}
|
|
|
|
if (mode & S_IXOTH)
|
|
|
|
{
|
|
|
|
perms |= QFile::ExeOther;
|
|
|
|
}
|
|
|
|
return perms;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiMC::installUpdates(const QString updateFilesDir, GoUpdate::OperationList operations)
|
2013-12-07 00:29:58 +05:30
|
|
|
{
|
2015-06-09 04:18:25 +05:30
|
|
|
qint64 pid = -1;
|
|
|
|
QStringList args;
|
|
|
|
bool started = false;
|
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Installing updates.";
|
2015-10-05 05:17:27 +05:30
|
|
|
#ifdef Q_OS_WIN
|
2015-01-28 03:01:07 +05:30
|
|
|
QString finishCmd = applicationFilePath();
|
2015-10-05 05:17:27 +05:30
|
|
|
#elif defined Q_OS_LINUX
|
|
|
|
QString finishCmd = FS::PathCombine(root(), "MultiMC");
|
|
|
|
#elif defined Q_OS_MAC
|
2015-01-28 03:01:07 +05:30
|
|
|
QString finishCmd = applicationFilePath();
|
2014-07-27 19:20:03 +05:30
|
|
|
#else
|
|
|
|
#error Unsupported operating system.
|
|
|
|
#endif
|
2014-01-05 21:17:12 +05:30
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
QString backupPath = FS::PathCombine(root(), "update", "backup");
|
2015-06-10 04:16:45 +05:30
|
|
|
QDir origin(root());
|
2015-06-10 02:53:46 +05:30
|
|
|
|
|
|
|
// clean up the backup folder. it should be empty before we start
|
2015-10-05 05:17:27 +05:30
|
|
|
if(!FS::deletePath(backupPath))
|
2015-06-08 06:13:16 +05:30
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
qWarning() << "couldn't remove previous backup folder" << backupPath;
|
2015-06-08 06:13:16 +05:30
|
|
|
}
|
2015-06-10 02:53:46 +05:30
|
|
|
// and it should exist.
|
2015-10-05 05:17:27 +05:30
|
|
|
if(!FS::ensureFolderPathExists(backupPath))
|
2015-06-08 06:13:16 +05:30
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
qWarning() << "couldn't create folder" << backupPath;
|
2015-06-08 06:13:16 +05:30
|
|
|
return;
|
|
|
|
}
|
2015-06-10 02:53:46 +05:30
|
|
|
|
2015-06-08 06:13:16 +05:30
|
|
|
struct BackupEntry
|
|
|
|
{
|
|
|
|
QString orig;
|
|
|
|
QString backup;
|
|
|
|
};
|
2015-06-10 00:28:19 +05:30
|
|
|
enum Failure
|
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
Replace,
|
2015-06-10 00:28:19 +05:30
|
|
|
Delete,
|
|
|
|
Start,
|
|
|
|
Nothing
|
|
|
|
} failedOperationType = Nothing;
|
|
|
|
QString failedFile;
|
|
|
|
|
2015-06-08 06:13:16 +05:30
|
|
|
QList <BackupEntry> backups;
|
|
|
|
QList <BackupEntry> trashcan;
|
2015-06-10 02:53:46 +05:30
|
|
|
|
2015-06-10 06:01:34 +05:30
|
|
|
bool useXPHack = false;
|
|
|
|
QString exePath;
|
|
|
|
QString exeOrigin;
|
|
|
|
QString exeBackup;
|
|
|
|
|
2015-06-10 02:53:46 +05:30
|
|
|
// perform the update operations
|
2015-06-08 06:13:16 +05:30
|
|
|
for(auto op: operations)
|
|
|
|
{
|
|
|
|
switch(op.type)
|
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
// replace = move original out to backup, if it exists, move the new file in its place
|
|
|
|
case GoUpdate::Operation::OP_REPLACE:
|
2015-06-08 06:13:16 +05:30
|
|
|
{
|
2016-01-12 11:22:29 +05:30
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
// hack for people renaming the .exe because ... reasons :)
|
|
|
|
if(op.dest == "MultiMC.exe")
|
|
|
|
{
|
|
|
|
op.dest = QFileInfo(applicationFilePath()).fileName();
|
|
|
|
}
|
|
|
|
#endif
|
2015-10-05 05:17:27 +05:30
|
|
|
QFileInfo replaced (FS::PathCombine(root(), op.dest));
|
2015-06-10 06:01:34 +05:30
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
if(QSysInfo::windowsVersion() < QSysInfo::WV_VISTA)
|
|
|
|
{
|
|
|
|
if(replaced.fileName() == "MultiMC.exe")
|
|
|
|
{
|
|
|
|
QDir rootDir(root());
|
|
|
|
exeOrigin = rootDir.relativeFilePath(op.file);
|
|
|
|
exePath = rootDir.relativeFilePath(op.dest);
|
2015-10-05 05:17:27 +05:30
|
|
|
exeBackup = rootDir.relativeFilePath(FS::PathCombine(backupPath, replaced.fileName()));
|
2015-06-10 06:01:34 +05:30
|
|
|
useXPHack = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2015-06-08 06:13:16 +05:30
|
|
|
if(replaced.exists())
|
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
QString backupName = op.dest;
|
|
|
|
backupName.replace('/', '_');
|
2015-10-05 05:17:27 +05:30
|
|
|
QString backupFilePath = FS::PathCombine(backupPath, backupName);
|
2015-06-09 04:18:25 +05:30
|
|
|
if(!QFile::rename(replaced.absoluteFilePath(), backupFilePath))
|
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
qWarning() << "Couldn't move:" << replaced.absoluteFilePath() << "to" << backupFilePath;
|
|
|
|
failedOperationType = Replace;
|
2015-06-10 00:28:19 +05:30
|
|
|
failedFile = op.dest;
|
2015-06-09 04:18:25 +05:30
|
|
|
goto FAILED;
|
|
|
|
}
|
2015-06-08 06:13:16 +05:30
|
|
|
BackupEntry be;
|
|
|
|
be.orig = replaced.absoluteFilePath();
|
|
|
|
be.backup = backupFilePath;
|
|
|
|
backups.append(be);
|
|
|
|
}
|
2015-06-10 02:53:46 +05:30
|
|
|
// make sure the folder we are putting this into exists
|
2015-10-05 05:17:27 +05:30
|
|
|
if(!FS::ensureFilePathExists(replaced.absoluteFilePath()))
|
2015-06-10 02:53:46 +05:30
|
|
|
{
|
|
|
|
qWarning() << "REPLACE: Couldn't create folder:" << replaced.absoluteFilePath();
|
|
|
|
failedOperationType = Replace;
|
|
|
|
failedFile = op.dest;
|
|
|
|
goto FAILED;
|
|
|
|
}
|
|
|
|
// now move the new file in
|
|
|
|
if(!QFile::rename(op.file, replaced.absoluteFilePath()))
|
2015-06-09 04:18:25 +05:30
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
qWarning() << "REPLACE: Couldn't move:" << op.file << "to" << replaced.absoluteFilePath();
|
|
|
|
failedOperationType = Replace;
|
2015-06-10 00:28:19 +05:30
|
|
|
failedFile = op.dest;
|
2015-06-09 04:18:25 +05:30
|
|
|
goto FAILED;
|
|
|
|
}
|
2015-06-08 06:13:16 +05:30
|
|
|
QFile::setPermissions(replaced.absoluteFilePath(), unixModeToPermissions(op.mode));
|
|
|
|
}
|
|
|
|
break;
|
2015-06-10 02:53:46 +05:30
|
|
|
// delete = move original to backup
|
2015-06-08 06:13:16 +05:30
|
|
|
case GoUpdate::Operation::OP_DELETE:
|
|
|
|
{
|
2015-10-05 05:17:27 +05:30
|
|
|
QString origFilePath = FS::PathCombine(root(), op.file);
|
2015-06-08 06:13:16 +05:30
|
|
|
if(QFile::exists(origFilePath))
|
|
|
|
{
|
2015-08-24 02:03:59 +05:30
|
|
|
QString backupName = op.file;
|
|
|
|
backupName.replace('/', '_');
|
2015-10-05 05:17:27 +05:30
|
|
|
QString trashFilePath = FS::PathCombine(backupPath, backupName);
|
2015-08-24 02:03:59 +05:30
|
|
|
|
2015-06-10 00:28:19 +05:30
|
|
|
if(!QFile::rename(origFilePath, trashFilePath))
|
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
qWarning() << "DELETE: Couldn't move:" << op.file << "to" << trashFilePath;
|
2015-06-10 00:28:19 +05:30
|
|
|
failedFile = op.file;
|
|
|
|
failedOperationType = Delete;
|
|
|
|
goto FAILED;
|
|
|
|
}
|
2015-06-08 06:13:16 +05:30
|
|
|
BackupEntry be;
|
|
|
|
be.orig = origFilePath;
|
|
|
|
be.backup = trashFilePath;
|
|
|
|
trashcan.append(be);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// try to start the new binary
|
2015-06-09 04:18:25 +05:30
|
|
|
args = qApp->arguments();
|
2015-06-08 06:13:16 +05:30
|
|
|
args.removeFirst();
|
2015-06-10 06:01:34 +05:30
|
|
|
|
|
|
|
// on old Windows, do insane things... no error checking here, this is just to have something.
|
|
|
|
if(useXPHack)
|
|
|
|
{
|
|
|
|
QString script;
|
|
|
|
auto nativePath = QDir::toNativeSeparators(exePath);
|
|
|
|
auto nativeOriginPath = QDir::toNativeSeparators(exeOrigin);
|
|
|
|
auto nativeBackupPath = QDir::toNativeSeparators(exeBackup);
|
|
|
|
|
|
|
|
// so we write this vbscript thing...
|
|
|
|
QTextStream out(&script);
|
|
|
|
out << "WScript.Sleep 1000\n";
|
|
|
|
out << "Set fso=CreateObject(\"Scripting.FileSystemObject\")\n";
|
|
|
|
out << "Set shell=CreateObject(\"WScript.Shell\")\n";
|
|
|
|
out << "fso.MoveFile \"" << nativePath << "\", \"" << nativeBackupPath << "\"\n";
|
|
|
|
out << "fso.MoveFile \"" << nativeOriginPath << "\", \"" << nativePath << "\"\n";
|
|
|
|
out << "shell.Run \"" << nativePath << "\"\n";
|
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
QString scriptPath = FS::PathCombine(root(), "update", "update.vbs");
|
2015-06-10 06:01:34 +05:30
|
|
|
|
|
|
|
// we save it
|
|
|
|
QFile scriptFile(scriptPath);
|
|
|
|
scriptFile.open(QIODevice::WriteOnly);
|
|
|
|
scriptFile.write(script.toLocal8Bit().replace("\n", "\r\n"));
|
|
|
|
scriptFile.close();
|
|
|
|
|
|
|
|
// we run it
|
|
|
|
started = QProcess::startDetached("wscript", {scriptPath}, root());
|
|
|
|
|
|
|
|
// and we quit. conscious thought.
|
|
|
|
qApp->quit();
|
|
|
|
return;
|
|
|
|
}
|
2015-06-09 04:18:25 +05:30
|
|
|
started = QProcess::startDetached(finishCmd, args, QDir::currentPath(), &pid);
|
2015-06-08 06:13:16 +05:30
|
|
|
// failed to start... ?
|
2015-06-09 04:18:25 +05:30
|
|
|
if(!started || pid == -1)
|
2015-06-08 06:13:16 +05:30
|
|
|
{
|
2015-06-09 04:18:25 +05:30
|
|
|
qWarning() << "Couldn't start new process properly!";
|
2015-06-10 00:28:19 +05:30
|
|
|
failedOperationType = Start;
|
2015-06-08 06:13:16 +05:30
|
|
|
goto FAILED;
|
|
|
|
}
|
2015-06-10 04:16:45 +05:30
|
|
|
origin.rmdir(updateFilesDir);
|
2015-06-08 06:13:16 +05:30
|
|
|
qApp->quit();
|
|
|
|
return;
|
|
|
|
|
|
|
|
FAILED:
|
2015-06-09 04:18:25 +05:30
|
|
|
qWarning() << "Update failed!";
|
2015-06-10 00:28:19 +05:30
|
|
|
bool revertOK = true;
|
2015-06-08 06:13:16 +05:30
|
|
|
// if the above failed, roll back changes
|
|
|
|
for(auto backup:backups)
|
|
|
|
{
|
2015-06-09 04:18:25 +05:30
|
|
|
qWarning() << "restoring" << backup.orig << "from" << backup.backup;
|
2015-06-10 00:28:19 +05:30
|
|
|
if(!QFile::remove(backup.orig))
|
|
|
|
{
|
|
|
|
revertOK = false;
|
|
|
|
qWarning() << "removing new" << backup.orig << "failed!";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!QFile::rename(backup.backup, backup.orig))
|
|
|
|
{
|
|
|
|
revertOK = false;
|
2015-06-10 02:53:46 +05:30
|
|
|
qWarning() << "restoring" << backup.orig << "failed!";
|
2015-06-10 00:28:19 +05:30
|
|
|
}
|
2015-06-08 06:13:16 +05:30
|
|
|
}
|
|
|
|
for(auto backup:trashcan)
|
|
|
|
{
|
2015-06-09 04:18:25 +05:30
|
|
|
qWarning() << "restoring" << backup.orig << "from" << backup.backup;
|
2015-06-10 02:53:46 +05:30
|
|
|
if(!QFile::rename(backup.backup, backup.orig))
|
|
|
|
{
|
|
|
|
revertOK = false;
|
|
|
|
qWarning() << "restoring" << backup.orig << "failed!";
|
|
|
|
}
|
2015-06-10 00:28:19 +05:30
|
|
|
}
|
|
|
|
QString msg;
|
|
|
|
if(!revertOK)
|
|
|
|
{
|
|
|
|
msg = tr("The update failed and then the update revert failed too.\n"
|
|
|
|
"You will have to repair MultiMC manually.\n"
|
|
|
|
"Please let us know why and how this happened.").arg(failedFile);
|
|
|
|
}
|
|
|
|
else switch (failedOperationType)
|
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
case Replace:
|
|
|
|
msg = tr("Couldn't replace file %1. Changes were reverted.\n"
|
|
|
|
"See the MultiMC log file for details.").arg(failedFile);
|
2015-06-10 00:28:19 +05:30
|
|
|
break;
|
|
|
|
case Delete:
|
2015-06-10 02:53:46 +05:30
|
|
|
msg = tr("Couldn't remove file %1. Changes were reverted.\n"
|
|
|
|
"See the MultiMC log file for details.").arg(failedFile);
|
2015-06-10 00:28:19 +05:30
|
|
|
break;
|
|
|
|
case Start:
|
|
|
|
msg = tr("The new version didn't start and the update was rolled back.");
|
|
|
|
break;
|
|
|
|
case Nothing:
|
|
|
|
default:
|
|
|
|
return;
|
2015-06-08 06:13:16 +05:30
|
|
|
}
|
2015-06-10 02:53:46 +05:30
|
|
|
QMessageBox::critical(nullptr, tr("Update failed!"), msg);
|
2013-12-07 00:29:58 +05:30
|
|
|
}
|
|
|
|
|
2016-10-21 12:37:26 +05:30
|
|
|
std::vector<ITheme *> MultiMC::getValidApplicationThemes()
|
|
|
|
{
|
|
|
|
std::vector<ITheme *> ret;
|
|
|
|
auto iter = m_themes.cbegin();
|
|
|
|
while (iter != m_themes.cend())
|
|
|
|
{
|
|
|
|
ret.push_back((*iter).second.get());
|
|
|
|
iter++;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiMC::initThemes()
|
|
|
|
{
|
|
|
|
auto insertTheme = [this](ITheme * theme)
|
|
|
|
{
|
|
|
|
m_themes.insert(std::make_pair(theme->id(), std::unique_ptr<ITheme>(theme)));
|
|
|
|
};
|
|
|
|
insertTheme(new SystemTheme());
|
|
|
|
insertTheme(new DarkTheme());
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiMC::setApplicationTheme(const QString& name)
|
|
|
|
{
|
|
|
|
auto systemPalette = qApp->palette();
|
|
|
|
auto themeIter = m_themes.find(name);
|
|
|
|
if(themeIter != m_themes.end())
|
|
|
|
{
|
|
|
|
auto & theme = (*themeIter).second;
|
2016-10-22 05:13:36 +05:30
|
|
|
setStyle(QStyleFactory::create(theme->qtTheme()));
|
2016-10-21 12:37:26 +05:30
|
|
|
setPalette(theme->colorScheme());
|
|
|
|
setStyleSheet(theme->appStyleSheet());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qWarning() << "Tried to set invalid theme:" << name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-02 02:50:57 +05:30
|
|
|
void MultiMC::setIconTheme(const QString& name)
|
|
|
|
{
|
|
|
|
XdgIcon::setThemeName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon MultiMC::getThemedIcon(const QString& name)
|
|
|
|
{
|
|
|
|
return XdgIcon::fromTheme(name);
|
|
|
|
}
|
|
|
|
|
2014-01-05 17:47:42 +05:30
|
|
|
void MultiMC::onExit()
|
2013-12-07 00:29:58 +05:30
|
|
|
{
|
2015-02-01 07:38:25 +05:30
|
|
|
if(m_instances)
|
|
|
|
{
|
2016-10-03 04:25:54 +05:30
|
|
|
// m_instances->saveGroupList();
|
2015-02-01 07:38:25 +05:30
|
|
|
}
|
2015-01-31 21:29:03 +05:30
|
|
|
ENV.destroy();
|
2015-02-02 06:44:14 +05:30
|
|
|
if(logFile)
|
|
|
|
{
|
|
|
|
logFile->flush();
|
|
|
|
logFile->close();
|
|
|
|
}
|
2013-12-07 00:29:58 +05:30
|
|
|
}
|
|
|
|
|
2013-12-30 19:15:59 +05:30
|
|
|
bool MultiMC::openJsonEditor(const QString &filename)
|
2013-12-29 22:21:16 +05:30
|
|
|
{
|
|
|
|
const QString file = QDir::current().absoluteFilePath(filename);
|
|
|
|
if (m_settings->get("JsonEditor").toString().isEmpty())
|
|
|
|
{
|
2016-01-05 12:02:52 +05:30
|
|
|
return DesktopServices::openUrl(QUrl::fromLocalFile(file));
|
2013-12-29 22:21:16 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-05 12:02:52 +05:30
|
|
|
//return DesktopServices::openFile(m_settings->get("JsonEditor").toString(), file);
|
2016-03-17 17:55:57 +05:30
|
|
|
return DesktopServices::run(m_settings->get("JsonEditor").toString(), {file});
|
2013-12-29 22:21:16 +05:30
|
|
|
}
|
|
|
|
}
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2016-10-30 07:07:38 +05:30
|
|
|
void MultiMC::launch(InstancePtr instance, bool online, BaseProfilerFactory *profiler)
|
|
|
|
{
|
|
|
|
if(instance->canLaunch())
|
|
|
|
{
|
2016-11-01 05:55:04 +05:30
|
|
|
auto & extras = m_instanceExtras[instance->id()];
|
|
|
|
auto & window = extras.window;
|
|
|
|
if(window)
|
2016-10-30 07:07:38 +05:30
|
|
|
{
|
|
|
|
if(!window->saveAll())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-11-01 05:55:04 +05:30
|
|
|
auto & controller = extras.controller;
|
|
|
|
controller.reset(new LaunchController());
|
|
|
|
controller->setInstance(instance);
|
|
|
|
controller->setOnline(online);
|
|
|
|
controller->setProfiler(profiler);
|
|
|
|
controller->setShowConsole(instance->settings()->get("ShowConsole").toBool());
|
|
|
|
if(window)
|
2016-10-30 07:07:38 +05:30
|
|
|
{
|
2016-11-01 05:55:04 +05:30
|
|
|
controller->setParentWidget(window);
|
2016-10-30 07:07:38 +05:30
|
|
|
}
|
2016-11-01 05:55:04 +05:30
|
|
|
else if(m_mainWindow)
|
|
|
|
{
|
|
|
|
controller->setParentWidget(m_mainWindow);
|
|
|
|
}
|
|
|
|
connect(controller.get(), &LaunchController::succeeded, this, &MultiMC::controllerSucceeded);
|
|
|
|
connect(controller.get(), &LaunchController::failed, this, &MultiMC::controllerFailed);
|
|
|
|
controller->start();
|
2016-10-30 07:07:38 +05:30
|
|
|
}
|
|
|
|
else if (instance->isRunning())
|
|
|
|
{
|
|
|
|
showInstanceWindow(instance, "console");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-01 05:55:04 +05:30
|
|
|
void MultiMC::controllerSucceeded()
|
|
|
|
{
|
|
|
|
auto controller = qobject_cast<LaunchController *>(QObject::sender());
|
|
|
|
if(!controller)
|
|
|
|
return;
|
|
|
|
auto id = controller->id();
|
|
|
|
auto & extras = m_instanceExtras[id];
|
|
|
|
// on success, do...
|
|
|
|
if (controller->instance()->settings()->get("AutoCloseConsole").toBool())
|
|
|
|
{
|
|
|
|
if(extras.window)
|
|
|
|
{
|
|
|
|
extras.window->close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
extras.controller.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiMC::controllerFailed(const QString& error)
|
|
|
|
{
|
|
|
|
Q_UNUSED(error);
|
|
|
|
auto controller = qobject_cast<LaunchController *>(QObject::sender());
|
|
|
|
if(!controller)
|
|
|
|
return;
|
|
|
|
auto id = controller->id();
|
|
|
|
auto & extras = m_instanceExtras[id];
|
|
|
|
|
|
|
|
// on failure, do... nothing
|
|
|
|
extras.controller.reset();
|
|
|
|
}
|
|
|
|
|
2016-10-30 07:07:38 +05:30
|
|
|
MainWindow * MultiMC::showMainWindow()
|
|
|
|
{
|
|
|
|
if(m_mainWindow)
|
|
|
|
{
|
|
|
|
m_mainWindow->setWindowState(m_mainWindow->windowState() & ~Qt::WindowMinimized);
|
|
|
|
m_mainWindow->raise();
|
|
|
|
m_mainWindow->activateWindow();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_mainWindow = new MainWindow();
|
|
|
|
m_mainWindow->restoreState(QByteArray::fromBase64(MMC->settings()->get("MainWindowState").toByteArray()));
|
|
|
|
m_mainWindow->restoreGeometry(QByteArray::fromBase64(MMC->settings()->get("MainWindowGeometry").toByteArray()));
|
|
|
|
m_mainWindow->show();
|
|
|
|
m_mainWindow->checkSetDefaultJava();
|
|
|
|
m_mainWindow->checkInstancePathForProblems();
|
|
|
|
}
|
|
|
|
return m_mainWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
InstanceWindow *MultiMC::showInstanceWindow(InstancePtr instance, QString page)
|
|
|
|
{
|
|
|
|
if(!instance)
|
|
|
|
return nullptr;
|
|
|
|
auto id = instance->id();
|
2016-11-01 05:55:04 +05:30
|
|
|
auto & extras = m_instanceExtras[id];
|
|
|
|
auto & window = extras.window;
|
2016-10-30 07:07:38 +05:30
|
|
|
|
2016-11-01 05:55:04 +05:30
|
|
|
if(window)
|
2016-10-30 07:07:38 +05:30
|
|
|
{
|
|
|
|
window->raise();
|
|
|
|
window->activateWindow();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window = new InstanceWindow(instance);
|
|
|
|
connect(window, &InstanceWindow::isClosing, this, &MultiMC::on_windowClose);
|
|
|
|
}
|
|
|
|
if(!page.isEmpty())
|
|
|
|
{
|
|
|
|
window->selectPage(page);
|
|
|
|
}
|
2016-11-01 05:55:04 +05:30
|
|
|
m_openWindows ++;
|
|
|
|
if(extras.controller)
|
|
|
|
{
|
|
|
|
extras.controller->setParentWidget(window);
|
|
|
|
}
|
2016-10-30 07:07:38 +05:30
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiMC::on_windowClose()
|
|
|
|
{
|
2016-11-01 05:55:04 +05:30
|
|
|
m_openWindows--;
|
2016-10-30 07:07:38 +05:30
|
|
|
auto instWindow = qobject_cast<InstanceWindow *>(QObject::sender());
|
|
|
|
if(instWindow)
|
|
|
|
{
|
2016-11-01 05:55:04 +05:30
|
|
|
auto & extras = m_instanceExtras[instWindow->instanceId()];
|
|
|
|
extras.window = nullptr;
|
|
|
|
if(extras.controller)
|
|
|
|
{
|
|
|
|
extras.controller->setParentWidget(m_mainWindow);
|
|
|
|
}
|
2016-10-30 07:07:38 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto mainWindow = qobject_cast<MainWindow *>(QObject::sender());
|
|
|
|
if(mainWindow)
|
|
|
|
{
|
|
|
|
m_mainWindow = nullptr;
|
|
|
|
}
|
|
|
|
// quit when there are no more windows.
|
2016-11-01 05:55:04 +05:30
|
|
|
if(m_openWindows == 0)
|
2016-10-30 07:07:38 +05:30
|
|
|
{
|
|
|
|
quit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
#include "MultiMC.moc"
|