2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MultiMC.h"
|
|
|
|
|
|
|
|
#include <pathutils.h>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QEvent>
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
|
|
|
#include "VersionPage.h"
|
|
|
|
#include "ui_VersionPage.h"
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "Platform.h"
|
|
|
|
#include "dialogs/CustomMessageBox.h"
|
|
|
|
#include "dialogs/VersionSelectDialog.h"
|
|
|
|
#include "dialogs/ModEditDialogCommon.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "dialogs/ProgressDialog.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2014-07-13 02:32:52 +05:30
|
|
|
#include <QAbstractItemModel>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QListView>
|
|
|
|
#include <QString>
|
|
|
|
#include <QUrl>
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "minecraft/MinecraftProfile.h"
|
|
|
|
#include "forge/ForgeVersionList.h"
|
|
|
|
#include "forge/ForgeInstaller.h"
|
|
|
|
#include "liteloader/LiteLoaderVersionList.h"
|
|
|
|
#include "liteloader/LiteLoaderInstaller.h"
|
|
|
|
#include "auth/MojangAccountList.h"
|
|
|
|
#include "minecraft/Mod.h"
|
|
|
|
#include "icons/IconList.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
|
|
|
|
2014-07-12 21:28:23 +05:30
|
|
|
QIcon VersionPage::icon() const
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
2015-02-01 16:14:47 +05:30
|
|
|
return ENV.icons()->getIcon(m_inst->iconKey());
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
2014-07-12 21:28:23 +05:30
|
|
|
bool VersionPage::shouldDisplay() const
|
2014-06-30 05:32:57 +05:30
|
|
|
{
|
|
|
|
return !m_inst->isRunning();
|
|
|
|
}
|
|
|
|
|
2014-06-02 04:19:53 +05:30
|
|
|
VersionPage::VersionPage(OneSixInstance *inst, QWidget *parent)
|
|
|
|
: QWidget(parent), ui(new Ui::VersionPage), m_inst(inst)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2014-07-21 03:40:13 +05:30
|
|
|
ui->tabWidget->tabBar()->hide();
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2015-04-15 06:42:57 +05:30
|
|
|
reloadMinecraftProfile();
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
m_version = m_inst->getMinecraftProfile();
|
2014-06-02 04:19:53 +05:30
|
|
|
if (m_version)
|
|
|
|
{
|
2015-04-02 23:48:06 +05:30
|
|
|
ui->libraryTreeView->setModel(m_version.get());
|
2014-06-02 04:19:53 +05:30
|
|
|
ui->libraryTreeView->installEventFilter(this);
|
2014-06-03 05:04:44 +05:30
|
|
|
ui->libraryTreeView->setSelectionMode(QAbstractItemView::SingleSelection);
|
2014-06-02 04:19:53 +05:30
|
|
|
connect(ui->libraryTreeView->selectionModel(), &QItemSelectionModel::currentChanged,
|
|
|
|
this, &VersionPage::versionCurrent);
|
|
|
|
updateVersionControls();
|
2014-06-10 12:09:11 +05:30
|
|
|
// select first item.
|
2015-04-02 23:48:06 +05:30
|
|
|
auto index = ui->libraryTreeView->model()->index(0,0);
|
2014-06-10 12:09:11 +05:30
|
|
|
if(index.isValid())
|
|
|
|
ui->libraryTreeView->setCurrentIndex(index);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
disableVersionControls();
|
|
|
|
}
|
|
|
|
connect(m_inst, &OneSixInstance::versionReloaded, this,
|
|
|
|
&VersionPage::updateVersionControls);
|
|
|
|
}
|
|
|
|
|
|
|
|
VersionPage::~VersionPage()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::updateVersionControls()
|
|
|
|
{
|
|
|
|
ui->forgeBtn->setEnabled(true);
|
|
|
|
ui->liteloaderBtn->setEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::disableVersionControls()
|
|
|
|
{
|
|
|
|
ui->forgeBtn->setEnabled(false);
|
|
|
|
ui->liteloaderBtn->setEnabled(false);
|
|
|
|
ui->reloadLibrariesBtn->setEnabled(false);
|
|
|
|
ui->removeLibraryBtn->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
bool VersionPage::reloadMinecraftProfile()
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2015-01-28 03:01:07 +05:30
|
|
|
m_inst->reloadProfile();
|
2014-06-02 04:19:53 +05:30
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (MMCError &e)
|
|
|
|
{
|
|
|
|
QMessageBox::critical(this, tr("Error"), e.cause());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
QMessageBox::critical(
|
|
|
|
this, tr("Error"),
|
2015-04-15 06:42:57 +05:30
|
|
|
tr("Couldn't load the instance profile."));
|
2014-06-02 04:19:53 +05:30
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::on_reloadLibrariesBtn_clicked()
|
|
|
|
{
|
2015-01-28 03:01:07 +05:30
|
|
|
reloadMinecraftProfile();
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::on_removeLibraryBtn_clicked()
|
|
|
|
{
|
|
|
|
if (ui->libraryTreeView->currentIndex().isValid())
|
|
|
|
{
|
|
|
|
// FIXME: use actual model, not reloading.
|
|
|
|
if (!m_version->remove(ui->libraryTreeView->currentIndex().row()))
|
|
|
|
{
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Couldn't remove file"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::on_jarmodBtn_clicked()
|
|
|
|
{
|
|
|
|
QFileDialog w;
|
|
|
|
QSet<QString> locations;
|
|
|
|
QString modsFolder = MMC->settings()->get("CentralModsDir").toString();
|
|
|
|
auto f = [&](QStandardPaths::StandardLocation l)
|
|
|
|
{
|
|
|
|
QString location = QStandardPaths::writableLocation(l);
|
2014-06-09 05:27:10 +05:30
|
|
|
QFileInfo finfo(location);
|
|
|
|
if (!finfo.exists())
|
2014-06-02 04:19:53 +05:30
|
|
|
return;
|
|
|
|
locations.insert(location);
|
|
|
|
};
|
|
|
|
f(QStandardPaths::DesktopLocation);
|
|
|
|
f(QStandardPaths::DocumentsLocation);
|
|
|
|
f(QStandardPaths::DownloadLocation);
|
|
|
|
f(QStandardPaths::HomeLocation);
|
|
|
|
QList<QUrl> urls;
|
2014-06-09 00:56:48 +05:30
|
|
|
for (auto location : locations)
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
|
|
|
urls.append(QUrl::fromLocalFile(location));
|
|
|
|
}
|
|
|
|
urls.append(QUrl::fromLocalFile(modsFolder));
|
|
|
|
|
|
|
|
w.setFileMode(QFileDialog::ExistingFiles);
|
|
|
|
w.setAcceptMode(QFileDialog::AcceptOpen);
|
|
|
|
w.setNameFilter(tr("Minecraft jar mods (*.zip *.jar)"));
|
|
|
|
w.setDirectory(modsFolder);
|
|
|
|
w.setSidebarUrls(urls);
|
|
|
|
|
2014-06-09 00:56:48 +05:30
|
|
|
if (w.exec())
|
2014-06-09 05:27:10 +05:30
|
|
|
m_version->installJarMods(w.selectedFiles());
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::on_resetLibraryOrderBtn_clicked()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
m_version->resetOrder();
|
|
|
|
}
|
|
|
|
catch (MMCError &e)
|
|
|
|
{
|
|
|
|
QMessageBox::critical(this, tr("Error"), e.cause());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::on_moveLibraryUpBtn_clicked()
|
|
|
|
{
|
|
|
|
if (ui->libraryTreeView->selectionModel()->selectedRows().isEmpty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const int row = ui->libraryTreeView->selectionModel()->selectedRows().first().row();
|
2015-01-28 03:01:07 +05:30
|
|
|
m_version->move(row, MinecraftProfile::MoveUp);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
catch (MMCError &e)
|
|
|
|
{
|
|
|
|
QMessageBox::critical(this, tr("Error"), e.cause());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::on_moveLibraryDownBtn_clicked()
|
|
|
|
{
|
|
|
|
if (ui->libraryTreeView->selectionModel()->selectedRows().isEmpty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const int row = ui->libraryTreeView->selectionModel()->selectedRows().first().row();
|
2015-01-28 03:01:07 +05:30
|
|
|
m_version->move(row, MinecraftProfile::MoveDown);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
catch (MMCError &e)
|
|
|
|
{
|
|
|
|
QMessageBox::critical(this, tr("Error"), e.cause());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::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;
|
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
if (!m_version->isVanilla())
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
|
|
|
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();
|
2015-01-28 03:01:07 +05:30
|
|
|
reloadMinecraftProfile();
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
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 VersionPage::on_forgeBtn_clicked()
|
|
|
|
{
|
|
|
|
VersionSelectDialog vselect(MMC->forgelist().get(), tr("Select Forge version"), this);
|
|
|
|
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 VersionPage::on_liteloaderBtn_clicked()
|
|
|
|
{
|
|
|
|
VersionSelectDialog vselect(MMC->liteloaderlist().get(), tr("Select LiteLoader version"),
|
|
|
|
this);
|
|
|
|
vselect.setExactFilter(1, m_inst->currentVersionId());
|
|
|
|
vselect.setEmptyString(tr("No LiteLoader versions are currently available for Minecraft ") +
|
|
|
|
m_inst->currentVersionId());
|
|
|
|
if (vselect.exec() && vselect.selectedVersion())
|
|
|
|
{
|
|
|
|
ProgressDialog dialog(this);
|
|
|
|
dialog.exec(
|
|
|
|
LiteLoaderInstaller().createInstallTask(m_inst, vselect.selectedVersion(), this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionPage::versionCurrent(const QModelIndex ¤t, const QModelIndex &previous)
|
|
|
|
{
|
|
|
|
if (!current.isValid())
|
|
|
|
{
|
|
|
|
ui->removeLibraryBtn->setDisabled(true);
|
2014-06-03 05:38:40 +05:30
|
|
|
ui->moveLibraryDownBtn->setDisabled(true);
|
|
|
|
ui->moveLibraryUpBtn->setDisabled(true);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-03 05:38:40 +05:30
|
|
|
bool enabled = m_version->canRemove(current.row());
|
|
|
|
ui->removeLibraryBtn->setEnabled(enabled);
|
|
|
|
ui->moveLibraryDownBtn->setEnabled(enabled);
|
|
|
|
ui->moveLibraryUpBtn->setEnabled(enabled);
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|
2014-06-08 23:41:09 +05:30
|
|
|
QString selectedId = m_version->versionFileId(current.row());
|
2015-01-28 03:01:07 +05:30
|
|
|
if (selectedId == "net.minecraft")
|
2014-06-08 22:31:19 +05:30
|
|
|
{
|
|
|
|
ui->changeMCVersionBtn->setEnabled(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->changeMCVersionBtn->setEnabled(false);
|
|
|
|
}
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|