2017-04-20 04:22:04 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QVector>
|
2022-05-28 20:53:12 +01:00
|
|
|
#include <QMap>
|
2018-01-21 02:49:54 +00:00
|
|
|
#include <QUrl>
|
2022-05-28 20:53:12 +01:00
|
|
|
#include <QJsonObject>
|
2017-04-20 04:22:04 +01:00
|
|
|
|
2017-04-22 17:51:04 +01:00
|
|
|
namespace Flame
|
2017-04-20 04:22:04 +01:00
|
|
|
{
|
|
|
|
struct File
|
|
|
|
{
|
2019-06-30 10:03:59 +01:00
|
|
|
// NOTE: throws JSONValidationError
|
2022-05-28 20:53:12 +01:00
|
|
|
bool parseFromObject(const QJsonObject& object);
|
2019-06-30 10:03:59 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
int projectId = 0;
|
|
|
|
int fileId = 0;
|
|
|
|
// NOTE: the opposite to 'optional'. This is at the time of writing unused.
|
|
|
|
bool required = true;
|
2022-05-28 20:53:12 +01:00
|
|
|
QString hash;
|
|
|
|
// NOTE: only set on blocked files ! Empty otherwise.
|
|
|
|
QString websiteUrl;
|
2017-04-20 04:22:04 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// our
|
|
|
|
bool resolved = false;
|
|
|
|
QString fileName;
|
|
|
|
QUrl url;
|
2022-05-02 18:10:45 +01:00
|
|
|
QString targetFolder = QStringLiteral("mods");
|
2018-07-15 13:51:05 +01:00
|
|
|
enum class Type
|
|
|
|
{
|
|
|
|
Unknown,
|
|
|
|
Folder,
|
|
|
|
Ctoc,
|
|
|
|
SingleFile,
|
|
|
|
Cmod2,
|
|
|
|
Modpack,
|
|
|
|
Mod
|
|
|
|
} type = Type::Mod;
|
2017-04-20 04:22:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Modloader
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QString id;
|
|
|
|
bool primary = false;
|
2017-04-20 04:22:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Minecraft
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QString version;
|
|
|
|
QString libraries;
|
|
|
|
QVector<Flame::Modloader> modLoaders;
|
2017-04-20 04:22:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Manifest
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
QString manifestType;
|
|
|
|
int manifestVersion = 0;
|
|
|
|
Flame::Minecraft minecraft;
|
|
|
|
QString name;
|
|
|
|
QString version;
|
|
|
|
QString author;
|
2022-05-28 20:53:12 +01:00
|
|
|
//File id -> File
|
|
|
|
QMap<int,Flame::File> files;
|
2018-07-15 13:51:05 +01:00
|
|
|
QString overrides;
|
2017-04-20 04:22:04 +01:00
|
|
|
};
|
|
|
|
|
2017-04-22 17:51:04 +01:00
|
|
|
void loadManifest(Flame::Manifest & m, const QString &filepath);
|
2017-04-20 04:22:04 +01:00
|
|
|
}
|