2022-03-20 19:45:58 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2022-11-06 10:08:54 +00:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-05-26 22:18:54 +01:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2022-11-01 17:02:24 +00:00
|
|
|
* Copyright (C) 2022 TheKodeToad <TheKodeToad@proton.me>
|
2022-03-20 19:45:58 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-01-16 10:20:21 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-11-25 12:23:46 +00:00
|
|
|
#include "Application.h"
|
|
|
|
|
|
|
|
#include "modplatform/ResourceAPI.h"
|
2022-01-16 10:20:21 +00:00
|
|
|
|
2022-11-25 12:23:46 +00:00
|
|
|
#include "ui/pages/modplatform/ModPage.h"
|
2022-03-03 02:01:23 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
namespace ResourceDownload {
|
|
|
|
|
|
|
|
namespace Flame {
|
|
|
|
static inline QString displayName() { return "CurseForge"; }
|
|
|
|
static inline QIcon icon() { return APPLICATION->getThemedIcon("flame"); }
|
|
|
|
static inline QString id() { return "curseforge"; }
|
|
|
|
static inline QString debugName() { return "Flame"; }
|
2022-12-18 20:03:39 +00:00
|
|
|
static inline QString metaEntryBase() { return "FlameMods"; }
|
2022-12-16 22:03:52 +00:00
|
|
|
}
|
|
|
|
|
2022-03-03 00:17:10 +00:00
|
|
|
class FlameModPage : public ModPage {
|
2022-01-16 10:20:21 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2022-03-03 00:17:10 +00:00
|
|
|
public:
|
2022-11-25 12:23:46 +00:00
|
|
|
static FlameModPage* create(ModDownloadDialog* dialog, BaseInstance& instance)
|
2022-08-21 14:50:10 +01:00
|
|
|
{
|
|
|
|
return ModPage::create<FlameModPage>(dialog, instance);
|
|
|
|
}
|
|
|
|
|
2022-11-25 12:23:46 +00:00
|
|
|
FlameModPage(ModDownloadDialog* dialog, BaseInstance& instance);
|
2022-03-08 14:12:35 +00:00
|
|
|
~FlameModPage() override = default;
|
2022-01-16 10:20:21 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
[[nodiscard]] bool shouldDisplay() const override;
|
2022-01-16 10:20:21 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
[[nodiscard]] inline auto displayName() const -> QString override { return Flame::displayName(); }
|
|
|
|
[[nodiscard]] inline auto icon() const -> QIcon override { return Flame::icon(); }
|
|
|
|
[[nodiscard]] inline auto id() const -> QString override { return Flame::id(); }
|
|
|
|
[[nodiscard]] inline auto debugName() const -> QString override { return Flame::debugName(); }
|
|
|
|
[[nodiscard]] inline auto metaEntryBase() const -> QString override { return Flame::metaEntryBase(); }
|
2022-01-16 10:20:21 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
[[nodiscard]] inline auto helpPage() const -> QString override { return "Mod-platform"; }
|
2022-01-16 10:20:21 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
bool validateVersion(ModPlatform::IndexedVersion& ver, QString mineVer, std::optional<ResourceAPI::ModLoaderTypes> loaders = {}) const override;
|
|
|
|
bool optedOut(ModPlatform::IndexedVersion& ver) const override;
|
2022-11-01 16:58:22 +00:00
|
|
|
|
|
|
|
void openUrl(const QUrl& url) override;
|
2022-01-16 10:20:21 +00:00
|
|
|
};
|
2022-12-16 22:03:52 +00:00
|
|
|
|
|
|
|
} // namespace ResourceDownload
|