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