2014-05-09 16:16:25 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2014-05-10 00:53:32 +01:00
|
|
|
#include <QList>
|
2015-05-17 22:38:28 +01:00
|
|
|
#include <QJsonDocument>
|
2014-05-10 00:53:32 +01:00
|
|
|
#include "JarMod.h"
|
2014-05-09 16:16:25 +01:00
|
|
|
|
2015-01-27 21:31:07 +00:00
|
|
|
class MinecraftProfile;
|
|
|
|
class ProfilePatch
|
2014-05-09 16:16:25 +01:00
|
|
|
{
|
|
|
|
public:
|
2015-01-27 21:31:07 +00:00
|
|
|
virtual ~ProfilePatch(){};
|
|
|
|
virtual void applyTo(MinecraftProfile *version) = 0;
|
2015-05-17 22:38:28 +01:00
|
|
|
virtual QJsonDocument toJson(bool saveOrder) = 0;
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2014-05-11 11:37:21 +01:00
|
|
|
virtual bool isMinecraftVersion() = 0;
|
2014-05-09 16:16:25 +01:00
|
|
|
virtual bool hasJarMods() = 0;
|
2014-05-10 00:53:32 +01:00
|
|
|
virtual QList<JarmodPtr> getJarMods() = 0;
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2015-05-17 22:38:28 +01:00
|
|
|
virtual bool isMoveable() = 0;
|
|
|
|
virtual bool isCustomizable() = 0;
|
|
|
|
virtual bool isRevertible() = 0;
|
|
|
|
virtual bool isRemovable() = 0;
|
|
|
|
virtual bool isCustom() = 0;
|
|
|
|
virtual bool isEditable() = 0;
|
|
|
|
virtual bool isVersionChangeable() = 0;
|
|
|
|
|
2014-05-10 00:53:32 +01:00
|
|
|
virtual void setOrder(int order) = 0;
|
|
|
|
virtual int getOrder() = 0;
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2014-05-10 00:53:32 +01:00
|
|
|
virtual QString getPatchID() = 0;
|
|
|
|
virtual QString getPatchName() = 0;
|
|
|
|
virtual QString getPatchVersion() = 0;
|
|
|
|
virtual QString getPatchFilename() = 0;
|
2014-05-09 16:16:25 +01:00
|
|
|
};
|
|
|
|
|
2015-01-27 21:31:07 +00:00
|
|
|
typedef std::shared_ptr<ProfilePatch> ProfilePatchPtr;
|