2015-02-02 22:25:30 +00:00
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
|
|
|
* 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 14:57:33 +01:00
|
|
|
#pragma once
|
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "minecraft/MinecraftInstance.h"
|
2013-08-03 14:57:33 +01:00
|
|
|
|
2015-09-05 17:46:57 +01:00
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
2013-08-17 12:40:51 +01:00
|
|
|
class ModList;
|
2016-04-03 23:33:56 +01:00
|
|
|
class LegacyModList;
|
2013-11-24 05:36:16 +00:00
|
|
|
class Task;
|
2013-08-07 00:38:18 +01:00
|
|
|
|
2015-09-05 17:46:57 +01:00
|
|
|
class MULTIMC_LOGIC_EXPORT LegacyInstance : public MinecraftInstance
|
2013-08-03 14:57:33 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2015-02-01 02:08:25 +00:00
|
|
|
explicit LegacyInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir);
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual void init() override {};
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
/// Path to the instance's minecraft.jar
|
2013-08-24 02:09:46 +01:00
|
|
|
QString runnableJar() const;
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
//! Path to the instance's modlist file.
|
|
|
|
QString modListFile() const;
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
/*
|
2014-06-08 17:02:20 +01:00
|
|
|
////// Edit Instance Dialog stuff //////
|
|
|
|
virtual QList<BasePage *> getPages();
|
|
|
|
virtual QString dialogTitle();
|
2015-02-09 00:51:14 +00:00
|
|
|
*/
|
2014-06-08 17:02:20 +01:00
|
|
|
|
2013-08-17 12:40:51 +01:00
|
|
|
////// Mod Lists //////
|
2016-04-03 23:33:56 +01:00
|
|
|
std::shared_ptr<LegacyModList> jarModList() const ;
|
2015-01-27 21:31:07 +00:00
|
|
|
virtual QList< Mod > getJarMods() const override;
|
|
|
|
std::shared_ptr<ModList> coreModList() const;
|
|
|
|
std::shared_ptr<ModList> loaderModList() const;
|
|
|
|
std::shared_ptr<ModList> texturePackList() const override;
|
2015-08-19 00:10:17 +01:00
|
|
|
std::shared_ptr<WorldList> worldList() const override;
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
////// Directories //////
|
2014-04-19 20:24:11 +01:00
|
|
|
QString libDir() const;
|
2013-08-11 23:39:19 +01:00
|
|
|
QString savesDir() const;
|
2013-08-28 03:38:29 +01:00
|
|
|
QString texturePacksDir() const;
|
2013-08-18 19:52:17 +01:00
|
|
|
QString jarModsDir() const;
|
2013-08-03 14:57:33 +01:00
|
|
|
QString binDir() const;
|
2013-08-27 19:29:27 +01:00
|
|
|
QString loaderModsDir() const;
|
2013-08-03 14:57:33 +01:00
|
|
|
QString coreModsDir() const;
|
|
|
|
QString resourceDir() const;
|
2013-11-24 23:46:52 +00:00
|
|
|
virtual QString instanceConfigFolder() const override;
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2014-12-18 01:48:14 +00:00
|
|
|
/// Get the curent base jar of this instance. By default, it's the
|
|
|
|
/// versions/$version/$version.jar
|
|
|
|
QString baseJar() const;
|
|
|
|
|
|
|
|
/// the default base jar of this instance
|
|
|
|
QString defaultBaseJar() const;
|
|
|
|
/// the default custom base jar of this instance
|
|
|
|
QString defaultCustomBaseJar() const;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Whether or not custom base jar is used
|
|
|
|
*/
|
|
|
|
bool shouldUseCustomBaseJar() const;
|
|
|
|
void setShouldUseCustomBaseJar(bool val);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* The value of the custom base jar
|
|
|
|
*/
|
|
|
|
QString customBaseJar() const;
|
|
|
|
void setCustomBaseJar(QString val);
|
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
/*!
|
|
|
|
* Whether or not the instance's minecraft.jar needs to be rebuilt.
|
2013-10-10 00:47:48 +01:00
|
|
|
* If this is true, when the instance launches, its jar mods will be
|
2013-08-03 14:57:33 +01:00
|
|
|
* re-added to a fresh minecraft.jar file.
|
|
|
|
*/
|
|
|
|
bool shouldRebuild() const;
|
|
|
|
void setShouldRebuild(bool val);
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2013-11-24 23:46:52 +00:00
|
|
|
virtual QString currentVersionId() const override;
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
//! The version of LWJGL that this instance uses.
|
|
|
|
QString lwjglVersion() const;
|
2015-02-02 00:09:28 +00:00
|
|
|
|
|
|
|
//! Where the lwjgl versions foor this instance can be found... HACK HACK HACK
|
|
|
|
QString lwjglFolder() const;
|
|
|
|
|
2013-08-05 02:29:50 +01:00
|
|
|
/// st the version of LWJGL libs this instance will use
|
2013-08-03 14:57:33 +01:00
|
|
|
void setLWJGLVersion(QString val);
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2013-11-24 23:46:52 +00:00
|
|
|
virtual QString intendedVersionId() const override;
|
|
|
|
virtual bool setIntendedVersionId(QString version) override;
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual QSet<QString> traits() override
|
2014-06-08 19:11:09 +01:00
|
|
|
{
|
|
|
|
return {"legacy-instance", "texturepacks"};
|
|
|
|
};
|
|
|
|
|
2013-11-24 23:46:52 +00:00
|
|
|
virtual bool shouldUpdate() const override;
|
|
|
|
virtual void setShouldUpdate(bool val) override;
|
2016-08-14 01:33:31 +01:00
|
|
|
virtual shared_qobject_ptr<Task> createUpdateTask() override;
|
2015-07-09 23:06:05 +01:00
|
|
|
virtual std::shared_ptr<Task> createJarModdingTask() override;
|
2016-02-28 18:33:05 +00:00
|
|
|
virtual QString createLaunchScript(AuthSessionPtr session) override;
|
|
|
|
|
2013-11-24 23:46:52 +00:00
|
|
|
virtual void cleanupAfterRun() override;
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual QString typeName() const override;
|
2013-10-10 00:47:48 +01:00
|
|
|
|
2016-04-27 23:04:37 +01:00
|
|
|
bool canExport() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-16 01:20:23 +01:00
|
|
|
QStringList getClassPath() const override;
|
|
|
|
QString getMainClass() const override;
|
|
|
|
|
|
|
|
QStringList getNativeJars() const override;
|
|
|
|
QString getNativePath() const override;
|
|
|
|
|
|
|
|
QStringList processMinecraftArgs(AuthSessionPtr account) const override;
|
|
|
|
QStringList verboseDescription(AuthSessionPtr session) override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::shared_ptr<LaunchStep> createMainLaunchStep(LaunchTask *parent, AuthSessionPtr session) override;
|
|
|
|
QStringList validLaunchMethods() override;
|
|
|
|
QString launchMethod() override;
|
|
|
|
|
2014-12-18 01:48:14 +00:00
|
|
|
protected:
|
2016-04-03 23:33:56 +01:00
|
|
|
mutable std::shared_ptr<LegacyModList> jar_mod_list;
|
2015-01-27 21:31:07 +00:00
|
|
|
mutable std::shared_ptr<ModList> core_mod_list;
|
|
|
|
mutable std::shared_ptr<ModList> loader_mod_list;
|
|
|
|
mutable std::shared_ptr<ModList> texture_pack_list;
|
2015-08-19 00:10:17 +01:00
|
|
|
mutable std::shared_ptr<WorldList> m_world_list;
|
2015-02-02 00:09:28 +00:00
|
|
|
std::shared_ptr<Setting> m_lwjglFolderSetting;
|
2013-10-10 00:47:48 +01:00
|
|
|
protected
|
|
|
|
slots:
|
2013-08-17 12:40:51 +01:00
|
|
|
virtual void jarModsChanged();
|
2013-11-21 00:31:15 +00:00
|
|
|
};
|