2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2014-06-02 04:19:53 +05:30
|
|
|
*
|
|
|
|
* 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-07-13 02:32:52 +05:30
|
|
|
#include "ModFolderPage.h"
|
|
|
|
#include "ui_ModFolderPage.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QEvent>
|
|
|
|
#include <QKeyEvent>
|
|
|
|
#include <QAbstractItemModel>
|
2019-07-16 05:00:53 +05:30
|
|
|
#include <QMenu>
|
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
|
|
|
|
|
|
|
#include "ui/dialogs/CustomMessageBox.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
#include "ui/dialogs/ModDownloadDialog.h"
|
2021-11-22 08:25:16 +05:30
|
|
|
#include "ui/GuiUtil.h"
|
|
|
|
|
|
|
|
#include "DesktopServices.h"
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
#include "minecraft/mod/ModFolderModel.h"
|
|
|
|
#include "minecraft/mod/Mod.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "minecraft/VersionFilterData.h"
|
2020-06-27 15:32:31 +05:30
|
|
|
#include "minecraft/PackProfile.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2019-07-30 04:55:37 +05:30
|
|
|
#include "Version.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
#include "ui/dialogs/ProgressDialog.h"
|
2019-07-30 04:46:56 +05:30
|
|
|
|
|
|
|
namespace {
|
|
|
|
// FIXME: wasteful
|
|
|
|
void RemoveThePrefix(QString & string) {
|
|
|
|
QRegularExpression regex(QStringLiteral("^(([Tt][Hh][eE])|([Tt][eE][Hh])) +"));
|
|
|
|
string.remove(regex);
|
|
|
|
string = string.trimmed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ModSortProxy : public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ModSortProxy(QObject *parent = 0) : QSortFilterProxyModel(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2020-01-09 01:42:45 +05:30
|
|
|
bool filterAcceptsRow(int source_row, const QModelIndex & source_parent) const override {
|
|
|
|
ModFolderModel *model = qobject_cast<ModFolderModel *>(sourceModel());
|
|
|
|
if(!model) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const auto &mod = model->at(source_row);
|
|
|
|
if(mod.name().contains(filterRegExp())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if(mod.description().contains(filterRegExp())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
for(auto & author: mod.authors()) {
|
|
|
|
if (author.contains(filterRegExp())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-30 04:46:56 +05:30
|
|
|
bool lessThan(const QModelIndex & source_left, const QModelIndex & source_right) const override
|
|
|
|
{
|
2019-08-04 06:57:53 +05:30
|
|
|
ModFolderModel *model = qobject_cast<ModFolderModel *>(sourceModel());
|
2019-07-30 04:46:56 +05:30
|
|
|
if(
|
|
|
|
!model ||
|
|
|
|
!source_left.isValid() ||
|
|
|
|
!source_right.isValid() ||
|
|
|
|
source_left.column() != source_right.column()
|
|
|
|
) {
|
|
|
|
return QSortFilterProxyModel::lessThan(source_left, source_right);
|
|
|
|
}
|
|
|
|
|
|
|
|
// we are now guaranteed to have two valid indexes in the same column... we love the provided invariants unconditionally and proceed.
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
auto column = (ModFolderModel::Columns) source_left.column();
|
2019-07-31 04:58:55 +05:30
|
|
|
bool invert = false;
|
2019-07-30 04:46:56 +05:30
|
|
|
switch(column) {
|
2019-07-31 04:58:55 +05:30
|
|
|
// GH-2550 - sort by enabled/disabled
|
2019-08-04 06:57:53 +05:30
|
|
|
case ModFolderModel::ActiveColumn: {
|
2019-07-31 04:58:55 +05:30
|
|
|
auto dataL = source_left.data(Qt::CheckStateRole).toBool();
|
|
|
|
auto dataR = source_right.data(Qt::CheckStateRole).toBool();
|
|
|
|
if(dataL != dataR) {
|
|
|
|
return dataL > dataR;
|
|
|
|
}
|
|
|
|
// fallthrough
|
|
|
|
invert = sortOrder() == Qt::DescendingOrder;
|
|
|
|
}
|
2019-07-30 04:46:56 +05:30
|
|
|
// GH-2722 - sort mod names in a way that discards "The" prefixes
|
2019-08-04 06:57:53 +05:30
|
|
|
case ModFolderModel::NameColumn: {
|
|
|
|
auto dataL = model->data(model->index(source_left.row(), ModFolderModel::NameColumn)).toString();
|
2019-07-30 04:46:56 +05:30
|
|
|
RemoveThePrefix(dataL);
|
2019-08-04 06:57:53 +05:30
|
|
|
auto dataR = model->data(model->index(source_right.row(), ModFolderModel::NameColumn)).toString();
|
2019-07-30 04:46:56 +05:30
|
|
|
RemoveThePrefix(dataR);
|
|
|
|
|
2019-07-31 04:58:55 +05:30
|
|
|
auto less = dataL.compare(dataR, sortCaseSensitivity());
|
|
|
|
if(less != 0) {
|
|
|
|
return invert ? (less > 0) : (less < 0);
|
|
|
|
}
|
|
|
|
// fallthrough
|
|
|
|
invert = sortOrder() == Qt::DescendingOrder;
|
2019-07-30 04:46:56 +05:30
|
|
|
}
|
|
|
|
// GH-2762 - sort versions by parsing them as versions
|
2019-08-04 06:57:53 +05:30
|
|
|
case ModFolderModel::VersionColumn: {
|
|
|
|
auto dataL = Version(model->data(model->index(source_left.row(), ModFolderModel::VersionColumn)).toString());
|
|
|
|
auto dataR = Version(model->data(model->index(source_right.row(), ModFolderModel::VersionColumn)).toString());
|
2019-07-31 04:58:55 +05:30
|
|
|
return invert ? (dataL > dataR) : (dataL < dataR);
|
2019-07-30 04:46:56 +05:30
|
|
|
}
|
|
|
|
default: {
|
|
|
|
return QSortFilterProxyModel::lessThan(source_left, source_right);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-25 04:32:30 +05:30
|
|
|
ModFolderPage::ModFolderPage(
|
|
|
|
BaseInstance *inst,
|
2019-08-04 06:57:53 +05:30
|
|
|
std::shared_ptr<ModFolderModel> mods,
|
2019-07-25 04:32:30 +05:30
|
|
|
QString id,
|
|
|
|
QString iconName,
|
|
|
|
QString displayName,
|
|
|
|
QString helpPage,
|
|
|
|
QWidget *parent
|
|
|
|
) :
|
|
|
|
QMainWindow(parent),
|
|
|
|
ui(new Ui::ModFolderPage)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2022-03-03 18:21:46 +05:30
|
|
|
|
|
|
|
// This is structured like that so that these changes
|
|
|
|
// do not affect the Resouce pack and Shader pack tabs
|
2022-01-29 00:02:42 +05:30
|
|
|
if(id == "mods") {
|
2022-03-03 18:21:46 +05:30
|
|
|
auto act = new QAction(tr("Download mods"), this);
|
|
|
|
act->setToolTip(tr("Download mods from online mod platforms"));
|
|
|
|
ui->actionsToolbar->insertActionBefore(ui->actionAdd, act);
|
2022-01-29 00:02:42 +05:30
|
|
|
connect(act, &QAction::triggered, this, &ModFolderPage::on_actionInstall_mods_triggered);
|
2022-03-03 18:21:46 +05:30
|
|
|
|
|
|
|
ui->actionAdd->setText("Add .jar");
|
|
|
|
ui->actionAdd->setToolTip("Add mods via local file");
|
2022-03-03 12:32:22 +05:30
|
|
|
}
|
2022-03-03 18:21:46 +05:30
|
|
|
|
2019-07-23 04:18:14 +05:30
|
|
|
ui->actionsToolbar->insertSpacer(ui->actionView_configs);
|
2019-07-17 05:31:29 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
m_inst = inst;
|
2019-07-15 04:37:21 +05:30
|
|
|
on_RunningState_changed(m_inst && m_inst->isRunning());
|
2018-07-15 18:21:05 +05:30
|
|
|
m_mods = mods;
|
|
|
|
m_id = id;
|
|
|
|
m_displayName = displayName;
|
|
|
|
m_iconName = iconName;
|
|
|
|
m_helpName = helpPage;
|
|
|
|
m_fileSelectionFilter = "%1 (*.zip *.jar)";
|
2019-07-30 04:46:56 +05:30
|
|
|
m_filterModel = new ModSortProxy(this);
|
2018-07-15 18:21:05 +05:30
|
|
|
m_filterModel->setDynamicSortFilter(true);
|
|
|
|
m_filterModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
m_filterModel->setSortCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
m_filterModel->setSourceModel(m_mods.get());
|
|
|
|
m_filterModel->setFilterKeyColumn(-1);
|
|
|
|
ui->modTreeView->setModel(m_filterModel);
|
|
|
|
ui->modTreeView->installEventFilter(this);
|
|
|
|
ui->modTreeView->sortByColumn(1, Qt::AscendingOrder);
|
2019-07-25 04:32:30 +05:30
|
|
|
ui->modTreeView->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
connect(ui->modTreeView, &ModListView::customContextMenuRequested, this, &ModFolderPage::ShowContextMenu);
|
2019-08-05 00:43:50 +05:30
|
|
|
connect(ui->modTreeView, &ModListView::activated, this, &ModFolderPage::modItemActivated);
|
2019-07-25 04:32:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
auto smodel = ui->modTreeView->selectionModel();
|
|
|
|
connect(smodel, &QItemSelectionModel::currentChanged, this, &ModFolderPage::modCurrent);
|
2021-06-19 03:51:12 +05:30
|
|
|
connect(ui->filterEdit, &QLineEdit::textChanged, this, &ModFolderPage::on_filterTextChanged);
|
2019-07-15 04:37:21 +05:30
|
|
|
connect(m_inst, &BaseInstance::runningStatusChanged, this, &ModFolderPage::on_RunningState_changed);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
2019-08-05 04:14:56 +05:30
|
|
|
void ModFolderPage::modItemActivated(const QModelIndex&)
|
2019-08-05 00:43:50 +05:30
|
|
|
{
|
2019-08-05 04:14:56 +05:30
|
|
|
if(!m_controlsEnabled) {
|
|
|
|
return;
|
2019-08-05 00:43:50 +05:30
|
|
|
}
|
2019-08-05 04:14:56 +05:30
|
|
|
auto selection = m_filterModel->mapSelectionToSource(ui->modTreeView->selectionModel()->selection());
|
|
|
|
m_mods->setModStatus(selection.indexes(), ModFolderModel::Toggle);
|
2019-08-05 00:43:50 +05:30
|
|
|
}
|
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
QMenu * ModFolderPage::createPopupMenu()
|
|
|
|
{
|
|
|
|
QMenu* filteredMenu = QMainWindow::createPopupMenu();
|
|
|
|
filteredMenu->removeAction(ui->actionsToolbar->toggleViewAction() );
|
|
|
|
return filteredMenu;
|
|
|
|
}
|
|
|
|
|
2019-07-25 04:32:30 +05:30
|
|
|
void ModFolderPage::ShowContextMenu(const QPoint& pos)
|
|
|
|
{
|
|
|
|
auto menu = ui->actionsToolbar->createContextMenu(this, tr("Context menu"));
|
|
|
|
menu->exec(ui->modTreeView->mapToGlobal(pos));
|
|
|
|
delete menu;
|
|
|
|
}
|
|
|
|
|
2018-03-19 07:06:12 +05:30
|
|
|
void ModFolderPage::openedImpl()
|
2015-05-12 02:20:35 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_mods->startWatching();
|
2015-05-12 02:20:35 +05:30
|
|
|
}
|
|
|
|
|
2018-03-19 07:06:12 +05:30
|
|
|
void ModFolderPage::closedImpl()
|
2015-05-12 02:20:35 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_mods->stopWatching();
|
2015-05-12 02:20:35 +05:30
|
|
|
}
|
|
|
|
|
2016-08-05 01:24:25 +05:30
|
|
|
void ModFolderPage::on_filterTextChanged(const QString& newContents)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_viewFilter = newContents;
|
|
|
|
m_filterModel->setFilterFixedString(m_viewFilter);
|
2016-08-05 01:24:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
CoreModFolderPage::CoreModFolderPage(BaseInstance *inst, std::shared_ptr<ModFolderModel> mods,
|
2018-07-15 18:21:05 +05:30
|
|
|
QString id, QString iconName, QString displayName,
|
|
|
|
QString helpPage, QWidget *parent)
|
|
|
|
: ModFolderPage(inst, mods, id, iconName, displayName, helpPage, parent)
|
2014-07-10 04:17:08 +05:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-06-02 04:19:53 +05:30
|
|
|
ModFolderPage::~ModFolderPage()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_mods->stopWatching();
|
|
|
|
delete ui;
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
2019-07-15 04:37:21 +05:30
|
|
|
void ModFolderPage::on_RunningState_changed(bool running)
|
|
|
|
{
|
|
|
|
if(m_controlsEnabled == !running) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_controlsEnabled = !running;
|
2019-07-16 05:00:53 +05:30
|
|
|
ui->actionAdd->setEnabled(m_controlsEnabled);
|
|
|
|
ui->actionDisable->setEnabled(m_controlsEnabled);
|
|
|
|
ui->actionEnable->setEnabled(m_controlsEnabled);
|
|
|
|
ui->actionRemove->setEnabled(m_controlsEnabled);
|
2019-07-15 04:37:21 +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
|
|
|
}
|
|
|
|
|
2014-07-12 21:28:23 +05:30
|
|
|
bool CoreModFolderPage::shouldDisplay() const
|
2014-07-10 04:17:08 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (ModFolderPage::shouldDisplay())
|
|
|
|
{
|
|
|
|
auto inst = dynamic_cast<MinecraftInstance *>(m_inst);
|
|
|
|
if (!inst)
|
|
|
|
return true;
|
2020-06-27 15:32:31 +05:30
|
|
|
auto version = inst->getPackProfile();
|
2018-07-15 18:21:05 +05:30
|
|
|
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;
|
2014-07-10 04:17:08 +05:30
|
|
|
}
|
|
|
|
|
2014-06-02 04:19:53 +05:30
|
|
|
bool ModFolderPage::modListFilter(QKeyEvent *keyEvent)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
switch (keyEvent->key())
|
|
|
|
{
|
|
|
|
case Qt::Key_Delete:
|
2019-07-16 05:00:53 +05:30
|
|
|
on_actionRemove_triggered();
|
2018-07-15 18:21:05 +05:30
|
|
|
return true;
|
|
|
|
case Qt::Key_Plus:
|
2019-07-16 05:00:53 +05:30
|
|
|
on_actionAdd_triggered();
|
2018-07-15 18:21:05 +05:30
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return QWidget::eventFilter(ui->modTreeView, keyEvent);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool ModFolderPage::eventFilter(QObject *obj, QEvent *ev)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (ev->type() != QEvent::KeyPress)
|
|
|
|
{
|
|
|
|
return QWidget::eventFilter(obj, ev);
|
|
|
|
}
|
|
|
|
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(ev);
|
|
|
|
if (obj == ui->modTreeView)
|
|
|
|
return modListFilter(keyEvent);
|
|
|
|
return QWidget::eventFilter(obj, ev);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
void ModFolderPage::on_actionAdd_triggered()
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
2019-07-15 04:37:21 +05:30
|
|
|
if(!m_controlsEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
auto list = GuiUtil::BrowseForFiles(
|
|
|
|
m_helpName,
|
|
|
|
tr("Select %1",
|
|
|
|
"Select whatever type of files the page contains. Example: 'Loader Mods'")
|
|
|
|
.arg(m_displayName),
|
2021-11-20 20:52:22 +05:30
|
|
|
m_fileSelectionFilter.arg(m_displayName), APPLICATION->settings()->get("CentralModsDir").toString(),
|
2018-07-15 18:21:05 +05:30
|
|
|
this->parentWidget());
|
|
|
|
if (!list.empty())
|
|
|
|
{
|
|
|
|
for (auto filename : list)
|
|
|
|
{
|
|
|
|
m_mods->installMod(filename);
|
|
|
|
}
|
|
|
|
}
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
2015-09-10 03:23:33 +05:30
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
void ModFolderPage::on_actionEnable_triggered()
|
2016-08-05 02:46:03 +05:30
|
|
|
{
|
2019-07-15 04:37:21 +05:30
|
|
|
if(!m_controlsEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
auto selection = m_filterModel->mapSelectionToSource(ui->modTreeView->selectionModel()->selection());
|
2019-08-05 04:14:56 +05:30
|
|
|
m_mods->setModStatus(selection.indexes(), ModFolderModel::Enable);
|
2016-08-05 02:46:03 +05:30
|
|
|
}
|
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
void ModFolderPage::on_actionDisable_triggered()
|
2016-08-05 02:46:03 +05:30
|
|
|
{
|
2019-07-15 04:37:21 +05:30
|
|
|
if(!m_controlsEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
auto selection = m_filterModel->mapSelectionToSource(ui->modTreeView->selectionModel()->selection());
|
2019-08-05 04:14:56 +05:30
|
|
|
m_mods->setModStatus(selection.indexes(), ModFolderModel::Disable);
|
2016-08-05 02:46:03 +05:30
|
|
|
}
|
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
void ModFolderPage::on_actionRemove_triggered()
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
2019-07-15 04:37:21 +05:30
|
|
|
if(!m_controlsEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
auto selection = m_filterModel->mapSelectionToSource(ui->modTreeView->selectionModel()->selection());
|
|
|
|
m_mods->deleteMods(selection.indexes());
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
2022-01-14 14:13:42 +05:30
|
|
|
void ModFolderPage::on_actionInstall_mods_triggered()
|
|
|
|
{
|
|
|
|
if(!m_controlsEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
2022-01-15 00:52:15 +05:30
|
|
|
if(m_inst->typeName() != "Minecraft"){
|
|
|
|
return; //this is a null instance or a legacy instance
|
|
|
|
}
|
|
|
|
bool hasFabric = !((MinecraftInstance *)m_inst)->getPackProfile()->getComponentVersion("net.fabricmc.fabric-loader").isEmpty();
|
|
|
|
bool hasForge = !((MinecraftInstance *)m_inst)->getPackProfile()->getComponentVersion("net.minecraftforge").isEmpty();
|
|
|
|
if (!hasFabric && !hasForge) {
|
2022-01-24 11:42:19 +05:30
|
|
|
QMessageBox::critical(this,tr("Error"),tr("Please install a mod loader first!"));
|
2022-01-15 00:52:15 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
ModDownloadDialog mdownload(m_mods, this, m_inst);
|
|
|
|
if(mdownload.exec()) {
|
2022-02-22 06:04:06 +05:30
|
|
|
for(auto task : mdownload.getTasks()){
|
2022-01-18 16:58:55 +05:30
|
|
|
connect(task, &Task::failed, [this, task](QString reason) {
|
|
|
|
task->deleteLater();
|
2022-01-15 00:52:15 +05:30
|
|
|
CustomMessageBox::selectable(this, tr("Error"), reason, QMessageBox::Critical)->show();
|
|
|
|
});
|
|
|
|
connect(task, &Task::succeeded, [this, task]() {
|
|
|
|
QStringList warnings = task->warnings();
|
|
|
|
if (warnings.count()) {
|
|
|
|
CustomMessageBox::selectable(this, tr("Warnings"), warnings.join('\n'),
|
|
|
|
QMessageBox::Warning)->show();
|
|
|
|
}
|
2022-01-18 16:58:55 +05:30
|
|
|
task->deleteLater();
|
2022-01-15 00:52:15 +05:30
|
|
|
});
|
|
|
|
ProgressDialog loadDialog(this);
|
|
|
|
loadDialog.setSkipButton(true, tr("Abort"));
|
|
|
|
loadDialog.execWithTask(task);
|
|
|
|
m_mods->update();
|
|
|
|
}
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
void ModFolderPage::on_actionView_configs_triggered()
|
2016-11-26 19:29:27 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
DesktopServices::openDirectory(m_inst->instanceConfigFolder(), true);
|
2016-11-26 19:29:27 +05:30
|
|
|
}
|
|
|
|
|
2019-07-16 05:00:53 +05:30
|
|
|
void ModFolderPage::on_actionView_Folder_triggered()
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
DesktopServices::openDirectory(m_mods->dir().absolutePath(), true);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void ModFolderPage::modCurrent(const QModelIndex ¤t, const QModelIndex &previous)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!current.isValid())
|
|
|
|
{
|
|
|
|
ui->frame->clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto sourceCurrent = m_filterModel->mapToSource(current);
|
|
|
|
int row = sourceCurrent.row();
|
|
|
|
Mod &m = m_mods->operator[](row);
|
|
|
|
ui->frame->updateWithMod(m);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|