pollymc/logic/OneSixInstance.h

76 lines
2.2 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 19:27:33 +05:30
#pragma once
2013-08-05 06:59:50 +05:30
#include <QStringList>
#include "BaseInstance.h"
2013-08-28 08:08:29 +05:30
class OneSixVersion;
class Task;
2013-08-28 08:08:29 +05:30
class ModList;
2013-08-05 06:59:50 +05:30
class OneSixInstance : public BaseInstance
2013-08-03 19:27:33 +05:30
{
Q_OBJECT
public:
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-08-28 08:08:29 +05:30
////// Directories //////
QString resourcePacksDir() const;
QString loaderModsDir() const;
virtual QString instanceConfigFolder() const;
virtual Task *doUpdate();
virtual MinecraftProcess *prepareForLaunch(LoginResponse response);
2013-08-05 06:59:50 +05:30
virtual void cleanupAfterRun();
2013-08-05 06:59:50 +05:30
virtual QString intendedVersionId() const;
virtual bool setIntendedVersionId(QString version);
2013-08-05 06:59:50 +05:30
virtual QString currentVersionId() const;
// virtual void setCurrentVersionId ( QString val ) {};
2013-08-05 06:59:50 +05:30
virtual bool shouldUpdate() const;
virtual void setShouldUpdate(bool val);
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();
/// revert the current custom version back to base
bool revertCustomVersion();
/// customize the current base version
bool customizeVersion();
/// is the current version original, or custom?
virtual bool versionIsCustom() override;
virtual QString defaultBaseJar() const;
virtual QString defaultCustomBaseJar() const;
virtual bool menuActionEnabled(QString action_name) const;
virtual QString getStatusbarDescription();
2013-08-05 06:59:50 +05:30
private:
QStringList processMinecraftArgs(LoginResponse response);
2013-08-03 19:27:33 +05:30
};