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
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BaseInstance.h"
|
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
class ModList;
|
2013-11-24 11:06:16 +05:30
|
|
|
class Task;
|
2013-08-07 05:08:18 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
class LegacyInstance : public BaseInstance
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
explicit LegacyInstance(const QString &rootDir, SettingsObject *settings,
|
|
|
|
QObject *parent = 0);
|
|
|
|
|
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
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
////// Mod Lists //////
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<ModList> jarModList();
|
|
|
|
std::shared_ptr<ModList> coreModList();
|
|
|
|
std::shared_ptr<ModList> loaderModList();
|
|
|
|
std::shared_ptr<ModList> texturePackList();
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
////// Directories //////
|
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
|
|
|
|
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;
|
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
|
|
|
// the `version' of Legacy instances is defined by the launcher code.
|
|
|
|
// in contrast with OneSix, where `version' is described in a json file
|
|
|
|
virtual bool versionIsCustom() override
|
|
|
|
{
|
|
|
|
return false;
|
2013-11-04 07:23:05 +05:30
|
|
|
}
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual bool shouldUpdate() const override;
|
|
|
|
virtual void setShouldUpdate(bool val) override;
|
|
|
|
virtual Task *doUpdate(bool prepare_for_launch) override;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual MinecraftProcess *prepareForLaunch(MojangAccountPtr account) override;
|
|
|
|
virtual void cleanupAfterRun() override;
|
|
|
|
virtual QDialog *createModEditDialog(QWidget *parent) override;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual QString defaultBaseJar() const override;
|
|
|
|
virtual QString defaultCustomBaseJar() const override;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
bool menuActionEnabled(QString action_name) const;
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual QString getStatusbarDescription() override;
|
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
|
|
|
};
|