2017-04-20 08:52:04 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QVector>
|
2018-01-21 08:19:54 +05:30
|
|
|
#include <QUrl>
|
2017-04-20 08:52:04 +05:30
|
|
|
|
2017-04-22 22:21:04 +05:30
|
|
|
namespace Flame
|
2017-04-20 08:52:04 +05:30
|
|
|
{
|
|
|
|
struct File
|
|
|
|
{
|
2019-06-30 14:33:59 +05:30
|
|
|
// NOTE: throws JSONValidationError
|
|
|
|
bool parseFromBytes(const QByteArray &bytes);
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
int projectId = 0;
|
|
|
|
int fileId = 0;
|
|
|
|
// NOTE: the opposite to 'optional'. This is at the time of writing unused.
|
|
|
|
bool required = true;
|
2017-04-20 08:52:04 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// our
|
|
|
|
bool resolved = false;
|
|
|
|
QString fileName;
|
|
|
|
QUrl url;
|
|
|
|
QString targetFolder = QLatin1Literal("mods");
|
|
|
|
enum class Type
|
|
|
|
{
|
|
|
|
Unknown,
|
|
|
|
Folder,
|
|
|
|
Ctoc,
|
|
|
|
SingleFile,
|
|
|
|
Cmod2,
|
|
|
|
Modpack,
|
|
|
|
Mod
|
|
|
|
} type = Type::Mod;
|
2017-04-20 08:52:04 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
struct Modloader
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QString id;
|
|
|
|
bool primary = false;
|
2017-04-20 08:52:04 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
struct Minecraft
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QString version;
|
|
|
|
QString libraries;
|
|
|
|
QVector<Flame::Modloader> modLoaders;
|
2017-04-20 08:52:04 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
struct Manifest
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QString manifestType;
|
|
|
|
int manifestVersion = 0;
|
|
|
|
Flame::Minecraft minecraft;
|
|
|
|
QString name;
|
|
|
|
QString version;
|
|
|
|
QString author;
|
|
|
|
QVector<Flame::File> files;
|
|
|
|
QString overrides;
|
2017-04-20 08:52:04 +05:30
|
|
|
};
|
|
|
|
|
2017-04-22 22:21:04 +05:30
|
|
|
void loadManifest(Flame::Manifest & m, const QString &filepath);
|
2017-04-20 08:52:04 +05:30
|
|
|
}
|