2013-11-04 07:23:05 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QImage>
|
2013-11-04 07:23:05 +05:30
|
|
|
#include <setting.h>
|
|
|
|
#include <pathutils.h>
|
|
|
|
#include <cmdutils.h>
|
|
|
|
|
|
|
|
#include "MultiMC.h"
|
|
|
|
|
|
|
|
#include "LegacyInstance.h"
|
|
|
|
#include "LegacyInstance_p.h"
|
|
|
|
|
|
|
|
#include "logic/MinecraftProcess.h"
|
|
|
|
#include "logic/LegacyUpdate.h"
|
|
|
|
#include "logic/lists/IconList.h"
|
|
|
|
|
|
|
|
#include "gui/dialogs/LegacyModEditDialog.h"
|
2013-08-03 19:27:33 +05:30
|
|
|
|
|
|
|
#define LAUNCHER_FILE "MultiMCLauncher.jar"
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
LegacyInstance::LegacyInstance(const QString &rootDir, SettingsObject *settings,
|
|
|
|
QObject *parent)
|
|
|
|
: BaseInstance(new LegacyInstancePrivate(), rootDir, settings, parent)
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
settings->registerSetting(new Setting("NeedsRebuild", true));
|
|
|
|
settings->registerSetting(new Setting("ShouldUpdate", false));
|
|
|
|
settings->registerSetting(new Setting("JarVersion", "Unknown"));
|
2013-08-07 05:08:18 +05:30
|
|
|
settings->registerSetting(new Setting("LwjglVersion", "2.9.0"));
|
2013-08-03 19:27:33 +05:30
|
|
|
settings->registerSetting(new Setting("IntendedJarVersion", ""));
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
BaseUpdate *LegacyInstance::doUpdate()
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
auto list = jarModList();
|
2013-08-07 05:08:18 +05:30
|
|
|
return new LegacyUpdate(this, this);
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
MinecraftProcess *LegacyInstance::prepareForLaunch(LoginResponse response)
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
MinecraftProcess *proc = new MinecraftProcess(this);
|
|
|
|
|
2013-09-07 07:30:58 +05:30
|
|
|
QIcon icon = MMC->icons()->getIcon(iconKey());
|
2013-10-10 02:46:10 +05:30
|
|
|
auto pixmap = icon.pixmap(128, 128);
|
|
|
|
pixmap.save(PathCombine(minecraftRoot(), "icon.png"), "PNG");
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
// extract the legacy launcher
|
2013-08-12 04:09:19 +05:30
|
|
|
QFile(":/launcher/launcher.jar").copy(PathCombine(minecraftRoot(), LAUNCHER_FILE));
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
// set the process arguments
|
|
|
|
{
|
|
|
|
QStringList args;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
// window size
|
|
|
|
QString windowSize;
|
|
|
|
if (settings().get("LaunchMaximized").toBool())
|
|
|
|
windowSize = "max";
|
|
|
|
else
|
2013-10-10 02:46:10 +05:30
|
|
|
windowSize = QString("%1x%2").arg(settings().get("MinecraftWinWidth").toInt()).arg(
|
|
|
|
settings().get("MinecraftWinHeight").toInt());
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
// window title
|
|
|
|
QString windowTitle;
|
|
|
|
windowTitle.append("MultiMC: ").append(name());
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
// Java arguments
|
|
|
|
args.append(Util::Commandline::splitArgs(settings().get("JvmArgs").toString()));
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
#ifdef OSX
|
|
|
|
// OSX dock icon and name
|
|
|
|
args << "-Xdock:icon=icon.png";
|
|
|
|
args << QString("-Xdock:name=\"%1\"").arg(windowTitle);
|
|
|
|
#endif
|
2013-10-10 02:46:10 +05:30
|
|
|
|
|
|
|
QString lwjgl = QDir(MMC->settings()->get("LWJGLDir").toString() + "/" + lwjglVersion())
|
|
|
|
.absolutePath();
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
// launcher arguments
|
|
|
|
args << QString("-Xms%1m").arg(settings().get("MinMemAlloc").toInt());
|
|
|
|
args << QString("-Xmx%1m").arg(settings().get("MaxMemAlloc").toInt());
|
2013-09-02 03:55:40 +05:30
|
|
|
args << QString("-XX:PermSize=%1m").arg(settings().get("PermGen").toInt());
|
2013-10-31 06:09:37 +05:30
|
|
|
/**
|
|
|
|
* HACK: Stupid hack for Intel drivers.
|
|
|
|
* See: https://mojang.atlassian.net/browse/MCL-767
|
|
|
|
*/
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
args << QString("-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_"
|
|
|
|
"minecraft.exe.heapdump");
|
|
|
|
#endif
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
args << "-jar" << LAUNCHER_FILE;
|
2013-09-23 03:53:50 +05:30
|
|
|
args << response.player_name;
|
|
|
|
args << response.session_id;
|
2013-08-03 19:27:33 +05:30
|
|
|
args << windowTitle;
|
|
|
|
args << windowSize;
|
|
|
|
args << lwjgl;
|
|
|
|
proc->setMinecraftArguments(args);
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
// set the process work path
|
2013-08-12 04:09:19 +05:30
|
|
|
proc->setMinecraftWorkdir(minecraftRoot());
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
|
2013-08-28 08:08:29 +05:30
|
|
|
void LegacyInstance::cleanupAfterRun()
|
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
// FIXME: delete the launcher and icons and whatnot.
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
std::shared_ptr<ModList> LegacyInstance::coreModList()
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!d->core_mod_list)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-08-19 00:22:17 +05:30
|
|
|
d->core_mod_list.reset(new ModList(coreModsDir()));
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
d->core_mod_list->update();
|
2013-08-17 17:10:51 +05:30
|
|
|
return d->core_mod_list;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
std::shared_ptr<ModList> LegacyInstance::jarModList()
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!d->jar_mod_list)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-08-19 00:22:17 +05:30
|
|
|
auto list = new ModList(jarModsDir(), modListFile());
|
2013-08-17 17:10:51 +05:30
|
|
|
connect(list, SIGNAL(changed()), SLOT(jarModsChanged()));
|
|
|
|
d->jar_mod_list.reset(list);
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
d->jar_mod_list->update();
|
2013-08-17 17:10:51 +05:30
|
|
|
return d->jar_mod_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyInstance::jarModsChanged()
|
|
|
|
{
|
|
|
|
setShouldRebuild(true);
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
std::shared_ptr<ModList> LegacyInstance::loaderModList()
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!d->loader_mod_list)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-08-27 23:59:27 +05:30
|
|
|
d->loader_mod_list.reset(new ModList(loaderModsDir()));
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
d->loader_mod_list->update();
|
2013-08-17 17:10:51 +05:30
|
|
|
return d->loader_mod_list;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
std::shared_ptr<ModList> LegacyInstance::texturePackList()
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!d->texture_pack_list)
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
2013-08-28 08:08:29 +05:30
|
|
|
d->texture_pack_list.reset(new ModList(texturePacksDir()));
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
d->texture_pack_list->update();
|
2013-08-25 05:02:42 +05:30
|
|
|
return d->texture_pack_list;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
QDialog *LegacyInstance::createModEditDialog(QWidget *parent)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-08-20 05:59:36 +05:30
|
|
|
return new LegacyModEditDialog(this, parent);
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
QString LegacyInstance::jarModsDir() const
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
return PathCombine(instanceRoot(), "instMods");
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString LegacyInstance::binDir() const
|
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
return PathCombine(minecraftRoot(), "bin");
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString LegacyInstance::savesDir() const
|
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
return PathCombine(minecraftRoot(), "saves");
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
|
|
|
|
2013-08-27 23:59:27 +05:30
|
|
|
QString LegacyInstance::loaderModsDir() const
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
return PathCombine(minecraftRoot(), "mods");
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString LegacyInstance::coreModsDir() const
|
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
return PathCombine(minecraftRoot(), "coremods");
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString LegacyInstance::resourceDir() const
|
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
return PathCombine(minecraftRoot(), "resources");
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-08-28 08:08:29 +05:30
|
|
|
QString LegacyInstance::texturePacksDir() const
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
|
|
|
return PathCombine(minecraftRoot(), "texturepacks");
|
|
|
|
}
|
2013-08-03 19:27:33 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
QString LegacyInstance::runnableJar() const
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
return PathCombine(binDir(), "minecraft.jar");
|
|
|
|
}
|
|
|
|
|
|
|
|
QString LegacyInstance::modListFile() const
|
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
return PathCombine(instanceRoot(), "modlist");
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
|
|
|
|
QString LegacyInstance::instanceConfigFolder() const
|
|
|
|
{
|
|
|
|
return PathCombine(minecraftRoot(), "config");
|
|
|
|
}
|
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
/*
|
2013-08-03 19:27:33 +05:30
|
|
|
bool LegacyInstance::shouldUpdateCurrentVersion() const
|
|
|
|
{
|
2013-08-24 06:39:46 +05:30
|
|
|
QFileInfo jar(runnableJar());
|
2013-08-03 19:27:33 +05:30
|
|
|
return jar.lastModified().toUTC().toMSecsSinceEpoch() != lastCurrentVersionUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyInstance::updateCurrentVersion(bool keepCurrent)
|
|
|
|
{
|
2013-08-24 06:39:46 +05:30
|
|
|
QFileInfo jar(runnableJar());
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
if(!jar.exists())
|
|
|
|
{
|
|
|
|
setLastCurrentVersionUpdate(0);
|
2013-08-05 06:59:50 +05:30
|
|
|
setCurrentVersionId("Unknown");
|
2013-08-03 19:27:33 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
qint64 time = jar.lastModified().toUTC().toMSecsSinceEpoch();
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
setLastCurrentVersionUpdate(time);
|
|
|
|
if (!keepCurrent)
|
|
|
|
{
|
|
|
|
// TODO: Implement GetMinecraftJarVersion function.
|
2013-10-10 02:46:10 +05:30
|
|
|
QString newVersion =
|
|
|
|
"Unknown";//javautils::GetMinecraftJarVersion(jar.absoluteFilePath());
|
2013-08-05 06:59:50 +05:30
|
|
|
setCurrentVersionId(newVersion);
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
qint64 LegacyInstance::lastCurrentVersionUpdate() const
|
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
|
|
|
return d->m_settings->get ( "lastVersionUpdate" ).value<qint64>();
|
|
|
|
}
|
|
|
|
void LegacyInstance::setLastCurrentVersionUpdate ( qint64 val )
|
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
|
|
|
d->m_settings->set ( "lastVersionUpdate", val );
|
|
|
|
}
|
2013-08-24 06:39:46 +05:30
|
|
|
*/
|
2013-08-03 19:27:33 +05:30
|
|
|
bool LegacyInstance::shouldRebuild() const
|
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
return d->m_settings->get("NeedsRebuild").toBool();
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
void LegacyInstance::setShouldRebuild(bool val)
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
d->m_settings->set("NeedsRebuild", val);
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
QString LegacyInstance::currentVersionId() const
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
return d->m_settings->get("JarVersion").toString();
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
void LegacyInstance::setCurrentVersionId(QString val)
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
d->m_settings->set("JarVersion", val);
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
QString LegacyInstance::lwjglVersion() const
|
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
return d->m_settings->get("LwjglVersion").toString();
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
void LegacyInstance::setLWJGLVersion(QString val)
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
d->m_settings->set("LwjglVersion", val);
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
QString LegacyInstance::intendedVersionId() const
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
return d->m_settings->get("IntendedJarVersion").toString();
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
bool LegacyInstance::setIntendedVersionId(QString version)
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
settings().set("IntendedJarVersion", version);
|
|
|
|
setShouldUpdate(true);
|
|
|
|
return true;
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
|
|
|
bool LegacyInstance::shouldUpdate() const
|
|
|
|
{
|
2013-08-12 04:09:19 +05:30
|
|
|
I_D(LegacyInstance);
|
2013-10-10 02:46:10 +05:30
|
|
|
QVariant var = settings().get("ShouldUpdate");
|
|
|
|
if (!var.isValid() || var.toBool() == false)
|
2013-08-12 04:09:19 +05:30
|
|
|
{
|
|
|
|
return intendedVersionId() != currentVersionId();
|
|
|
|
}
|
2013-08-07 05:08:18 +05:30
|
|
|
return true;
|
2013-08-03 19:27:33 +05:30
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
void LegacyInstance::setShouldUpdate(bool val)
|
2013-08-12 04:09:19 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
settings().set("ShouldUpdate", val);
|
2013-08-12 04:09:19 +05:30
|
|
|
}
|
2013-08-24 06:39:46 +05:30
|
|
|
|
|
|
|
QString LegacyInstance::defaultBaseJar() const
|
|
|
|
{
|
|
|
|
return "versions/" + intendedVersionId() + "/" + intendedVersionId() + ".jar";
|
|
|
|
}
|
|
|
|
|
|
|
|
QString LegacyInstance::defaultCustomBaseJar() const
|
|
|
|
{
|
|
|
|
return PathCombine(binDir(), "mcbackup.jar");
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool LegacyInstance::menuActionEnabled(QString action_name) const
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
2013-10-08 02:39:50 +05:30
|
|
|
if (action_name == "actionChangeInstMCVersion")
|
|
|
|
return false;
|
2013-08-25 05:02:42 +05:30
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString LegacyInstance::getStatusbarDescription()
|
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (shouldUpdate())
|
2013-08-25 05:02:42 +05:30
|
|
|
return "Legacy : " + currentVersionId() + " -> " + intendedVersionId();
|
|
|
|
else
|
|
|
|
return "Legacy : " + currentVersionId();
|
|
|
|
}
|