pollymc/api/logic/minecraft/onesix/OneSixInstance.h

129 lines
3.8 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-02-09 06:21:14 +05:30
#include "minecraft/MinecraftInstance.h"
2015-02-09 06:21:14 +05:30
#include "minecraft/MinecraftProfile.h"
#include "minecraft/ModList.h"
2013-08-05 06:59:50 +05:30
#include "multimc_logic_export.h"
class MULTIMC_LOGIC_EXPORT OneSixInstance : public MinecraftInstance
2013-08-03 19:27:33 +05:30
{
Q_OBJECT
public:
2015-02-01 07:38:25 +05:30
explicit OneSixInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir);
2014-03-30 23:41:05 +05:30
virtual ~OneSixInstance(){};
2015-09-26 07:34:09 +05:30
virtual void init() override;
2014-06-08 21:32:20 +05:30
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;
std::shared_ptr<WorldList> worldList() const override;
2015-01-28 03:01:07 +05:30
virtual QList<Mod> getJarMods() const override;
virtual void createProfile();
2015-09-26 07:34:09 +05:30
virtual QSet<QString> traits() override;
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;
QString worldDir() const;
virtual QString instanceConfigFolder() const override;
virtual shared_qobject_ptr<Task> createUpdateTask() override;
virtual std::shared_ptr<Task> createJarModdingTask() override;
virtual QString createLaunchScript(AuthSessionPtr session) override;
QStringList verboseDescription(AuthSessionPtr session) 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;
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();
2015-09-26 07:34:09 +05:30
virtual QString typeName() const override;
bool canExport() const override
{
return true;
}
QStringList getClassPath() const override;
QString getMainClass() const override;
QStringList getNativeJars() const override;
QString getNativePath() const override;
QString getLocalLibraryPath() const override;
QStringList processMinecraftArgs(AuthSessionPtr account) const override;
protected:
std::shared_ptr<LaunchStep> createMainLaunchStep(LaunchTask *parent, AuthSessionPtr session) override;
QStringList validLaunchMethods() override;
signals:
void versionReloaded();
2013-08-05 06:59:50 +05:30
private:
QString mainJarPath() const;
2014-12-18 07:18:14 +05:30
protected:
std::shared_ptr<MinecraftProfile> m_profile;
2015-01-28 03:01:07 +05:30
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;
mutable std::shared_ptr<WorldList> m_world_list;
};
2014-09-06 21:46:56 +05:30
Q_DECLARE_METATYPE(std::shared_ptr<OneSixInstance>)