2023-01-23 14:03:55 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 flowln <flowlnlnln@gmail.com>
|
|
|
|
//
|
2022-05-15 12:20:05 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-08-04 18:41:47 +01:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-05-15 12:20:05 +01:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2022-01-14 08:43:42 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-11-25 12:23:46 +00:00
|
|
|
#include "ui/pages/modplatform/ModModel.h"
|
2022-12-16 23:26:10 +00:00
|
|
|
#include "ui/pages/modplatform/ResourcePackModel.h"
|
2022-12-18 18:41:46 +00:00
|
|
|
#include "ui/pages/modplatform/modrinth/ModrinthResourcePages.h"
|
2022-11-25 12:23:46 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
namespace ResourceDownload {
|
2022-11-25 12:23:46 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
class ModrinthModModel : public ModModel {
|
2022-01-14 08:43:42 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2022-03-03 00:17:10 +00:00
|
|
|
public:
|
2023-06-10 20:04:08 +01:00
|
|
|
ModrinthModModel(BaseInstance&);
|
2022-12-16 22:03:52 +00:00
|
|
|
~ModrinthModModel() override = default;
|
2022-03-03 02:01:23 +00:00
|
|
|
|
|
|
|
private:
|
2022-12-18 18:41:46 +00:00
|
|
|
[[nodiscard]] QString debugName() const override { return Modrinth::debugName() + " (Model)"; }
|
|
|
|
[[nodiscard]] QString metaEntryBase() const override { return Modrinth::metaEntryBase(); }
|
|
|
|
|
2022-03-07 22:29:59 +00:00
|
|
|
void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
2022-05-24 13:38:48 +01:00
|
|
|
void loadExtraPackInfo(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
2022-03-07 22:29:59 +00:00
|
|
|
void loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr) override;
|
2023-04-17 18:41:00 +01:00
|
|
|
auto loadDependencyVersions(const ModPlatform::Dependency& m, QJsonArray& arr) -> ModPlatform::IndexedVersion override;
|
2022-12-16 22:03:52 +00:00
|
|
|
|
2022-03-08 14:12:35 +00:00
|
|
|
auto documentToArray(QJsonDocument& obj) const -> QJsonArray override;
|
2022-01-14 08:43:42 +00:00
|
|
|
};
|
|
|
|
|
2022-12-16 23:26:10 +00:00
|
|
|
class ModrinthResourcePackModel : public ResourcePackResourceModel {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ModrinthResourcePackModel(const BaseInstance&);
|
|
|
|
~ModrinthResourcePackModel() override = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
[[nodiscard]] QString debugName() const override { return Modrinth::debugName() + " (Model)"; }
|
|
|
|
[[nodiscard]] QString metaEntryBase() const override { return Modrinth::metaEntryBase(); }
|
|
|
|
|
|
|
|
void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
2023-01-29 21:07:49 +00:00
|
|
|
void loadExtraPackInfo(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
|
|
|
void loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr) override;
|
|
|
|
|
|
|
|
auto documentToArray(QJsonDocument& obj) const -> QJsonArray override;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ModrinthTexturePackModel : public TexturePackResourceModel {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ModrinthTexturePackModel(const BaseInstance&);
|
|
|
|
~ModrinthTexturePackModel() override = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
[[nodiscard]] QString debugName() const override { return Modrinth::debugName() + " (Model)"; }
|
|
|
|
[[nodiscard]] QString metaEntryBase() const override { return Modrinth::metaEntryBase(); }
|
|
|
|
|
|
|
|
void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
2022-12-16 23:26:10 +00:00
|
|
|
void loadExtraPackInfo(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
|
|
|
void loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr) override;
|
|
|
|
|
|
|
|
auto documentToArray(QJsonDocument& obj) const -> QJsonArray override;
|
|
|
|
};
|
|
|
|
|
2022-12-30 17:06:07 +00:00
|
|
|
class ModrinthShaderPackModel : public ShaderPackResourceModel {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ModrinthShaderPackModel(const BaseInstance&);
|
|
|
|
~ModrinthShaderPackModel() override = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
[[nodiscard]] QString debugName() const override { return Modrinth::debugName() + " (Model)"; }
|
|
|
|
[[nodiscard]] QString metaEntryBase() const override { return Modrinth::metaEntryBase(); }
|
|
|
|
|
|
|
|
void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
|
|
|
void loadExtraPackInfo(ModPlatform::IndexedPack& m, QJsonObject& obj) override;
|
|
|
|
void loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr) override;
|
|
|
|
|
|
|
|
auto documentToArray(QJsonDocument& obj) const -> QJsonArray override;
|
|
|
|
};
|
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
} // namespace ResourceDownload
|