2022-03-21 00:31:08 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2022-06-12 17:20:58 +05:30
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2014-06-02 04:19:53 +05:30
|
|
|
*
|
2022-03-21 00:31:08 +05:30
|
|
|
* 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.
|
2014-06-02 04:19:53 +05:30
|
|
|
*
|
2022-03-21 00:31:08 +05:30
|
|
|
* 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.
|
2014-06-02 04:19:53 +05:30
|
|
|
*
|
2022-03-21 00:31:08 +05:30
|
|
|
* 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.
|
2014-06-02 04:19:53 +05:30
|
|
|
*/
|
|
|
|
|
2014-07-13 02:32:52 +05:30
|
|
|
#include "ModFolderPage.h"
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
#include "ui_ExternalResourcesPage.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
#include <QAbstractItemModel>
|
2014-06-02 04:19:53 +05:30
|
|
|
#include <QEvent>
|
|
|
|
#include <QKeyEvent>
|
2019-07-16 05:00:53 +05:30
|
|
|
#include <QMenu>
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
#include <QMessageBox>
|
2021-11-22 08:25:16 +05:30
|
|
|
#include <QSortFilterProxyModel>
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2021-11-20 20:52:22 +05:30
|
|
|
#include "Application.h"
|
2021-11-22 08:25:16 +05:30
|
|
|
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
#include "ui/GuiUtil.h"
|
2021-11-22 08:25:16 +05:30
|
|
|
#include "ui/dialogs/CustomMessageBox.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
#include "ui/dialogs/ModDownloadDialog.h"
|
2022-06-05 05:48:51 +05:30
|
|
|
#include "ui/dialogs/ModUpdateDialog.h"
|
2021-11-22 08:25:16 +05:30
|
|
|
|
|
|
|
#include "DesktopServices.h"
|
|
|
|
|
2020-06-27 15:32:31 +05:30
|
|
|
#include "minecraft/PackProfile.h"
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
#include "minecraft/VersionFilterData.h"
|
|
|
|
#include "minecraft/mod/Mod.h"
|
|
|
|
#include "minecraft/mod/ModFolderModel.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2022-02-21 01:25:26 +05:30
|
|
|
#include "modplatform/ModAPI.h"
|
|
|
|
|
2019-07-30 04:55:37 +05:30
|
|
|
#include "Version.h"
|
2022-06-12 22:21:19 +05:30
|
|
|
#include "tasks/ConcurrentTask.h"
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
#include "ui/dialogs/ProgressDialog.h"
|
2019-07-30 04:46:56 +05:30
|
|
|
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
ModFolderPage::ModFolderPage(BaseInstance* inst, std::shared_ptr<ModFolderModel> mods, QWidget* parent)
|
2022-08-10 23:18:34 +05:30
|
|
|
: ExternalResourcesPage(inst, mods, parent), m_model(mods)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2022-03-03 18:21:46 +05:30
|
|
|
// This is structured like that so that these changes
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
// do not affect the Resource pack and Shader pack tabs
|
|
|
|
{
|
2022-05-30 20:06:30 +05:30
|
|
|
ui->actionDownloadItem->setText(tr("Download mods"));
|
|
|
|
ui->actionDownloadItem->setToolTip(tr("Download mods from online mod platforms"));
|
|
|
|
ui->actionDownloadItem->setEnabled(true);
|
|
|
|
ui->actionAddItem->setText(tr("Add file"));
|
|
|
|
ui->actionAddItem->setToolTip(tr("Add a locally downloaded file"));
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2022-05-30 20:06:30 +05:30
|
|
|
ui->actionsToolbar->insertActionBefore(ui->actionAddItem, ui->actionDownloadItem);
|
|
|
|
|
|
|
|
connect(ui->actionDownloadItem, &QAction::triggered, this, &ModFolderPage::installMods);
|
2022-06-05 05:48:51 +05:30
|
|
|
|
2022-07-19 21:33:45 +05:30
|
|
|
ui->actionUpdateItem->setToolTip(tr("Try to check or update all selected mods (all mods if none are selected)"));
|
2022-06-05 05:48:51 +05:30
|
|
|
ui->actionsToolbar->insertActionAfter(ui->actionAddItem, ui->actionUpdateItem);
|
|
|
|
connect(ui->actionUpdateItem, &QAction::triggered, this, &ModFolderPage::updateMods);
|
|
|
|
|
2022-08-03 12:09:30 +05:30
|
|
|
auto check_allow_update = [this] {
|
|
|
|
return (!m_instance || !m_instance->isRunning()) &&
|
|
|
|
(ui->treeView->selectionModel()->hasSelection() || !m_model->empty());
|
|
|
|
};
|
|
|
|
|
|
|
|
connect(ui->treeView->selectionModel(), &QItemSelectionModel::selectionChanged, this, [this, check_allow_update] {
|
|
|
|
ui->actionUpdateItem->setEnabled(check_allow_update());
|
2022-08-02 09:44:45 +05:30
|
|
|
});
|
2022-06-05 05:48:51 +05:30
|
|
|
|
2022-08-03 12:09:30 +05:30
|
|
|
connect(mods.get(), &ModFolderModel::rowsInserted, this, [this, check_allow_update] {
|
|
|
|
ui->actionUpdateItem->setEnabled(check_allow_update());
|
2022-08-02 09:44:45 +05:30
|
|
|
});
|
|
|
|
|
2022-08-03 12:09:30 +05:30
|
|
|
connect(mods.get(), &ModFolderModel::rowsRemoved, this, [this, check_allow_update] {
|
|
|
|
ui->actionUpdateItem->setEnabled(check_allow_update());
|
2022-08-02 09:44:45 +05:30
|
|
|
});
|
2022-08-01 15:48:48 +05:30
|
|
|
|
2022-08-03 12:09:30 +05:30
|
|
|
connect(mods.get(), &ModFolderModel::updateFinished, this, [this, check_allow_update, mods] {
|
|
|
|
ui->actionUpdateItem->setEnabled(check_allow_update());
|
2022-06-05 05:48:51 +05:30
|
|
|
|
|
|
|
// Prevent a weird crash when trying to open the mods page twice in a session o.O
|
|
|
|
disconnect(mods.get(), &ModFolderModel::updateFinished, this, 0);
|
|
|
|
});
|
2022-08-02 09:44:45 +05:30
|
|
|
|
|
|
|
ModFolderPage::runningStateChanged(m_instance && m_instance->isRunning());
|
2019-08-05 00:43:50 +05:30
|
|
|
}
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
2022-08-01 15:49:20 +05:30
|
|
|
void ModFolderPage::runningStateChanged(bool running)
|
|
|
|
{
|
|
|
|
ExternalResourcesPage::runningStateChanged(running);
|
|
|
|
ui->actionDownloadItem->setEnabled(!running);
|
|
|
|
ui->actionUpdateItem->setEnabled(!running);
|
2022-10-18 20:58:23 +05:30
|
|
|
ui->actionAddItem->setEnabled(!running);
|
|
|
|
ui->actionEnableItem->setEnabled(!running);
|
|
|
|
ui->actionDisableItem->setEnabled(!running);
|
|
|
|
ui->actionRemoveItem->setEnabled(!running);
|
2022-08-01 15:49:20 +05:30
|
|
|
}
|
|
|
|
|
2014-07-12 21:28:23 +05:30
|
|
|
bool ModFolderPage::shouldDisplay() const
|
2014-06-30 05:32:57 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return true;
|
2014-06-30 05:32:57 +05:30
|
|
|
}
|
|
|
|
|
2022-08-10 23:18:34 +05:30
|
|
|
bool ModFolderPage::onSelectionChanged(const QModelIndex& current, const QModelIndex& previous)
|
|
|
|
{
|
|
|
|
auto sourceCurrent = m_filterModel->mapToSource(current);
|
|
|
|
int row = sourceCurrent.row();
|
|
|
|
Mod const* m = m_model->at(row);
|
|
|
|
if (m)
|
|
|
|
ui->frame->updateWithMod(*m);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-03 21:57:27 +05:30
|
|
|
void ModFolderPage::removeItem()
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!m_controlsEnabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
|
|
|
m_model->deleteMods(selection.indexes());
|
|
|
|
}
|
|
|
|
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
void ModFolderPage::installMods()
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
if (!m_controlsEnabled)
|
2019-07-15 04:37:21 +05:30
|
|
|
return;
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
if (m_instance->typeName() != "Minecraft")
|
|
|
|
return; // this is a null instance or a legacy instance
|
2022-06-05 05:48:51 +05:30
|
|
|
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
auto profile = static_cast<MinecraftInstance*>(m_instance)->getPackProfile();
|
2022-05-19 12:10:28 +05:30
|
|
|
if (profile->getModLoaders() == ModAPI::Unspecified) {
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Please install a mod loader first!"));
|
2022-01-15 00:52:15 +05:30
|
|
|
return;
|
|
|
|
}
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
|
|
|
|
ModDownloadDialog mdownload(m_model, this, m_instance);
|
2022-04-01 17:40:51 +05:30
|
|
|
if (mdownload.exec()) {
|
2022-06-12 22:21:19 +05:30
|
|
|
ConcurrentTask* tasks = new ConcurrentTask(this);
|
2022-04-01 17:40:51 +05:30
|
|
|
connect(tasks, &Task::failed, [this, tasks](QString reason) {
|
|
|
|
CustomMessageBox::selectable(this, tr("Error"), reason, QMessageBox::Critical)->show();
|
|
|
|
tasks->deleteLater();
|
|
|
|
});
|
2022-05-01 19:38:00 +05:30
|
|
|
connect(tasks, &Task::aborted, [this, tasks]() {
|
|
|
|
CustomMessageBox::selectable(this, tr("Aborted"), tr("Download stopped by user."), QMessageBox::Information)->show();
|
|
|
|
tasks->deleteLater();
|
|
|
|
});
|
2022-04-01 17:40:51 +05:30
|
|
|
connect(tasks, &Task::succeeded, [this, tasks]() {
|
|
|
|
QStringList warnings = tasks->warnings();
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
if (warnings.count())
|
|
|
|
CustomMessageBox::selectable(this, tr("Warnings"), warnings.join('\n'), QMessageBox::Warning)->show();
|
2022-06-05 05:48:51 +05:30
|
|
|
|
2022-04-01 17:40:51 +05:30
|
|
|
tasks->deleteLater();
|
|
|
|
});
|
|
|
|
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
for (auto& task : mdownload.getTasks()) {
|
2022-04-01 17:40:51 +05:30
|
|
|
tasks->addTask(task);
|
2022-01-15 00:52:15 +05:30
|
|
|
}
|
2022-05-01 19:38:00 +05:30
|
|
|
|
2022-04-01 17:40:51 +05:30
|
|
|
ProgressDialog loadDialog(this);
|
|
|
|
loadDialog.setSkipButton(true, tr("Abort"));
|
|
|
|
loadDialog.execWithTask(tasks);
|
2014-06-02 04:19:53 +05:30
|
|
|
|
refactor: Create a more clear hierarchy for some instance pages
Previously, the Shaders, Texture packs and Resource packs tabs had as
parent the ModFolderPage, making it so that making changes only to the
Mods page would require checking the id of the page for the correct one.
This was hackish and error-prone.
Now, those pages all inherit from a single class, ExternalResourcesPage,
that handles the basic behaviour of all of them, while allowing for
individual modification in code.
This is still not a clear separation, since internally, all those
resources are derived from Mods, so for now there's still some awkward
common code :/
2022-03-12 02:33:21 +05:30
|
|
|
m_model->update();
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
2022-06-05 05:48:51 +05:30
|
|
|
|
|
|
|
void ModFolderPage::updateMods()
|
|
|
|
{
|
|
|
|
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection()).indexes();
|
|
|
|
|
|
|
|
auto mods_list = m_model->selectedMods(selection);
|
|
|
|
bool use_all = mods_list.empty();
|
|
|
|
if (use_all)
|
2022-07-10 23:45:25 +05:30
|
|
|
mods_list = m_model->allMods();
|
2022-06-05 05:48:51 +05:30
|
|
|
|
|
|
|
ModUpdateDialog update_dialog(this, m_instance, m_model, mods_list);
|
|
|
|
update_dialog.checkCandidates();
|
|
|
|
|
|
|
|
if (update_dialog.aborted()) {
|
|
|
|
CustomMessageBox::selectable(this, tr("Aborted"), tr("The mod updater was aborted!"), QMessageBox::Warning)->show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (update_dialog.noUpdates()) {
|
2022-07-19 21:33:45 +05:30
|
|
|
QString message{ tr("'%1' is up-to-date! :)").arg(mods_list.front()->name()) };
|
|
|
|
if (mods_list.size() > 1) {
|
|
|
|
if (use_all) {
|
|
|
|
message = tr("All mods are up-to-date! :)");
|
|
|
|
} else {
|
|
|
|
message = tr("All selected mods are up-to-date! :)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CustomMessageBox::selectable(this, tr("Update checker"), message)
|
2022-06-05 05:48:51 +05:30
|
|
|
->exec();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (update_dialog.exec()) {
|
|
|
|
ConcurrentTask* tasks = new ConcurrentTask(this);
|
|
|
|
connect(tasks, &Task::failed, [this, tasks](QString reason) {
|
|
|
|
CustomMessageBox::selectable(this, tr("Error"), reason, QMessageBox::Critical)->show();
|
|
|
|
tasks->deleteLater();
|
|
|
|
});
|
|
|
|
connect(tasks, &Task::aborted, [this, tasks]() {
|
|
|
|
CustomMessageBox::selectable(this, tr("Aborted"), tr("Download stopped by user."), QMessageBox::Information)->show();
|
|
|
|
tasks->deleteLater();
|
|
|
|
});
|
|
|
|
connect(tasks, &Task::succeeded, [this, tasks]() {
|
|
|
|
QStringList warnings = tasks->warnings();
|
|
|
|
if (warnings.count()) {
|
|
|
|
CustomMessageBox::selectable(this, tr("Warnings"), warnings.join('\n'), QMessageBox::Warning)->show();
|
|
|
|
}
|
|
|
|
tasks->deleteLater();
|
|
|
|
});
|
|
|
|
|
|
|
|
for (auto task : update_dialog.getTasks()) {
|
|
|
|
tasks->addTask(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgressDialog loadDialog(this);
|
|
|
|
loadDialog.setSkipButton(true, tr("Abort"));
|
|
|
|
loadDialog.execWithTask(tasks);
|
|
|
|
|
|
|
|
m_model->update();
|
|
|
|
}
|
|
|
|
}
|
2022-08-09 03:10:25 +05:30
|
|
|
|
|
|
|
CoreModFolderPage::CoreModFolderPage(BaseInstance* inst, std::shared_ptr<ModFolderModel> mods, QWidget* parent)
|
|
|
|
: ModFolderPage(inst, mods, parent)
|
|
|
|
{}
|
|
|
|
|
|
|
|
bool CoreModFolderPage::shouldDisplay() const
|
|
|
|
{
|
|
|
|
if (ModFolderPage::shouldDisplay()) {
|
|
|
|
auto inst = dynamic_cast<MinecraftInstance*>(m_instance);
|
|
|
|
if (!inst)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
auto version = inst->getPackProfile();
|
|
|
|
|
|
|
|
if (!version)
|
|
|
|
return true;
|
|
|
|
if (!version->getComponent("net.minecraftforge"))
|
|
|
|
return false;
|
|
|
|
if (!version->getComponent("net.minecraft"))
|
|
|
|
return false;
|
|
|
|
if (version->getComponent("net.minecraft")->getReleaseDateTime() < g_VersionFilterData.legacyCutoffDate)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|