2022-01-14 14:13:42 +05:30
|
|
|
#include "ModrinthPage.h"
|
2022-03-03 05:47:10 +05:30
|
|
|
#include "ui_ModPage.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
|
|
|
#include "Application.h"
|
|
|
|
#include "InstanceImportTask.h"
|
2022-02-25 22:13:27 +05:30
|
|
|
#include "Json.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
#include "ModDownloadTask.h"
|
2022-02-25 22:13:27 +05:30
|
|
|
#include "ModrinthModel.h"
|
2022-01-15 13:21:47 +05:30
|
|
|
#include "minecraft/MinecraftInstance.h"
|
2022-01-15 00:52:15 +05:30
|
|
|
#include "minecraft/PackProfile.h"
|
2022-02-25 22:13:27 +05:30
|
|
|
#include "ui/dialogs/ModDownloadDialog.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-03-03 05:47:10 +05:30
|
|
|
ModrinthPage::ModrinthPage(ModDownloadDialog* dialog, BaseInstance* instance)
|
2022-03-06 22:24:05 +05:30
|
|
|
: ModPage(dialog, instance, new ModrinthAPI())
|
2022-03-03 05:47:10 +05:30
|
|
|
{
|
|
|
|
listModel = new Modrinth::ListModel(this);
|
|
|
|
ui->packView->setModel(listModel);
|
|
|
|
|
|
|
|
// index is used to set the sorting with the modrinth api
|
|
|
|
ui->sortByBox->addItem(tr("Sort by Relevence"));
|
|
|
|
ui->sortByBox->addItem(tr("Sort by Downloads"));
|
|
|
|
ui->sortByBox->addItem(tr("Sort by Follows"));
|
|
|
|
ui->sortByBox->addItem(tr("Sort by last updated"));
|
|
|
|
ui->sortByBox->addItem(tr("Sort by newest"));
|
|
|
|
|
|
|
|
// 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 contructor...
|
|
|
|
connect(ui->sortByBox, SIGNAL(currentIndexChanged(int)), this, SLOT(triggerSearch()));
|
|
|
|
connect(ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &ModrinthPage::onSelectionChanged);
|
|
|
|
connect(ui->versionSelectionBox, &QComboBox::currentTextChanged, this, &ModrinthPage::onVersionSelectionChanged);
|
|
|
|
connect(ui->modSelectionButton, &QPushButton::clicked, this, &ModrinthPage::onModSelected);
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
|
|
|
|
2022-02-25 22:13:27 +05:30
|
|
|
bool ModrinthPage::shouldDisplay() const { return true; }
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-03-08 00:52:57 +05:30
|
|
|
void ModrinthPage::onRequestVersionsSucceeded(QJsonDocument& response, QString addonId)
|
2022-03-03 05:47:10 +05:30
|
|
|
{
|
|
|
|
if (addonId != current.addonId) { return; }
|
2022-03-08 00:52:57 +05:30
|
|
|
|
|
|
|
QJsonArray arr = response.array();
|
2022-03-03 05:47:10 +05:30
|
|
|
try {
|
|
|
|
Modrinth::loadIndexedPackVersions(current, arr, APPLICATION->network(), m_instance);
|
|
|
|
} catch (const JSONValidationError& e) {
|
2022-03-08 00:52:57 +05:30
|
|
|
qDebug() << response;
|
2022-02-25 22:13:27 +05:30
|
|
|
qWarning() << "Error while reading Modrinth mod version: " << e.cause();
|
2022-03-03 05:47:10 +05:30
|
|
|
}
|
|
|
|
auto packProfile = ((MinecraftInstance*)m_instance)->getPackProfile();
|
|
|
|
QString mcVersion = packProfile->getComponentVersion("net.minecraft");
|
|
|
|
QString loaderString = (packProfile->getComponentVersion("net.minecraftforge").isEmpty()) ? "fabric" : "forge";
|
|
|
|
for (int i = 0; i < current.versions.size(); i++) {
|
2022-02-25 22:13:27 +05:30
|
|
|
auto version = current.versions[i];
|
2022-03-03 05:47:10 +05:30
|
|
|
if (!version.mcVersion.contains(mcVersion) || !version.loaders.contains(loaderString)) { continue; }
|
2022-02-25 22:13:27 +05:30
|
|
|
ui->versionSelectionBox->addItem(version.version, QVariant(i));
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
2022-03-03 05:47:10 +05:30
|
|
|
if (ui->versionSelectionBox->count() == 0) { ui->versionSelectionBox->addItem(tr("No Valid Version found !"), QVariant(-1)); }
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-03-03 05:47:10 +05:30
|
|
|
ui->modSelectionButton->setText(tr("Cannot select invalid version :("));
|
2022-02-25 22:13:27 +05:30
|
|
|
updateSelectionButton();
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|