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
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "BaseInstance.h"
|
|
|
|
|
2014-03-02 03:36:47 +05:30
|
|
|
#include "VersionFinal.h"
|
2014-01-22 12:03:32 +05:30
|
|
|
#include "ModList.h"
|
2013-08-05 06:59:50 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
class OneSixInstance : public BaseInstance
|
2013-08-03 19:27:33 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-10-10 05:17:48 +05:30
|
|
|
explicit OneSixInstance(const QString &rootDir, SettingsObject *settings,
|
2014-01-22 12:03:32 +05:30
|
|
|
QObject *parent = 0);
|
2014-03-30 23:41:05 +05:30
|
|
|
virtual ~OneSixInstance(){};
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2014-02-21 22:31:06 +05:30
|
|
|
virtual void init() override;
|
|
|
|
|
2013-08-28 08:08:29 +05:30
|
|
|
////// Mod Lists //////
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<ModList> loaderModList();
|
|
|
|
std::shared_ptr<ModList> resourcePackList();
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-28 08:08:29 +05:30
|
|
|
////// Directories //////
|
|
|
|
QString resourcePacksDir() const;
|
|
|
|
QString loaderModsDir() const;
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual QString instanceConfigFolder() const override;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2014-01-27 07:30:49 +05:30
|
|
|
virtual std::shared_ptr<Task> doUpdate() override;
|
2014-05-18 22:37:01 +05:30
|
|
|
virtual bool prepareForLaunch(AuthSessionPtr account, QString & launchScript) override;
|
2013-11-24 23:11:35 +05:30
|
|
|
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual void cleanupAfterRun() override;
|
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
|
|
|
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual QString currentVersionId() const override;
|
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;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual QDialog *createModEditDialog(QWidget *parent) override;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2014-03-10 04:12:25 +05:30
|
|
|
/**
|
|
|
|
* reload the full version json files. return true on success!
|
|
|
|
*
|
|
|
|
* throws various exceptions :3
|
|
|
|
*/
|
|
|
|
void reloadVersion();
|
2014-01-22 19:50:48 +05:30
|
|
|
/// clears all version information in preparation for an update
|
2014-01-27 23:50:07 +05:30
|
|
|
void clearVersion();
|
2013-08-05 06:59:50 +05:30
|
|
|
/// get the current full version info
|
2014-03-02 03:36:47 +05:30
|
|
|
std::shared_ptr<VersionFinal> getFullVersion() const;
|
2014-02-02 18:47:44 +05:30
|
|
|
/// gets the current version info, but only for version.json
|
2014-03-02 03:36:47 +05:30
|
|
|
std::shared_ptr<VersionFinal> getVanillaVersion() const;
|
2013-09-16 04:24:39 +05:30
|
|
|
/// is the current version original, or custom?
|
2013-10-10 05:17:48 +05:30
|
|
|
virtual bool versionIsCustom() override;
|
2014-03-31 03:49:43 +05:30
|
|
|
/// does this instance have an FTB pack patch inside?
|
|
|
|
bool versionIsFTBPack();
|
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
|
|
|
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual bool menuActionEnabled(QString action_name) const override;
|
|
|
|
virtual QString getStatusbarDescription() override;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2014-02-20 21:36:32 +05:30
|
|
|
virtual QDir librariesPath() const;
|
|
|
|
virtual QDir versionsPath() const;
|
2014-02-21 22:31:06 +05:30
|
|
|
virtual QStringList externalPatches() const;
|
2014-02-21 23:45:59 +05:30
|
|
|
virtual bool providesVersionFile() const;
|
2014-02-20 21:36:32 +05:30
|
|
|
|
2014-03-09 12:48:50 +05:30
|
|
|
bool reload() override;
|
|
|
|
|
2014-01-22 12:03:32 +05:30
|
|
|
signals:
|
|
|
|
void versionReloaded();
|
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
private:
|
2014-01-27 07:30:49 +05:30
|
|
|
QStringList processMinecraftArgs(AuthSessionPtr account);
|
2014-03-02 03:36:47 +05:30
|
|
|
QDir reconstructAssets(std::shared_ptr<VersionFinal> version);
|
2013-11-21 06:01:15 +05:30
|
|
|
};
|