pollymc/logic/OneSixInstance.h

111 lines
3.2 KiB
C
Raw Normal View History

2015-02-03 03:55:30 +05:30
/* Copyright 2013-2015 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
2015-01-28 03:01:07 +05:30
#include "logic/minecraft/MinecraftInstance.h"
2015-01-28 03:01:07 +05:30
#include "logic/minecraft/MinecraftProfile.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
2015-01-28 03:01:07 +05:30
class OneSixInstance : public MinecraftInstance, 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(){};
2015-01-28 03:01:07 +05:30
virtual void init();
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 //////
2015-01-28 03:01:07 +05:30
std::shared_ptr<ModList> loaderModList() const;
std::shared_ptr<ModList> coreModList() const;
std::shared_ptr<ModList> resourcePackList() const override;
std::shared_ptr<ModList> texturePackList() const override;
virtual QList<Mod> getJarMods() const override;
virtual void createProfile();
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;
2015-01-28 03:01:07 +05:30
virtual BaseProcess *prepareForLaunch(AuthSessionPtr account) 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;
/**
2015-01-28 03:01:07 +05:30
* reload the profile, including version json files.
2014-12-18 07:18:14 +05:30
*
* throws various exceptions :3
*/
2015-01-28 03:01:07 +05:30
void reloadProfile();
2014-12-18 07:18:14 +05:30
/// clears all version information in preparation for an update
2015-01-28 03:01:07 +05:30
void clearProfile();
2014-12-18 07:18:14 +05:30
2013-08-05 06:59:50 +05:30
/// get the current full version info
2015-01-28 03:01:07 +05:30
std::shared_ptr<MinecraftProfile> getMinecraftProfile() const;
virtual QString getStatusbarDescription() override;
2014-05-05 03:40:59 +05:30
virtual QDir jarmodsPath() const;
virtual QDir librariesPath() const;
virtual QDir versionsPath() 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);
2014-12-18 07:18:14 +05:30
protected:
2015-01-28 03:01:07 +05:30
std::shared_ptr<MinecraftProfile> m_version;
mutable std::shared_ptr<ModList> m_loader_mod_list;
mutable std::shared_ptr<ModList> m_core_mod_list;
mutable std::shared_ptr<ModList> m_resource_pack_list;
mutable std::shared_ptr<ModList> m_texture_pack_list;
};
2014-09-06 21:46:56 +05:30
Q_DECLARE_METATYPE(std::shared_ptr<OneSixInstance>)