pollymc/logic/OneSixInstance.h

118 lines
3.4 KiB
C
Raw Normal View History

2014-11-03 00:19:58 +05:30
/* Copyright 2013-2014 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
#include "BaseInstance.h"
#include "logic/minecraft/InstanceVersion.h"
2014-05-09 00:50:10 +05:30
#include "logic/ModList.h"
#include "gui/pages/BasePageProvider.h"
2013-08-05 06:59:50 +05:30
class OneSixInstance : public BaseInstance, public BasePageProvider
2013-08-03 19:27:33 +05:30
{
Q_OBJECT
public:
explicit OneSixInstance(const QString &rootDir, SettingsObject *settings,
QObject *parent = 0);
2014-03-30 23:41:05 +05:30
virtual ~OneSixInstance(){};
virtual void init() override;
2014-06-08 21:32:20 +05:30
////// Edit Instance Dialog stuff //////
virtual QList<BasePage *> getPages();
virtual QString dialogTitle();
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> coreModList();
std::shared_ptr<ModList> resourcePackList() override;
std::shared_ptr<ModList> texturePackList() override;
virtual QSet<QString> traits();
2014-12-18 07:18:14 +05:30
////// Directories and files //////
QString jarModsDir() const;
2013-08-28 08:08:29 +05:30
QString resourcePacksDir() const;
QString texturePacksDir() const;
2013-08-28 08:08:29 +05:30
QString loaderModsDir() const;
QString coreModsDir() const;
2014-05-05 03:40:59 +05:30
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;
/**
* reload the full version json files.
2014-12-18 07:18:14 +05:30
*
* throws various exceptions :3
*/
void reloadVersion();
2014-12-18 07:18:14 +05:30
/// clears all version information in preparation for an update
void clearVersion();
2014-12-18 07:18:14 +05:30
2013-08-05 06:59:50 +05:30
/// get the current full version info
std::shared_ptr<InstanceVersion> getFullVersion() const;
2014-12-18 07:18:14 +05:30
/// is the current version original, or custom?
virtual bool versionIsCustom() override;
2014-12-18 07:18:14 +05:30
2014-03-31 03:49:43 +05:30
/// does this instance have an FTB pack patch inside?
bool versionIsFTBPack();
virtual QString getStatusbarDescription() override;
2014-05-05 03:40:59 +05:30
virtual QDir jarmodsPath() const;
virtual QDir librariesPath() const;
virtual QDir versionsPath() const;
virtual QStringList externalPatches() const;
2014-02-21 23:45:59 +05:30
virtual bool providesVersionFile() const;
bool reload() override;
2014-09-06 21:46:56 +05:30
2014-05-05 03:40:59 +05:30
virtual QStringList extraArguments() const override;
2014-09-06 21:46:56 +05:30
std::shared_ptr<OneSixInstance> getSharedPtr();
signals:
void versionReloaded();
2013-08-05 06:59:50 +05:30
private:
QStringList processMinecraftArgs(AuthSessionPtr account);
QDir reconstructAssets(std::shared_ptr<InstanceVersion> version);
2014-12-18 07:18:14 +05:30
protected:
std::shared_ptr<InstanceVersion> version;
std::shared_ptr<ModList> jar_mod_list;
std::shared_ptr<ModList> loader_mod_list;
std::shared_ptr<ModList> core_mod_list;
std::shared_ptr<ModList> resource_pack_list;
std::shared_ptr<ModList> texture_pack_list;
};
2014-09-06 21:46:56 +05:30
Q_DECLARE_METATYPE(std::shared_ptr<OneSixInstance>)