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-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
#include "BaseInstance.h"
|
|
|
|
|
2013-08-28 08:08:29 +05:30
|
|
|
class OneSixVersion;
|
2013-08-07 05:08:18 +05:30
|
|
|
class BaseUpdate;
|
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;
|
|
|
|
virtual QString instanceConfigFolder() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
virtual BaseUpdate *doUpdate();
|
|
|
|
virtual MinecraftProcess *prepareForLaunch(LoginResponse response);
|
2013-08-05 06:59:50 +05:30
|
|
|
virtual void cleanupAfterRun();
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
virtual QString intendedVersionId() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
virtual bool setIntendedVersionId(QString version);
|
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
virtual QString currentVersionId() const;
|
|
|
|
// virtual void setCurrentVersionId ( QString val ) {};
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
virtual bool shouldUpdate() const;
|
|
|
|
virtual void setShouldUpdate(bool val);
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
virtual QDialog *createModEditDialog(QWidget *parent);
|
|
|
|
|
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-08-24 06:39:46 +05:30
|
|
|
virtual QString defaultBaseJar() const;
|
|
|
|
virtual QString defaultCustomBaseJar() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
virtual bool menuActionEnabled(QString action_name) const;
|
2013-08-25 05:02:42 +05:30
|
|
|
virtual QString getStatusbarDescription();
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
private:
|
2013-10-10 05:17:48 +05:30
|
|
|
QStringList processMinecraftArgs(LoginResponse response);
|
2013-08-03 19:27:33 +05:30
|
|
|
};
|