pollymc/logic/minecraft/VersionFile.h

193 lines
4.3 KiB
C
Raw Normal View History

2014-03-02 03:36:47 +05:30
#pragma once
#include <QString>
#include <QStringList>
2014-05-10 05:23:32 +05:30
#include <QDateTime>
#include <QSet>
2014-03-02 03:36:47 +05:30
#include <memory>
2015-02-09 06:21:14 +05:30
#include "minecraft/OpSys.h"
#include "minecraft/Rule.h"
2015-01-28 03:01:07 +05:30
#include "ProfilePatch.h"
#include "Library.h"
#include "JarMod.h"
2015-01-28 03:01:07 +05:30
class MinecraftProfile;
2014-07-01 04:53:49 +05:30
class VersionFile;
struct MojangDownloadInfo;
struct MojangAssetIndexInfo;
2014-05-10 05:23:32 +05:30
2014-03-05 06:20:05 +05:30
typedef std::shared_ptr<VersionFile> VersionFilePtr;
2015-01-28 03:01:07 +05:30
class VersionFile : public ProfilePatch
2014-03-02 03:36:47 +05:30
{
public: /* methods */
2015-01-28 03:01:07 +05:30
virtual void applyTo(MinecraftProfile *version) override;
virtual bool isMinecraftVersion() override;
virtual bool hasJarMods() override;
2014-05-10 05:23:32 +05:30
virtual int getOrder() override
{
return order;
}
virtual void setOrder(int order) override
{
this->order = order;
}
virtual QList<JarmodPtr> getJarMods() override
{
return jarMods;
}
virtual QString getPatchID() override
{
return fileId;
}
virtual QString getPatchName() override
{
return name;
}
virtual QString getPatchVersion() override
{
return version;
}
virtual QString getPatchFilename() override
{
return filename;
}
virtual bool isCustom() override
{
return !m_isVanilla;
};
virtual bool isCustomizable() override
{
return m_isCustomizable;
}
virtual bool isRemovable() override
{
return m_isRemovable;
}
virtual bool isRevertible() override
{
return m_isRevertible;
}
virtual bool isMoveable() override
{
return m_isMovable;
}
virtual bool isEditable() override
{
return isCustom();
}
virtual bool isVersionChangeable() override
{
return false;
}
void setVanilla (bool state)
{
m_isVanilla = state;
}
void setRemovable (bool state)
{
m_isRemovable = state;
}
void setRevertible (bool state)
{
m_isRevertible = state;
}
void setCustomizable (bool state)
{
m_isCustomizable = state;
}
void setMovable (bool state)
{
m_isMovable = state;
}
2014-05-10 05:23:32 +05:30
public: /* data */
/// MultiMC: order hint for this version file if no explicit order is set
2014-03-03 13:38:32 +05:30
int order = 0;
// Flags for UI and version file manipulation in general
bool m_isVanilla = false;
bool m_isRemovable = false;
bool m_isRevertible = false;
bool m_isCustomizable = false;
bool m_isMovable = false;
/// MultiMC: filename of the file this was loaded from
QString filename;
/// MultiMC: human readable name of this package
2014-03-02 03:36:47 +05:30
QString name;
/// MultiMC: package ID of this package
2014-03-02 03:36:47 +05:30
QString fileId;
/// MultiMC: version of this package
2014-03-02 03:36:47 +05:30
QString version;
/// MultiMC: dependency on a Minecraft version
2014-03-02 03:36:47 +05:30
QString mcVersion;
/// Mojang: used to version the Mojang version format
int minimumLauncherVersion = -1;
/// Mojang: version of Minecraft this is
2014-03-02 03:36:47 +05:30
QString id;
/// Mojang: class to launch Minecraft with
2014-03-02 03:36:47 +05:30
QString mainClass;
/// MultiMC: class to launch legacy Minecraft with (ambed in a custom window)
QString appletClass;
/// Mojang: Minecraft launch arguments (may contain placeholders for variable substitution)
2014-03-02 03:36:47 +05:30
QString overwriteMinecraftArguments;
/// MultiMC: Minecraft launch arguments, additive variant
2014-03-02 03:36:47 +05:30
QString addMinecraftArguments;
/// Mojang: DEPRECATED variant of the Minecraft arguments, hardcoded, do not use!
2014-03-02 03:36:47 +05:30
QString processArguments;
/// Mojang: type of the Minecraft version
2014-03-02 03:36:47 +05:30
QString type;
2014-05-10 05:23:32 +05:30
2016-03-02 07:33:44 +05:30
/// Mojang: the time this version was actually released by Mojang
2014-05-10 05:23:32 +05:30
QDateTime m_releaseTime;
2016-03-02 07:33:44 +05:30
/// Mojang: the time this version was last updated by Mojang
2014-05-10 05:23:32 +05:30
QDateTime m_updateTime;
/// Mojang: DEPRECATED asset group to be used with Minecraft
2014-03-02 03:36:47 +05:30
QString assets;
/// MultiMC: override list of tweaker mod arguments for launchwrapper (replaces the previously assembled lists)
2014-03-02 03:36:47 +05:30
bool shouldOverwriteTweakers = false;
QStringList overwriteTweakers;
/// MultiMC: list of tweaker mod arguments for launchwrapper
2014-03-02 03:36:47 +05:30
QStringList addTweakers;
/// MultiMC: override list of libraries (replaces the previously assembled lists)
2014-03-02 03:36:47 +05:30
bool shouldOverwriteLibs = false;
QList<LibraryPtr> overwriteLibs;
/// Mojang: list of libraries to add to the version
QList<LibraryPtr> addLibs;
/// MultiMC: list of attached traits of this version file - used to enable features
QSet<QString> traits;
/// MultiMC: list of jar mods added to this version
QList<JarmodPtr> jarMods;
// Mojang: list of 'downloads' - client jar, server jar, windows server exe, maybe more.
QMap <QString, std::shared_ptr<MojangDownloadInfo>> mojangDownloads;
// Mojang: extended asset index download information
std::shared_ptr<MojangAssetIndexInfo> mojangAssetIndex;
};