2013-08-28 08:08:29 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
2013-09-22 07:51:36 +05:30
|
|
|
*
|
2013-08-28 08:08:29 +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
|
2013-09-22 07:51:36 +05:30
|
|
|
*
|
2013-08-28 08:08:29 +05:30
|
|
|
* 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.
|
|
|
|
*/
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
#include "MultiMC.h"
|
|
|
|
|
2013-08-28 08:08:29 +05:30
|
|
|
#include <pathutils.h>
|
|
|
|
#include <QFileDialog>
|
2013-09-20 04:51:48 +05:30
|
|
|
#include <QMessageBox>
|
2013-08-28 08:08:29 +05:30
|
|
|
#include <QDebug>
|
|
|
|
#include <QEvent>
|
|
|
|
#include <QKeyEvent>
|
2013-10-08 05:06:11 +05:30
|
|
|
#include <QDesktopServices>
|
2013-08-28 08:08:29 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "OneSixModEditDialog.h"
|
|
|
|
#include "ModEditDialogCommon.h"
|
|
|
|
#include "ui_OneSixModEditDialog.h"
|
|
|
|
|
|
|
|
#include "gui/Platform.h"
|
|
|
|
#include "gui/dialogs/CustomMessageBox.h"
|
|
|
|
#include "gui/dialogs/VersionSelectDialog.h"
|
|
|
|
|
|
|
|
#include "gui/dialogs/ProgressDialog.h"
|
|
|
|
|
|
|
|
#include "logic/ModList.h"
|
|
|
|
#include "logic/OneSixVersion.h"
|
|
|
|
#include "logic/EnabledItemFilter.h"
|
|
|
|
#include "logic/lists/ForgeVersionList.h"
|
|
|
|
#include "logic/ForgeInstaller.h"
|
2013-12-28 18:52:36 +05:30
|
|
|
#include "logic/LiteLoaderInstaller.h"
|
2014-02-08 21:52:26 +05:30
|
|
|
#include "logic/OneSixVersionBuilder.h"
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
|
|
|
QMap<A, B> invert(const QMap<B, A> &in)
|
|
|
|
{
|
|
|
|
QMap<A, B> out;
|
|
|
|
for (auto it = in.begin(); it != in.end(); ++it)
|
|
|
|
{
|
|
|
|
out.insert(it.value(), it.key());
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
OneSixModEditDialog::OneSixModEditDialog(OneSixInstance *inst, QWidget *parent)
|
2013-12-01 21:04:51 +05:30
|
|
|
: QDialog(parent), ui(new Ui::OneSixModEditDialog), m_inst(inst)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
2013-11-04 07:23:05 +05:30
|
|
|
MultiMCPlatform::fixWM_CLASS(this);
|
2013-08-28 08:08:29 +05:30
|
|
|
ui->setupUi(this);
|
2013-09-22 07:51:36 +05:30
|
|
|
// libraries!
|
|
|
|
|
|
|
|
m_version = m_inst->getFullVersion();
|
|
|
|
if (m_version)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
2013-09-20 04:51:48 +05:30
|
|
|
main_model = new EnabledItemFilter(this);
|
|
|
|
main_model->setActive(true);
|
2013-10-06 04:43:40 +05:30
|
|
|
main_model->setSourceModel(m_version.get());
|
2013-09-20 04:51:48 +05:30
|
|
|
ui->libraryTreeView->setModel(main_model);
|
2013-09-22 07:51:36 +05:30
|
|
|
ui->libraryTreeView->installEventFilter(this);
|
2014-02-01 19:22:21 +05:30
|
|
|
connect(ui->libraryTreeView->selectionModel(), &QItemSelectionModel::currentChanged,
|
|
|
|
this, &OneSixModEditDialog::versionCurrent);
|
2013-09-22 07:51:36 +05:30
|
|
|
updateVersionControls();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
disableVersionControls();
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
|
|
|
// Loader mods
|
|
|
|
{
|
|
|
|
ensureFolderPathExists(m_inst->loaderModsDir());
|
|
|
|
m_mods = m_inst->loaderModList();
|
2013-10-06 04:43:40 +05:30
|
|
|
ui->loaderModTreeView->setModel(m_mods.get());
|
2013-09-22 07:51:36 +05:30
|
|
|
ui->loaderModTreeView->installEventFilter(this);
|
2013-08-28 08:08:29 +05:30
|
|
|
m_mods->startWatching();
|
2013-10-09 05:33:02 +05:30
|
|
|
auto smodel = ui->loaderModTreeView->selectionModel();
|
|
|
|
connect(smodel, SIGNAL(currentChanged(QModelIndex, QModelIndex)),
|
2013-11-04 07:23:05 +05:30
|
|
|
SLOT(loaderCurrent(QModelIndex, QModelIndex)));
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
|
|
|
// resource packs
|
|
|
|
{
|
|
|
|
ensureFolderPathExists(m_inst->resourcePacksDir());
|
|
|
|
m_resourcepacks = m_inst->resourcePackList();
|
2013-10-06 04:43:40 +05:30
|
|
|
ui->resPackTreeView->setModel(m_resourcepacks.get());
|
2013-09-22 07:51:36 +05:30
|
|
|
ui->resPackTreeView->installEventFilter(this);
|
2013-08-28 08:08:29 +05:30
|
|
|
m_resourcepacks->startWatching();
|
|
|
|
}
|
2014-01-22 12:03:32 +05:30
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
connect(m_inst, &OneSixInstance::versionReloaded, this, &OneSixModEditDialog::updateVersionControls);
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
OneSixModEditDialog::~OneSixModEditDialog()
|
|
|
|
{
|
|
|
|
m_mods->stopWatching();
|
|
|
|
m_resourcepacks->stopWatching();
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
void OneSixModEditDialog::updateVersionControls()
|
2013-09-20 04:51:48 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
ui->forgeBtn->setEnabled(true);
|
2014-01-22 19:50:48 +05:30
|
|
|
ui->liteloaderBtn->setEnabled(LiteLoaderInstaller().canApply(m_inst));
|
2014-01-24 02:01:41 +05:30
|
|
|
ui->mainClassEdit->setText(m_version->mainClass);
|
2013-09-20 04:51:48 +05:30
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
void OneSixModEditDialog::disableVersionControls()
|
|
|
|
{
|
|
|
|
ui->forgeBtn->setEnabled(false);
|
2013-12-29 08:47:52 +05:30
|
|
|
ui->liteloaderBtn->setEnabled(false);
|
2014-02-01 19:22:21 +05:30
|
|
|
ui->reloadLibrariesBtn->setEnabled(false);
|
|
|
|
ui->removeLibraryBtn->setEnabled(false);
|
2014-01-24 02:01:41 +05:30
|
|
|
ui->mainClassEdit->setText("");
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
2013-09-20 04:51:48 +05:30
|
|
|
|
2014-02-01 19:22:21 +05:30
|
|
|
void OneSixModEditDialog::on_reloadLibrariesBtn_clicked()
|
2013-09-20 04:51:48 +05:30
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
m_inst->reloadVersion(this);
|
2013-09-20 04:51:48 +05:30
|
|
|
}
|
|
|
|
|
2014-02-01 19:22:21 +05:30
|
|
|
void OneSixModEditDialog::on_removeLibraryBtn_clicked()
|
2013-12-29 22:21:16 +05:30
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
if (ui->libraryTreeView->currentIndex().isValid())
|
2013-12-29 22:21:16 +05:30
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
if (!m_version->remove(ui->libraryTreeView->currentIndex().row()))
|
2013-12-30 19:15:59 +05:30
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Couldn't remove file"));
|
|
|
|
}
|
|
|
|
else
|
2013-12-30 19:15:59 +05:30
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
m_inst->reloadVersion(this);
|
2013-12-30 19:15:59 +05:30
|
|
|
}
|
2013-12-29 22:21:16 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-08 21:52:26 +05:30
|
|
|
void OneSixModEditDialog::on_resetLibraryOrderBtn_clicked()
|
|
|
|
{
|
|
|
|
QDir(m_inst->instanceRoot()).remove("order.json");
|
|
|
|
m_inst->reloadVersion(this);
|
|
|
|
}
|
|
|
|
void OneSixModEditDialog::on_moveLibraryUpBtn_clicked()
|
|
|
|
{
|
|
|
|
|
|
|
|
QMap<QString, int> order = getExistingOrder();
|
|
|
|
if (order.size() < 2 || ui->libraryTreeView->selectionModel()->selectedIndexes().isEmpty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const int ourRow = ui->libraryTreeView->selectionModel()->selectedIndexes().first().row();
|
|
|
|
const QString ourId = m_version->versionFileId(ourRow);
|
|
|
|
const int ourOrder = order[ourId];
|
|
|
|
if (ourId.isNull() || ourId.startsWith("org.multimc."))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<int, QString> sortedOrder = invert(order);
|
|
|
|
|
|
|
|
QList<int> sortedOrders = sortedOrder.keys();
|
|
|
|
const int ourIndex = sortedOrders.indexOf(ourOrder);
|
|
|
|
if (ourIndex <= 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const int ourNewOrder = sortedOrders.at(ourIndex - 1);
|
|
|
|
order[ourId] = ourNewOrder;
|
|
|
|
order[sortedOrder[sortedOrders[ourIndex - 1]]] = ourOrder;
|
|
|
|
|
|
|
|
if (!OneSixVersionBuilder::writeOverrideOrders(order, m_inst))
|
|
|
|
{
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Couldn't save the new order"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_inst->reloadVersion(this);
|
|
|
|
ui->libraryTreeView->selectionModel()->select(m_version->index(ourRow - 1), QItemSelectionModel::SelectCurrent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void OneSixModEditDialog::on_moveLibraryDownBtn_clicked()
|
|
|
|
{
|
|
|
|
QMap<QString, int> order = getExistingOrder();
|
|
|
|
if (order.size() < 2 || ui->libraryTreeView->selectionModel()->selectedIndexes().isEmpty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const int ourRow = ui->libraryTreeView->selectionModel()->selectedIndexes().first().row();
|
|
|
|
const QString ourId = m_version->versionFileId(ourRow);
|
|
|
|
const int ourOrder = order[ourId];
|
|
|
|
if (ourId.isNull() || ourId.startsWith("org.multimc."))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<int, QString> sortedOrder = invert(order);
|
|
|
|
|
|
|
|
QList<int> sortedOrders = sortedOrder.keys();
|
|
|
|
const int ourIndex = sortedOrders.indexOf(ourOrder);
|
|
|
|
if ((ourIndex + 1) >= sortedOrders.size())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const int ourNewOrder = sortedOrders.at(ourIndex + 1);
|
|
|
|
order[ourId] = ourNewOrder;
|
|
|
|
order[sortedOrder[sortedOrders[ourIndex + 1]]] = ourOrder;
|
|
|
|
|
|
|
|
if (!OneSixVersionBuilder::writeOverrideOrders(order, m_inst))
|
|
|
|
{
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Couldn't save the new order"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_inst->reloadVersion(this);
|
|
|
|
ui->libraryTreeView->selectionModel()->select(m_version->index(ourRow + 1), QItemSelectionModel::SelectCurrent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void OneSixModEditDialog::on_forgeBtn_clicked()
|
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
if (QDir(m_inst->instanceRoot()).exists("custom.json"))
|
|
|
|
{
|
|
|
|
if (QMessageBox::question(this, tr("Revert?"), tr("This action will remove your custom.json. Continue?")) != QMessageBox::Yes)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QDir(m_inst->instanceRoot()).remove("custom.json");
|
2014-02-04 01:12:04 +05:30
|
|
|
m_inst->reloadVersion(this);
|
2014-02-01 19:22:21 +05:30
|
|
|
}
|
2013-10-06 18:13:46 +05:30
|
|
|
VersionSelectDialog vselect(MMC->forgelist().get(), tr("Select Forge version"), this);
|
2013-09-18 03:30:35 +05:30
|
|
|
vselect.setFilter(1, m_inst->currentVersionId());
|
2014-01-29 05:50:19 +05:30
|
|
|
vselect.setEmptyString(tr("No Forge versions are currently available for Minecraft ") +
|
|
|
|
m_inst->currentVersionId());
|
2013-09-18 03:30:35 +05:30
|
|
|
if (vselect.exec() && vselect.selectedVersion())
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
ForgeVersionPtr forgeVersion =
|
|
|
|
std::dynamic_pointer_cast<ForgeVersion>(vselect.selectedVersion());
|
2013-09-22 07:51:36 +05:30
|
|
|
if (!forgeVersion)
|
2013-09-20 04:51:48 +05:30
|
|
|
return;
|
2013-09-22 07:51:36 +05:30
|
|
|
auto entry = MMC->metacache()->resolveEntry("minecraftforge", forgeVersion->filename);
|
|
|
|
if (entry->stale)
|
2013-09-20 04:51:48 +05:30
|
|
|
{
|
2013-10-26 23:25:48 +05:30
|
|
|
NetJob *fjob = new NetJob("Forge download");
|
|
|
|
fjob->addNetAction(CacheDownload::make(forgeVersion->installer_url, entry));
|
2013-09-20 04:51:48 +05:30
|
|
|
ProgressDialog dlg(this);
|
|
|
|
dlg.exec(fjob);
|
2013-09-22 07:51:36 +05:30
|
|
|
if (dlg.result() == QDialog::Accepted)
|
2013-09-20 04:51:48 +05:30
|
|
|
{
|
|
|
|
// install
|
2013-09-22 07:51:36 +05:30
|
|
|
QString forgePath = entry->getFullPath();
|
|
|
|
ForgeInstaller forge(forgePath, forgeVersion->universal_url);
|
2014-01-24 02:01:41 +05:30
|
|
|
if (!forge.add(m_inst))
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-24 02:01:41 +05:30
|
|
|
QLOG_ERROR() << "Failure installing forge";
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
2013-09-20 04:51:48 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// failed to download forge :/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// install
|
2013-09-22 07:51:36 +05:30
|
|
|
QString forgePath = entry->getFullPath();
|
|
|
|
ForgeInstaller forge(forgePath, forgeVersion->universal_url);
|
2014-01-24 02:01:41 +05:30
|
|
|
if (!forge.add(m_inst))
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
2014-01-24 02:01:41 +05:30
|
|
|
QLOG_ERROR() << "Failure installing forge";
|
2013-09-22 07:51:36 +05:30
|
|
|
}
|
2013-09-20 04:51:48 +05:30
|
|
|
}
|
2013-09-18 03:30:35 +05:30
|
|
|
}
|
2014-01-27 23:50:07 +05:30
|
|
|
m_inst->reloadVersion(this);
|
2013-09-18 03:30:35 +05:30
|
|
|
}
|
|
|
|
|
2013-12-28 18:52:36 +05:30
|
|
|
void OneSixModEditDialog::on_liteloaderBtn_clicked()
|
|
|
|
{
|
2014-02-01 19:22:21 +05:30
|
|
|
if (QDir(m_inst->instanceRoot()).exists("custom.json"))
|
|
|
|
{
|
|
|
|
if (QMessageBox::question(this, tr("Revert?"), tr("This action will remove your custom.json. Continue?")) != QMessageBox::Yes)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QDir(m_inst->instanceRoot()).remove("custom.json");
|
2014-02-04 01:12:04 +05:30
|
|
|
m_inst->reloadVersion(this);
|
2014-02-01 19:22:21 +05:30
|
|
|
}
|
2014-01-22 19:50:48 +05:30
|
|
|
LiteLoaderInstaller liteloader;
|
|
|
|
if (!liteloader.canApply(m_inst))
|
2013-12-29 04:04:18 +05:30
|
|
|
{
|
|
|
|
QMessageBox::critical(
|
|
|
|
this, tr("LiteLoader"),
|
|
|
|
tr("There is no information available on how to install LiteLoader "
|
|
|
|
"into this version of Minecraft"));
|
|
|
|
return;
|
|
|
|
}
|
2014-01-22 19:50:48 +05:30
|
|
|
if (!liteloader.add(m_inst))
|
2013-12-28 18:52:36 +05:30
|
|
|
{
|
2014-01-29 05:50:19 +05:30
|
|
|
QMessageBox::critical(this, tr("LiteLoader"),
|
|
|
|
tr("For reasons unknown, the LiteLoader installation failed. "
|
|
|
|
"Check your MultiMC log files for details."));
|
2013-12-28 18:52:36 +05:30
|
|
|
}
|
2014-01-24 02:01:41 +05:30
|
|
|
else
|
|
|
|
{
|
2014-01-27 23:50:07 +05:30
|
|
|
m_inst->reloadVersion(this);
|
2014-01-24 02:01:41 +05:30
|
|
|
}
|
2013-12-28 18:52:36 +05:30
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
bool OneSixModEditDialog::loaderListFilter(QKeyEvent *keyEvent)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
switch (keyEvent->key())
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
case Qt::Key_Delete:
|
|
|
|
on_rmModBtn_clicked();
|
|
|
|
return true;
|
|
|
|
case Qt::Key_Plus:
|
|
|
|
on_addModBtn_clicked();
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
return QDialog::eventFilter(ui->loaderModTreeView, keyEvent);
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
bool OneSixModEditDialog::resourcePackListFilter(QKeyEvent *keyEvent)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
switch (keyEvent->key())
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
case Qt::Key_Delete:
|
|
|
|
on_rmResPackBtn_clicked();
|
|
|
|
return true;
|
|
|
|
case Qt::Key_Plus:
|
|
|
|
on_addResPackBtn_clicked();
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
return QDialog::eventFilter(ui->resPackTreeView, keyEvent);
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
|
|
|
|
2014-02-08 21:52:26 +05:30
|
|
|
QMap<QString, int> OneSixModEditDialog::getExistingOrder() const
|
|
|
|
{
|
|
|
|
|
|
|
|
QMap<QString, int> order;
|
|
|
|
// default
|
|
|
|
{
|
|
|
|
for (OneSixVersion::VersionFile file : m_version->versionFiles)
|
|
|
|
{
|
|
|
|
if (file.id.startsWith("org.multimc."))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
order.insert(file.id, file.order);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// overriden
|
|
|
|
{
|
|
|
|
QMap<QString, int> overridenOrder = OneSixVersionBuilder::readOverrideOrders(m_inst);
|
|
|
|
for (auto id : order.keys())
|
|
|
|
{
|
|
|
|
if (overridenOrder.contains(id))
|
|
|
|
{
|
|
|
|
order[id] = overridenOrder[id];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return order;
|
|
|
|
}
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
bool OneSixModEditDialog::eventFilter(QObject *obj, QEvent *ev)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
|
|
|
if (ev->type() != QEvent::KeyPress)
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
return QDialog::eventFilter(obj, ev);
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(ev);
|
|
|
|
if (obj == ui->loaderModTreeView)
|
2013-08-28 08:08:29 +05:30
|
|
|
return loaderListFilter(keyEvent);
|
2013-09-22 07:51:36 +05:30
|
|
|
if (obj == ui->resPackTreeView)
|
2013-08-28 08:08:29 +05:30
|
|
|
return resourcePackListFilter(keyEvent);
|
2013-09-22 07:51:36 +05:30
|
|
|
return QDialog::eventFilter(obj, ev);
|
2013-08-28 08:08:29 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixModEditDialog::on_buttonBox_rejected()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixModEditDialog::on_addModBtn_clicked()
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
QStringList fileNames = QFileDialog::getOpenFileNames(
|
|
|
|
this, QApplication::translate("LegacyModEditDialog", "Select Loader Mods"));
|
|
|
|
for (auto filename : fileNames)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
|
|
|
m_mods->stopWatching();
|
|
|
|
m_mods->installMod(QFileInfo(filename));
|
|
|
|
m_mods->startWatching();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void OneSixModEditDialog::on_rmModBtn_clicked()
|
|
|
|
{
|
|
|
|
int first, last;
|
|
|
|
auto list = ui->loaderModTreeView->selectionModel()->selectedRows();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
|
|
|
if (!lastfirst(list, first, last))
|
2013-08-28 08:08:29 +05:30
|
|
|
return;
|
|
|
|
m_mods->stopWatching();
|
|
|
|
m_mods->deleteMods(first, last);
|
|
|
|
m_mods->startWatching();
|
|
|
|
}
|
|
|
|
void OneSixModEditDialog::on_viewModBtn_clicked()
|
|
|
|
{
|
|
|
|
openDirInDefaultProgram(m_inst->loaderModsDir(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixModEditDialog::on_addResPackBtn_clicked()
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
QStringList fileNames = QFileDialog::getOpenFileNames(
|
|
|
|
this, QApplication::translate("LegacyModEditDialog", "Select Resource Packs"));
|
|
|
|
for (auto filename : fileNames)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
|
|
|
m_resourcepacks->stopWatching();
|
|
|
|
m_resourcepacks->installMod(QFileInfo(filename));
|
|
|
|
m_resourcepacks->startWatching();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void OneSixModEditDialog::on_rmResPackBtn_clicked()
|
|
|
|
{
|
|
|
|
int first, last;
|
|
|
|
auto list = ui->resPackTreeView->selectionModel()->selectedRows();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
|
|
|
if (!lastfirst(list, first, last))
|
2013-08-28 08:08:29 +05:30
|
|
|
return;
|
|
|
|
m_resourcepacks->stopWatching();
|
|
|
|
m_resourcepacks->deleteMods(first, last);
|
|
|
|
m_resourcepacks->startWatching();
|
|
|
|
}
|
|
|
|
void OneSixModEditDialog::on_viewResPackBtn_clicked()
|
|
|
|
{
|
|
|
|
openDirInDefaultProgram(m_inst->resourcePacksDir(), true);
|
|
|
|
}
|
2013-10-08 05:06:11 +05:30
|
|
|
|
2013-10-09 05:33:02 +05:30
|
|
|
void OneSixModEditDialog::loaderCurrent(QModelIndex current, QModelIndex previous)
|
2013-10-08 05:06:11 +05:30
|
|
|
{
|
2013-11-04 07:23:05 +05:30
|
|
|
if (!current.isValid())
|
2013-10-09 05:33:02 +05:30
|
|
|
{
|
|
|
|
ui->frame->clear();
|
2013-10-08 05:06:11 +05:30
|
|
|
return;
|
2013-10-09 05:33:02 +05:30
|
|
|
}
|
|
|
|
int row = current.row();
|
|
|
|
Mod &m = m_mods->operator[](row);
|
|
|
|
ui->frame->updateWithMod(m);
|
2013-10-08 05:06:11 +05:30
|
|
|
}
|
2014-02-01 19:22:21 +05:30
|
|
|
|
|
|
|
void OneSixModEditDialog::versionCurrent(const QModelIndex ¤t, const QModelIndex &previous)
|
|
|
|
{
|
|
|
|
if (!current.isValid())
|
|
|
|
{
|
|
|
|
ui->removeLibraryBtn->setDisabled(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->removeLibraryBtn->setEnabled(m_version->canRemove(current.row()));
|
|
|
|
}
|
|
|
|
}
|