2022-05-27 02:48:54 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-04-20 08:52:04 +05:30
|
|
|
#pragma once
|
|
|
|
|
2022-07-15 01:11:49 +05:30
|
|
|
#include <QJsonObject>
|
2022-05-29 01:23:12 +05:30
|
|
|
#include <QMap>
|
2022-07-15 01:11:49 +05:30
|
|
|
#include <QString>
|
2018-01-21 08:19:54 +05:30
|
|
|
#include <QUrl>
|
2022-07-15 01:11:49 +05:30
|
|
|
#include <QVector>
|
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
|
2022-07-22 01:11:44 +05:30
|
|
|
bool parseFromObject(const QJsonObject& object, bool throw_on_blocked = true);
|
2019-06-30 14:33:59 +05:30
|
|
|
|
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;
|
2022-05-29 01:23:12 +05:30
|
|
|
QString hash;
|
|
|
|
// NOTE: only set on blocked files ! Empty otherwise.
|
|
|
|
QString websiteUrl;
|
2017-04-20 08:52:04 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// our
|
|
|
|
bool resolved = false;
|
|
|
|
QString fileName;
|
|
|
|
QUrl url;
|
2022-05-02 22:40:45 +05:30
|
|
|
QString targetFolder = QStringLiteral("mods");
|
2018-07-15 18:21:05 +05:30
|
|
|
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;
|
2022-05-29 01:23:12 +05:30
|
|
|
//File id -> File
|
|
|
|
QMap<int,Flame::File> files;
|
2018-07-15 18:21:05 +05:30
|
|
|
QString overrides;
|
2022-07-15 01:11:49 +05:30
|
|
|
|
|
|
|
bool is_loaded = false;
|
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
|
|
|
}
|