2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2014-06-08 21:32:20 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "LegacyJarModPage.h"
|
|
|
|
#include "ui_LegacyJarModPage.h"
|
2014-07-13 02:32:52 +05:30
|
|
|
|
|
|
|
#include <QKeyEvent>
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
2015-04-06 01:30:32 +05:30
|
|
|
#include "dialogs/VersionSelectDialog.h"
|
|
|
|
#include "dialogs/ProgressDialog.h"
|
|
|
|
#include "dialogs/ModEditDialogCommon.h"
|
2016-04-04 04:03:56 +05:30
|
|
|
#include "minecraft/legacy/LegacyModList.h"
|
2016-02-28 00:28:40 +05:30
|
|
|
#include "minecraft/legacy/LegacyInstance.h"
|
2015-04-06 01:30:32 +05:30
|
|
|
#include "Env.h"
|
2016-01-05 12:02:52 +05:30
|
|
|
#include <DesktopServices.h>
|
2014-06-08 21:32:20 +05:30
|
|
|
#include "MultiMC.h"
|
2015-05-05 04:12:04 +05:30
|
|
|
#include <GuiUtil.h>
|
2014-06-08 21:32:20 +05:30
|
|
|
|
|
|
|
LegacyJarModPage::LegacyJarModPage(LegacyInstance *inst, QWidget *parent)
|
|
|
|
: QWidget(parent), ui(new Ui::LegacyJarModPage), m_inst(inst)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2014-07-21 03:40:13 +05:30
|
|
|
ui->tabWidget->tabBar()->hide();
|
|
|
|
|
2014-06-08 21:32:20 +05:30
|
|
|
m_jarmods = m_inst->jarModList();
|
|
|
|
ui->jarModsTreeView->setModel(m_jarmods.get());
|
|
|
|
ui->jarModsTreeView->setDragDropMode(QAbstractItemView::DragDrop);
|
|
|
|
ui->jarModsTreeView->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
|
|
ui->jarModsTreeView->installEventFilter(this);
|
|
|
|
m_jarmods->startWatching();
|
|
|
|
auto smodel = ui->jarModsTreeView->selectionModel();
|
|
|
|
connect(smodel, SIGNAL(currentChanged(QModelIndex, QModelIndex)),
|
|
|
|
SLOT(jarCurrent(QModelIndex, QModelIndex)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LegacyJarModPage::~LegacyJarModPage()
|
|
|
|
{
|
|
|
|
m_jarmods->stopWatching();
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2014-07-12 21:28:23 +05:30
|
|
|
bool LegacyJarModPage::shouldDisplay() const
|
2014-06-30 05:32:57 +05:30
|
|
|
{
|
|
|
|
return !m_inst->isRunning();
|
|
|
|
}
|
|
|
|
|
2014-06-08 21:32:20 +05:30
|
|
|
bool LegacyJarModPage::eventFilter(QObject *obj, QEvent *ev)
|
|
|
|
{
|
|
|
|
if (ev->type() != QEvent::KeyPress || obj != ui->jarModsTreeView)
|
|
|
|
{
|
|
|
|
return QWidget::eventFilter(obj, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(ev);
|
|
|
|
switch (keyEvent->key())
|
|
|
|
{
|
|
|
|
case Qt::Key_Up:
|
|
|
|
{
|
|
|
|
if (keyEvent->modifiers() & Qt::ControlModifier)
|
|
|
|
{
|
|
|
|
on_moveJarUpBtn_clicked();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Qt::Key_Down:
|
|
|
|
{
|
|
|
|
if (keyEvent->modifiers() & Qt::ControlModifier)
|
|
|
|
{
|
|
|
|
on_moveJarDownBtn_clicked();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Qt::Key_Delete:
|
|
|
|
on_rmJarBtn_clicked();
|
|
|
|
return true;
|
|
|
|
case Qt::Key_Plus:
|
|
|
|
on_addJarBtn_clicked();
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return QWidget::eventFilter(obj, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyJarModPage::on_addJarBtn_clicked()
|
|
|
|
{
|
2015-09-10 03:23:33 +05:30
|
|
|
auto list = GuiUtil::BrowseForFiles("jarmod", tr("Select jar mods"), tr("Minecraft.jar mods (*.zip *.jar)"), MMC->settings()->get("CentralModsDir").toString(), this->parentWidget());
|
2015-05-05 04:12:04 +05:30
|
|
|
if(!list.empty())
|
2014-06-08 21:32:20 +05:30
|
|
|
{
|
|
|
|
m_jarmods->stopWatching();
|
2015-05-05 04:12:04 +05:30
|
|
|
for (auto filename : list)
|
|
|
|
{
|
2015-12-26 07:50:41 +05:30
|
|
|
m_jarmods->installMod(filename);
|
2015-05-05 04:12:04 +05:30
|
|
|
}
|
2014-06-08 21:32:20 +05:30
|
|
|
m_jarmods->startWatching();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyJarModPage::on_moveJarDownBtn_clicked()
|
|
|
|
{
|
|
|
|
int first, last;
|
|
|
|
auto list = ui->jarModsTreeView->selectionModel()->selectedRows();
|
|
|
|
|
|
|
|
if (!lastfirst(list, first, last))
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_jarmods->moveModsDown(first, last);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyJarModPage::on_moveJarUpBtn_clicked()
|
|
|
|
{
|
|
|
|
int first, last;
|
|
|
|
auto list = ui->jarModsTreeView->selectionModel()->selectedRows();
|
|
|
|
|
|
|
|
if (!lastfirst(list, first, last))
|
|
|
|
return;
|
|
|
|
m_jarmods->moveModsUp(first, last);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyJarModPage::on_rmJarBtn_clicked()
|
|
|
|
{
|
|
|
|
int first, last;
|
|
|
|
auto list = ui->jarModsTreeView->selectionModel()->selectedRows();
|
|
|
|
|
|
|
|
if (!lastfirst(list, first, last))
|
|
|
|
return;
|
|
|
|
m_jarmods->stopWatching();
|
|
|
|
m_jarmods->deleteMods(first, last);
|
|
|
|
m_jarmods->startWatching();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyJarModPage::on_viewJarBtn_clicked()
|
|
|
|
{
|
2016-01-05 12:02:52 +05:30
|
|
|
DesktopServices::openDirectory(m_inst->jarModsDir(), true);
|
2014-06-08 21:32:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void LegacyJarModPage::jarCurrent(QModelIndex current, QModelIndex previous)
|
|
|
|
{
|
|
|
|
if (!current.isValid())
|
|
|
|
{
|
|
|
|
ui->jarMIFrame->clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int row = current.row();
|
|
|
|
Mod &m = m_jarmods->operator[](row);
|
|
|
|
ui->jarMIFrame->updateWithMod(m);
|
|
|
|
}
|