mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 18:09:59 +03:00
73 lines
3.1 KiB
C++
73 lines
3.1 KiB
C++
// SPDX-FileCopyrightText: 2023 flowln <flowlnlnln@gmail.com>
|
|
// SPDX-FileCopyrightText: 2023 TheKodeToad <TheKodeToad@proton.me>
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#include "DataPackPage.h"
|
|
#include "ui_ResourcePage.h"
|
|
|
|
#include "DataPackModel.h"
|
|
|
|
#include "ui/dialogs/ResourceDownloadDialog.h"
|
|
|
|
#include <QRegularExpression>
|
|
|
|
namespace ResourceDownload {
|
|
|
|
static ResourceDescriptor prepareDataPackDescriptor()
|
|
{
|
|
QMap<QString, QString> urlHandlers;
|
|
urlHandlers.insert(QRegularExpression::anchoredPattern("(?:www\\.)?modrinth\\.com\\/resourcepack\\/([^\\/]+)\\/?"), "modrinth");
|
|
urlHandlers.insert(QRegularExpression::anchoredPattern("(?:www\\.)?curseforge\\.com\\/minecraft\\/texture-packs\\/([^\\/]+)\\/?"),
|
|
"curseforge");
|
|
urlHandlers.insert(QRegularExpression::anchoredPattern("minecraft\\.curseforge\\.com\\/projects\\/([^\\/]+)\\/?"), "curseforge");
|
|
return {
|
|
.helpPage = {},
|
|
//: The singular version of 'data packs'
|
|
.resourceString = QObject::tr("data pack"),
|
|
//: The plural version of 'data pack'
|
|
.resourcesString = QObject::tr("data packs"),
|
|
.supportsFiltering = false,
|
|
.isIndexed = true,
|
|
.urlHandlers = urlHandlers,
|
|
};
|
|
}
|
|
|
|
DataPackResourcePage::DataPackResourcePage(DataPackDownloadDialog* dialog, BaseInstance& instance, ResourceProviderData p, ResourceAPI* api)
|
|
: ResourcePage(dialog, instance, prepareDataPackDescriptor(), p)
|
|
{
|
|
m_model = new DataPackResourceModel(instance, api, debugName(), metaEntryBase());
|
|
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_model, &ResourceModel::versionListUpdated, this, &ResourcePage::versionListUpdated);
|
|
connect(m_model, &ResourceModel::projectInfoUpdated, this, &ResourcePage::updateUi);
|
|
connect(m_model, &QAbstractListModel::modelReset, this, &ResourcePage::modelReset);
|
|
|
|
connect(m_ui->sortByBox, &QComboBox::currentIndexChanged, this, &DataPackResourcePage::triggerSearch);
|
|
connect(m_ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &DataPackResourcePage::onSelectionChanged);
|
|
connect(m_ui->versionSelectionBox, &QComboBox::currentIndexChanged, this, &DataPackResourcePage::onVersionSelectionChanged);
|
|
connect(m_ui->resourceSelectionButton, &QPushButton::clicked, this, &DataPackResourcePage::onResourceSelected);
|
|
|
|
m_ui->packDescription->setMetaEntry(metaEntryBase());
|
|
}
|
|
|
|
/******** Callbacks to events in the UI (set up in the derived classes) ********/
|
|
|
|
void DataPackResourcePage::triggerSearch()
|
|
{
|
|
m_ui->packView->selectionModel()->setCurrentIndex({}, QItemSelectionModel::SelectionFlag::ClearAndSelect);
|
|
m_ui->packView->clearSelection();
|
|
m_ui->packDescription->clear();
|
|
m_ui->versionSelectionBox->clear();
|
|
|
|
updateSelectionButton();
|
|
|
|
static_cast<DataPackResourceModel*>(m_model)->searchWithTerm(getSearchTerm(), m_ui->sortByBox->currentData().toUInt());
|
|
m_fetchProgress.watch(m_model->activeSearchJob().get());
|
|
}
|
|
|
|
} // namespace ResourceDownload
|