2014-03-01 22:06:47 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2014-05-10 00:53:32 +01:00
|
|
|
#include <QDateTime>
|
2015-05-28 18:38:29 +01:00
|
|
|
#include <QSet>
|
|
|
|
|
2014-03-01 22:06:47 +00:00
|
|
|
#include <memory>
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "minecraft/OpSys.h"
|
2016-03-07 01:01:28 +00:00
|
|
|
#include "minecraft/Rule.h"
|
2017-03-27 02:34:39 +01:00
|
|
|
#include "ProblemProvider.h"
|
2016-03-07 01:01:28 +00:00
|
|
|
#include "Library.h"
|
2014-03-02 18:12:04 +00:00
|
|
|
|
2015-01-27 21:31:07 +00:00
|
|
|
class MinecraftProfile;
|
2014-07-01 00:23:49 +01:00
|
|
|
class VersionFile;
|
2016-03-07 21:26:44 +00:00
|
|
|
struct MojangDownloadInfo;
|
|
|
|
struct MojangAssetIndexInfo;
|
2014-05-10 00:53:32 +01:00
|
|
|
|
2014-03-05 00:50:05 +00:00
|
|
|
typedef std::shared_ptr<VersionFile> VersionFilePtr;
|
2017-03-30 00:05:58 +01:00
|
|
|
class VersionFile : public ProblemContainer
|
2014-03-01 22:06:47 +00:00
|
|
|
{
|
2016-03-12 23:23:45 +00:00
|
|
|
friend class MojangVersionFormat;
|
|
|
|
friend class OneSixVersionFormat;
|
2014-03-03 00:23:10 +00:00
|
|
|
public: /* methods */
|
2017-03-27 02:34:39 +01:00
|
|
|
void applyTo(MinecraftProfile *profile);
|
2014-05-10 00:53:32 +01:00
|
|
|
|
2014-03-03 00:23:10 +00:00
|
|
|
public: /* data */
|
2017-03-19 22:58:54 +00:00
|
|
|
/// MultiMC: order hint for this version file if no explicit order is set
|
|
|
|
int order = 0;
|
|
|
|
|
2016-03-01 08:47:12 +00:00
|
|
|
/// MultiMC: filename of the file this was loaded from
|
2017-03-27 02:34:39 +01:00
|
|
|
// QString filename;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
|
|
|
/// MultiMC: human readable name of this package
|
2014-03-01 22:06:47 +00:00
|
|
|
QString name;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
|
|
|
/// MultiMC: package ID of this package
|
2017-03-19 22:58:54 +00:00
|
|
|
QString uid;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
|
|
|
/// MultiMC: version of this package
|
2014-03-01 22:06:47 +00:00
|
|
|
QString version;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
2017-04-13 08:28:25 +01:00
|
|
|
/// MultiMC: DEPRECATED dependency on a Minecraft version
|
2016-03-26 15:56:57 +00:00
|
|
|
QString dependsOnMinecraftVersion;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
2017-04-13 08:28:25 +01:00
|
|
|
/// Mojang: DEPRECATED used to version the Mojang version format
|
2016-03-01 08:47:12 +00:00
|
|
|
int minimumLauncherVersion = -1;
|
|
|
|
|
2017-03-27 02:34:39 +01:00
|
|
|
/// Mojang: DEPRECATED version of Minecraft this is
|
2016-03-26 15:56:57 +00:00
|
|
|
QString minecraftVersion;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
|
|
|
/// Mojang: class to launch Minecraft with
|
2014-03-01 22:06:47 +00:00
|
|
|
QString mainClass;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
2017-03-27 02:34:39 +01:00
|
|
|
/// MultiMC: class to launch legacy Minecraft with (embed in a custom window)
|
2014-05-08 18:05:07 +01:00
|
|
|
QString appletClass;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
|
|
|
/// Mojang: Minecraft launch arguments (may contain placeholders for variable substitution)
|
2016-03-12 23:23:45 +00:00
|
|
|
QString minecraftArguments;
|
2016-03-01 08:47:12 +00:00
|
|
|
|
|
|
|
/// Mojang: type of the Minecraft version
|
2014-03-01 22:06:47 +00:00
|
|
|
QString type;
|
2014-05-10 00:53:32 +01:00
|
|
|
|
2016-03-02 02:03:44 +00:00
|
|
|
/// Mojang: the time this version was actually released by Mojang
|
2017-03-27 02:34:39 +01:00
|
|
|
QDateTime releaseTime;
|
2014-05-10 00:53:32 +01:00
|
|
|
|
2017-04-13 08:28:25 +01:00
|
|
|
/// Mojang: DEPRECATED the time this version was last updated by Mojang
|
2017-03-27 02:34:39 +01:00
|
|
|
QDateTime updateTime;
|
2014-05-10 00:53:32 +01:00
|
|
|
|
2016-03-01 08:47:12 +00:00
|
|
|
/// Mojang: DEPRECATED asset group to be used with Minecraft
|
2014-03-01 22:06:47 +00:00
|
|
|
QString assets;
|
|
|
|
|
2016-03-01 08:47:12 +00:00
|
|
|
/// MultiMC: list of tweaker mod arguments for launchwrapper
|
2014-03-01 22:06:47 +00:00
|
|
|
QStringList addTweakers;
|
|
|
|
|
2016-03-01 08:47:12 +00:00
|
|
|
/// Mojang: list of libraries to add to the version
|
2016-03-13 01:28:55 +00:00
|
|
|
QList<LibraryPtr> libraries;
|
2014-04-23 01:27:40 +01:00
|
|
|
|
2017-04-13 08:28:25 +01:00
|
|
|
// The main jar (Minecraft version library, normally)
|
|
|
|
LibraryPtr mainJar;
|
|
|
|
|
2016-03-01 08:47:12 +00:00
|
|
|
/// MultiMC: list of attached traits of this version file - used to enable features
|
2014-04-23 01:27:40 +01:00
|
|
|
QSet<QString> traits;
|
|
|
|
|
2016-03-01 08:47:12 +00:00
|
|
|
/// MultiMC: list of jar mods added to this version
|
2017-04-17 21:51:30 +01:00
|
|
|
QList<LibraryPtr> jarMods;
|
2016-03-07 01:01:28 +00:00
|
|
|
|
2017-04-21 21:23:00 +01:00
|
|
|
/// MultiMC: list of mods added to this version
|
|
|
|
QList<LibraryPtr> mods;
|
|
|
|
|
2016-03-12 23:23:45 +00:00
|
|
|
public:
|
2017-04-13 08:28:25 +01:00
|
|
|
// Mojang: DEPRECATED list of 'downloads' - client jar, server jar, windows server exe, maybe more.
|
2016-03-07 21:26:44 +00:00
|
|
|
QMap <QString, std::shared_ptr<MojangDownloadInfo>> mojangDownloads;
|
2016-03-07 01:01:28 +00:00
|
|
|
|
|
|
|
// Mojang: extended asset index download information
|
2016-03-07 21:26:44 +00:00
|
|
|
std::shared_ptr<MojangAssetIndexInfo> mojangAssetIndex;
|
2014-03-10 17:55:54 +00:00
|
|
|
};
|