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-08-05 06:59:50 +05:30
|
|
|
#include <QStringList>
|
2013-12-08 11:42:53 +05:30
|
|
|
#include <QDir>
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
#include "BaseInstance.h"
|
|
|
|
|
2013-08-28 08:08:29 +05:30
|
|
|
class OneSixVersion;
|
2013-11-24 11:06:16 +05:30
|
|
|
class Task;
|
2013-08-28 08:08:29 +05:30
|
|
|
class ModList;
|
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,
|
|
|
|
QObject *parent = 0);
|
|
|
|
|
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
|
|
|
|
2013-12-09 02:36:04 +05:30
|
|
|
virtual std::shared_ptr<Task> doUpdate(bool only_prepare) override;
|
2013-11-25 05:16:52 +05:30
|
|
|
virtual MinecraftProcess *prepareForLaunch(MojangAccountPtr account) 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
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
/// reload the full version json file. return true on success!
|
|
|
|
bool reloadFullVersion();
|
|
|
|
/// get the current full version info
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<OneSixVersion> getFullVersion();
|
2013-09-20 04:51:48 +05:30
|
|
|
/// revert the current custom version back to base
|
|
|
|
bool revertCustomVersion();
|
|
|
|
/// customize the current base version
|
|
|
|
bool customizeVersion();
|
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;
|
|
|
|
|
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
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
private:
|
2013-11-21 06:01:15 +05:30
|
|
|
QStringList processMinecraftArgs(MojangAccountPtr account);
|
2013-12-08 11:42:53 +05:30
|
|
|
QDir reconstructAssets(std::shared_ptr<OneSixVersion> version);
|
2013-11-21 06:01:15 +05:30
|
|
|
};
|