pollymc/logic/OneSixInstance.cpp

544 lines
13 KiB
C++
Raw Normal View History

/* Copyright 2013-2014 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.
*/
#include <QIcon>
2014-05-09 00:50:10 +05:30
#include <pathutils.h>
#include "logger/QsLog.h"
#include "MultiMC.h"
2014-05-09 00:50:10 +05:30
#include "MMCError.h"
#include "logic/OneSixInstance.h"
#include "logic/OneSixUpdate.h"
#include "logic/minecraft/InstanceVersion.h"
#include "minecraft/VersionBuildError.h"
2014-05-09 00:50:10 +05:30
#include "logic/assets/AssetsUtils.h"
#include "icons/IconList.h"
2014-05-09 00:50:10 +05:30
#include "logic/MinecraftProcess.h"
#include "gui/pagedialog/PageDialog.h"
#include "gui/pages/VersionPage.h"
#include "gui/pages/ModFolderPage.h"
#include "gui/pages/ResourcePackPage.h"
#include "gui/pages/TexturePackPage.h"
#include "gui/pages/InstanceSettingsPage.h"
#include "gui/pages/NotesPage.h"
#include "gui/pages/ScreenshotsPage.h"
#include "gui/pages/OtherLogsPage.h"
2013-08-03 19:27:33 +05:30
2014-12-18 07:18:14 +05:30
OneSixInstance::OneSixInstance(const QString &rootDir, SettingsObject *settings, QObject *parent)
: BaseInstance(rootDir, settings, parent)
2013-08-03 19:27:33 +05:30
{
2014-12-18 07:18:14 +05:30
m_settings->registerSetting("IntendedVersion", "");
version.reset(new InstanceVersion(this, this));
}
void OneSixInstance::init()
{
try
{
reloadVersion();
}
catch (MMCError &e)
{
QLOG_ERROR() << "Caught exception on instance init: " << e.cause();
}
2013-08-03 19:27:33 +05:30
}
QList<BasePage *> OneSixInstance::getPages()
{
QList<BasePage *> values;
values.append(new VersionPage(this));
values.append(new ModFolderPage(this, loaderModList(), "mods", "loadermods",
tr("Loader mods"), "Loader-mods"));
values.append(new CoreModFolderPage(this, coreModList(), "coremods", "coremods",
tr("Core mods"), "Core-mods"));
values.append(new ResourcePackPage(this));
values.append(new TexturePackPage(this));
2014-06-18 04:45:01 +05:30
values.append(new NotesPage(this));
values.append(new ScreenshotsPage(this));
values.append(new InstanceSettingsPage(this));
values.append(new OtherLogsPage(this));
return values;
}
QString OneSixInstance::dialogTitle()
{
return tr("Edit Instance (%1)").arg(name());
}
QSet<QString> OneSixInstance::traits()
{
auto version = getFullVersion();
if (!version)
{
return {"version-incomplete"};
}
else
return version->traits;
}
std::shared_ptr<Task> OneSixInstance::doUpdate()
2013-08-03 19:27:33 +05:30
{
return std::shared_ptr<Task>(new OneSixUpdate(this));
2013-08-03 19:27:33 +05:30
}
2013-08-05 06:59:50 +05:30
QString replaceTokensIn(QString text, QMap<QString, QString> with)
{
QString result;
QRegExp token_regexp("\\$\\{(.+)\\}");
token_regexp.setMinimal(true);
QStringList list;
int tail = 0;
int head = 0;
while ((head = token_regexp.indexIn(text, head)) != -1)
{
result.append(text.mid(tail, head - tail));
2013-08-05 06:59:50 +05:30
QString key = token_regexp.cap(1);
auto iter = with.find(key);
if (iter != with.end())
2013-08-05 06:59:50 +05:30
{
result.append(*iter);
}
head += token_regexp.matchedLength();
tail = head;
}
result.append(text.mid(tail));
return result;
}
QDir OneSixInstance::reconstructAssets(std::shared_ptr<InstanceVersion> version)
{
QDir assetsDir = QDir("assets/");
QDir indexDir = QDir(PathCombine(assetsDir.path(), "indexes"));
QDir objectDir = QDir(PathCombine(assetsDir.path(), "objects"));
QDir virtualDir = QDir(PathCombine(assetsDir.path(), "virtual"));
QString indexPath = PathCombine(indexDir.path(), version->assets + ".json");
QFile indexFile(indexPath);
QDir virtualRoot(PathCombine(virtualDir.path(), version->assets));
if (!indexFile.exists())
{
QLOG_ERROR() << "No assets index file" << indexPath << "; can't reconstruct assets";
return virtualRoot;
}
QLOG_DEBUG() << "reconstructAssets" << assetsDir.path() << indexDir.path()
<< objectDir.path() << virtualDir.path() << virtualRoot.path();
AssetsIndex index;
bool loadAssetsIndex = AssetsUtils::loadAssetsIndexJson(indexPath, &index);
if (loadAssetsIndex && index.isVirtual)
{
QLOG_INFO() << "Reconstructing virtual assets folder at" << virtualRoot.path();
for (QString map : index.objects.keys())
{
AssetObject asset_object = index.objects.value(map);
QString target_path = PathCombine(virtualRoot.path(), map);
QFile target(target_path);
QString tlk = asset_object.hash.left(2);
QString original_path =
PathCombine(PathCombine(objectDir.path(), tlk), asset_object.hash);
QFile original(original_path);
2014-05-05 03:40:59 +05:30
if (!original.exists())
continue;
if (!target.exists())
{
QFileInfo info(target_path);
QDir target_dir = info.dir();
// QLOG_DEBUG() << target_dir;
if (!target_dir.exists())
QDir("").mkpath(target_dir.path());
bool couldCopy = original.copy(target_path);
QLOG_DEBUG() << " Copying" << original_path << "to" << target_path
2014-05-05 03:40:59 +05:30
<< QString::number(couldCopy); // << original.errorString();
}
}
// TODO: Write last used time to virtualRoot/.lastused
}
return virtualRoot;
}
QStringList OneSixInstance::processMinecraftArgs(AuthSessionPtr session)
2013-08-05 06:59:50 +05:30
{
QString args_pattern = version->minecraftArguments;
for (auto tweaker : version->tweakers)
{
args_pattern += " --tweakClass " + tweaker;
}
2013-08-05 06:59:50 +05:30
QMap<QString, QString> token_mapping;
2013-10-10 06:35:21 +05:30
// yggdrasil!
token_mapping["auth_username"] = session->username;
token_mapping["auth_session"] = session->session;
token_mapping["auth_access_token"] = session->access_token;
token_mapping["auth_player_name"] = session->player_name;
token_mapping["auth_uuid"] = session->uuid;
2013-10-10 06:35:21 +05:30
// these do nothing and are stupid.
2013-08-05 06:59:50 +05:30
token_mapping["profile_name"] = name();
token_mapping["version_name"] = version->id;
QString absRootDir = QDir(minecraftRoot()).absolutePath();
2013-08-05 06:59:50 +05:30
token_mapping["game_directory"] = absRootDir;
QString absAssetsDir = QDir("assets/").absolutePath();
2014-12-18 07:18:14 +05:30
token_mapping["game_assets"] = reconstructAssets(version).absolutePath();
2013-12-14 05:48:54 +05:30
token_mapping["user_properties"] = session->serializeUserProperties();
token_mapping["user_type"] = session->user_type;
// 1.7.3+ assets tokens
token_mapping["assets_root"] = absAssetsDir;
token_mapping["assets_index_name"] = version->assets;
QStringList parts = args_pattern.split(' ', QString::SkipEmptyParts);
2013-08-05 06:59:50 +05:30
for (int i = 0; i < parts.length(); i++)
{
parts[i] = replaceTokensIn(parts[i], token_mapping);
}
return parts;
}
bool OneSixInstance::prepareForLaunch(AuthSessionPtr session, QString &launchScript)
2013-08-03 19:27:33 +05:30
{
QIcon icon = MMC->icons()->getIcon(iconKey());
auto pixmap = icon.pixmap(128, 128);
pixmap.save(PathCombine(minecraftRoot(), "icon.png"), "PNG");
if (!version)
2013-08-05 06:59:50 +05:30
return nullptr;
// libraries and class path.
2013-08-05 06:59:50 +05:30
{
auto libs = version->getActiveNormalLibs();
for (auto lib : libs)
2013-08-05 06:59:50 +05:30
{
launchScript += "cp " + librariesPath().absoluteFilePath(lib->storagePath()) + "\n";
2013-08-05 06:59:50 +05:30
}
2014-05-05 03:40:59 +05:30
if (version->hasJarMods())
{
2014-12-18 07:18:14 +05:30
launchScript += "cp " + QDir(instanceRoot()).absoluteFilePath("temp.jar") + "\n";
2014-05-05 03:40:59 +05:30
}
else
{
2014-12-18 07:18:14 +05:30
QString relpath = version->id + "/" + version->id + ".jar";
launchScript += "cp " + versionsPath().absoluteFilePath(relpath) + "\n";
2014-05-05 03:40:59 +05:30
}
2013-08-05 06:59:50 +05:30
}
if (!version->mainClass.isEmpty())
2014-05-10 05:23:32 +05:30
{
launchScript += "mainClass " + version->mainClass + "\n";
}
if (!version->appletClass.isEmpty())
{
launchScript += "appletClass " + version->appletClass + "\n";
}
// generic minecraft params
for (auto param : processMinecraftArgs(session))
2013-08-05 06:59:50 +05:30
{
launchScript += "param " + param + "\n";
2013-08-05 06:59:50 +05:30
}
// window size, title and state, legacy
2013-10-10 06:35:21 +05:30
{
QString windowParams;
if (settings().get("LaunchMaximized").toBool())
windowParams = "max";
else
windowParams = QString("%1x%2")
.arg(settings().get("MinecraftWinWidth").toInt())
.arg(settings().get("MinecraftWinHeight").toInt());
launchScript += "windowTitle " + windowTitle() + "\n";
launchScript += "windowParams " + windowParams + "\n";
2013-10-10 06:35:21 +05:30
}
// legacy auth
{
launchScript += "userName " + session->player_name + "\n";
launchScript += "sessionId " + session->session + "\n";
2013-10-10 06:35:21 +05:30
}
// native libraries (mostly LWJGL)
{
QDir natives_dir(PathCombine(instanceRoot(), "natives/"));
for (auto native : version->getActiveNativeLibs())
{
QFileInfo finfo(PathCombine("libraries", native->storagePath()));
launchScript += "ext " + finfo.absoluteFilePath() + "\n";
}
launchScript += "natives " + natives_dir.absolutePath() + "\n";
}
// traits. including legacyLaunch and others ;)
2014-05-05 03:40:59 +05:30
for (auto trait : version->traits)
{
launchScript += "traits " + trait + "\n";
2014-05-05 03:40:59 +05:30
}
launchScript += "launcher onesix\n";
return true;
2013-08-05 06:59:50 +05:30
}
void OneSixInstance::cleanupAfterRun()
{
QString target_dir = PathCombine(instanceRoot(), "natives/");
2013-08-05 06:59:50 +05:30
QDir dir(target_dir);
dir.removeRecursively();
2013-08-03 19:27:33 +05:30
}
2013-08-04 03:28:39 +05:30
2013-10-06 04:43:40 +05:30
std::shared_ptr<ModList> OneSixInstance::loaderModList()
2013-08-28 08:08:29 +05:30
{
2014-12-18 07:18:14 +05:30
if (!loader_mod_list)
2013-08-28 08:08:29 +05:30
{
2014-12-18 07:18:14 +05:30
loader_mod_list.reset(new ModList(loaderModsDir()));
2013-08-28 08:08:29 +05:30
}
2014-12-18 07:18:14 +05:30
loader_mod_list->update();
return loader_mod_list;
2013-08-28 08:08:29 +05:30
}
std::shared_ptr<ModList> OneSixInstance::coreModList()
{
2014-12-18 07:18:14 +05:30
if (!core_mod_list)
{
2014-12-18 07:18:14 +05:30
core_mod_list.reset(new ModList(coreModsDir()));
}
2014-12-18 07:18:14 +05:30
core_mod_list->update();
return core_mod_list;
}
2013-10-06 04:43:40 +05:30
std::shared_ptr<ModList> OneSixInstance::resourcePackList()
{
2014-12-18 07:18:14 +05:30
if (!resource_pack_list)
2013-08-28 08:08:29 +05:30
{
2014-12-18 07:18:14 +05:30
resource_pack_list.reset(new ModList(resourcePacksDir()));
2013-08-28 08:08:29 +05:30
}
2014-12-18 07:18:14 +05:30
resource_pack_list->update();
return resource_pack_list;
}
std::shared_ptr<ModList> OneSixInstance::texturePackList()
2013-08-28 08:08:29 +05:30
{
2014-12-18 07:18:14 +05:30
if (!texture_pack_list)
{
2014-12-18 07:18:14 +05:30
texture_pack_list.reset(new ModList(texturePacksDir()));
}
2014-12-18 07:18:14 +05:30
texture_pack_list->update();
return texture_pack_list;
2013-08-28 08:08:29 +05:30
}
bool OneSixInstance::setIntendedVersionId(QString version)
2013-08-04 03:28:39 +05:30
{
settings().set("IntendedVersion", version);
QFile::remove(PathCombine(instanceRoot(), "version.json"));
clearVersion();
return true;
2013-08-04 03:28:39 +05:30
}
2013-08-05 06:59:50 +05:30
QString OneSixInstance::intendedVersionId() const
2013-08-04 03:28:39 +05:30
{
return settings().get("IntendedVersion").toString();
}
2013-08-05 06:59:50 +05:30
void OneSixInstance::setShouldUpdate(bool)
2013-08-05 06:59:50 +05:30
{
}
bool OneSixInstance::shouldUpdate() const
{
return true;
}
bool OneSixInstance::versionIsCustom()
{
2014-12-18 07:18:14 +05:30
if (version)
{
2014-12-18 07:18:14 +05:30
return !version->isVanilla();
}
return false;
}
2014-03-31 03:49:43 +05:30
bool OneSixInstance::versionIsFTBPack()
{
2014-12-18 07:18:14 +05:30
if (version)
2014-03-31 03:49:43 +05:30
{
2014-12-18 07:18:14 +05:30
return version->hasFtbPack();
2014-03-31 03:49:43 +05:30
}
return false;
}
2013-08-05 06:59:50 +05:30
QString OneSixInstance::currentVersionId() const
{
return intendedVersionId();
}
void OneSixInstance::reloadVersion()
{
try
{
2014-12-18 07:18:14 +05:30
version->reload(externalPatches());
2014-09-06 21:46:56 +05:30
unsetFlag(VersionBrokenFlag);
emit versionReloaded();
}
catch (VersionIncomplete &error)
{
}
2014-05-05 03:40:59 +05:30
catch (MMCError &error)
{
2014-12-18 07:18:14 +05:30
version->clear();
2014-09-06 21:46:56 +05:30
setFlag(VersionBrokenFlag);
2014-05-05 03:40:59 +05:30
// TODO: rethrow to show some error message(s)?
emit versionReloaded();
throw;
}
}
void OneSixInstance::clearVersion()
2013-08-05 06:59:50 +05:30
{
2014-12-18 07:18:14 +05:30
version->clear();
emit versionReloaded();
2013-08-05 06:59:50 +05:30
}
std::shared_ptr<InstanceVersion> OneSixInstance::getFullVersion() const
2013-08-05 06:59:50 +05:30
{
2014-12-18 07:18:14 +05:30
return version;
}
QString OneSixInstance::getStatusbarDescription()
{
QStringList traits;
if (versionIsCustom())
{
traits.append(tr("custom"));
}
2014-09-06 21:46:56 +05:30
if (flags() & VersionBrokenFlag)
{
traits.append(tr("broken"));
}
2014-05-05 03:40:59 +05:30
if (traits.size())
{
return tr("Minecraft %1 (%2)").arg(intendedVersionId()).arg(traits.join(", "));
}
else
{
return tr("Minecraft %1").arg(intendedVersionId());
}
}
QDir OneSixInstance::librariesPath() const
{
return QDir::current().absoluteFilePath("libraries");
}
2014-05-05 03:40:59 +05:30
QDir OneSixInstance::jarmodsPath() const
{
return QDir(jarModsDir());
}
QDir OneSixInstance::versionsPath() const
{
return QDir::current().absoluteFilePath("versions");
}
QStringList OneSixInstance::externalPatches() const
{
return QStringList();
}
2014-02-21 23:45:59 +05:30
bool OneSixInstance::providesVersionFile() const
{
return false;
}
bool OneSixInstance::reload()
{
2014-05-05 03:40:59 +05:30
if (BaseInstance::reload())
{
try
{
reloadVersion();
return true;
}
catch (...)
{
return false;
}
}
return false;
}
2013-08-28 08:08:29 +05:30
QString OneSixInstance::loaderModsDir() const
{
return PathCombine(minecraftRoot(), "mods");
}
QString OneSixInstance::coreModsDir() const
{
return PathCombine(minecraftRoot(), "coremods");
}
2013-08-28 08:08:29 +05:30
QString OneSixInstance::resourcePacksDir() const
{
return PathCombine(minecraftRoot(), "resourcepacks");
}
QString OneSixInstance::texturePacksDir() const
{
return PathCombine(minecraftRoot(), "texturepacks");
}
QString OneSixInstance::instanceConfigFolder() const
{
return PathCombine(minecraftRoot(), "config");
}
QString OneSixInstance::jarModsDir() const
{
return PathCombine(instanceRoot(), "jarmods");
}
2014-05-05 03:40:59 +05:30
QString OneSixInstance::libDir() const
{
return PathCombine(minecraftRoot(), "lib");
}
QStringList OneSixInstance::extraArguments() const
{
auto list = BaseInstance::extraArguments();
auto version = getFullVersion();
if (!version)
return list;
if (version->hasJarMods())
{
list.append({"-Dfml.ignoreInvalidMinecraftCertificates=true",
"-Dfml.ignorePatchDiscrepancies=true"});
}
return list;
}
2014-09-06 21:46:56 +05:30
std::shared_ptr<OneSixInstance> OneSixInstance::getSharedPtr()
{
return std::dynamic_pointer_cast<OneSixInstance>(BaseInstance::getSharedPtr());
}