2023-01-23 14:03:55 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 flowln <flowlnlnln@gmail.com>
|
|
|
|
//
|
2022-03-20 19:45:58 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
2022-05-26 22:18:54 +01:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
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-11-25 12:23:46 +00:00
|
|
|
#include "ModrinthResourcePages.h"
|
|
|
|
#include "ui_ResourcePage.h"
|
|
|
|
|
2022-04-18 12:12:42 +01:00
|
|
|
#include "modplatform/modrinth/ModrinthAPI.h"
|
2022-01-14 08:43:42 +00:00
|
|
|
|
2022-12-17 00:44:21 +00:00
|
|
|
#include "ui/dialogs/ResourceDownloadDialog.h"
|
2022-01-14 08:43:42 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
#include "ui/pages/modplatform/modrinth/ModrinthResourceModels.h"
|
|
|
|
|
|
|
|
namespace ResourceDownload {
|
|
|
|
|
2022-11-25 12:23:46 +00:00
|
|
|
ModrinthModPage::ModrinthModPage(ModDownloadDialog* dialog, BaseInstance& instance)
|
|
|
|
: ModPage(dialog, instance)
|
2022-03-03 00:17:10 +00:00
|
|
|
{
|
2022-12-18 18:41:46 +00:00
|
|
|
m_model = new ModrinthModModel(instance);
|
2022-11-25 12:23:46 +00:00
|
|
|
m_ui->packView->setModel(m_model);
|
2022-03-03 00:17:10 +00:00
|
|
|
|
2022-12-20 15:15:17 +00:00
|
|
|
addSortings();
|
2022-03-03 00:17:10 +00:00
|
|
|
|
2022-11-01 16:58:22 +00:00
|
|
|
// sometimes Qt just ignores virtual slots and doesn't work as intended it seems,
|
2022-04-17 22:58:51 +01:00
|
|
|
// so it's best not to connect them in the parent's constructor...
|
2022-11-25 12:23:46 +00:00
|
|
|
connect(m_ui->sortByBox, SIGNAL(currentIndexChanged(int)), this, SLOT(triggerSearch()));
|
|
|
|
connect(m_ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &ModrinthModPage::onSelectionChanged);
|
|
|
|
connect(m_ui->versionSelectionBox, &QComboBox::currentTextChanged, this, &ModrinthModPage::onVersionSelectionChanged);
|
|
|
|
connect(m_ui->resourceSelectionButton, &QPushButton::clicked, this, &ModrinthModPage::onResourceSelected);
|
2022-09-10 22:49:00 +01:00
|
|
|
|
2022-11-25 12:23:46 +00:00
|
|
|
m_ui->packDescription->setMetaEntry(metaEntryBase());
|
2022-01-14 08:43:42 +00:00
|
|
|
}
|
|
|
|
|
2022-11-25 12:23:46 +00:00
|
|
|
auto ModrinthModPage::validateVersion(ModPlatform::IndexedVersion& ver, QString mineVer, std::optional<ResourceAPI::ModLoaderTypes> loaders) const -> bool
|
2022-03-03 00:17:10 +00:00
|
|
|
{
|
2022-11-25 12:23:46 +00:00
|
|
|
auto loaderCompatible = !loaders.has_value();
|
2022-04-18 12:12:42 +01:00
|
|
|
|
2022-11-25 12:23:46 +00:00
|
|
|
if (!loaderCompatible) {
|
|
|
|
auto loaderStrings = ModrinthAPI::getModLoaderStrings(loaders.value());
|
|
|
|
for (auto remoteLoader : ver.loaders)
|
|
|
|
{
|
|
|
|
if (loaderStrings.contains(remoteLoader)) {
|
|
|
|
loaderCompatible = true;
|
|
|
|
break;
|
|
|
|
}
|
2022-04-18 12:12:42 +01:00
|
|
|
}
|
|
|
|
}
|
2022-11-25 12:23:46 +00:00
|
|
|
|
2022-04-18 12:12:42 +01:00
|
|
|
return ver.mcVersion.contains(mineVer) && loaderCompatible;
|
2022-01-14 08:43:42 +00:00
|
|
|
}
|
2022-03-07 22:29:59 +00:00
|
|
|
|
2022-12-16 23:26:10 +00:00
|
|
|
ModrinthResourcePackPage::ModrinthResourcePackPage(ResourcePackDownloadDialog* dialog, BaseInstance& instance)
|
|
|
|
: ResourcePackResourcePage(dialog, instance)
|
|
|
|
{
|
|
|
|
m_model = new ModrinthResourcePackModel(instance);
|
|
|
|
m_ui->packView->setModel(m_model);
|
|
|
|
|
|
|
|
addSortings();
|
|
|
|
|
|
|
|
// sometimes Qt just ignores virtual slots and doesn't work as intended it seems,
|
|
|
|
// so it's best not to connect them in the parent's constructor...
|
|
|
|
connect(m_ui->sortByBox, SIGNAL(currentIndexChanged(int)), this, SLOT(triggerSearch()));
|
|
|
|
connect(m_ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &ModrinthResourcePackPage::onSelectionChanged);
|
|
|
|
connect(m_ui->versionSelectionBox, &QComboBox::currentTextChanged, this, &ModrinthResourcePackPage::onVersionSelectionChanged);
|
|
|
|
connect(m_ui->resourceSelectionButton, &QPushButton::clicked, this, &ModrinthResourcePackPage::onResourceSelected);
|
|
|
|
|
|
|
|
m_ui->packDescription->setMetaEntry(metaEntryBase());
|
|
|
|
}
|
|
|
|
|
2022-03-07 22:29:59 +00:00
|
|
|
// I don't know why, but doing this on the parent class makes it so that
|
|
|
|
// other mod providers start loading before being selected, at least with
|
|
|
|
// my Qt, so we need to implement this in every derived class...
|
2022-05-14 18:46:52 +01:00
|
|
|
auto ModrinthModPage::shouldDisplay() const -> bool { return true; }
|
2022-12-16 23:26:10 +00:00
|
|
|
auto ModrinthResourcePackPage::shouldDisplay() const -> bool { return true; }
|
2022-11-25 12:23:46 +00:00
|
|
|
|
2022-12-16 22:03:52 +00:00
|
|
|
} // namespace ResourceDownload
|