summaryrefslogtreecommitdiff
path: root/archived/projt-launcher/launcher/ui/dialogs/ResourceDownloadDialog.cpp
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:51:45 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:51:45 +0300
commitd3261e64152397db2dca4d691a990c6bc2a6f4dd (patch)
treefac2f7be638651181a72453d714f0f96675c2b8b /archived/projt-launcher/launcher/ui/dialogs/ResourceDownloadDialog.cpp
parent31b9a8949ed0a288143e23bf739f2eb64fdc63be (diff)
downloadProject-Tick-d3261e64152397db2dca4d691a990c6bc2a6f4dd.tar.gz
Project-Tick-d3261e64152397db2dca4d691a990c6bc2a6f4dd.zip
NOISSUE add archived projects
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'archived/projt-launcher/launcher/ui/dialogs/ResourceDownloadDialog.cpp')
-rw-r--r--archived/projt-launcher/launcher/ui/dialogs/ResourceDownloadDialog.cpp572
1 files changed, 572 insertions, 0 deletions
diff --git a/archived/projt-launcher/launcher/ui/dialogs/ResourceDownloadDialog.cpp b/archived/projt-launcher/launcher/ui/dialogs/ResourceDownloadDialog.cpp
new file mode 100644
index 0000000000..c75859b6db
--- /dev/null
+++ b/archived/projt-launcher/launcher/ui/dialogs/ResourceDownloadDialog.cpp
@@ -0,0 +1,572 @@
+// SPDX-License-Identifier: GPL-3.0-only
+// SPDX-FileCopyrightText: 2026 Project Tick
+// SPDX-FileContributor: Project Tick Team
+/*
+ * ProjT Launcher - Minecraft Launcher
+ * Copyright (C) 2026 Project Tick
+ *
+ * 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, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * === Upstream License Block (Do Not Modify) ==============================
+ *
+ *
+ *
+ * Prism Launcher - Minecraft Launcher
+ * Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
+ * Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
+ *
+ * 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, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * ======================================================================== */
+
+#include "ResourceDownloadDialog.h"
+#include <QList>
+
+#include <QInputDialog>
+#include <QLineEdit>
+#include <QPushButton>
+#include <algorithm>
+
+#include "Application.h"
+#include "ResourceDownloadTask.h"
+
+#include "minecraft/PackProfile.h"
+#include "minecraft/mod/ModFolderModel.hpp"
+#include "minecraft/mod/ResourcePackFolderModel.hpp"
+#include "minecraft/mod/ShaderPackFolderModel.hpp"
+#include "minecraft/mod/TexturePackFolderModel.hpp"
+
+#include "minecraft/mod/tasks/GetModDependenciesTask.hpp"
+#include "modplatform/ModIndex.h"
+#include "modplatform/modrinth/ModrinthCollectionImportTask.h"
+#include "ui/dialogs/CustomMessageBox.h"
+#include "ui/dialogs/ProgressDialog.h"
+#include "ui/dialogs/ReviewMessageBox.h"
+
+#include "ui/pages/modplatform/ResourcePage.h"
+
+#include "ui/pages/modplatform/flame/FlameResourcePages.h"
+#include "ui/pages/modplatform/modrinth/ModrinthResourcePages.h"
+
+#include "modplatform/flame/FlameAPI.h"
+#include "modplatform/modrinth/ModrinthAPI.h"
+#include "ui/widgets/PageContainer.h"
+
+namespace ResourceDownload
+{
+
+ ResourceDownloadDialog::ResourceDownloadDialog(QWidget* parent,
+ const std::shared_ptr<ResourceFolderModel> base_model)
+ : QDialog(parent),
+ m_base_model(base_model),
+ m_buttons(QDialogButtonBox::Help | QDialogButtonBox::Ok | QDialogButtonBox::Cancel),
+ m_vertical_layout(this)
+ {
+ setObjectName(QStringLiteral("ResourceDownloadDialog"));
+
+ resize(static_cast<int>(std::max(0.5 * parent->width(), 400.0)),
+ static_cast<int>(std::max(0.75 * parent->height(), 400.0)));
+
+ setWindowIcon(QIcon::fromTheme("new"));
+
+ // Bonk Qt over its stupid head and make sure it understands which button is the default one...
+ // See: https://stackoverflow.com/questions/24556831/qbuttonbox-set-default-button
+ auto OkButton = m_buttons.button(QDialogButtonBox::Ok);
+ OkButton->setEnabled(false);
+ OkButton->setDefault(true);
+ OkButton->setAutoDefault(true);
+ OkButton->setText(tr("Review and confirm"));
+ OkButton->setShortcut(tr("Ctrl+Return"));
+
+ auto CancelButton = m_buttons.button(QDialogButtonBox::Cancel);
+ CancelButton->setDefault(false);
+ CancelButton->setAutoDefault(false);
+
+ auto HelpButton = m_buttons.button(QDialogButtonBox::Help);
+ HelpButton->setDefault(false);
+ HelpButton->setAutoDefault(false);
+
+ setWindowModality(Qt::WindowModal);
+ }
+
+ void ResourceDownloadDialog::accept()
+ {
+ if (!geometrySaveKey().isEmpty())
+ APPLICATION->settings()->set(geometrySaveKey(), QString::fromUtf8(saveGeometry().toBase64()));
+
+ QDialog::accept();
+ }
+
+ void ResourceDownloadDialog::reject()
+ {
+ auto selected = getTasks();
+ if (selected.count() > 0)
+ {
+ auto reply = CustomMessageBox::selectable(this,
+ tr("Confirmation Needed"),
+ tr("You have %1 selected resources.\n"
+ "Are you sure you want to close this dialog?")
+ .arg(selected.count()),
+ QMessageBox::Question,
+ QMessageBox::Yes | QMessageBox::No,
+ QMessageBox::No)
+ ->exec();
+ if (reply != QMessageBox::Yes)
+ {
+ return;
+ }
+ }
+
+ if (!geometrySaveKey().isEmpty())
+ APPLICATION->settings()->set(geometrySaveKey(), QString::fromUtf8(saveGeometry().toBase64()));
+
+ QDialog::reject();
+ }
+
+ // NOTE: We can't have this in the ctor because PageContainer calls a virtual function, and so
+ // won't work with subclasses if we put it in this ctor.
+ void ResourceDownloadDialog::initializeContainer()
+ {
+ m_container = new PageContainer(this, {}, this);
+ m_container->setSizePolicy(QSizePolicy::Policy::Preferred, QSizePolicy::Policy::Expanding);
+ m_container->layout()->setContentsMargins(0, 0, 0, 0);
+ m_vertical_layout.addWidget(m_container);
+
+ m_container->addButtons(&m_buttons);
+
+ connect(m_container, &PageContainer::selectedPageChanged, this, &ResourceDownloadDialog::selectedPageChanged);
+ }
+
+ void ResourceDownloadDialog::connectButtons()
+ {
+ auto OkButton = m_buttons.button(QDialogButtonBox::Ok);
+ OkButton->setToolTip(
+ tr("Opens a new popup to review your selected %1 and confirm your selection. Shortcut: Ctrl+Return")
+ .arg(resourcesString()));
+ connect(OkButton, &QPushButton::clicked, this, &ResourceDownloadDialog::confirm);
+
+ auto CancelButton = m_buttons.button(QDialogButtonBox::Cancel);
+ connect(CancelButton, &QPushButton::clicked, this, &ResourceDownloadDialog::reject);
+
+ auto HelpButton = m_buttons.button(QDialogButtonBox::Help);
+ connect(HelpButton, &QPushButton::clicked, m_container, &PageContainer::help);
+ }
+
+ void ResourceDownloadDialog::confirm()
+ {
+ auto confirm_dialog = ReviewMessageBox::create(this, tr("Confirm %1 to download").arg(resourcesString()));
+ confirm_dialog->retranslateUi(resourcesString());
+
+ QHash<QString, GetModDependenciesTask::PackDependencyExtraInfo> dependencyExtraInfo;
+ QStringList depNames;
+ if (auto task = getModDependenciesTask(); task)
+ {
+ connect(task.get(),
+ &Task::failed,
+ this,
+ [this](QString reason)
+ { CustomMessageBox::selectable(this, tr("Error"), reason, QMessageBox::Critical)->exec(); });
+
+ auto weak = task.toWeakRef();
+ connect(
+ task.get(),
+ &Task::succeeded,
+ this,
+ [this, weak]()
+ {
+ QStringList warnings;
+ if (auto task = weak.lock())
+ {
+ warnings = task->warnings();
+ }
+ if (warnings.count())
+ {
+ CustomMessageBox::selectable(this, tr("Warnings"), warnings.join('\n'), QMessageBox::Warning)
+ ->exec();
+ }
+ });
+
+ // Check for updates
+ ProgressDialog progress_dialog(this);
+ progress_dialog.setSkipButton(true, tr("Abort"));
+ progress_dialog.setWindowTitle(tr("Checking for dependencies..."));
+ auto ret = progress_dialog.execWithTask(*task);
+
+ // If the dialog was skipped / some download error happened
+ if (ret == QDialog::DialogCode::Rejected)
+ {
+ QMetaObject::invokeMethod(this, "reject", Qt::QueuedConnection);
+ return;
+ }
+ else
+ {
+ for (auto dep : task->getDependecies())
+ {
+ addResource(dep->pack, dep->version);
+ depNames << dep->pack->name;
+ }
+ dependencyExtraInfo = task->getExtraInfo();
+ }
+ }
+
+ auto selected = getTasks();
+ std::sort(selected.begin(),
+ selected.end(),
+ [](const DownloadTaskPtr& a, const DownloadTaskPtr& b)
+ { return QString::compare(a->getName(), b->getName(), Qt::CaseInsensitive) < 0; });
+ for (auto& task : selected)
+ {
+ auto extraInfo = dependencyExtraInfo.value(task->getPack()->addonId.toString());
+ confirm_dialog->appendResource({ task->getName(),
+ task->getFilename(),
+ task->getCustomPath(),
+ ModPlatform::ProviderCapabilities::name(task->getProvider()),
+ extraInfo.required_by,
+ task->getVersion().version_type.toString(),
+ !extraInfo.maybe_installed });
+ }
+
+ if (confirm_dialog->exec())
+ {
+ auto deselected = confirm_dialog->deselectedResources();
+ for (auto page : m_container->getPages())
+ {
+ auto res = static_cast<ResourcePage*>(page);
+ for (auto name : deselected)
+ res->removeResourceFromPage(name);
+ }
+
+ this->accept();
+ }
+ else
+ {
+ for (auto name : depNames)
+ removeResource(name);
+ }
+ }
+
+ bool ResourceDownloadDialog::selectPage(QString pageId)
+ {
+ return m_container->selectPage(pageId);
+ }
+
+ ResourcePage* ResourceDownloadDialog::selectedPage()
+ {
+ return dynamic_cast<ResourcePage*>(m_container->selectedPage());
+ }
+
+ void ResourceDownloadDialog::addResource(ModPlatform::IndexedPack::Ptr pack, ModPlatform::IndexedVersion& ver)
+ {
+ removeResource(pack->name);
+ if (auto* page = selectedPage())
+ page->addResourceToPage(pack, ver, getBaseModel());
+ setButtonStatus();
+ }
+
+ void ResourceDownloadDialog::removeResource(const QString& pack_name)
+ {
+ for (auto page : m_container->getPages())
+ {
+ if (auto* resourcePage = dynamic_cast<ResourcePage*>(page))
+ resourcePage->removeResourceFromPage(pack_name);
+ }
+ setButtonStatus();
+ }
+
+ void ResourceDownloadDialog::setButtonStatus()
+ {
+ auto selected = false;
+ for (auto page : m_container->getPages())
+ {
+ if (auto* resourcePage = dynamic_cast<ResourcePage*>(page))
+ selected = selected || resourcePage->hasSelectedPacks();
+ }
+ m_buttons.button(QDialogButtonBox::Ok)->setEnabled(selected);
+ }
+
+ const QList<ResourceDownloadDialog::DownloadTaskPtr> ResourceDownloadDialog::getTasks()
+ {
+ QList<DownloadTaskPtr> selected;
+ for (auto page : m_container->getPages())
+ {
+ if (auto* resourcePage = dynamic_cast<ResourcePage*>(page))
+ selected.append(resourcePage->selectedPacks());
+ }
+ return selected;
+ }
+
+ void ResourceDownloadDialog::selectedPageChanged(BasePage* previous, BasePage* selected)
+ {
+ auto* prev_page = dynamic_cast<ResourcePage*>(previous);
+ if (!prev_page)
+ {
+ qCritical() << "Selected previous page in ResourceDownloadDialog is not a ResourcePage!";
+ return;
+ }
+
+ // Same effect as having a global search bar
+ if (auto* result = dynamic_cast<ResourcePage*>(selected))
+ result->setSearchTerm(prev_page->getSearchTerm());
+ }
+
+ ModDownloadDialog::ModDownloadDialog(QWidget* parent,
+ const std::shared_ptr<ModFolderModel>& mods,
+ BaseInstance* instance)
+ : ResourceDownloadDialog(parent, mods),
+ m_instance(instance)
+ {
+ setWindowTitle(dialogTitle());
+
+ initializeContainer();
+ connectButtons();
+
+ if (modrinthPage())
+ {
+ m_importModrinthCollectionButton =
+ m_buttons.addButton(tr("Import Modrinth Collection"), QDialogButtonBox::ActionRole);
+ connect(m_importModrinthCollectionButton,
+ &QPushButton::clicked,
+ this,
+ &ModDownloadDialog::importModrinthCollection);
+ }
+
+ if (!geometrySaveKey().isEmpty())
+ restoreGeometry(
+ QByteArray::fromBase64(APPLICATION->settings()->get(geometrySaveKey()).toString().toUtf8()));
+ }
+
+ QList<BasePage*> ModDownloadDialog::getPages()
+ {
+ QList<BasePage*> pages;
+
+ auto loaders = static_cast<MinecraftInstance*>(m_instance)->getPackProfile()->getSupportedModLoaders().value();
+
+ if (ModrinthAPI::validateModLoaders(loaders))
+ pages.append(ModrinthModPage::create(this, *m_instance));
+ if (APPLICATION->capabilities() & Application::SupportsFlame && FlameAPI::validateModLoaders(loaders))
+ pages.append(FlameModPage::create(this, *m_instance));
+
+ return pages;
+ }
+
+ GetModDependenciesTask::Ptr ModDownloadDialog::getModDependenciesTask()
+ {
+ if (!APPLICATION->settings()->get("ModDependenciesDisabled").toBool())
+ { // dependencies
+ if (auto model = dynamic_cast<ModFolderModel*>(getBaseModel().get()); model)
+ {
+ QList<std::shared_ptr<GetModDependenciesTask::PackDependency>> selectedVers;
+ for (auto& selected : getTasks())
+ {
+ selectedVers.append(
+ std::make_shared<GetModDependenciesTask::PackDependency>(selected->getPack(),
+ selected->getVersion()));
+ }
+
+ return makeShared<GetModDependenciesTask>(m_instance, model, selectedVers);
+ }
+ }
+ return nullptr;
+ }
+
+ ResourcePage* ModDownloadDialog::modrinthPage() const
+ {
+ for (auto* page : m_container->getPages())
+ {
+ if (auto* resource_page = dynamic_cast<ResourcePage*>(page);
+ resource_page && resource_page->id() == "modrinth")
+ return resource_page;
+ }
+ return nullptr;
+ }
+
+ void ModDownloadDialog::importModrinthCollection()
+ {
+ auto* page = modrinthPage();
+ if (!page)
+ return;
+
+ bool ok = false;
+ auto input = QInputDialog::getText(this,
+ tr("Import Modrinth Collection"),
+ tr("Enter a Modrinth collection URL or collection ID:"),
+ QLineEdit::Normal,
+ QString(),
+ &ok);
+ if (!ok || input.trimmed().isEmpty())
+ return;
+
+ auto task = makeShared<ModrinthCollectionImportTask>(input, static_cast<MinecraftInstance*>(m_instance));
+
+ ProgressDialog progress_dialog(this);
+ progress_dialog.setSkipButton(true, tr("Abort"));
+ progress_dialog.setWindowTitle(tr("Importing Modrinth collection..."));
+
+ if (progress_dialog.execWithTask(*task) == QDialog::Rejected)
+ return;
+
+ selectPage(page->id());
+ auto imported_resources = task->importedResources();
+ for (auto& imported : imported_resources)
+ addResource(imported.pack, imported.version);
+
+ QString message;
+ if (task->collectionName().isEmpty())
+ message = tr("Imported %1 mod(s) from Modrinth collection `%2`.")
+ .arg(task->importedResources().size())
+ .arg(input.trimmed());
+ else
+ message =
+ tr("Imported %1 mod(s) from `%2`.").arg(task->importedResources().size()).arg(task->collectionName());
+
+ if (!task->skippedResources().isEmpty())
+ {
+ message += "\n\n"
+ + tr("Skipped %1 project(s) without a compatible version:").arg(task->skippedResources().size())
+ + "\n" + task->skippedResources().join(", ");
+ }
+
+ CustomMessageBox::selectable(this, tr("Collection imported"), message, QMessageBox::Information)->exec();
+ }
+
+ ResourcePackDownloadDialog::ResourcePackDownloadDialog(
+ QWidget* parent,
+ const std::shared_ptr<ResourcePackFolderModel>& resource_packs,
+ BaseInstance* instance)
+ : ResourceDownloadDialog(parent, resource_packs),
+ m_instance(instance)
+ {
+ setWindowTitle(dialogTitle());
+
+ initializeContainer();
+ connectButtons();
+
+ if (!geometrySaveKey().isEmpty())
+ restoreGeometry(
+ QByteArray::fromBase64(APPLICATION->settings()->get(geometrySaveKey()).toString().toUtf8()));
+ }
+
+ QList<BasePage*> ResourcePackDownloadDialog::getPages()
+ {
+ QList<BasePage*> pages;
+
+ pages.append(ModrinthResourcePackPage::create(this, *m_instance));
+ if (APPLICATION->capabilities() & Application::SupportsFlame)
+ pages.append(FlameResourcePackPage::create(this, *m_instance));
+
+ return pages;
+ }
+
+ TexturePackDownloadDialog::TexturePackDownloadDialog(QWidget* parent,
+ const std::shared_ptr<TexturePackFolderModel>& resource_packs,
+ BaseInstance* instance)
+ : ResourceDownloadDialog(parent, resource_packs),
+ m_instance(instance)
+ {
+ setWindowTitle(dialogTitle());
+
+ initializeContainer();
+ connectButtons();
+
+ if (!geometrySaveKey().isEmpty())
+ restoreGeometry(
+ QByteArray::fromBase64(APPLICATION->settings()->get(geometrySaveKey()).toString().toUtf8()));
+ }
+
+ QList<BasePage*> TexturePackDownloadDialog::getPages()
+ {
+ QList<BasePage*> pages;
+
+ pages.append(ModrinthTexturePackPage::create(this, *m_instance));
+ if (APPLICATION->capabilities() & Application::SupportsFlame)
+ pages.append(FlameTexturePackPage::create(this, *m_instance));
+
+ return pages;
+ }
+
+ ShaderPackDownloadDialog::ShaderPackDownloadDialog(QWidget* parent,
+ const std::shared_ptr<ShaderPackFolderModel>& shaders,
+ BaseInstance* instance)
+ : ResourceDownloadDialog(parent, shaders),
+ m_instance(instance)
+ {
+ setWindowTitle(dialogTitle());
+
+ initializeContainer();
+ connectButtons();
+
+ if (!geometrySaveKey().isEmpty())
+ restoreGeometry(
+ QByteArray::fromBase64(APPLICATION->settings()->get(geometrySaveKey()).toString().toUtf8()));
+ }
+
+ QList<BasePage*> ShaderPackDownloadDialog::getPages()
+ {
+ QList<BasePage*> pages;
+ pages.append(ModrinthShaderPackPage::create(this, *m_instance));
+ if (APPLICATION->capabilities() & Application::SupportsFlame)
+ pages.append(FlameShaderPackPage::create(this, *m_instance));
+ return pages;
+ }
+
+ void ResourceDownloadDialog::setResourceMetadata(const std::shared_ptr<Metadata::ModStruct>& meta)
+ {
+ switch (meta->provider)
+ {
+ case ModPlatform::ResourceProvider::MODRINTH: selectPage(Modrinth::id()); break;
+ case ModPlatform::ResourceProvider::FLAME: selectPage(Flame::id()); break;
+ }
+ setWindowTitle(tr("Change %1 version").arg(meta->name));
+ m_container->hidePageList();
+ m_buttons.hide();
+ auto page = selectedPage();
+ page->openProject(meta->project_id);
+ }
+
+ DataPackDownloadDialog::DataPackDownloadDialog(QWidget* parent,
+ const std::shared_ptr<DataPackFolderModel>& data_packs,
+ BaseInstance* instance)
+ : ResourceDownloadDialog(parent, data_packs),
+ m_instance(instance)
+ {
+ setWindowTitle(dialogTitle());
+
+ initializeContainer();
+ connectButtons();
+
+ if (!geometrySaveKey().isEmpty())
+ restoreGeometry(QByteArray::fromBase64(APPLICATION->settings()->get(geometrySaveKey()).toByteArray()));
+ }
+
+ QList<BasePage*> DataPackDownloadDialog::getPages()
+ {
+ QList<BasePage*> pages;
+ pages.append(ModrinthDataPackPage::create(this, *m_instance));
+ if (APPLICATION->capabilities() & Application::SupportsFlame)
+ pages.append(FlameDataPackPage::create(this, *m_instance));
+ return pages;
+ }
+
+} // namespace ResourceDownload