2017-04-20 04:22:04 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QVector>
|
2018-01-21 02:49:54 +00:00
|
|
|
#include <QUrl>
|
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
|
|
|
|
{
|
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;
|
2017-04-20 04:22:04 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// 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 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;
|
|
|
|
QVector<Flame::File> files;
|
|
|
|
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
|
|
|
}
|