PrismLauncher/gui/dialogs/InstanceEditDialog.cpp

567 lines
14 KiB
C++
Raw Normal View History

2013-08-28 03:38:29 +01:00
/* Copyright 2013 MultiMC Contributors
*
2013-08-28 03:38:29 +01:00
* 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
*
2013-08-28 03:38:29 +01:00
* 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.
*/
#include "MultiMC.h"
2013-08-28 03:38:29 +01:00
#include <pathutils.h>
#include <QFileDialog>
#include <QMessageBox>
2013-08-28 03:38:29 +01:00
#include <QDebug>
#include <QEvent>
#include <QKeyEvent>
#include <QDesktopServices>
2013-08-28 03:38:29 +01:00
#include "InstanceEditDialog.h"
#include "ui_InstanceEditDialog.h"
#include "gui/Platform.h"
#include "gui/dialogs/CustomMessageBox.h"
#include "gui/dialogs/VersionSelectDialog.h"
#include "gui/dialogs/ProgressDialog.h"
#include "InstanceSettings.h"
#include "logic/ModList.h"
2014-03-01 22:06:47 +00:00
#include "logic/VersionFinal.h"
#include "logic/EnabledItemFilter.h"
#include "logic/forge/ForgeVersionList.h"
#include "logic/forge/ForgeInstaller.h"
#include "logic/liteloader/LiteLoaderVersionList.h"
#include "logic/liteloader/LiteLoaderInstaller.h"
#include "logic/OneSixVersionBuilder.h"
#include "logic/auth/MojangAccountList.h"
#include <QAbstractItemModel>
#include <logic/Mod.h>
#include "CustomMessageBox.h"
#include <QDesktopServices>
#include <QMessageBox>
#include <QString>
#include <QUrl>
bool lastfirst(QModelIndexList &list, int &first, int &last)
{
if (!list.size())
return false;
first = last = list[0].row();
for (auto item : list)
{
int row = item.row();
if (row < first)
first = row;
if (row > last)
last = row;
}
return true;
}
void showWebsiteForMod(QWidget *parentDlg, Mod &m)
{
QString url = m.homeurl();
if (url.size())
{
// catch the cases where the protocol is missing
if (!url.startsWith("http"))
{
url = "http://" + url;
}
QDesktopServices::openUrl(url);
}
else
{
CustomMessageBox::selectable(
parentDlg, QObject::tr("How sad!"),
QObject::tr("The mod author didn't provide a website link for this mod."),
QMessageBox::Warning);
}
}
InstanceEditDialog::InstanceEditDialog(OneSixInstance *inst, QWidget *parent)
: QDialog(parent), ui(new Ui::InstanceEditDialog), m_inst(inst)
2013-08-28 03:38:29 +01:00
{
MultiMCPlatform::fixWM_CLASS(this);
2013-08-28 03:38:29 +01:00
ui->setupUi(this);
// libraries!
m_version = m_inst->getFullVersion();
if (m_version)
2013-08-28 03:38:29 +01:00
{
main_model = new EnabledItemFilter(this);
main_model->setActive(true);
2013-10-06 00:13:40 +01:00
main_model->setSourceModel(m_version.get());
ui->libraryTreeView->setModel(main_model);
ui->libraryTreeView->installEventFilter(this);
connect(ui->libraryTreeView->selectionModel(), &QItemSelectionModel::currentChanged,
this, &InstanceEditDialog::versionCurrent);
updateVersionControls();
}
else
{
disableVersionControls();
2013-08-28 03:38:29 +01:00
}
// Loader mods
{
ensureFolderPathExists(m_inst->loaderModsDir());
m_mods = m_inst->loaderModList();
2013-10-06 00:13:40 +01:00
ui->loaderModTreeView->setModel(m_mods.get());
ui->loaderModTreeView->installEventFilter(this);
2013-08-28 03:38:29 +01:00
m_mods->startWatching();
auto smodel = ui->loaderModTreeView->selectionModel();
connect(smodel, SIGNAL(currentChanged(QModelIndex, QModelIndex)),
SLOT(loaderCurrent(QModelIndex, QModelIndex)));
2013-08-28 03:38:29 +01:00
}
// Core mods
{
ensureFolderPathExists(m_inst->coreModsDir());
m_coremods = m_inst->coreModList();
ui->coreModsTreeView->setModel(m_coremods.get());
ui->coreModsTreeView->installEventFilter(this);
m_coremods->startWatching();
auto smodel = ui->coreModsTreeView->selectionModel();
connect(smodel, SIGNAL(currentChanged(QModelIndex, QModelIndex)),
SLOT(coreCurrent(QModelIndex, QModelIndex)));
}
2013-08-28 03:38:29 +01:00
// resource packs
{
ensureFolderPathExists(m_inst->resourcePacksDir());
m_resourcepacks = m_inst->resourcePackList();
2013-10-06 00:13:40 +01:00
ui->resPackTreeView->setModel(m_resourcepacks.get());
ui->resPackTreeView->installEventFilter(this);
2013-08-28 03:38:29 +01:00
m_resourcepacks->startWatching();
}
connect(m_inst, &OneSixInstance::versionReloaded, this,
&InstanceEditDialog::updateVersionControls);
2013-08-28 03:38:29 +01:00
}
InstanceEditDialog::~InstanceEditDialog()
2013-08-28 03:38:29 +01:00
{
m_mods->stopWatching();
m_resourcepacks->stopWatching();
m_coremods->stopWatching();
2013-08-28 03:38:29 +01:00
delete ui;
}
void InstanceEditDialog::updateVersionControls()
{
ui->forgeBtn->setEnabled(true);
2014-02-19 21:34:17 +00:00
ui->liteloaderBtn->setEnabled(true);
}
void InstanceEditDialog::disableVersionControls()
{
ui->forgeBtn->setEnabled(false);
2013-12-29 03:17:52 +00:00
ui->liteloaderBtn->setEnabled(false);
ui->reloadLibrariesBtn->setEnabled(false);
ui->removeLibraryBtn->setEnabled(false);
}
bool InstanceEditDialog::reloadInstanceVersion()
{
try
{
m_inst->reloadVersion();
return true;
}
catch (MMCError &e)
{
QMessageBox::critical(this, tr("Error"), e.cause());
return false;
}
catch (...)
{
QMessageBox::critical(
this, tr("Error"),
tr("Failed to load the version description file for reasons unknown."));
return false;
}
}
void InstanceEditDialog::on_settingsBtn_clicked()
{
InstanceSettings settings(&m_inst->settings(), this);
settings.setWindowTitle(tr("Instance settings"));
settings.exec();
}
void InstanceEditDialog::on_reloadLibrariesBtn_clicked()
{
reloadInstanceVersion();
}
void InstanceEditDialog::on_removeLibraryBtn_clicked()
{
if (ui->libraryTreeView->currentIndex().isValid())
{
// FIXME: use actual model, not reloading.
if (!m_version->remove(ui->libraryTreeView->currentIndex().row()))
2013-12-30 13:45:59 +00:00
{
QMessageBox::critical(this, tr("Error"), tr("Couldn't remove file"));
}
}
}
void InstanceEditDialog::on_resetLibraryOrderBtn_clicked()
{
try
{
m_version->resetOrder();
}
catch (MMCError &e)
{
QMessageBox::critical(this, tr("Error"), e.cause());
}
}
void InstanceEditDialog::on_moveLibraryUpBtn_clicked()
{
if (ui->libraryTreeView->selectionModel()->selectedRows().isEmpty())
{
return;
}
try
{
const int row = ui->libraryTreeView->selectionModel()->selectedRows().first().row();
const int newRow = 0;m_version->move(row, VersionFinal::MoveUp);
//ui->libraryTreeView->selectionModel()->setCurrentIndex(m_version->index(newRow), QItemSelectionModel::ClearAndSelect);
}
catch (MMCError &e)
{
QMessageBox::critical(this, tr("Error"), e.cause());
}
}
2014-03-03 00:44:07 +00:00
void InstanceEditDialog::on_moveLibraryDownBtn_clicked()
{
if (ui->libraryTreeView->selectionModel()->selectedRows().isEmpty())
{
return;
}
try
{
const int row = ui->libraryTreeView->selectionModel()->selectedRows().first().row();
const int newRow = 0;m_version->move(row, VersionFinal::MoveDown);
//ui->libraryTreeView->selectionModel()->setCurrentIndex(m_version->index(newRow), QItemSelectionModel::ClearAndSelect);
}
catch (MMCError &e)
{
QMessageBox::critical(this, tr("Error"), e.cause());
}
}
void InstanceEditDialog::on_changeMCVersionBtn_clicked()
{
VersionSelectDialog vselect(m_inst->versionList().get(), tr("Change Minecraft version"), this);
if (!vselect.exec() || !vselect.selectedVersion())
return;
if (!MMC->accounts()->anyAccountIsValid())
{
CustomMessageBox::selectable(
this, tr("Error"),
tr("MultiMC cannot download Minecraft or update instances unless you have at least "
"one account added.\nPlease add your Mojang or Minecraft account."),
QMessageBox::Warning)->show();
return;
}
if (m_inst->versionIsCustom())
{
auto result = CustomMessageBox::selectable(
this, tr("Are you sure?"),
tr("This will remove any library/version customization you did previously. "
"This includes things like Forge install and similar."),
QMessageBox::Warning, QMessageBox::Ok | QMessageBox::Abort,
QMessageBox::Abort)->exec();
if (result != QMessageBox::Ok)
return;
m_version->revertToVanilla();
reloadInstanceVersion();
}
m_inst->setIntendedVersionId(vselect.selectedVersion()->descriptor());
auto updateTask = m_inst->doUpdate();
if (!updateTask)
{
return;
}
ProgressDialog tDialog(this);
connect(updateTask.get(), SIGNAL(failed(QString)), SLOT(onGameUpdateError(QString)));
tDialog.exec(updateTask.get());
}
void InstanceEditDialog::on_forgeBtn_clicked()
{
// FIXME: use actual model, not reloading. Move logic to model.
2014-03-30 23:19:43 +01:00
if (m_version->hasFtbPack())
{
if (QMessageBox::question(this, tr("Revert?"),
tr("This action will remove the FTB pack version patch. Continue?")) !=
QMessageBox::Yes)
{
return;
}
m_version->removeFtbPack();
reloadInstanceVersion();
}
if (m_version->usesLegacyCustomJson())
{
if (QMessageBox::question(this, tr("Revert?"),
tr("This action will remove your custom.json. Continue?")) !=
QMessageBox::Yes)
{
return;
}
m_version->revertToVanilla();
reloadInstanceVersion();
}
2013-10-06 13:43:46 +01:00
VersionSelectDialog vselect(MMC->forgelist().get(), tr("Select Forge version"), this);
2014-05-04 12:20:42 +01:00
vselect.setExactFilter(1, m_inst->currentVersionId());
vselect.setEmptyString(tr("No Forge versions are currently available for Minecraft ") +
m_inst->currentVersionId());
if (vselect.exec() && vselect.selectedVersion())
{
ProgressDialog dialog(this);
dialog.exec(ForgeInstaller().createInstallTask(m_inst, vselect.selectedVersion(), this));
}
}
void InstanceEditDialog::on_liteloaderBtn_clicked()
2013-12-28 13:22:36 +00:00
{
2014-03-30 23:19:43 +01:00
if (m_version->hasFtbPack())
{
if (QMessageBox::question(this, tr("Revert?"),
tr("This action will remove the FTB pack version patch. Continue?")) !=
QMessageBox::Yes)
{
return;
}
m_version->removeFtbPack();
reloadInstanceVersion();
}
if (m_version->usesLegacyCustomJson())
{
if (QMessageBox::question(this, tr("Revert?"),
tr("This action will remove your custom.json. Continue?")) !=
QMessageBox::Yes)
{
return;
}
m_version->revertToVanilla();
reloadInstanceVersion();
}
VersionSelectDialog vselect(MMC->liteloaderlist().get(), tr("Select LiteLoader version"),
this);
2014-05-04 12:20:42 +01:00
vselect.setExactFilter(1, m_inst->currentVersionId());
2014-02-19 21:34:17 +00:00
vselect.setEmptyString(tr("No LiteLoader versions are currently available for Minecraft ") +
m_inst->currentVersionId());
2014-02-19 21:34:17 +00:00
if (vselect.exec() && vselect.selectedVersion())
{
ProgressDialog dialog(this);
dialog.exec(LiteLoaderInstaller().createInstallTask(m_inst, vselect.selectedVersion(), this));
}
2013-12-28 13:22:36 +00:00
}
bool InstanceEditDialog::loaderListFilter(QKeyEvent *keyEvent)
2013-08-28 03:38:29 +01:00
{
switch (keyEvent->key())
2013-08-28 03:38:29 +01:00
{
case Qt::Key_Delete:
on_rmModBtn_clicked();
return true;
case Qt::Key_Plus:
on_addModBtn_clicked();
return true;
default:
break;
2013-08-28 03:38:29 +01:00
}
return QDialog::eventFilter(ui->loaderModTreeView, keyEvent);
2013-08-28 03:38:29 +01:00
}
bool InstanceEditDialog::coreListFilter(QKeyEvent *keyEvent)
{
switch (keyEvent->key())
{
case Qt::Key_Delete:
on_rmCoreBtn_clicked();
return true;
case Qt::Key_Plus:
on_addCoreBtn_clicked();
return true;
default:
break;
}
return QDialog::eventFilter(ui->coreModsTreeView, keyEvent);
}
bool InstanceEditDialog::resourcePackListFilter(QKeyEvent *keyEvent)
2013-08-28 03:38:29 +01:00
{
switch (keyEvent->key())
2013-08-28 03:38:29 +01:00
{
case Qt::Key_Delete:
on_rmResPackBtn_clicked();
return true;
case Qt::Key_Plus:
on_addResPackBtn_clicked();
return true;
default:
break;
2013-08-28 03:38:29 +01:00
}
return QDialog::eventFilter(ui->resPackTreeView, keyEvent);
2013-08-28 03:38:29 +01:00
}
bool InstanceEditDialog::eventFilter(QObject *obj, QEvent *ev)
2013-08-28 03:38:29 +01:00
{
if (ev->type() != QEvent::KeyPress)
{
return QDialog::eventFilter(obj, ev);
2013-08-28 03:38:29 +01:00
}
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(ev);
if (obj == ui->loaderModTreeView)
2013-08-28 03:38:29 +01:00
return loaderListFilter(keyEvent);
if (obj == ui->coreModsTreeView)
return coreListFilter(keyEvent);
if (obj == ui->resPackTreeView)
2013-08-28 03:38:29 +01:00
return resourcePackListFilter(keyEvent);
return QDialog::eventFilter(obj, ev);
2013-08-28 03:38:29 +01:00
}
void InstanceEditDialog::on_buttonBox_rejected()
2013-08-28 03:38:29 +01:00
{
close();
}
void InstanceEditDialog::on_addModBtn_clicked()
2013-08-28 03:38:29 +01:00
{
QStringList fileNames = QFileDialog::getOpenFileNames(
this, QApplication::translate("InstanceEditDialog", "Select Loader Mods"));
for (auto filename : fileNames)
2013-08-28 03:38:29 +01:00
{
m_mods->stopWatching();
m_mods->installMod(QFileInfo(filename));
m_mods->startWatching();
}
}
void InstanceEditDialog::on_rmModBtn_clicked()
2013-08-28 03:38:29 +01:00
{
int first, last;
auto list = ui->loaderModTreeView->selectionModel()->selectedRows();
if (!lastfirst(list, first, last))
2013-08-28 03:38:29 +01:00
return;
m_mods->stopWatching();
m_mods->deleteMods(first, last);
m_mods->startWatching();
}
void InstanceEditDialog::on_viewModBtn_clicked()
2013-08-28 03:38:29 +01:00
{
openDirInDefaultProgram(m_inst->loaderModsDir(), true);
}
void InstanceEditDialog::on_addCoreBtn_clicked()
{
//: Title of core mod selection dialog
QStringList fileNames = QFileDialog::getOpenFileNames(this, tr("Select Core Mods"));
for (auto filename : fileNames)
{
m_coremods->stopWatching();
m_coremods->installMod(QFileInfo(filename));
m_coremods->startWatching();
}
}
void InstanceEditDialog::on_rmCoreBtn_clicked()
{
int first, last;
auto list = ui->coreModsTreeView->selectionModel()->selectedRows();
if (!lastfirst(list, first, last))
return;
m_coremods->stopWatching();
m_coremods->deleteMods(first, last);
m_coremods->startWatching();
}
void InstanceEditDialog::on_viewCoreBtn_clicked()
{
openDirInDefaultProgram(m_inst->coreModsDir(), true);
}
void InstanceEditDialog::on_addResPackBtn_clicked()
2013-08-28 03:38:29 +01:00
{
QStringList fileNames = QFileDialog::getOpenFileNames(
this, QApplication::translate("InstanceEditDialog", "Select Resource Packs"));
for (auto filename : fileNames)
2013-08-28 03:38:29 +01:00
{
m_resourcepacks->stopWatching();
m_resourcepacks->installMod(QFileInfo(filename));
m_resourcepacks->startWatching();
}
}
void InstanceEditDialog::on_rmResPackBtn_clicked()
2013-08-28 03:38:29 +01:00
{
int first, last;
auto list = ui->resPackTreeView->selectionModel()->selectedRows();
if (!lastfirst(list, first, last))
2013-08-28 03:38:29 +01:00
return;
m_resourcepacks->stopWatching();
m_resourcepacks->deleteMods(first, last);
m_resourcepacks->startWatching();
}
void InstanceEditDialog::on_viewResPackBtn_clicked()
2013-08-28 03:38:29 +01:00
{
openDirInDefaultProgram(m_inst->resourcePacksDir(), true);
}
void InstanceEditDialog::loaderCurrent(QModelIndex current, QModelIndex previous)
{
if (!current.isValid())
{
ui->frame->clear();
return;
}
int row = current.row();
Mod &m = m_mods->operator[](row);
ui->frame->updateWithMod(m);
}
void InstanceEditDialog::versionCurrent(const QModelIndex &current,
const QModelIndex &previous)
{
if (!current.isValid())
{
ui->removeLibraryBtn->setDisabled(true);
}
else
{
ui->removeLibraryBtn->setEnabled(m_version->canRemove(current.row()));
}
}
void InstanceEditDialog::coreCurrent(QModelIndex current, QModelIndex previous)
{
if (!current.isValid())
{
ui->coreMIFrame->clear();
return;
}
int row = current.row();
Mod &m = m_coremods->operator[](row);
ui->coreMIFrame->updateWithMod(m);
}