pollymc/api/logic/minecraft/ProfilePatch.h

68 lines
1.5 KiB
C
Raw Normal View History

#pragma once
#include <memory>
2014-05-10 05:23:32 +05:30
#include <QList>
#include <QJsonDocument>
#include <QDateTime>
2014-05-10 05:23:32 +05:30
#include "JarMod.h"
#include "ProblemProvider.h"
2015-01-28 03:01:07 +05:30
class MinecraftProfile;
namespace Meta
{
class Version;
}
class VersionFile;
class ProfilePatch : public ProblemProvider
{
public:
ProfilePatch(std::shared_ptr<Meta::Version> version);
ProfilePatch(std::shared_ptr<VersionFile> file, const QString &filename = QString());
2015-01-28 03:01:07 +05:30
virtual ~ProfilePatch(){};
virtual void applyTo(MinecraftProfile *profile);
2015-01-28 03:01:07 +05:30
virtual bool isMoveable();
virtual bool isCustomizable();
virtual bool isRevertible();
virtual bool isRemovable();
virtual bool isCustom();
virtual bool isVersionChangeable();
virtual void setOrder(int order);
virtual int getOrder();
2015-01-28 03:01:07 +05:30
virtual QString getID();
virtual QString getName();
virtual QString getVersion();
virtual QDateTime getReleaseDateTime();
virtual QString getFilename();
virtual std::shared_ptr<class VersionFile> getVersionFile();
void setVanilla (bool state);
void setRemovable (bool state);
void setRevertible (bool state);
void setCustomizable (bool state);
void setMovable (bool state);
protected:
// Properties for UI and version manipulation from UI in general
bool m_isMovable = false;
bool m_isCustomizable = false;
bool m_isRevertible = false;
bool m_isRemovable = false;
bool m_isVanilla = false;
bool m_orderOverride = false;
int m_order = 0;
std::shared_ptr<Meta::Version> m_metaVersion;
std::shared_ptr<VersionFile> m_file;
QString m_filename;
};
2015-01-28 03:01:07 +05:30
typedef std::shared_ptr<ProfilePatch> ProfilePatchPtr;