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-11-04 07:23:05 +05:30
|
|
|
#include "MultiMC.h"
|
2013-01-09 23:52:22 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "MainWindow.h"
|
|
|
|
#include "ui_MainWindow.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-11-28 04:09:49 +05:30
|
|
|
#include <QWidgetAction>
|
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-11-04 07:23:05 +05:30
|
|
|
#include "gui/Platform.h"
|
|
|
|
|
|
|
|
#include "gui/widgets/InstanceDelegate.h"
|
|
|
|
#include "gui/widgets/LabeledToolButton.h"
|
|
|
|
|
|
|
|
#include "gui/dialogs/SettingsDialog.h"
|
|
|
|
#include "gui/dialogs/NewInstanceDialog.h"
|
|
|
|
#include "gui/dialogs/ProgressDialog.h"
|
|
|
|
#include "gui/dialogs/AboutDialog.h"
|
|
|
|
#include "gui/dialogs/VersionSelectDialog.h"
|
|
|
|
#include "gui/dialogs/CustomMessageBox.h"
|
|
|
|
#include "gui/dialogs/LwjglSelectDialog.h"
|
|
|
|
#include "gui/dialogs/InstanceSettings.h"
|
|
|
|
#include "gui/dialogs/IconPickerDialog.h"
|
|
|
|
#include "gui/dialogs/EditNotesDialog.h"
|
|
|
|
#include "gui/dialogs/CopyInstanceDialog.h"
|
2013-11-20 23:50:35 +05:30
|
|
|
#include "gui/dialogs/AccountListDialog.h"
|
2013-11-28 03:44:18 +05:30
|
|
|
#include "gui/dialogs/AccountSelectDialog.h"
|
2013-12-02 05:25:24 +05:30
|
|
|
#include "gui/dialogs/UpdateDialog.h"
|
2013-11-29 09:10:40 +05:30
|
|
|
#include "gui/dialogs/EditAccountDialog.h"
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
#include "gui/ConsoleWindow.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"
|
2013-12-31 05:54:28 +05:30
|
|
|
#include "logic/icons/IconList.h"
|
2013-10-14 07:29:21 +05:30
|
|
|
#include "logic/lists/JavaVersionList.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
|
2013-12-01 06:30:42 +05:30
|
|
|
#include "logic/auth/flows/AuthenticateTask.h"
|
|
|
|
#include "logic/auth/flows/RefreshTask.h"
|
|
|
|
#include "logic/auth/flows/ValidateTask.h"
|
2013-11-29 08:15:52 +05:30
|
|
|
|
2013-12-06 01:22:55 +05:30
|
|
|
#include "logic/updater/DownloadUpdateTask.h"
|
|
|
|
|
2013-12-16 02:18:58 +05:30
|
|
|
#include "logic/news/NewsChecker.h"
|
|
|
|
|
2013-12-13 20:28:11 +05:30
|
|
|
#include "logic/net/URLConstants.h"
|
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
#include "logic/BaseInstance.h"
|
|
|
|
#include "logic/InstanceFactory.h"
|
|
|
|
#include "logic/MinecraftProcess.h"
|
|
|
|
#include "logic/OneSixUpdate.h"
|
2013-10-14 07:29:21 +05:30
|
|
|
#include "logic/JavaUtils.h"
|
2013-11-03 20:50:26 +05:30
|
|
|
#include "logic/NagUtils.h"
|
2013-11-27 22:26:15 +05:30
|
|
|
#include "logic/SkinUtils.h"
|
2013-09-07 07:30:58 +05:30
|
|
|
|
|
|
|
#include "logic/LegacyInstance.h"
|
2013-03-12 02:49:17 +05:30
|
|
|
|
2013-12-08 08:28:44 +05:30
|
|
|
#include "logic/assets/AssetsUtils.h"
|
2014-01-01 20:26:26 +05:30
|
|
|
#include "logic/assets/AssetsMigrateTask.h"
|
2013-12-05 00:04:12 +05:30
|
|
|
#include <logic/updater/UpdateChecker.h>
|
2014-01-03 23:49:27 +05:30
|
|
|
#include <logic/updater/NotificationChecker.h>
|
2014-01-01 23:51:58 +05:30
|
|
|
#include <logic/tasks/ThreadTask.h>
|
2013-12-08 08:28:44 +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);
|
2014-01-09 05:32:15 +05:30
|
|
|
|
|
|
|
QString winTitle = QString("MultiMC 5 - Version %1").arg(MMC->version().toString());
|
|
|
|
if (!MMC->version().platform.isEmpty())
|
|
|
|
winTitle += " on " + MMC->version().platform;
|
|
|
|
setWindowTitle(winTitle);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-27 20:20:42 +05:30
|
|
|
// OSX magic.
|
2013-12-21 23:48:56 +05:30
|
|
|
// setUnifiedTitleAndToolBarOnMac(true);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-08-26 10:39:54 +05:30
|
|
|
// The instance action toolbar customizations
|
|
|
|
{
|
2013-11-04 01:58:04 +05:30
|
|
|
// disabled until we have an instance selected
|
2013-08-26 10:39:54 +05:30
|
|
|
ui->instanceToolBar->setEnabled(false);
|
2013-11-04 01:58:04 +05:30
|
|
|
|
2013-08-26 10:39:54 +05:30
|
|
|
// 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
|
|
|
|
2014-01-03 00:55:38 +05:30
|
|
|
// Add the news label to the news toolbar.
|
|
|
|
{
|
|
|
|
newsLabel = new QToolButton();
|
|
|
|
newsLabel->setIcon(QIcon(":/icons/toolbar/news"));
|
|
|
|
newsLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
|
|
|
newsLabel->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
|
|
ui->newsToolBar->insertWidget(ui->actionMoreNews, newsLabel);
|
2014-01-03 02:07:56 +05:30
|
|
|
QObject::connect(newsLabel, &QAbstractButton::clicked, this, &MainWindow::newsButtonClicked);
|
2014-01-03 00:55:38 +05:30
|
|
|
QObject::connect(MMC->newsChecker().get(), &NewsChecker::newsLoaded, this, &MainWindow::updateNewsLabel);
|
|
|
|
updateNewsLabel();
|
|
|
|
}
|
|
|
|
|
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);
|
2013-11-12 13:53:39 +05:30
|
|
|
// proxymodel->setSortRole(KCategorizedSortFilterProxyModel::CategorySortRole);
|
|
|
|
// proxymodel->setFilterRole(KCategorizedSortFilterProxyModel::CategorySortRole);
|
2013-10-06 04:43:40 +05:30
|
|
|
// 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);
|
|
|
|
|
2014-01-05 05:36:59 +05:30
|
|
|
view->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
connect(view, SIGNAL(customContextMenuRequested(const QPoint&)),
|
|
|
|
this, SLOT(showInstanceContextMenu(const QPoint&)));
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
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-12-31 05:54:28 +05:30
|
|
|
|
|
|
|
// track icon changes and update the toolbar!
|
|
|
|
connect(MMC->icons().get(), SIGNAL(iconUpdated(QString)), SLOT(iconUpdated(QString)));
|
|
|
|
|
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()));
|
|
|
|
|
2014-01-03 01:17:34 +05:30
|
|
|
m_statusLeft = new QLabel(tr("No instance selected"), this);
|
2013-10-26 06:58:50 +05:30
|
|
|
statusBar()->addPermanentWidget(m_statusLeft, 1);
|
|
|
|
|
2013-11-27 22:26:15 +05:30
|
|
|
// Add "manage accounts" button, right align
|
2013-12-15 22:40:51 +05:30
|
|
|
QWidget *spacer = new QWidget();
|
2013-11-27 22:26:15 +05:30
|
|
|
spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
|
|
|
ui->mainToolBar->addWidget(spacer);
|
|
|
|
|
2013-11-28 04:09:49 +05:30
|
|
|
accountMenu = new QMenu(this);
|
2013-11-29 03:16:04 +05:30
|
|
|
manageAccountsAction = new QAction(tr("Manage Accounts"), this);
|
2013-11-28 04:09:49 +05:30
|
|
|
manageAccountsAction->setCheckable(false);
|
2013-12-15 22:40:51 +05:30
|
|
|
connect(manageAccountsAction, SIGNAL(triggered(bool)), this,
|
|
|
|
SLOT(on_actionManageAccounts_triggered()));
|
2013-11-28 04:09:49 +05:30
|
|
|
|
|
|
|
repopulateAccountsMenu();
|
|
|
|
|
|
|
|
accountMenuButton = new QToolButton(this);
|
|
|
|
accountMenuButton->setText(tr("Accounts"));
|
|
|
|
accountMenuButton->setMenu(accountMenu);
|
|
|
|
accountMenuButton->setPopupMode(QToolButton::InstantPopup);
|
|
|
|
accountMenuButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
2013-12-15 22:40:51 +05:30
|
|
|
accountMenuButton->setIcon(
|
|
|
|
QPixmap(":/icons/toolbar/noaccount").scaled(48, 48, Qt::KeepAspectRatio));
|
2013-11-28 04:09:49 +05:30
|
|
|
|
|
|
|
QWidgetAction *accountMenuButtonAction = new QWidgetAction(this);
|
|
|
|
accountMenuButtonAction->setDefaultWidget(accountMenuButton);
|
|
|
|
|
|
|
|
ui->mainToolBar->addAction(accountMenuButtonAction);
|
2013-11-27 22:26:15 +05:30
|
|
|
|
2013-11-29 03:16:04 +05:30
|
|
|
// Update the menu when the active account changes.
|
2013-12-15 22:40:51 +05:30
|
|
|
// Shouldn't have to use lambdas here like this, but if I don't, the compiler throws a fit.
|
|
|
|
// Template hell sucks...
|
|
|
|
connect(MMC->accounts().get(), &MojangAccountList::activeAccountChanged, [this]
|
|
|
|
{ activeAccountChanged(); });
|
|
|
|
connect(MMC->accounts().get(), &MojangAccountList::listChanged, [this]
|
|
|
|
{ repopulateAccountsMenu(); });
|
2013-11-29 03:16:04 +05:30
|
|
|
|
2013-11-28 04:17:15 +05:30
|
|
|
std::shared_ptr<MojangAccountList> accounts = MMC->accounts();
|
2013-11-28 00:15:29 +05:30
|
|
|
|
2013-11-28 04:17:15 +05:30
|
|
|
// TODO: Nicer way to iterate?
|
2013-12-15 22:40:51 +05:30
|
|
|
for (int i = 0; i < accounts->count(); i++)
|
2013-11-28 04:17:15 +05:30
|
|
|
{
|
|
|
|
MojangAccountPtr account = accounts->at(i);
|
2013-12-15 22:40:51 +05:30
|
|
|
if (account != nullptr)
|
2013-11-28 00:15:29 +05:30
|
|
|
{
|
2013-11-28 04:17:15 +05:30
|
|
|
auto job = new NetJob("Startup player skins: " + account->username());
|
2013-11-28 00:15:29 +05:30
|
|
|
|
2013-12-15 22:40:51 +05:30
|
|
|
for (AccountProfile profile : account->profiles())
|
2013-11-28 04:17:15 +05:30
|
|
|
{
|
2013-12-05 07:09:52 +05:30
|
|
|
auto meta = MMC->metacache()->resolveEntry("skins", profile.name + ".png");
|
2013-11-28 04:17:15 +05:30
|
|
|
auto action = CacheDownload::make(
|
2013-12-15 22:40:51 +05:30
|
|
|
QUrl("http://" + URLConstants::SKINS_BASE + profile.name + ".png"), meta);
|
2013-11-28 04:17:15 +05:30
|
|
|
job->addNetAction(action);
|
|
|
|
meta->stale = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
connect(job, SIGNAL(succeeded()), SLOT(activeAccountChanged()));
|
|
|
|
job->start();
|
|
|
|
}
|
2013-11-28 00:15:29 +05:30
|
|
|
}
|
2013-11-27 22:26:15 +05:30
|
|
|
|
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
|
|
|
}
|
2013-11-17 16:38:07 +05:30
|
|
|
|
2013-12-16 02:18:58 +05:30
|
|
|
MMC->newsChecker()->reloadNews();
|
2014-01-03 00:55:38 +05:30
|
|
|
updateNewsLabel();
|
2013-12-16 02:18:58 +05:30
|
|
|
|
2013-12-02 05:25:24 +05:30
|
|
|
// set up the updater object.
|
2013-12-05 00:04:12 +05:30
|
|
|
auto updater = MMC->updateChecker();
|
2013-12-25 07:16:06 +05:30
|
|
|
connect(updater.get(), &UpdateChecker::updateAvailable, this,
|
|
|
|
&MainWindow::updateAvailable);
|
|
|
|
connect(updater.get(), &UpdateChecker::noUpdateFound, [this]()
|
|
|
|
{
|
|
|
|
CustomMessageBox::selectable(
|
|
|
|
this, tr("No update found."),
|
|
|
|
tr("No MultiMC update was found!\nYou are using the latest version."))->exec();
|
|
|
|
});
|
2013-12-02 05:25:24 +05:30
|
|
|
// if automatic update checks are allowed, start one.
|
2013-12-15 22:40:51 +05:30
|
|
|
if (MMC->settings()->get("AutoUpdate").toBool())
|
2013-12-02 05:25:24 +05:30
|
|
|
on_actionCheckUpdate_triggered();
|
2014-01-03 23:49:27 +05:30
|
|
|
|
|
|
|
connect(MMC->notificationChecker().get(), &NotificationChecker::notificationCheckFinished,
|
|
|
|
this, &MainWindow::notificationsChanged);
|
2013-05-17 22:23:22 +05:30
|
|
|
}
|
2013-11-27 19:30:44 +05:30
|
|
|
|
2014-01-06 14:31:40 +05:30
|
|
|
setSelectedInstanceById(MMC->settings()->get("SelectedInstance").toString());
|
2013-11-27 19:30:44 +05:30
|
|
|
|
|
|
|
// removing this looks stupid
|
|
|
|
view->setFocus();
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
|
|
|
delete ui;
|
2013-03-12 02:49:17 +05:30
|
|
|
delete proxymodel;
|
|
|
|
delete drawer;
|
|
|
|
}
|
|
|
|
|
2014-01-05 05:36:59 +05:30
|
|
|
void MainWindow::showInstanceContextMenu(const QPoint& pos)
|
|
|
|
{
|
|
|
|
if(!view->indexAt(pos).isValid())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<QAction *> actions = ui->instanceToolBar->actions();
|
|
|
|
|
|
|
|
// HACK: Filthy rename button hack because the instance view is getting rewritten anyway
|
|
|
|
QAction *actionRename;
|
|
|
|
actionRename = new QAction(tr("Rename"), this);
|
|
|
|
actionRename->setToolTip(ui->actionRenameInstance->toolTip());
|
|
|
|
|
|
|
|
connect(actionRename, SIGNAL(triggered(bool)), SLOT(on_actionRenameInstance_triggered()));
|
|
|
|
|
|
|
|
actions.replace(1, actionRename);
|
|
|
|
|
|
|
|
QMenu myMenu;
|
|
|
|
myMenu.addActions(actions);
|
|
|
|
myMenu.exec(view->mapToGlobal(pos));
|
|
|
|
}
|
|
|
|
|
2013-11-28 04:09:49 +05:30
|
|
|
void MainWindow::repopulateAccountsMenu()
|
|
|
|
{
|
|
|
|
accountMenu->clear();
|
|
|
|
|
|
|
|
std::shared_ptr<MojangAccountList> accounts = MMC->accounts();
|
2013-11-28 05:09:36 +05:30
|
|
|
MojangAccountPtr active_account = accounts->activeAccount();
|
2013-11-28 04:09:49 +05:30
|
|
|
|
2013-11-28 05:09:36 +05:30
|
|
|
QString active_username = "";
|
2013-11-29 03:16:04 +05:30
|
|
|
if (active_account != nullptr)
|
2013-11-28 04:09:49 +05:30
|
|
|
{
|
|
|
|
active_username = accounts->activeAccount()->username();
|
|
|
|
}
|
|
|
|
|
2013-11-29 03:16:04 +05:30
|
|
|
if (accounts->count() <= 0)
|
2013-11-28 04:09:49 +05:30
|
|
|
{
|
|
|
|
QAction *action = new QAction(tr("No accounts added!"), this);
|
|
|
|
action->setEnabled(false);
|
|
|
|
accountMenu->addAction(action);
|
|
|
|
|
|
|
|
accountMenu->addSeparator();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: Nicer way to iterate?
|
2013-11-29 03:16:04 +05:30
|
|
|
for (int i = 0; i < accounts->count(); i++)
|
2013-11-28 04:09:49 +05:30
|
|
|
{
|
|
|
|
MojangAccountPtr account = accounts->at(i);
|
|
|
|
|
|
|
|
// Styling hack
|
|
|
|
QAction *section = new QAction(account->username(), this);
|
|
|
|
section->setEnabled(false);
|
|
|
|
accountMenu->addAction(section);
|
|
|
|
|
2013-12-05 07:09:52 +05:30
|
|
|
for (auto profile : account->profiles())
|
2013-11-28 04:09:49 +05:30
|
|
|
{
|
2013-12-05 07:09:52 +05:30
|
|
|
QAction *action = new QAction(profile.name, this);
|
2013-11-28 04:09:49 +05:30
|
|
|
action->setData(account->username());
|
|
|
|
action->setCheckable(true);
|
2013-12-15 22:40:51 +05:30
|
|
|
if (active_username == account->username())
|
2013-11-28 04:09:49 +05:30
|
|
|
{
|
|
|
|
action->setChecked(true);
|
|
|
|
}
|
|
|
|
|
2013-12-05 07:09:52 +05:30
|
|
|
action->setIcon(SkinUtils::getFaceFromCache(profile.name));
|
2013-11-28 04:09:49 +05:30
|
|
|
accountMenu->addAction(action);
|
|
|
|
connect(action, SIGNAL(triggered(bool)), SLOT(changeActiveAccount()));
|
|
|
|
}
|
|
|
|
|
|
|
|
accountMenu->addSeparator();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-29 03:16:04 +05:30
|
|
|
QAction *action = new QAction(tr("No Default Account"), this);
|
2013-11-28 05:09:36 +05:30
|
|
|
action->setCheckable(true);
|
2013-11-29 03:16:04 +05:30
|
|
|
action->setIcon(QPixmap(":/icons/toolbar/noaccount").scaled(48, 48, Qt::KeepAspectRatio));
|
2013-11-28 05:09:36 +05:30
|
|
|
action->setData("");
|
2013-12-15 22:40:51 +05:30
|
|
|
if (active_username.isEmpty())
|
2013-11-28 05:09:36 +05:30
|
|
|
{
|
|
|
|
action->setChecked(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
accountMenu->addAction(action);
|
|
|
|
connect(action, SIGNAL(triggered(bool)), SLOT(changeActiveAccount()));
|
|
|
|
|
|
|
|
accountMenu->addSeparator();
|
2013-11-28 04:09:49 +05:30
|
|
|
accountMenu->addAction(manageAccountsAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Assumes the sender is a QAction
|
|
|
|
*/
|
|
|
|
void MainWindow::changeActiveAccount()
|
|
|
|
{
|
2013-12-15 22:40:51 +05:30
|
|
|
QAction *sAction = (QAction *)sender();
|
2013-11-28 04:09:49 +05:30
|
|
|
// Profile's associated Mojang username
|
2013-11-29 03:16:04 +05:30
|
|
|
// Will need to change when profiles are properly implemented
|
2013-12-15 22:40:51 +05:30
|
|
|
if (sAction->data().type() != QVariant::Type::String)
|
|
|
|
return;
|
2013-11-28 04:09:49 +05:30
|
|
|
|
2013-11-28 05:09:36 +05:30
|
|
|
QVariant data = sAction->data();
|
|
|
|
QString id = "";
|
2013-11-29 03:16:04 +05:30
|
|
|
if (!data.isNull())
|
2013-11-28 04:09:49 +05:30
|
|
|
{
|
2013-11-28 05:09:36 +05:30
|
|
|
id = data.toString();
|
2013-11-28 04:09:49 +05:30
|
|
|
}
|
|
|
|
|
2013-11-28 05:09:36 +05:30
|
|
|
MMC->accounts()->setActiveAccount(id);
|
|
|
|
|
2013-11-28 04:09:49 +05:30
|
|
|
activeAccountChanged();
|
|
|
|
}
|
|
|
|
|
2013-11-27 22:26:15 +05:30
|
|
|
void MainWindow::activeAccountChanged()
|
|
|
|
{
|
2013-11-28 04:09:49 +05:30
|
|
|
repopulateAccountsMenu();
|
|
|
|
|
2013-11-27 22:26:15 +05:30
|
|
|
MojangAccountPtr account = MMC->accounts()->activeAccount();
|
|
|
|
|
2013-11-29 03:16:04 +05:30
|
|
|
if (account != nullptr && account->username() != "")
|
2013-11-27 22:26:15 +05:30
|
|
|
{
|
2013-11-28 00:15:29 +05:30
|
|
|
const AccountProfile *profile = account->currentProfile();
|
2013-11-29 03:16:04 +05:30
|
|
|
if (profile != nullptr)
|
2013-11-28 00:15:29 +05:30
|
|
|
{
|
2013-12-05 07:09:52 +05:30
|
|
|
accountMenuButton->setIcon(SkinUtils::getFaceFromCache(profile->name));
|
2013-11-28 04:09:49 +05:30
|
|
|
return;
|
2013-11-28 00:15:29 +05:30
|
|
|
}
|
2013-11-27 22:26:15 +05:30
|
|
|
}
|
2013-11-28 04:09:49 +05:30
|
|
|
|
2013-11-29 03:16:04 +05:30
|
|
|
// Set the icon to the "no account" icon.
|
2013-12-15 22:40:51 +05:30
|
|
|
accountMenuButton->setIcon(
|
|
|
|
QPixmap(":/icons/toolbar/noaccount").scaled(48, 48, Qt::KeepAspectRatio));
|
2013-11-27 22:26:15 +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
|
|
|
}
|
|
|
|
|
2014-01-03 00:55:38 +05:30
|
|
|
void MainWindow::updateNewsLabel()
|
|
|
|
{
|
|
|
|
auto newsChecker = MMC->newsChecker();
|
|
|
|
if (newsChecker->isLoadingNews())
|
|
|
|
{
|
|
|
|
newsLabel->setText(tr("Loading news..."));
|
|
|
|
newsLabel->setEnabled(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QList<NewsEntryPtr> entries = newsChecker->getNewsEntries();
|
|
|
|
if (entries.length() > 0)
|
|
|
|
{
|
|
|
|
newsLabel->setText(entries[0]->title);
|
|
|
|
newsLabel->setEnabled(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
newsLabel->setText(tr("No news available."));
|
|
|
|
newsLabel->setEnabled(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-05 00:04:12 +05:30
|
|
|
void MainWindow::updateAvailable(QString repo, QString versionName, int versionId)
|
2013-12-02 05:25:24 +05:30
|
|
|
{
|
|
|
|
UpdateDialog dlg;
|
2013-12-15 22:40:51 +05:30
|
|
|
UpdateAction action = (UpdateAction)dlg.exec();
|
|
|
|
switch (action)
|
2013-12-02 05:25:24 +05:30
|
|
|
{
|
2013-12-15 22:40:51 +05:30
|
|
|
case UPDATE_LATER:
|
|
|
|
QLOG_INFO() << "Update will be installed later.";
|
|
|
|
break;
|
|
|
|
case UPDATE_NOW:
|
|
|
|
downloadUpdates(repo, versionId);
|
|
|
|
break;
|
|
|
|
case UPDATE_ONEXIT:
|
|
|
|
downloadUpdates(repo, versionId, true);
|
|
|
|
break;
|
2013-12-02 05:25:24 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-03 23:49:27 +05:30
|
|
|
QList<int> stringToIntList(const QString &string)
|
|
|
|
{
|
|
|
|
QStringList split = string.split(',', QString::SkipEmptyParts);
|
|
|
|
QList<int> out;
|
|
|
|
for (int i = 0; i < split.size(); ++i)
|
|
|
|
{
|
|
|
|
out.append(split.at(i).toInt());
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
QString intListToString(const QList<int> &list)
|
|
|
|
{
|
|
|
|
QStringList slist;
|
|
|
|
for (int i = 0; i < list.size(); ++i)
|
|
|
|
{
|
|
|
|
slist.append(QString::number(list.at(i)));
|
|
|
|
}
|
|
|
|
return slist.join(',');
|
|
|
|
}
|
|
|
|
void MainWindow::notificationsChanged()
|
|
|
|
{
|
|
|
|
QList<NotificationChecker::NotificationEntry> entries =
|
|
|
|
MMC->notificationChecker()->notificationEntries();
|
|
|
|
QList<int> shownNotifications =
|
|
|
|
stringToIntList(MMC->settings()->get("ShownNotifications").toString());
|
|
|
|
for (auto it = entries.begin(); it != entries.end(); ++it)
|
|
|
|
{
|
|
|
|
NotificationChecker::NotificationEntry entry = *it;
|
|
|
|
if (!shownNotifications.contains(entry.id) && entry.applies())
|
|
|
|
{
|
|
|
|
QMessageBox::Icon icon;
|
|
|
|
switch (entry.type)
|
|
|
|
{
|
|
|
|
case NotificationChecker::NotificationEntry::Critical:
|
|
|
|
icon = QMessageBox::Critical;
|
|
|
|
break;
|
|
|
|
case NotificationChecker::NotificationEntry::Warning:
|
|
|
|
icon = QMessageBox::Warning;
|
|
|
|
break;
|
|
|
|
case NotificationChecker::NotificationEntry::Information:
|
|
|
|
icon = QMessageBox::Information;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-01-04 01:35:03 +05:30
|
|
|
QMessageBox box(icon, tr("Notification"), entry.message, QMessageBox::Close, this);
|
|
|
|
QPushButton *dontShowAgainButton = box.addButton(tr("Don't show again"), QMessageBox::AcceptRole);
|
2014-01-04 01:41:33 +05:30
|
|
|
box.setDefaultButton(QMessageBox::Close);
|
2014-01-03 23:49:27 +05:30
|
|
|
box.exec();
|
2014-01-04 01:35:03 +05:30
|
|
|
if (box.clickedButton() == dontShowAgainButton)
|
|
|
|
{
|
|
|
|
shownNotifications.append(entry.id);
|
|
|
|
}
|
2014-01-03 23:49:27 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
MMC->settings()->set("ShownNotifications", intListToString(shownNotifications));
|
|
|
|
}
|
|
|
|
|
2013-12-07 00:29:58 +05:30
|
|
|
void MainWindow::downloadUpdates(QString repo, int versionId, bool installOnExit)
|
|
|
|
{
|
|
|
|
QLOG_INFO() << "Downloading updates.";
|
2013-12-15 22:40:51 +05:30
|
|
|
// TODO: If the user chooses to update on exit, we should download updates in the
|
|
|
|
// background.
|
|
|
|
// Doing so is a bit complicated, because we'd have to make sure it finished downloading
|
|
|
|
// before actually exiting MultiMC.
|
2013-12-07 00:29:58 +05:30
|
|
|
ProgressDialog updateDlg(this);
|
|
|
|
DownloadUpdateTask updateTask(repo, versionId, &updateDlg);
|
|
|
|
// If the task succeeds, install the updates.
|
|
|
|
if (updateDlg.exec(&updateTask))
|
|
|
|
{
|
2014-01-05 17:47:42 +05:30
|
|
|
UpdateFlags baseFlags = None;
|
|
|
|
#ifdef MultiMC_UPDATER_DRY_RUN
|
|
|
|
baseFlags |= DryRun;
|
|
|
|
#endif
|
2013-12-07 00:29:58 +05:30
|
|
|
if (installOnExit)
|
2014-01-05 17:47:42 +05:30
|
|
|
MMC->installUpdates(updateTask.updateFilesDir(), baseFlags | OnExit);
|
2013-12-07 00:29:58 +05:30
|
|
|
else
|
2014-01-05 17:47:42 +05:30
|
|
|
MMC->installUpdates(updateTask.updateFilesDir(), baseFlags | RestartOnFinish);
|
2013-12-07 00:29:58 +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-11-04 01:58:04 +05:30
|
|
|
QString instancesDir = MMC->settings()->get("InstanceDir").toString();
|
|
|
|
QString instDirName = DirNameFromString(newInstDlg.instName(), instancesDir);
|
|
|
|
QString instDir = PathCombine(instancesDir, 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-12-10 05:43:35 +05:30
|
|
|
break;
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
case InstanceFactory::InstExists:
|
2013-10-29 18:10:09 +05:30
|
|
|
{
|
2013-07-28 12:10:15 +05:30
|
|
|
errorMsg += "An instance with the given directory name already exists.";
|
2013-10-29 18:10:09 +05:30
|
|
|
CustomMessageBox::selectable(this, tr("Error"), errorMsg, QMessageBox::Warning)->show();
|
2013-12-16 01:12:17 +05:30
|
|
|
return;
|
2013-10-29 18:10:09 +05:30
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
case InstanceFactory::CantCreateDir:
|
2013-10-29 18:10:09 +05:30
|
|
|
{
|
2013-07-28 12:10:15 +05:30
|
|
|
errorMsg += "Failed to create the instance directory.";
|
2013-10-29 18:10:09 +05:30
|
|
|
CustomMessageBox::selectable(this, tr("Error"), errorMsg, QMessageBox::Warning)->show();
|
2013-12-16 01:12:17 +05:30
|
|
|
return;
|
2013-10-29 18:10:09 +05:30
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-07-28 12:10:15 +05:30
|
|
|
default:
|
2013-10-29 18:10:09 +05:30
|
|
|
{
|
2013-07-28 12:10:15 +05:30
|
|
|
errorMsg += QString("Unknown instance loader error %1").arg(error);
|
2013-10-29 18:10:09 +05:30
|
|
|
CustomMessageBox::selectable(this, tr("Error"), errorMsg, QMessageBox::Warning)->show();
|
2013-12-16 01:12:17 +05:30
|
|
|
return;
|
2013-04-23 03:45:18 +05:30
|
|
|
}
|
2013-10-29 18:10:09 +05:30
|
|
|
}
|
2013-12-10 05:43:35 +05:30
|
|
|
|
2013-12-15 22:40:51 +05:30
|
|
|
if (MMC->accounts()->anyAccountIsValid())
|
2013-12-10 05:43:35 +05:30
|
|
|
{
|
|
|
|
ProgressDialog loadDialog(this);
|
|
|
|
auto update = newInstance->doUpdate(false);
|
2013-12-15 22:40:51 +05:30
|
|
|
connect(update.get(), &Task::failed, [this](QString reason)
|
|
|
|
{
|
2013-12-10 05:43:35 +05:30
|
|
|
QString error = QString("Instance load failed: %1").arg(reason);
|
2013-12-15 22:40:51 +05:30
|
|
|
CustomMessageBox::selectable(this, tr("Error"), error, QMessageBox::Warning)
|
|
|
|
->show();
|
2013-12-10 05:43:35 +05:30
|
|
|
});
|
|
|
|
loadDialog.exec(update.get());
|
|
|
|
}
|
2013-12-16 01:12:17 +05:30
|
|
|
else
|
|
|
|
{
|
|
|
|
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();
|
|
|
|
}
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
2013-11-04 01:58:04 +05:30
|
|
|
void MainWindow::on_actionCopyInstance_triggered()
|
|
|
|
{
|
|
|
|
if (!m_selectedInstance)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CopyInstanceDialog copyInstDlg(m_selectedInstance, this);
|
|
|
|
if (!copyInstDlg.exec())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QString instancesDir = MMC->settings()->get("InstanceDir").toString();
|
|
|
|
QString instDirName = DirNameFromString(copyInstDlg.instName(), instancesDir);
|
|
|
|
QString instDir = PathCombine(instancesDir, instDirName);
|
|
|
|
|
|
|
|
auto &loader = InstanceFactory::get();
|
|
|
|
|
|
|
|
BaseInstance *newInstance = NULL;
|
|
|
|
auto error = loader.copyInstance(newInstance, m_selectedInstance, instDir);
|
|
|
|
|
|
|
|
QString errorMsg = QString("Failed to create instance %1: ").arg(instDirName);
|
|
|
|
switch (error)
|
|
|
|
{
|
|
|
|
case InstanceFactory::NoCreateError:
|
|
|
|
newInstance->setName(copyInstDlg.instName());
|
|
|
|
newInstance->setIconKey(copyInstDlg.iconKey());
|
|
|
|
MMC->instances()->add(InstancePtr(newInstance));
|
|
|
|
return;
|
|
|
|
|
|
|
|
case InstanceFactory::InstExists:
|
|
|
|
{
|
|
|
|
errorMsg += "An instance with the given directory name already exists.";
|
|
|
|
CustomMessageBox::selectable(this, tr("Error"), errorMsg, QMessageBox::Warning)->show();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case InstanceFactory::CantCreateDir:
|
|
|
|
{
|
|
|
|
errorMsg += "Failed to create the instance directory.";
|
|
|
|
CustomMessageBox::selectable(this, tr("Error"), errorMsg, QMessageBox::Warning)->show();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
errorMsg += QString("Unknown instance loader error %1").arg(error);
|
|
|
|
CustomMessageBox::selectable(this, tr("Error"), errorMsg, QMessageBox::Warning)->show();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-12-31 05:54:28 +05:30
|
|
|
void MainWindow::iconUpdated(QString icon)
|
|
|
|
{
|
|
|
|
if(icon == m_currentInstIcon)
|
|
|
|
{
|
|
|
|
ui->actionChangeInstIcon->setIcon(MMC->icons()->getIcon(m_currentInstIcon));
|
2013-03-19 10:54:34 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-31 05:54:28 +05:30
|
|
|
void MainWindow::updateInstanceToolIcon(QString new_icon)
|
|
|
|
{
|
|
|
|
m_currentInstIcon = new_icon;
|
|
|
|
ui->actionChangeInstIcon->setIcon(MMC->icons()->getIcon(m_currentInstIcon));
|
|
|
|
}
|
|
|
|
|
2014-01-06 14:31:40 +05:30
|
|
|
void MainWindow::setSelectedInstanceById(const QString &id)
|
|
|
|
{
|
|
|
|
QModelIndex selectionIndex = proxymodel->index(0, 0);
|
|
|
|
if (!id.isNull())
|
|
|
|
{
|
|
|
|
const QModelIndex index = MMC->instances()->getInstanceIndexById(id);
|
|
|
|
if (index.isValid())
|
|
|
|
{
|
|
|
|
selectionIndex = proxymodel->mapFromSource(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
view->selectionModel()->setCurrentIndex(selectionIndex, QItemSelectionModel::ClearAndSelect);
|
|
|
|
}
|
|
|
|
|
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());
|
2013-12-15 22:40:51 +05:30
|
|
|
auto groups = MMC->instances()->getGroups();
|
2013-12-16 01:12:17 +05:30
|
|
|
groups.insert(0, "");
|
2013-12-15 22:40:51 +05:30
|
|
|
groups.sort(Qt::CaseInsensitive);
|
|
|
|
int foo = groups.indexOf(name);
|
|
|
|
|
|
|
|
name = QInputDialog::getItem(this, tr("Group name"), tr("Enter a new group name."), groups,
|
|
|
|
foo, true, &ok);
|
|
|
|
name = name.simplified();
|
2013-10-06 04:43:40 +05:30
|
|
|
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()
|
|
|
|
{
|
2013-12-05 00:04:12 +05:30
|
|
|
auto updater = MMC->updateChecker();
|
2013-12-25 07:16:06 +05:30
|
|
|
|
2013-12-25 02:30:07 +05:30
|
|
|
updater->checkForUpdate(true);
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
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-11-12 13:53:39 +05:30
|
|
|
// FIXME: quick HACK to make this work. improve, optimize.
|
2013-11-04 04:41:20 +05:30
|
|
|
proxymodel->invalidate();
|
|
|
|
proxymodel->sort(0);
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
2013-11-20 23:50:35 +05:30
|
|
|
void MainWindow::on_actionManageAccounts_triggered()
|
|
|
|
{
|
|
|
|
AccountListDialog dialog(this);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-01-03 00:55:38 +05:30
|
|
|
void MainWindow::on_actionMoreNews_triggered()
|
2013-01-09 23:52:22 +05:30
|
|
|
{
|
2013-10-15 04:49:22 +05:30
|
|
|
openWebPage(QUrl("http://multimc.org/posts.html"));
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
2014-01-03 02:07:56 +05:30
|
|
|
void MainWindow::newsButtonClicked()
|
|
|
|
{
|
|
|
|
QList<NewsEntryPtr> entries = MMC->newsChecker()->getNewsEntries();
|
|
|
|
if (entries.count() > 0)
|
|
|
|
openWebPage(QUrl(entries[0]->link));
|
|
|
|
else
|
|
|
|
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-11-04 01:58:04 +05:30
|
|
|
auto response = CustomMessageBox::selectable(
|
|
|
|
this, tr("CAREFUL"), tr("This is permanent! Are you sure?\nAbout to delete: ") +
|
|
|
|
m_selectedInstance->name(),
|
|
|
|
QMessageBox::Question, QMessageBox::Yes | QMessageBox::No)->exec();
|
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-11-03 06:15:25 +05:30
|
|
|
|
|
|
|
MMC->settings()->set("MainWindowState", saveState().toBase64());
|
|
|
|
MMC->settings()->set("MainWindowGeometry", saveGeometry().toBase64());
|
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
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;
|
2013-11-03 20:50:26 +05:30
|
|
|
|
2013-10-22 01:55:50 +05:30
|
|
|
BaseInstance *inst =
|
|
|
|
(BaseInstance *)index.data(InstanceList::InstancePointerRole).value<void *>();
|
|
|
|
|
2013-11-06 06:48:47 +05:30
|
|
|
NagUtils::checkJVMArgs(inst->settings().get("JvmArgs").toString(), this);
|
2013-11-03 20:50:26 +05:30
|
|
|
|
2013-11-29 08:15:52 +05:30
|
|
|
doLaunch();
|
2013-10-22 01:55:50 +05:30
|
|
|
}
|
|
|
|
|
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-11-06 06:48:47 +05:30
|
|
|
NagUtils::checkJVMArgs(m_selectedInstance->settings().get("JvmArgs").toString(), this);
|
2013-11-29 08:15:52 +05:30
|
|
|
doLaunch();
|
2013-03-12 02:49:17 +05:30
|
|
|
}
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
|
2013-11-29 08:15:52 +05:30
|
|
|
void MainWindow::doLaunch()
|
2013-10-22 01:55:50 +05:30
|
|
|
{
|
2013-10-22 02:38:09 +05:30
|
|
|
if (!m_selectedInstance)
|
|
|
|
return;
|
|
|
|
|
2013-11-21 06:01:15 +05:30
|
|
|
// Find an account to use.
|
|
|
|
std::shared_ptr<MojangAccountList> accounts = MMC->accounts();
|
2013-11-23 00:17:39 +05:30
|
|
|
MojangAccountPtr account = accounts->activeAccount();
|
2013-11-21 06:01:15 +05:30
|
|
|
if (accounts->count() <= 0)
|
2013-10-22 01:55:50 +05:30
|
|
|
{
|
2013-11-21 06:01:15 +05:30
|
|
|
// Tell the user they need to log in at least one account in order to play.
|
2013-12-15 22:40:51 +05:30
|
|
|
auto reply = CustomMessageBox::selectable(
|
|
|
|
this, tr("No Accounts"),
|
|
|
|
tr("In order to play Minecraft, you must have at least one Mojang or Minecraft "
|
|
|
|
"account logged in to MultiMC."
|
|
|
|
"Would you like to open the account manager to add an account now?"),
|
2013-11-22 21:42:16 +05:30
|
|
|
QMessageBox::Information, QMessageBox::Yes | QMessageBox::No)->exec();
|
2013-10-22 01:55:50 +05:30
|
|
|
|
2013-11-22 21:42:16 +05:30
|
|
|
if (reply == QMessageBox::Yes)
|
2013-10-22 01:55:50 +05:30
|
|
|
{
|
2013-11-22 21:42:16 +05:30
|
|
|
// Open the account manager.
|
|
|
|
on_actionManageAccounts_triggered();
|
2013-10-22 01:55:50 +05:30
|
|
|
}
|
|
|
|
}
|
2013-11-23 00:17:39 +05:30
|
|
|
else if (account.get() == nullptr)
|
2013-10-22 01:55:50 +05:30
|
|
|
{
|
2013-11-28 03:44:18 +05:30
|
|
|
// If no default account is set, ask the user which one to use.
|
|
|
|
AccountSelectDialog selectDialog(tr("Which account would you like to use?"),
|
2013-12-15 22:40:51 +05:30
|
|
|
AccountSelectDialog::GlobalDefaultCheckbox, this);
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-11-28 03:44:18 +05:30
|
|
|
selectDialog.exec();
|
|
|
|
|
|
|
|
// Launch the instance with the selected account.
|
|
|
|
account = selectDialog.selectedAccount();
|
|
|
|
|
|
|
|
// If the user said to use the account as default, do that.
|
|
|
|
if (selectDialog.useAsGlobalDefault() && account.get() != nullptr)
|
|
|
|
accounts->setActiveAccount(account->username());
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
2013-11-28 03:44:18 +05:30
|
|
|
|
2013-12-08 22:04:45 +05:30
|
|
|
// if no account is selected, we bail
|
|
|
|
if (!account.get())
|
|
|
|
return;
|
2013-12-01 06:30:42 +05:30
|
|
|
|
2013-12-25 04:08:37 +05:30
|
|
|
QString failReason = tr("Your account is currently not logged in. Please enter "
|
|
|
|
"your password to log in again.");
|
2013-12-08 22:04:45 +05:30
|
|
|
// do the login. if the account has an access token, try to refresh it first.
|
2013-12-15 22:40:51 +05:30
|
|
|
if (account->accountStatus() != NotVerified)
|
2013-11-29 08:15:52 +05:30
|
|
|
{
|
2013-12-08 22:04:45 +05:30
|
|
|
// We'll need to validate the access token to make sure the account is still logged in.
|
|
|
|
ProgressDialog progDialog(this);
|
|
|
|
progDialog.setSkipButton(true, tr("Play Offline"));
|
|
|
|
auto task = account->login();
|
|
|
|
progDialog.exec(task.get());
|
2013-11-29 08:15:52 +05:30
|
|
|
|
2013-12-08 22:04:45 +05:30
|
|
|
auto status = account->accountStatus();
|
2013-12-15 22:40:51 +05:30
|
|
|
if (status != NotVerified)
|
2013-11-29 08:15:52 +05:30
|
|
|
{
|
2013-12-08 22:04:45 +05:30
|
|
|
updateInstance(m_selectedInstance, account);
|
2013-11-29 08:15:52 +05:30
|
|
|
}
|
2013-12-25 04:08:37 +05:30
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!task->successful())
|
|
|
|
{
|
|
|
|
failReason = task->failReason();
|
|
|
|
}
|
|
|
|
if (loginWithPassword(account, failReason))
|
|
|
|
updateInstance(m_selectedInstance, account);
|
|
|
|
}
|
|
|
|
// in any case, revert from online to verified.
|
|
|
|
account->downgrade();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (loginWithPassword(account, failReason))
|
|
|
|
{
|
|
|
|
updateInstance(m_selectedInstance, account);
|
|
|
|
account->downgrade();
|
|
|
|
}
|
|
|
|
// in any case, revert from online to verified.
|
2013-12-09 02:36:04 +05:30
|
|
|
account->downgrade();
|
2013-11-29 08:15:52 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-15 22:40:51 +05:30
|
|
|
bool MainWindow::loginWithPassword(MojangAccountPtr account, const QString &errorMsg)
|
2013-11-29 08:15:52 +05:30
|
|
|
{
|
2013-11-29 09:10:40 +05:30
|
|
|
EditAccountDialog passDialog(errorMsg, this, EditAccountDialog::PasswordField);
|
2013-11-29 08:15:52 +05:30
|
|
|
if (passDialog.exec() == QDialog::Accepted)
|
|
|
|
{
|
2013-12-15 22:40:51 +05:30
|
|
|
// To refresh the token, we just create an authenticate task with the given account and
|
|
|
|
// the user's password.
|
2013-11-29 08:15:52 +05:30
|
|
|
ProgressDialog progDialog(this);
|
2013-12-08 22:04:45 +05:30
|
|
|
auto task = account->login(passDialog.password());
|
|
|
|
progDialog.exec(task.get());
|
2013-12-15 22:40:51 +05:30
|
|
|
if (task->successful())
|
2013-11-29 08:15:52 +05:30
|
|
|
return true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If the authentication task failed, recurse with the task's error message.
|
2013-12-08 22:04:45 +05:30
|
|
|
return loginWithPassword(account, task->failReason());
|
2013-11-29 08:15:52 +05:30
|
|
|
}
|
|
|
|
}
|
2013-12-05 07:09:52 +05:30
|
|
|
return false;
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
|
2013-12-15 22:40:51 +05:30
|
|
|
void MainWindow::updateInstance(BaseInstance *instance, MojangAccountPtr account)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-12-09 02:36:04 +05:30
|
|
|
bool only_prepare = account->accountStatus() != Online;
|
|
|
|
auto updateTask = instance->doUpdate(only_prepare);
|
2013-10-06 04:43:40 +05:30
|
|
|
if (!updateTask)
|
2013-03-24 20:06:00 +05:30
|
|
|
{
|
2013-11-23 00:17:39 +05:30
|
|
|
launchInstance(instance, account);
|
2013-12-15 22:40:51 +05:30
|
|
|
return;
|
2013-03-24 20:06:00 +05:30
|
|
|
}
|
2013-12-15 22:40:51 +05:30
|
|
|
ProgressDialog tDialog(this);
|
|
|
|
connect(updateTask.get(), &Task::succeeded, [this, instance, account]
|
|
|
|
{ launchInstance(instance, account); });
|
|
|
|
connect(updateTask.get(), SIGNAL(failed(QString)), SLOT(onGameUpdateError(QString)));
|
|
|
|
tDialog.exec(updateTask.get());
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2013-11-23 00:17:39 +05:30
|
|
|
void MainWindow::launchInstance(BaseInstance *instance, MojangAccountPtr account)
|
2013-05-08 23:26:43 +05:30
|
|
|
{
|
|
|
|
Q_ASSERT_X(instance != NULL, "launchInstance", "instance is NULL");
|
2013-11-23 00:17:39 +05:30
|
|
|
Q_ASSERT_X(account.get() != nullptr, "launchInstance", "account is NULL");
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-11-23 00:17:39 +05:30
|
|
|
proc = instance->prepareForLaunch(account);
|
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-11-23 06:11:28 +05:30
|
|
|
this->hide();
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2013-09-07 02:10:50 +05:30
|
|
|
console = new ConsoleWindow(proc);
|
2013-11-23 06:11:28 +05:30
|
|
|
connect(console, SIGNAL(isClosing()), this, SLOT(instanceEnded()));
|
2013-10-22 22:55:10 +05:30
|
|
|
|
2013-12-01 06:30:42 +05:30
|
|
|
proc->setLogin(account);
|
2013-05-08 23:26:43 +05:30
|
|
|
proc->launch();
|
2013-03-12 02:49:17 +05:30
|
|
|
}
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
void MainWindow::onGameUpdateError(QString error)
|
2013-05-08 23:26:43 +05:30
|
|
|
{
|
2013-11-04 01:58:04 +05:30
|
|
|
CustomMessageBox::selectable(this, tr("Error updating instance"), error,
|
|
|
|
QMessageBox::Warning)->show();
|
2013-05-08 23:26:43 +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-11-04 01:58:04 +05:30
|
|
|
CustomMessageBox::selectable(
|
|
|
|
this, tr("Not useful"),
|
|
|
|
tr("A Dummy Shortcut was created. it will not do anything productive"),
|
|
|
|
QMessageBox::Warning)->show();
|
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-12-27 17:20:24 +05:30
|
|
|
if(!vselect.exec() || !vselect.selectedVersion())
|
|
|
|
return;
|
|
|
|
|
2013-12-15 22:40:51 +05:30
|
|
|
if (!MMC->accounts()->anyAccountIsValid())
|
2013-12-16 01:12:17 +05:30
|
|
|
{
|
|
|
|
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();
|
2013-12-15 22:40:51 +05:30
|
|
|
return;
|
2013-12-16 01:12:17 +05:30
|
|
|
}
|
2013-12-27 17:20:24 +05:30
|
|
|
|
|
|
|
if (m_selectedInstance->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_selectedInstance->setIntendedVersionId(vselect.selectedVersion()->descriptor());
|
|
|
|
|
|
|
|
auto updateTask = m_selectedInstance->doUpdate(false);
|
2013-12-15 22:40:51 +05:30
|
|
|
if (!updateTask)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ProgressDialog tDialog(this);
|
|
|
|
connect(updateTask.get(), SIGNAL(failed(QString)), SLOT(onGameUpdateError(QString)));
|
|
|
|
tDialog.exec(updateTask.get());
|
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-11-06 06:31:09 +05:30
|
|
|
settings.setWindowTitle(tr("Instance settings"));
|
2013-07-16 04:00:32 +05:30
|
|
|
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 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-12-31 05:54:28 +05:30
|
|
|
updateInstanceToolIcon(m_selectedInstance->iconKey());
|
2013-11-27 19:30:44 +05:30
|
|
|
|
|
|
|
MMC->settings()->set("SelectedInstance", m_selectedInstance->id());
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-26 10:00:11 +05:30
|
|
|
selectionBad();
|
2013-11-27 19:30:44 +05:30
|
|
|
|
|
|
|
MMC->settings()->set("SelectedInstance", QString());
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
2013-08-26 10:00:11 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::selectionBad()
|
|
|
|
{
|
2014-01-06 14:31:40 +05:30
|
|
|
// start by reseting everything...
|
2013-08-26 10:00:11 +05:30
|
|
|
m_selectedInstance = nullptr;
|
2013-12-31 05:54:28 +05:30
|
|
|
|
2013-08-26 10:00:11 +05:30
|
|
|
statusBar()->clearMessage();
|
|
|
|
ui->instanceToolBar->setEnabled(false);
|
2013-09-08 21:43:09 +05:30
|
|
|
renameButton->setText(tr("Rename Instance"));
|
2013-12-31 05:54:28 +05:30
|
|
|
updateInstanceToolIcon("infinity");
|
2014-01-06 14:31:40 +05:30
|
|
|
|
|
|
|
// ...and then see if we can enable the previously selected instance
|
|
|
|
setSelectedInstanceById(MMC->settings()->get("SelectedInstance").toString());
|
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-11-23 06:11:28 +05:30
|
|
|
void MainWindow::instanceEnded()
|
2013-09-07 03:22:17 +05:30
|
|
|
{
|
|
|
|
this->show();
|
|
|
|
}
|
2013-10-14 07:29:21 +05:30
|
|
|
|
2014-01-01 20:26:26 +05:30
|
|
|
void MainWindow::checkMigrateLegacyAssets()
|
|
|
|
{
|
|
|
|
int legacyAssets = AssetsUtils::findLegacyAssets();
|
|
|
|
if(legacyAssets > 0)
|
|
|
|
{
|
|
|
|
ProgressDialog migrateDlg(this);
|
|
|
|
AssetsMigrateTask migrateTask(legacyAssets, &migrateDlg);
|
|
|
|
{
|
2014-01-01 23:51:58 +05:30
|
|
|
ThreadTask threadTask(&migrateTask);
|
|
|
|
|
|
|
|
if (migrateDlg.exec(&threadTask))
|
|
|
|
{
|
|
|
|
QLOG_INFO() << "Assets migration task completed successfully";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QLOG_INFO() << "Assets migration task reported failure";
|
|
|
|
}
|
2014-01-01 20:26:26 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QLOG_INFO() << "Didn't find any legacy assets to migrate";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-11-04 01:58:04 +05:30
|
|
|
CustomMessageBox::selectable(
|
|
|
|
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."),
|
|
|
|
QMessageBox::Warning)->show();
|
2013-10-29 18:10:09 +05:30
|
|
|
|
2013-10-14 07:29:21 +05:30
|
|
|
JavaUtils ju;
|
|
|
|
java = ju.GetDefaultJava();
|
|
|
|
}
|
2013-10-26 23:25:48 +05:30
|
|
|
if (java)
|
2013-10-24 05:17:54 +05:30
|
|
|
MMC->settings()->set("JavaPath", java->path);
|
|
|
|
else
|
|
|
|
MMC->settings()->set("JavaPath", QString("java"));
|
2013-10-14 07:29:21 +05:30
|
|
|
}
|
|
|
|
}
|