PrismLauncher/logic/OneSixInstance.h

102 lines
3.0 KiB
C
Raw Normal View History

/* 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 14:57:33 +01:00
#pragma once
#include "BaseInstance.h"
2014-05-08 20:20:10 +01:00
#include "logic/minecraft/VersionFinal.h"
#include "logic/ModList.h"
2013-08-05 02:29:50 +01:00
class OneSixInstance : public BaseInstance
2013-08-03 14:57:33 +01:00
{
Q_OBJECT
public:
explicit OneSixInstance(const QString &rootDir, SettingsObject *settings,
QObject *parent = 0);
2014-03-30 19:11:05 +01:00
virtual ~OneSixInstance(){};
virtual void init() override;
2013-08-28 03:38:29 +01:00
////// Mod Lists //////
2013-10-06 00:13:40 +01:00
std::shared_ptr<ModList> loaderModList();
std::shared_ptr<ModList> coreModList();
2013-10-06 00:13:40 +01:00
std::shared_ptr<ModList> resourcePackList();
////// Directories and files //////
QString jarModsDir() const;
2013-08-28 03:38:29 +01:00
QString resourcePacksDir() const;
QString loaderModsDir() const;
QString coreModsDir() const;
2014-05-04 23:10:59 +01:00
QString libDir() const;
virtual QString instanceConfigFolder() const override;
virtual std::shared_ptr<Task> doUpdate() override;
virtual bool prepareForLaunch(AuthSessionPtr account, QString & launchScript) override;
virtual void cleanupAfterRun() override;
virtual QString intendedVersionId() const override;
virtual bool setIntendedVersionId(QString version) override;
virtual QString currentVersionId() const override;
virtual bool shouldUpdate() const override;
virtual void setShouldUpdate(bool val) override;
virtual QDialog *createModEditDialog(QWidget *parent) override;
/**
* reload the full version json files. return true on success!
*
* throws various exceptions :3
*/
void reloadVersion();
/// clears all version information in preparation for an update
void clearVersion();
2013-08-05 02:29:50 +01:00
/// get the current full version info
2014-03-01 22:06:47 +00:00
std::shared_ptr<VersionFinal> getFullVersion() const;
/// is the current version original, or custom?
virtual bool versionIsCustom() override;
2014-03-30 23:19:43 +01:00
/// does this instance have an FTB pack patch inside?
bool versionIsFTBPack();
virtual QString defaultBaseJar() const override;
virtual QString defaultCustomBaseJar() const override;
virtual bool menuActionEnabled(QString action_name) const override;
virtual QString getStatusbarDescription() override;
2014-05-04 23:10:59 +01:00
virtual QDir jarmodsPath() const;
virtual QDir librariesPath() const;
virtual QDir versionsPath() const;
virtual QStringList externalPatches() const;
2014-02-21 18:15:59 +00:00
virtual bool providesVersionFile() const;
bool reload() override;
2014-05-04 23:10:59 +01:00
virtual QStringList extraArguments() const override;
signals:
void versionReloaded();
2013-08-05 02:29:50 +01:00
private:
QStringList processMinecraftArgs(AuthSessionPtr account);
2014-03-01 22:06:47 +00:00
QDir reconstructAssets(std::shared_ptr<VersionFinal> version);
};