2013-01-09 23:52:22 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
2013-02-20 04:37:52 +05:30
|
|
|
*
|
|
|
|
* Authors: Andrew Okin
|
|
|
|
* Peterix
|
|
|
|
* Orochimarufan <orochimarufan.x3@gmail.com>
|
2013-01-09 23:52:22 +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-03-12 02:49:17 +05:30
|
|
|
*
|
2013-01-09 23:52:22 +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-09-07 07:30:58 +05:30
|
|
|
#include <MultiMC.h>
|
2013-01-09 23:52:22 +05:30
|
|
|
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "ui_mainwindow.h"
|
2013-10-22 01:55:50 +05:30
|
|
|
#include "keyring.h"
|
2013-01-09 23:52:22 +05:30
|
|
|
|
2013-02-01 02:01:16 +05:30
|
|
|
#include <QMenu>
|
2013-02-02 00:37:36 +05:30
|
|
|
#include <QMessageBox>
|
2013-02-13 08:33:15 +05:30
|
|
|
#include <QInputDialog>
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2013-01-09 23:52:22 +05:30
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QUrl>
|
2013-02-20 04:37:52 +05:30
|
|
|
#include <QDir>
|
2013-02-21 06:40:09 +05:30
|
|
|
#include <QFileInfo>
|
2013-08-25 05:02:42 +05:30
|
|
|
#include <QLabel>
|
|
|
|
#include <QToolButton>
|
2013-01-09 23:52:22 +05:30
|
|
|
|
2013-02-21 06:40:09 +05:30
|
|
|
#include "osutils.h"
|
2013-02-22 01:10:32 +05:30
|
|
|
#include "userutils.h"
|
|
|
|
#include "pathutils.h"
|
2013-02-02 00:37:36 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
#include "categorizedview.h"
|
|
|
|
#include "categorydrawer.h"
|
|
|
|
|
2013-01-29 05:31:20 +05:30
|
|
|
#include "gui/settingsdialog.h"
|
2013-02-02 00:37:36 +05:30
|
|
|
#include "gui/newinstancedialog.h"
|
2013-02-06 04:04:20 +05:30
|
|
|
#include "gui/logindialog.h"
|
2013-09-18 03:30:35 +05:30
|
|
|
#include "gui/ProgressDialog.h"
|
2013-02-22 00:05:52 +05:30
|
|
|
#include "gui/aboutdialog.h"
|
2013-03-28 22:03:31 +05:30
|
|
|
#include "gui/versionselectdialog.h"
|
2013-05-17 22:23:22 +05:30
|
|
|
#include "gui/lwjglselectdialog.h"
|
2013-03-24 20:06:00 +05:30
|
|
|
#include "gui/consolewindow.h"
|
2013-07-15 01:31:30 +05:30
|
|
|
#include "gui/instancesettings.h"
|
2013-10-18 22:12:41 +05:30
|
|
|
#include "gui/platform.h"
|
2013-02-02 00:37:36 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
#include "logic/lists/InstanceList.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
#include "logic/lists/MinecraftVersionList.h"
|
|
|
|
#include "logic/lists/LwjglVersionList.h"
|
|
|
|
#include "logic/lists/IconList.h"
|
2013-10-14 07:29:21 +05:30
|
|
|
#include "logic/lists/JavaVersionList.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2013-09-23 03:53:50 +05:30
|
|
|
#include "logic/net/LoginTask.h"
|
2013-10-19 11:10:46 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
#include "logic/BaseInstance.h"
|
|
|
|
#include "logic/InstanceFactory.h"
|
|
|
|
#include "logic/MinecraftProcess.h"
|
|
|
|
#include "logic/OneSixAssets.h"
|
|
|
|
#include "logic/OneSixUpdate.h"
|
2013-10-14 07:29:21 +05:30
|
|
|
#include "logic/JavaUtils.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
|
|
|
|
#include "logic/LegacyInstance.h"
|
2013-03-12 02:49:17 +05:30
|
|
|
|
|
|
|
#include "instancedelegate.h"
|
2013-08-10 22:04:08 +05:30
|
|
|
#include "IconPickerDialog.h"
|
2013-08-26 02:18:41 +05:30
|
|
|
#include "LabeledToolButton.h"
|
|
|
|
#include "EditNotesDialog.h"
|
2013-02-06 04:04:20 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow)
|
2013-01-09 23:52:22 +05:30
|
|
|
{
|
2013-10-21 01:58:31 +05:30
|
|
|
MultiMCPlatform::fixWM_CLASS(this);
|
2013-10-06 04:43:40 +05:30
|
|
|
ui->setupUi(this);
|
|
|
|
setWindowTitle(QString("MultiMC %1").arg(MMC->version().toString()));
|
|
|
|
|
2013-08-25 05:02:42 +05:30
|
|
|
// Set the selected instance to null
|
|
|
|
m_selectedInstance = nullptr;
|
2013-05-08 23:26:43 +05:30
|
|
|
// Set active instance to null.
|
2013-08-25 05:02:42 +05:30
|
|
|
m_activeInst = nullptr;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-27 20:20:42 +05:30
|
|
|
// OSX magic.
|
|
|
|
setUnifiedTitleAndToolBarOnMac(true);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-26 10:39:54 +05:30
|
|
|
// The instance action toolbar customizations
|
|
|
|
{
|
|
|
|
ui->instanceToolBar->setEnabled(false);
|
|
|
|
// the rename label is inside the rename tool button
|
|
|
|
renameButton = new LabeledToolButton();
|
|
|
|
renameButton->setText("Instance Name");
|
2013-08-27 09:09:49 +05:30
|
|
|
renameButton->setToolTip(ui->actionRenameInstance->toolTip());
|
2013-08-26 10:39:54 +05:30
|
|
|
connect(renameButton, SIGNAL(clicked(bool)), SLOT(on_actionRenameInstance_triggered()));
|
|
|
|
ui->instanceToolBar->insertWidget(ui->actionLaunchInstance, renameButton);
|
|
|
|
ui->instanceToolBar->insertSeparator(ui->actionLaunchInstance);
|
2013-10-06 04:43:40 +05:30
|
|
|
renameButton->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
2013-08-26 10:39:54 +05:30
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-26 10:39:54 +05:30
|
|
|
// Create the instance list widget
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
view = new KCategorizedView(ui->centralWidget);
|
|
|
|
drawer = new KCategoryDrawer(view);
|
|
|
|
|
|
|
|
view->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
|
|
view->setCategoryDrawer(drawer);
|
|
|
|
view->setCollapsibleBlocks(true);
|
|
|
|
view->setViewMode(QListView::IconMode);
|
|
|
|
view->setFlow(QListView::LeftToRight);
|
2013-08-26 10:39:54 +05:30
|
|
|
view->setWordWrap(true);
|
2013-10-06 04:43:40 +05:30
|
|
|
view->setMouseTracking(true);
|
|
|
|
view->viewport()->setAttribute(Qt::WA_Hover);
|
2013-08-26 10:39:54 +05:30
|
|
|
auto delegate = new ListViewDelegate();
|
|
|
|
view->setItemDelegate(delegate);
|
|
|
|
view->setSpacing(10);
|
|
|
|
view->setUniformItemWidths(true);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-27 20:20:42 +05:30
|
|
|
// do not show ugly blue border on the mac
|
2013-08-27 19:50:32 +05:30
|
|
|
view->setAttribute(Qt::WA_MacShowFocusRect, false);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-26 10:39:54 +05:30
|
|
|
view->installEventFilter(this);
|
2013-03-12 02:49:17 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
proxymodel = new InstanceProxyModel(this);
|
|
|
|
proxymodel->setSortRole(KCategorizedSortFilterProxyModel::CategorySortRole);
|
|
|
|
proxymodel->setFilterRole(KCategorizedSortFilterProxyModel::CategorySortRole);
|
|
|
|
// proxymodel->setDynamicSortFilter ( true );
|
|
|
|
|
|
|
|
// FIXME: instList should be global-ish, or at least not tied to the main window...
|
|
|
|
// maybe the application itself?
|
|
|
|
proxymodel->setSourceModel(MMC->instances().get());
|
|
|
|
proxymodel->sort(0);
|
|
|
|
view->setFrameShape(QFrame::NoFrame);
|
|
|
|
view->setModel(proxymodel);
|
|
|
|
|
|
|
|
ui->horizontalLayout->addWidget(view);
|
2013-08-26 10:39:54 +05:30
|
|
|
}
|
|
|
|
// The cat background
|
|
|
|
{
|
2013-09-07 07:30:58 +05:30
|
|
|
bool cat_enable = MMC->settings()->get("TheCat").toBool();
|
2013-08-26 10:39:54 +05:30
|
|
|
ui->actionCAT->setChecked(cat_enable);
|
|
|
|
connect(ui->actionCAT, SIGNAL(toggled(bool)), SLOT(onCatToggled(bool)));
|
|
|
|
setCatBackground(cat_enable);
|
|
|
|
}
|
|
|
|
// start instance when double-clicked
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(view, SIGNAL(doubleClicked(const QModelIndex &)), this,
|
|
|
|
SLOT(instanceActivated(const QModelIndex &)));
|
2013-08-26 10:39:54 +05:30
|
|
|
// track the selection -- update the instance toolbar
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(view->selectionModel(),
|
|
|
|
SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), this,
|
|
|
|
SLOT(instanceChanged(const QModelIndex &, const QModelIndex &)));
|
2013-08-26 10:39:54 +05:30
|
|
|
// model reset -> selection is invalid. All the instance pointers are wrong.
|
|
|
|
// FIXME: stop using POINTERS everywhere
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(MMC->instances().get(), SIGNAL(dataIsInvalid()), SLOT(selectionBad()));
|
|
|
|
|
2013-10-26 06:58:50 +05:30
|
|
|
m_statusLeft = new QLabel(tr("Instance type"), this);
|
|
|
|
m_statusRight = new QLabel(tr("Assets information"), this);
|
|
|
|
m_statusRight->setAlignment(Qt::AlignRight);
|
|
|
|
statusBar()->addPermanentWidget(m_statusLeft, 1);
|
|
|
|
statusBar()->addPermanentWidget(m_statusRight, 0);
|
|
|
|
|
2013-08-26 10:39:54 +05:30
|
|
|
// run the things that load and download other things... FIXME: this is NOT the place
|
|
|
|
// FIXME: invisible actions in the background = NOPE.
|
2013-05-17 22:23:22 +05:30
|
|
|
{
|
2013-09-16 04:24:39 +05:30
|
|
|
if (!MMC->minecraftlist()->isLoaded())
|
2013-08-26 10:39:54 +05:30
|
|
|
{
|
2013-09-16 04:24:39 +05:30
|
|
|
m_versionLoadTask = MMC->minecraftlist()->getLoadTask();
|
2013-08-26 10:39:54 +05:30
|
|
|
startTask(m_versionLoadTask);
|
|
|
|
}
|
2013-09-16 04:24:39 +05:30
|
|
|
if (!MMC->lwjgllist()->isLoaded())
|
2013-08-26 10:39:54 +05:30
|
|
|
{
|
2013-09-16 04:24:39 +05:30
|
|
|
MMC->lwjgllist()->loadList();
|
2013-08-26 10:39:54 +05:30
|
|
|
}
|
|
|
|
assets_downloader = new OneSixAssets();
|
2013-10-26 06:58:50 +05:30
|
|
|
connect(assets_downloader, SIGNAL(indexStarted()), SLOT(assetsIndexStarted()));
|
|
|
|
connect(assets_downloader, SIGNAL(filesStarted()), SLOT(assetsFilesStarted()));
|
|
|
|
connect(assets_downloader, SIGNAL(filesProgress(int, int, int)), SLOT(assetsFilesProgress(int, int, int)));
|
|
|
|
connect(assets_downloader, SIGNAL(failed()), SLOT(assetsFailed()));
|
|
|
|
connect(assets_downloader, SIGNAL(finished()), SLOT(assetsFinished()));
|
2013-08-26 10:39:54 +05:30
|
|
|
assets_downloader->start();
|
2013-05-17 22:23:22 +05:30
|
|
|
}
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
|
|
|
delete ui;
|
2013-03-12 02:49:17 +05:30
|
|
|
delete proxymodel;
|
|
|
|
delete drawer;
|
2013-08-04 07:49:10 +05:30
|
|
|
delete assets_downloader;
|
2013-03-12 02:49:17 +05:30
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
bool MainWindow::eventFilter(QObject *obj, QEvent *ev)
|
2013-08-12 04:09:19 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (obj == view)
|
2013-08-12 04:09:19 +05:30
|
|
|
{
|
|
|
|
if (ev->type() == QEvent::KeyPress)
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(ev);
|
|
|
|
switch (keyEvent->key())
|
2013-08-12 04:09:19 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
case Qt::Key_Enter:
|
|
|
|
case Qt::Key_Return:
|
|
|
|
on_actionLaunchInstance_triggered();
|
|
|
|
return true;
|
|
|
|
case Qt::Key_Delete:
|
|
|
|
on_actionDeleteInstance_triggered();
|
|
|
|
return true;
|
|
|
|
case Qt::Key_F5:
|
|
|
|
on_actionRefresh_triggered();
|
|
|
|
return true;
|
|
|
|
case Qt::Key_F2:
|
|
|
|
on_actionRenameInstance_triggered();
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
2013-08-12 04:09:19 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
return QMainWindow::eventFilter(obj, ev);
|
2013-08-12 04:09:19 +05:30
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void MainWindow::onCatToggled(bool state)
|
2013-08-26 02:18:41 +05:30
|
|
|
{
|
|
|
|
setCatBackground(state);
|
2013-09-07 07:30:58 +05:30
|
|
|
MMC->settings()->set("TheCat", state);
|
2013-08-26 02:18:41 +05:30
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void MainWindow::setCatBackground(bool enabled)
|
2013-08-26 02:18:41 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (enabled)
|
2013-08-26 02:18:41 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
view->setStyleSheet("QListView"
|
|
|
|
"{"
|
|
|
|
"background-image: url(:/backgrounds/kitteh);"
|
|
|
|
"background-attachment: fixed;"
|
|
|
|
"background-clip: padding;"
|
|
|
|
"background-position: top right;"
|
|
|
|
"background-repeat: none;"
|
|
|
|
"background-color:palette(base);"
|
|
|
|
"}");
|
2013-08-26 02:18:41 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
view->setStyleSheet(QString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-09 23:52:22 +05:30
|
|
|
void MainWindow::on_actionAddInstance_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!MMC->minecraftlist()->isLoaded() && m_versionLoadTask &&
|
|
|
|
m_versionLoadTask->isRunning())
|
2013-05-07 03:49:20 +05:30
|
|
|
{
|
|
|
|
QEventLoop waitLoop;
|
2013-08-09 03:56:35 +05:30
|
|
|
waitLoop.connect(m_versionLoadTask, SIGNAL(failed(QString)), SLOT(quit()));
|
|
|
|
waitLoop.connect(m_versionLoadTask, SIGNAL(succeeded()), SLOT(quit()));
|
2013-05-07 03:49:20 +05:30
|
|
|
waitLoop.exec();
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
NewInstanceDialog newInstDlg(this);
|
2013-08-10 22:04:08 +05:30
|
|
|
if (!newInstDlg.exec())
|
2013-07-28 12:10:15 +05:30
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance *newInstance = NULL;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
QString instDirName = DirNameFromString(newInstDlg.instName());
|
2013-09-07 07:30:58 +05:30
|
|
|
QString instDir = PathCombine(MMC->settings()->get("InstanceDir").toString(), instDirName);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
auto &loader = InstanceFactory::get();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
auto error = loader.createInstance(newInstance, newInstDlg.selectedVersion(), instDir);
|
2013-08-04 03:28:39 +05:30
|
|
|
QString errorMsg = QString("Failed to create instance %1: ").arg(instDirName);
|
2013-07-28 12:10:15 +05:30
|
|
|
switch (error)
|
2013-04-23 03:45:18 +05:30
|
|
|
{
|
2013-07-29 04:29:35 +05:30
|
|
|
case InstanceFactory::NoCreateError:
|
2013-08-10 22:04:08 +05:30
|
|
|
newInstance->setName(newInstDlg.instName());
|
|
|
|
newInstance->setIconKey(newInstDlg.iconKey());
|
2013-09-07 07:30:58 +05:30
|
|
|
MMC->instances()->add(InstancePtr(newInstance));
|
2013-07-28 12:10:15 +05:30
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
case InstanceFactory::InstExists:
|
2013-07-28 12:10:15 +05:30
|
|
|
errorMsg += "An instance with the given directory name already exists.";
|
|
|
|
QMessageBox::warning(this, "Error", errorMsg);
|
|
|
|
break;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
case InstanceFactory::CantCreateDir:
|
2013-07-28 12:10:15 +05:30
|
|
|
errorMsg += "Failed to create the instance directory.";
|
|
|
|
QMessageBox::warning(this, "Error", errorMsg);
|
|
|
|
break;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-07-28 12:10:15 +05:30
|
|
|
default:
|
|
|
|
errorMsg += QString("Unknown instance loader error %1").arg(error);
|
|
|
|
QMessageBox::warning(this, "Error", errorMsg);
|
|
|
|
break;
|
2013-04-23 03:45:18 +05:30
|
|
|
}
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
void MainWindow::on_actionChangeInstIcon_triggered()
|
2013-03-19 10:54:34 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!m_selectedInstance)
|
2013-08-10 22:04:08 +05:30
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
IconPickerDialog dlg(this);
|
2013-08-25 05:02:42 +05:30
|
|
|
dlg.exec(m_selectedInstance->iconKey());
|
2013-10-06 04:43:40 +05:30
|
|
|
if (dlg.result() == QDialog::Accepted)
|
2013-03-19 10:54:34 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
m_selectedInstance->setIconKey(dlg.selectedIconKey);
|
2013-09-07 07:30:58 +05:30
|
|
|
auto ico = MMC->icons()->getIcon(dlg.selectedIconKey);
|
2013-08-25 05:02:42 +05:30
|
|
|
ui->actionChangeInstIcon->setIcon(ico);
|
2013-03-19 10:54:34 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
void MainWindow::on_actionChangeInstGroup_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!m_selectedInstance)
|
2013-08-10 22:04:08 +05:30
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
bool ok = false;
|
2013-10-06 04:43:40 +05:30
|
|
|
QString name(m_selectedInstance->group());
|
|
|
|
name = QInputDialog::getText(this, tr("Group name"), tr("Enter a new group name."),
|
|
|
|
QLineEdit::Normal, name, &ok);
|
|
|
|
if (ok)
|
2013-08-26 02:18:41 +05:30
|
|
|
m_selectedInstance->setGroupPost(name);
|
2013-08-10 22:04:08 +05:30
|
|
|
}
|
|
|
|
|
2013-01-09 23:52:22 +05:30
|
|
|
void MainWindow::on_actionViewInstanceFolder_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QString str = MMC->settings()->get("InstanceDir").toString();
|
|
|
|
openDirInDefaultProgram(str);
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionRefresh_triggered()
|
|
|
|
{
|
2013-09-07 07:30:58 +05:30
|
|
|
MMC->instances()->loadList();
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionViewCentralModsFolder_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
openDirInDefaultProgram(MMC->settings()->get("CentralModsDir").toString(), true);
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
2013-08-25 05:02:42 +05:30
|
|
|
void MainWindow::on_actionConfig_Folder_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (m_selectedInstance)
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
|
|
|
QString str = m_selectedInstance->instanceConfigFolder();
|
2013-10-06 04:43:40 +05:30
|
|
|
openDirInDefaultProgram(QDir(str).absolutePath());
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-09 23:52:22 +05:30
|
|
|
void MainWindow::on_actionCheckUpdate_triggered()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionSettings_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
SettingsDialog dialog(this);
|
2013-01-16 06:16:27 +05:30
|
|
|
dialog.exec();
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionReportBug_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
openWebPage(QUrl("http://multimc.myjetbrains.com/youtrack/dashboard#newissue=yes"));
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionNews_triggered()
|
|
|
|
{
|
2013-10-15 04:49:22 +05:30
|
|
|
openWebPage(QUrl("http://multimc.org/posts.html"));
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionAbout_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
AboutDialog dialog(this);
|
2013-03-12 02:49:17 +05:30
|
|
|
dialog.exec();
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
2013-01-30 11:22:37 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void MainWindow::on_mainToolBar_visibilityChanged(bool)
|
2013-01-30 11:22:37 +05:30
|
|
|
{
|
|
|
|
// Don't allow hiding the main toolbar.
|
|
|
|
// This is the only way I could find to prevent it... :/
|
2013-10-06 04:43:40 +05:30
|
|
|
ui->mainToolBar->setVisible(true);
|
2013-01-30 11:22:37 +05:30
|
|
|
}
|
|
|
|
|
2013-06-24 01:40:32 +05:30
|
|
|
void MainWindow::on_actionDeleteInstance_triggered()
|
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
if (m_selectedInstance)
|
2013-07-05 04:09:41 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
int response = QMessageBox::question(
|
|
|
|
this, "CAREFUL", QString("This is permanent! Are you sure?\nAbout to delete: ") +
|
|
|
|
m_selectedInstance->name());
|
2013-07-05 04:09:41 +05:30
|
|
|
if (response == QMessageBox::Yes)
|
|
|
|
{
|
2013-08-26 10:00:11 +05:30
|
|
|
m_selectedInstance->nuke();
|
2013-07-05 04:09:41 +05:30
|
|
|
}
|
|
|
|
}
|
2013-06-24 01:40:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionRenameInstance_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (m_selectedInstance)
|
2013-06-24 01:40:32 +05:30
|
|
|
{
|
|
|
|
bool ok = false;
|
2013-10-06 04:43:40 +05:30
|
|
|
QString name(m_selectedInstance->name());
|
|
|
|
name =
|
|
|
|
QInputDialog::getText(this, tr("Instance name"), tr("Enter a new instance name."),
|
|
|
|
QLineEdit::Normal, name, &ok);
|
|
|
|
|
2013-07-07 07:41:24 +05:30
|
|
|
if (name.length() > 0)
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (ok && name.length())
|
2013-08-29 01:22:19 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
m_selectedInstance->setName(name);
|
2013-08-29 01:22:19 +05:30
|
|
|
renameButton->setText(name);
|
|
|
|
}
|
2013-07-07 07:41:24 +05:30
|
|
|
}
|
2013-06-24 01:40:32 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionViewSelectedInstFolder_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (m_selectedInstance)
|
2013-06-24 01:40:32 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
QString str = m_selectedInstance->instanceRoot();
|
2013-10-06 04:43:40 +05:30
|
|
|
openDirInDefaultProgram(QDir(str).absolutePath());
|
2013-06-24 01:40:32 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-07 07:41:24 +05:30
|
|
|
void MainWindow::on_actionEditInstMods_triggered()
|
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
if (m_selectedInstance)
|
2013-07-07 07:41:24 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
auto dialog = m_selectedInstance->createModEditDialog(this);
|
2013-10-06 04:43:40 +05:30
|
|
|
if (dialog)
|
2013-08-19 00:22:17 +05:30
|
|
|
dialog->exec();
|
2013-08-20 05:59:36 +05:30
|
|
|
dialog->deleteLater();
|
2013-07-07 07:41:24 +05:30
|
|
|
}
|
|
|
|
}
|
2013-06-24 01:40:32 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void MainWindow::closeEvent(QCloseEvent *event)
|
2013-01-30 11:22:37 +05:30
|
|
|
{
|
|
|
|
// Save the window state and geometry.
|
2013-02-26 00:54:46 +05:30
|
|
|
// TODO: Make this work with the new settings system.
|
2013-10-06 04:43:40 +05:30
|
|
|
// settings->getConfig().setValue("MainWindowGeometry", saveGeometry());
|
|
|
|
// settings->getConfig().setValue("MainWindowState", saveState());
|
|
|
|
QMainWindow::closeEvent(event);
|
2013-10-26 13:08:21 +05:30
|
|
|
QApplication::exit();
|
2013-01-30 11:22:37 +05:30
|
|
|
}
|
2013-10-06 06:37:57 +05:30
|
|
|
/*
|
2013-10-06 04:43:40 +05:30
|
|
|
void MainWindow::on_instanceView_customContextMenuRequested(const QPoint &pos)
|
2013-02-01 02:01:16 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QMenu *instContextMenu = new QMenu("Instance", this);
|
2013-03-12 02:49:17 +05:30
|
|
|
|
2013-02-01 02:01:16 +05:30
|
|
|
// Add the actions from the toolbar to the context menu.
|
2013-10-06 04:43:40 +05:30
|
|
|
instContextMenu->addActions(ui->instanceToolBar->actions());
|
2013-03-12 02:49:17 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
instContextMenu->exec(view->mapToGlobal(pos));
|
2013-02-01 02:01:16 +05:30
|
|
|
}
|
2013-10-06 06:37:57 +05:30
|
|
|
*/
|
2013-10-22 01:55:50 +05:30
|
|
|
void MainWindow::instanceActivated(QModelIndex index)
|
|
|
|
{
|
|
|
|
if (!index.isValid())
|
|
|
|
return;
|
|
|
|
BaseInstance *inst =
|
|
|
|
(BaseInstance *)index.data(InstanceList::InstancePointerRole).value<void *>();
|
|
|
|
|
|
|
|
bool autoLogin = MMC->settings()->get("AutoLogin").toBool();
|
|
|
|
if(autoLogin) doAutoLogin();
|
|
|
|
else doLogin();
|
|
|
|
}
|
|
|
|
|
2013-02-06 04:04:20 +05:30
|
|
|
void MainWindow::on_actionLaunchInstance_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (m_selectedInstance)
|
2013-03-12 02:49:17 +05:30
|
|
|
{
|
2013-10-22 02:38:09 +05:30
|
|
|
doLogin();
|
2013-03-12 02:49:17 +05:30
|
|
|
}
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
|
2013-10-22 01:55:50 +05:30
|
|
|
void MainWindow::doAutoLogin()
|
|
|
|
{
|
2013-10-22 02:38:09 +05:30
|
|
|
if (!m_selectedInstance)
|
|
|
|
return;
|
|
|
|
|
2013-10-22 01:55:50 +05:30
|
|
|
Keyring * k = Keyring::instance();
|
|
|
|
QStringList accounts = k->getStoredAccounts("minecraft");
|
|
|
|
|
|
|
|
if(!accounts.isEmpty())
|
|
|
|
{
|
|
|
|
QString username = accounts[0];
|
|
|
|
QString password = k->getPassword("minecraft", username);
|
|
|
|
|
|
|
|
if(!password.isEmpty())
|
|
|
|
{
|
|
|
|
QLOG_INFO() << "Automatically logging in with stored account: " << username;
|
2013-10-22 02:38:09 +05:30
|
|
|
m_activeInst = m_selectedInstance;
|
2013-10-22 01:55:50 +05:30
|
|
|
doLogin(username, password);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Auto login set for account, but no password was found: " << username;
|
|
|
|
doLogin(tr("Auto login attempted, but no password is stored."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Auto login set but no accounts were stored.";
|
|
|
|
doLogin(tr("Auto login attempted, but no accounts are stored."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::doLogin(QString username, QString password)
|
|
|
|
{
|
|
|
|
UserInfo uInfo{username, password};
|
|
|
|
|
|
|
|
ProgressDialog *tDialog = new ProgressDialog(this);
|
|
|
|
LoginTask *loginTask = new LoginTask(uInfo, tDialog);
|
|
|
|
connect(loginTask, SIGNAL(succeeded()), SLOT(onLoginComplete()),
|
|
|
|
Qt::QueuedConnection);
|
|
|
|
connect(loginTask, SIGNAL(failed(QString)), SLOT(doLogin(QString)),
|
|
|
|
Qt::QueuedConnection);
|
|
|
|
|
|
|
|
tDialog->exec(loginTask);
|
|
|
|
}
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void MainWindow::doLogin(const QString &errorMsg)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
if (!m_selectedInstance)
|
2013-05-08 23:26:43 +05:30
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
|
|
|
LoginDialog *loginDlg = new LoginDialog(this, errorMsg);
|
2013-09-06 20:38:12 +05:30
|
|
|
if (!m_selectedInstance->lastLaunch())
|
|
|
|
loginDlg->forceOnline();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
loginDlg->exec();
|
2013-10-06 04:43:40 +05:30
|
|
|
if (loginDlg->result() == QDialog::Accepted)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (loginDlg->isOnline())
|
2013-09-06 20:38:12 +05:30
|
|
|
{
|
|
|
|
m_activeInst = m_selectedInstance;
|
2013-10-22 01:55:50 +05:30
|
|
|
doLogin(loginDlg->getUsername(), loginDlg->getPassword());
|
2013-09-06 20:38:12 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-07 02:31:40 +05:30
|
|
|
QString user = loginDlg->getUsername();
|
|
|
|
if (user.length() == 0)
|
2013-10-18 22:40:19 +05:30
|
|
|
user = QString("Player");
|
|
|
|
m_activeLogin = {user, QString("Offline"), user, QString()};
|
2013-09-06 20:38:12 +05:30
|
|
|
m_activeInst = m_selectedInstance;
|
|
|
|
launchInstance(m_activeInst, m_activeLogin);
|
|
|
|
}
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-09 03:56:35 +05:30
|
|
|
void MainWindow::onLoginComplete()
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!m_activeInst)
|
2013-08-03 19:27:33 +05:30
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
LoginTask *task = (LoginTask *)QObject::sender();
|
2013-08-09 03:56:35 +05:30
|
|
|
m_activeLogin = task->getResult();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-07 05:08:18 +05:30
|
|
|
BaseUpdate *updateTask = m_activeInst->doUpdate();
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!updateTask)
|
2013-03-24 20:06:00 +05:30
|
|
|
{
|
2013-08-04 03:28:39 +05:30
|
|
|
launchInstance(m_activeInst, m_activeLogin);
|
2013-03-24 20:06:00 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
ProgressDialog tDialog(this);
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(updateTask, SIGNAL(succeeded()), SLOT(onGameUpdateComplete()));
|
2013-08-09 03:56:35 +05:30
|
|
|
connect(updateTask, SIGNAL(failed(QString)), SLOT(onGameUpdateError(QString)));
|
2013-10-10 02:46:10 +05:30
|
|
|
tDialog.exec(updateTask);
|
|
|
|
delete updateTask;
|
2013-03-24 20:06:00 +05:30
|
|
|
}
|
2013-10-19 11:10:46 +05:30
|
|
|
|
2013-10-21 22:20:45 +05:30
|
|
|
auto job = new DownloadJob("Player skin: " + m_activeLogin.player_name);
|
2013-10-19 11:10:46 +05:30
|
|
|
|
2013-10-21 22:20:45 +05:30
|
|
|
auto meta = MMC->metacache()->resolveEntry("skins", m_activeLogin.player_name + ".png");
|
|
|
|
job->addCacheDownload(QUrl("http://skins.minecraft.net/MinecraftSkins/" + m_activeLogin.player_name + ".png"), meta);
|
|
|
|
meta->stale = true;
|
|
|
|
|
|
|
|
job->start();
|
2013-10-19 11:10:46 +05:30
|
|
|
auto filename = MMC->metacache()->resolveEntry("skins", "skins.json")->getFullPath();
|
|
|
|
QFile listFile(filename);
|
|
|
|
|
|
|
|
// Add skin mapping
|
|
|
|
QByteArray data;
|
|
|
|
{
|
|
|
|
if(!listFile.open(QIODevice::ReadWrite))
|
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Failed to open/make skins list JSON";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = listFile.readAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonParseError jsonError;
|
|
|
|
QJsonDocument jsonDoc = QJsonDocument::fromJson(data, &jsonError);
|
|
|
|
QJsonObject root = jsonDoc.object();
|
|
|
|
QJsonObject mappings = root.value("mappings").toObject();
|
|
|
|
QJsonArray usernames = mappings.value(m_activeLogin.username).toArray();
|
|
|
|
|
|
|
|
if(!usernames.contains(m_activeLogin.player_name))
|
|
|
|
{
|
|
|
|
usernames.prepend(m_activeLogin.player_name);
|
|
|
|
mappings[m_activeLogin.username] = usernames;
|
|
|
|
root["mappings"] = mappings;
|
|
|
|
jsonDoc.setObject(root);
|
|
|
|
|
|
|
|
// QJson hack - shouldn't have to clear the file every time a save happens
|
|
|
|
listFile.resize(0);
|
|
|
|
listFile.write(jsonDoc.toJson());
|
|
|
|
}
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2013-08-04 03:28:39 +05:30
|
|
|
void MainWindow::onGameUpdateComplete()
|
2013-05-08 23:26:43 +05:30
|
|
|
{
|
2013-08-04 03:28:39 +05:30
|
|
|
launchInstance(m_activeInst, m_activeLogin);
|
2013-05-08 23:26:43 +05:30
|
|
|
}
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
void MainWindow::onGameUpdateError(QString error)
|
2013-05-08 23:26:43 +05:30
|
|
|
{
|
2013-08-03 19:27:33 +05:30
|
|
|
QMessageBox::warning(this, "Error updating instance", error);
|
2013-05-08 23:26:43 +05:30
|
|
|
}
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
void MainWindow::launchInstance(BaseInstance *instance, LoginResponse response)
|
2013-05-08 23:26:43 +05:30
|
|
|
{
|
|
|
|
Q_ASSERT_X(instance != NULL, "launchInstance", "instance is NULL");
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-23 03:53:50 +05:30
|
|
|
proc = instance->prepareForLaunch(response);
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!proc)
|
2013-08-03 19:27:33 +05:30
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-07 03:22:17 +05:30
|
|
|
// Prepare GUI: If it shall stay open disable the required parts
|
2013-09-08 19:51:49 +05:30
|
|
|
if (MMC->settings()->get("NoHide").toBool())
|
2013-09-07 03:22:17 +05:30
|
|
|
{
|
|
|
|
ui->actionLaunchInstance->setEnabled(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->hide();
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-10-22 22:55:10 +05:30
|
|
|
|
2013-09-07 02:10:50 +05:30
|
|
|
console = new ConsoleWindow(proc);
|
2013-10-22 22:55:10 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(proc, SIGNAL(log(QString, MessageLevel::Enum)), console,
|
|
|
|
SLOT(write(QString, MessageLevel::Enum)));
|
2013-10-22 22:55:10 +05:30
|
|
|
connect(proc, SIGNAL(ended(BaseInstance*)), this, SLOT(instanceEnded(BaseInstance*)));
|
|
|
|
|
|
|
|
if (instance->settings().get("ShowConsole").toBool())
|
|
|
|
{
|
|
|
|
console->show();
|
|
|
|
}
|
|
|
|
|
2013-09-23 03:53:50 +05:30
|
|
|
proc->setLogin(response.username, response.session_id);
|
2013-05-08 23:26:43 +05:30
|
|
|
proc->launch();
|
2013-03-12 02:49:17 +05:30
|
|
|
}
|
|
|
|
|
2013-08-09 03:56:35 +05:30
|
|
|
void MainWindow::taskStart()
|
2013-05-07 03:49:20 +05:30
|
|
|
{
|
|
|
|
// Nothing to do here yet.
|
|
|
|
}
|
|
|
|
|
2013-08-09 03:56:35 +05:30
|
|
|
void MainWindow::taskEnd()
|
2013-05-07 03:49:20 +05:30
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
QObject *sender = QObject::sender();
|
|
|
|
if (sender == m_versionLoadTask)
|
2013-05-07 03:49:20 +05:30
|
|
|
m_versionLoadTask = NULL;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-09 03:56:35 +05:30
|
|
|
sender->deleteLater();
|
2013-05-07 03:49:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::startTask(Task *task)
|
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
connect(task, SIGNAL(started()), SLOT(taskStart()));
|
|
|
|
connect(task, SIGNAL(succeeded()), SLOT(taskEnd()));
|
|
|
|
connect(task, SIGNAL(failed(QString)), SLOT(taskEnd()));
|
2013-09-18 03:30:35 +05:30
|
|
|
task->start();
|
2013-05-07 03:49:20 +05:30
|
|
|
}
|
|
|
|
|
2013-02-13 08:33:15 +05:30
|
|
|
// Create A Desktop Shortcut
|
|
|
|
void MainWindow::on_actionMakeDesktopShortcut_triggered()
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QString name("Test");
|
|
|
|
name = QInputDialog::getText(this, tr("MultiMC Shortcut"), tr("Enter a Shortcut Name."),
|
|
|
|
QLineEdit::Normal, name);
|
2013-02-13 08:33:15 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
Util::createShortCut(Util::getDesktopDir(), QApplication::instance()->applicationFilePath(),
|
|
|
|
QStringList() << "-dl" << QDir::currentPath() << "test", name,
|
|
|
|
"application-x-octet-stream");
|
2013-02-13 08:33:15 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
QMessageBox::warning(
|
|
|
|
this, tr("Not useful"),
|
|
|
|
tr("A Dummy Shortcut was created. it will not do anything productive"));
|
2013-02-13 08:33:15 +05:30
|
|
|
}
|
|
|
|
|
2013-02-13 05:05:35 +05:30
|
|
|
// BrowserDialog
|
2013-10-06 04:43:40 +05:30
|
|
|
void MainWindow::openWebPage(QUrl url)
|
2013-02-13 05:05:35 +05:30
|
|
|
{
|
2013-08-20 05:59:36 +05:30
|
|
|
QDesktopServices::openUrl(url);
|
2013-02-13 05:05:35 +05:30
|
|
|
}
|
2013-02-22 01:10:32 +05:30
|
|
|
|
2013-03-28 22:03:31 +05:30
|
|
|
void MainWindow::on_actionChangeInstMCVersion_triggered()
|
|
|
|
{
|
|
|
|
if (view->selectionModel()->selectedIndexes().count() < 1)
|
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-10-06 18:13:46 +05:30
|
|
|
VersionSelectDialog vselect(m_selectedInstance->versionList().get(),
|
|
|
|
tr("Change Minecraft version"), this);
|
2013-10-08 02:39:50 +05:30
|
|
|
vselect.setFilter(1, "OneSix");
|
2013-08-10 22:04:08 +05:30
|
|
|
if (vselect.exec() && vselect.selectedVersion())
|
2013-05-07 07:58:28 +05:30
|
|
|
{
|
2013-10-10 05:17:48 +05:30
|
|
|
if (m_selectedInstance->versionIsCustom())
|
|
|
|
{
|
|
|
|
auto result = QMessageBox::warning(
|
|
|
|
this, tr("Are you sure?"),
|
|
|
|
tr("This will remove any library/version customization you did previously. "
|
2013-10-21 01:58:31 +05:30
|
|
|
"This includes things like Forge install and similar."),
|
|
|
|
QMessageBox::Ok, QMessageBox::Abort);
|
|
|
|
if (result != QMessageBox::Ok)
|
2013-10-10 05:17:48 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-09-16 04:24:39 +05:30
|
|
|
m_selectedInstance->setIntendedVersionId(vselect.selectedVersion()->descriptor());
|
2013-05-07 07:58:28 +05:30
|
|
|
}
|
2013-03-28 22:03:31 +05:30
|
|
|
}
|
2013-05-17 22:23:22 +05:30
|
|
|
|
|
|
|
void MainWindow::on_actionChangeInstLWJGLVersion_triggered()
|
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
if (!m_selectedInstance)
|
2013-05-17 22:23:22 +05:30
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
LWJGLSelectDialog lselect(this);
|
|
|
|
lselect.exec();
|
|
|
|
if (lselect.result() == QDialog::Accepted)
|
2013-05-17 22:23:22 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
LegacyInstance *linst = (LegacyInstance *)m_selectedInstance;
|
2013-08-25 05:02:42 +05:30
|
|
|
linst->setLWJGLVersion(lselect.selectedVersion());
|
2013-05-17 22:23:22 +05:30
|
|
|
}
|
|
|
|
}
|
2013-07-14 23:56:53 +05:30
|
|
|
|
|
|
|
void MainWindow::on_actionInstanceSettings_triggered()
|
|
|
|
{
|
2013-07-16 04:00:32 +05:30
|
|
|
if (view->selectionModel()->selectedIndexes().count() < 1)
|
|
|
|
return;
|
|
|
|
|
2013-08-25 05:02:42 +05:30
|
|
|
InstanceSettings settings(&m_selectedInstance->settings(), this);
|
2013-07-16 04:00:32 +05:30
|
|
|
settings.setWindowTitle(QString("Instance settings"));
|
|
|
|
settings.exec();
|
2013-07-14 23:56:53 +05:30
|
|
|
}
|
2013-07-15 01:31:30 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
void MainWindow::instanceChanged(const QModelIndex ¤t, const QModelIndex &previous)
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (current.isValid() &&
|
|
|
|
nullptr != (m_selectedInstance =
|
|
|
|
(BaseInstance *)current.data(InstanceList::InstancePointerRole)
|
|
|
|
.value<void *>()))
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
|
|
|
ui->instanceToolBar->setEnabled(true);
|
2013-08-26 10:00:11 +05:30
|
|
|
QString iconKey = m_selectedInstance->iconKey();
|
2013-08-26 02:18:41 +05:30
|
|
|
renameButton->setText(m_selectedInstance->name());
|
2013-10-06 04:43:40 +05:30
|
|
|
ui->actionChangeInstLWJGLVersion->setEnabled(
|
|
|
|
m_selectedInstance->menuActionEnabled("actionChangeInstLWJGLVersion"));
|
|
|
|
ui->actionEditInstMods->setEnabled(
|
|
|
|
m_selectedInstance->menuActionEnabled("actionEditInstMods"));
|
2013-10-08 02:39:50 +05:30
|
|
|
ui->actionChangeInstMCVersion->setEnabled(
|
|
|
|
m_selectedInstance->menuActionEnabled("actionChangeInstMCVersion"));
|
2013-10-26 06:58:50 +05:30
|
|
|
m_statusLeft->setText(m_selectedInstance->getStatusbarDescription());
|
2013-10-06 04:43:40 +05:30
|
|
|
auto ico = MMC->icons()->getIcon(iconKey);
|
2013-08-26 10:00:11 +05:30
|
|
|
ui->actionChangeInstIcon->setIcon(ico);
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-26 10:00:11 +05:30
|
|
|
selectionBad();
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
2013-08-26 10:00:11 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::selectionBad()
|
|
|
|
{
|
|
|
|
m_selectedInstance = nullptr;
|
|
|
|
QString iconKey = "infinity";
|
|
|
|
statusBar()->clearMessage();
|
|
|
|
ui->instanceToolBar->setEnabled(false);
|
2013-09-08 21:43:09 +05:30
|
|
|
renameButton->setText(tr("Rename Instance"));
|
2013-09-07 07:30:58 +05:30
|
|
|
auto ico = MMC->icons()->getIcon(iconKey);
|
2013-08-25 05:02:42 +05:30
|
|
|
ui->actionChangeInstIcon->setIcon(ico);
|
2013-07-15 01:31:30 +05:30
|
|
|
}
|
2013-08-26 02:18:41 +05:30
|
|
|
|
|
|
|
void MainWindow::on_actionEditInstNotes_triggered()
|
|
|
|
{
|
|
|
|
if (!m_selectedInstance)
|
|
|
|
return;
|
2013-10-06 04:43:40 +05:30
|
|
|
LegacyInstance *linst = (LegacyInstance *)m_selectedInstance;
|
|
|
|
|
2013-08-26 02:18:41 +05:30
|
|
|
EditNotesDialog noteedit(linst->notes(), linst->name(), this);
|
|
|
|
noteedit.exec();
|
|
|
|
if (noteedit.result() == QDialog::Accepted)
|
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-26 02:18:41 +05:30
|
|
|
linst->setNotes(noteedit.getText());
|
|
|
|
}
|
|
|
|
}
|
2013-09-07 03:22:17 +05:30
|
|
|
|
2013-10-22 22:55:10 +05:30
|
|
|
void MainWindow::instanceEnded(BaseInstance *instance)
|
2013-09-07 03:22:17 +05:30
|
|
|
{
|
|
|
|
this->show();
|
|
|
|
ui->actionLaunchInstance->setEnabled(m_selectedInstance);
|
2013-10-22 22:55:10 +05:30
|
|
|
|
|
|
|
if (instance->settings().get("AutoCloseConsole").toBool())
|
|
|
|
{
|
|
|
|
console->close();
|
|
|
|
}
|
2013-09-07 03:22:17 +05:30
|
|
|
}
|
2013-10-14 07:29:21 +05:30
|
|
|
|
|
|
|
void MainWindow::checkSetDefaultJava()
|
|
|
|
{
|
2013-10-21 01:58:31 +05:30
|
|
|
bool askForJava = false;
|
2013-10-14 07:29:21 +05:30
|
|
|
{
|
2013-10-21 01:58:31 +05:30
|
|
|
QString currentHostName = QHostInfo::localHostName();
|
|
|
|
QString oldHostName = MMC->settings()->get("LastHostname").toString();
|
|
|
|
if (currentHostName != oldHostName)
|
|
|
|
{
|
|
|
|
MMC->settings()->set("LastHostname", currentHostName);
|
|
|
|
askForJava = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
QString currentJavaPath = MMC->settings()->get("JavaPath").toString();
|
|
|
|
if (currentJavaPath.isEmpty())
|
|
|
|
{
|
|
|
|
askForJava = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (askForJava)
|
|
|
|
{
|
|
|
|
QLOG_DEBUG() << "Java path needs resetting, showing Java selection dialog...";
|
2013-10-14 07:29:21 +05:30
|
|
|
|
|
|
|
JavaVersionPtr java;
|
|
|
|
|
2013-10-21 01:58:31 +05:30
|
|
|
VersionSelectDialog vselect(MMC->javalist().get(), tr("Select a Java version"), this,
|
|
|
|
false);
|
2013-10-14 07:29:21 +05:30
|
|
|
vselect.setResizeOn(2);
|
|
|
|
vselect.exec();
|
|
|
|
|
2013-10-24 05:17:54 +05:30
|
|
|
if (vselect.selectedVersion())
|
|
|
|
java = std::dynamic_pointer_cast<JavaVersion>(vselect.selectedVersion());
|
|
|
|
else
|
2013-10-14 07:29:21 +05:30
|
|
|
{
|
2013-10-21 01:58:31 +05:30
|
|
|
QMessageBox::warning(this, tr("Invalid version selected"),
|
|
|
|
tr("You didn't select a valid Java version, so MultiMC will "
|
|
|
|
"select the default. "
|
|
|
|
"You can change this in the settings dialog."));
|
2013-10-14 07:29:21 +05:30
|
|
|
JavaUtils ju;
|
|
|
|
java = ju.GetDefaultJava();
|
|
|
|
}
|
2013-10-24 05:17:54 +05:30
|
|
|
if(java)
|
|
|
|
MMC->settings()->set("JavaPath", java->path);
|
|
|
|
else
|
|
|
|
MMC->settings()->set("JavaPath", QString("java"));
|
2013-10-14 07:29:21 +05:30
|
|
|
}
|
|
|
|
}
|
2013-10-26 06:58:50 +05:30
|
|
|
|
|
|
|
void MainWindow::assetsIndexStarted()
|
|
|
|
{
|
|
|
|
m_statusRight->setText(tr("Checking assets..."));
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::assetsFilesStarted()
|
|
|
|
{
|
|
|
|
m_statusRight->setText(tr("Downloading assets..."));
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::assetsFilesProgress(int succeeded, int failed, int total)
|
|
|
|
{
|
|
|
|
QString status = tr("Downloading assets: %1 / %2").arg(succeeded + failed).arg(total);
|
|
|
|
if(failed > 0) status += tr(" (%1 failed)").arg(failed);
|
|
|
|
status += tr("...");
|
|
|
|
m_statusRight->setText(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::assetsFailed()
|
|
|
|
{
|
|
|
|
m_statusRight->setText(tr("Failed to update assets."));
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::assetsFinished()
|
|
|
|
{
|
|
|
|
m_statusRight->setText(tr("Assets up to date."));
|
|
|
|
}
|