pollymc/gui/mainwindow.cpp

798 lines
21 KiB
C++
Raw Normal View History

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.
*/
#include <MultiMC.h>
2013-01-09 23:52:22 +05:30
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QMenu>
2013-02-02 00:37:36 +05:30
#include <QMessageBox>
#include <QInputDialog>
2013-01-09 23:52:22 +05:30
#include <QDesktopServices>
#include <QUrl>
2013-02-20 04:37:52 +05:30
#include <QDir>
#include <QFileInfo>
#include <QLabel>
#include <QToolButton>
2013-01-09 23:52:22 +05:30
#include "osutils.h"
#include "userutils.h"
#include "pathutils.h"
2013-02-02 00:37:36 +05:30
#include "categorizedview.h"
#include "categorydrawer.h"
#include "gui/settingsdialog.h"
2013-02-02 00:37:36 +05:30
#include "gui/newinstancedialog.h"
#include "gui/logindialog.h"
#include "gui/ProgressDialog.h"
#include "gui/aboutdialog.h"
#include "gui/versionselectdialog.h"
#include "gui/lwjglselectdialog.h"
#include "gui/consolewindow.h"
#include "gui/instancesettings.h"
#include "gui/platform.h"
2013-02-02 00:37:36 +05:30
#include "logic/lists/InstanceList.h"
#include "logic/lists/MinecraftVersionList.h"
#include "logic/lists/LwjglVersionList.h"
#include "logic/lists/IconList.h"
#include "logic/lists/JavaVersionList.h"
#include "logic/net/LoginTask.h"
#include "logic/BaseInstance.h"
#include "logic/InstanceFactory.h"
#include "logic/MinecraftProcess.h"
#include "logic/OneSixAssets.h"
#include "logic/OneSixUpdate.h"
#include "logic/JavaUtils.h"
#include "logic/LegacyInstance.h"
2013-03-12 02:49:17 +05:30
#include "instancedelegate.h"
#include "IconPickerDialog.h"
#include "LabeledToolButton.h"
#include "EditNotesDialog.h"
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
{
MultiMCPlatform::fixWM_CLASS(this);
2013-10-06 04:43:40 +05:30
ui->setupUi(this);
setWindowTitle(QString("MultiMC %1").arg(MMC->version().toString()));
// Set the selected instance to null
m_selectedInstance = nullptr;
// Set active instance to null.
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
// 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");
renameButton->setToolTip(ui->actionRenameInstance->toolTip());
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-10-06 04:43:40 +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);
view->setWordWrap(true);
2013-10-06 04:43:40 +05:30
view->setMouseTracking(true);
view->viewport()->setAttribute(Qt::WA_Hover);
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
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);
}
// The cat background
{
bool cat_enable = MMC->settings()->get("TheCat").toBool();
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 &)));
// 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 &)));
// 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()));
// run the things that load and download other things... FIXME: this is NOT the place
// FIXME: invisible actions in the background = NOPE.
{
if (!MMC->minecraftlist()->isLoaded())
{
m_versionLoadTask = MMC->minecraftlist()->getLoadTask();
startTask(m_versionLoadTask);
}
if (!MMC->lwjgllist()->isLoaded())
{
MMC->lwjgllist()->loadList();
}
assets_downloader = new OneSixAssets();
assets_downloader->start();
}
2013-01-09 23:52:22 +05:30
}
MainWindow::~MainWindow()
{
delete ui;
2013-03-12 02:49:17 +05:30
delete proxymodel;
delete drawer;
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-10-06 04:43:40 +05:30
if (obj == view)
{
if (ev->type() == QEvent::KeyPress)
{
2013-10-06 04:43:40 +05:30
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(ev);
switch (keyEvent->key())
{
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-10-06 04:43:40 +05:30
return QMainWindow::eventFilter(obj, ev);
}
2013-10-06 04:43:40 +05:30
void MainWindow::onCatToggled(bool state)
{
setCatBackground(state);
MMC->settings()->set("TheCat", state);
}
2013-10-06 04:43:40 +05:30
void MainWindow::setCatBackground(bool enabled)
{
2013-10-06 04:43:40 +05:30
if (enabled)
{
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);"
"}");
}
else
{
view->setStyleSheet(QString());
}
}
2013-10-06 04:43:40 +05:30
void MainWindow::instanceActivated(QModelIndex index)
2013-03-12 02:49:17 +05:30
{
2013-10-06 04:43:40 +05:30
if (!index.isValid())
2013-03-12 02:49:17 +05:30
return;
2013-10-06 04:43:40 +05:30
BaseInstance *inst =
(BaseInstance *)index.data(InstanceList::InstancePointerRole).value<void *>();
doLogin();
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())
{
QEventLoop waitLoop;
waitLoop.connect(m_versionLoadTask, SIGNAL(failed(QString)), SLOT(quit()));
waitLoop.connect(m_versionLoadTask, SIGNAL(succeeded()), SLOT(quit()));
waitLoop.exec();
}
2013-10-06 04:43:40 +05:30
NewInstanceDialog newInstDlg(this);
if (!newInstDlg.exec())
return;
2013-10-06 04:43:40 +05:30
BaseInstance *newInstance = NULL;
2013-10-06 04:43:40 +05:30
QString instDirName = DirNameFromString(newInstDlg.instName());
QString instDir = PathCombine(MMC->settings()->get("InstanceDir").toString(), instDirName);
2013-10-06 04:43:40 +05:30
auto &loader = InstanceFactory::get();
2013-10-06 04:43:40 +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);
switch (error)
2013-04-23 03:45:18 +05:30
{
case InstanceFactory::NoCreateError:
newInstance->setName(newInstDlg.instName());
newInstance->setIconKey(newInstDlg.iconKey());
MMC->instances()->add(InstancePtr(newInstance));
return;
2013-10-06 04:43:40 +05:30
case InstanceFactory::InstExists:
errorMsg += "An instance with the given directory name already exists.";
QMessageBox::warning(this, "Error", errorMsg);
break;
2013-10-06 04:43:40 +05:30
case InstanceFactory::CantCreateDir:
errorMsg += "Failed to create the instance directory.";
QMessageBox::warning(this, "Error", errorMsg);
break;
2013-10-06 04:43:40 +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
}
void MainWindow::on_actionChangeInstIcon_triggered()
{
2013-10-06 04:43:40 +05:30
if (!m_selectedInstance)
return;
2013-10-06 04:43:40 +05:30
IconPickerDialog dlg(this);
dlg.exec(m_selectedInstance->iconKey());
2013-10-06 04:43:40 +05:30
if (dlg.result() == QDialog::Accepted)
{
m_selectedInstance->setIconKey(dlg.selectedIconKey);
auto ico = MMC->icons()->getIcon(dlg.selectedIconKey);
ui->actionChangeInstIcon->setIcon(ico);
}
}
void MainWindow::on_actionChangeInstGroup_triggered()
{
2013-10-06 04:43:40 +05:30
if (!m_selectedInstance)
return;
2013-10-06 04:43:40 +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)
m_selectedInstance->setGroupPost(name);
}
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()
{
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
}
void MainWindow::on_actionConfig_Folder_triggered()
{
2013-10-06 04:43:40 +05:30
if (m_selectedInstance)
{
QString str = m_selectedInstance->instanceConfigFolder();
2013-10-06 04:43:40 +05:30
openDirInDefaultProgram(QDir(str).absolutePath());
}
}
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
}
void MainWindow::on_actionDeleteInstance_triggered()
{
if (m_selectedInstance)
{
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());
if (response == QMessageBox::Yes)
{
m_selectedInstance->nuke();
}
}
}
void MainWindow::on_actionRenameInstance_triggered()
{
2013-10-06 04:43:40 +05:30
if (m_selectedInstance)
{
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);
if (name.length() > 0)
{
2013-10-06 04:43:40 +05:30
if (ok && name.length())
{
m_selectedInstance->setName(name);
renameButton->setText(name);
}
}
}
}
void MainWindow::on_actionViewSelectedInstFolder_triggered()
{
2013-10-06 04:43:40 +05:30
if (m_selectedInstance)
{
QString str = m_selectedInstance->instanceRoot();
2013-10-06 04:43:40 +05:30
openDirInDefaultProgram(QDir(str).absolutePath());
}
}
void MainWindow::on_actionEditInstMods_triggered()
{
if (m_selectedInstance)
{
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();
dialog->deleteLater();
}
}
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.
// 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-01-30 11:22:37 +05:30
}
/*
2013-10-06 04:43:40 +05:30
void MainWindow::on_instanceView_customContextMenuRequested(const QPoint &pos)
{
2013-10-06 04:43:40 +05:30
QMenu *instContextMenu = new QMenu("Instance", this);
2013-03-12 02:49:17 +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));
}
*/
void MainWindow::on_actionLaunchInstance_triggered()
{
2013-10-06 04:43:40 +05:30
if (m_selectedInstance)
2013-03-12 02:49:17 +05:30
{
doLogin();
2013-03-12 02:49:17 +05:30
}
}
2013-10-06 04:43:40 +05:30
void MainWindow::doLogin(const QString &errorMsg)
{
if (!m_selectedInstance)
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
loginDlg->exec();
2013-10-06 04:43:40 +05:30
if (loginDlg->result() == QDialog::Accepted)
{
2013-10-06 04:43:40 +05:30
if (loginDlg->isOnline())
2013-09-06 20:38:12 +05:30
{
UserInfo uInfo{loginDlg->getUsername(), loginDlg->getPassword()};
2013-10-06 04:43:40 +05:30
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);
2013-09-06 20:38:12 +05:30
m_activeInst = m_selectedInstance;
tDialog->exec(loginTask);
}
else
{
QString user = loginDlg->getUsername();
if (user.length() == 0)
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);
}
}
}
void MainWindow::onLoginComplete()
{
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();
m_activeLogin = task->getResult();
2013-10-06 04:43:40 +05:30
BaseUpdate *updateTask = m_activeInst->doUpdate();
2013-10-06 04:43:40 +05:30
if (!updateTask)
{
2013-08-04 03:28:39 +05:30
launchInstance(m_activeInst, m_activeLogin);
}
else
{
ProgressDialog tDialog(this);
2013-10-06 04:43:40 +05:30
connect(updateTask, SIGNAL(succeeded()), SLOT(onGameUpdateComplete()));
connect(updateTask, SIGNAL(failed(QString)), SLOT(onGameUpdateError(QString)));
tDialog.exec(updateTask);
delete updateTask;
}
auto job = new DownloadJob("Player skin: " + m_activeLogin.player_name);
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();
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-08-04 03:28:39 +05:30
void MainWindow::onGameUpdateComplete()
{
2013-08-04 03:28:39 +05:30
launchInstance(m_activeInst, m_activeLogin);
}
2013-08-03 19:27:33 +05:30
void MainWindow::onGameUpdateError(QString error)
{
2013-08-03 19:27:33 +05:30
QMessageBox::warning(this, "Error updating instance", error);
}
void MainWindow::launchInstance(BaseInstance *instance, LoginResponse response)
{
Q_ASSERT_X(instance != NULL, "launchInstance", "instance is NULL");
2013-10-06 04:43:40 +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
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-09-07 02:10:50 +05:30
console = new ConsoleWindow(proc);
console->show();
2013-10-06 04:43:40 +05:30
connect(proc, SIGNAL(log(QString, MessageLevel::Enum)), console,
SLOT(write(QString, MessageLevel::Enum)));
2013-09-07 03:22:17 +05:30
connect(proc, SIGNAL(ended()), this, SLOT(instanceEnded()));
proc->setLogin(response.username, response.session_id);
proc->launch();
2013-03-12 02:49:17 +05:30
}
void MainWindow::taskStart()
{
// Nothing to do here yet.
}
void MainWindow::taskEnd()
{
QObject *sender = QObject::sender();
if (sender == m_versionLoadTask)
m_versionLoadTask = NULL;
2013-10-06 04:43:40 +05:30
sender->deleteLater();
}
void MainWindow::startTask(Task *task)
{
connect(task, SIGNAL(started()), SLOT(taskStart()));
connect(task, SIGNAL(succeeded()), SLOT(taskEnd()));
connect(task, SIGNAL(failed(QString)), SLOT(taskEnd()));
task->start();
}
// 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-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-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"));
}
// BrowserDialog
2013-10-06 04:43:40 +05:30
void MainWindow::openWebPage(QUrl url)
{
QDesktopServices::openUrl(url);
}
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);
vselect.setFilter(1, "OneSix");
if (vselect.exec() && vselect.selectedVersion())
2013-05-07 07:58:28 +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. "
"This includes things like Forge install and similar."),
QMessageBox::Ok, QMessageBox::Abort);
if (result != QMessageBox::Ok)
return;
}
m_selectedInstance->setIntendedVersionId(vselect.selectedVersion()->descriptor());
2013-05-07 07:58:28 +05:30
}
}
void MainWindow::on_actionChangeInstLWJGLVersion_triggered()
{
if (!m_selectedInstance)
return;
2013-10-06 04:43:40 +05:30
LWJGLSelectDialog lselect(this);
lselect.exec();
if (lselect.result() == QDialog::Accepted)
{
2013-10-06 04:43:40 +05:30
LegacyInstance *linst = (LegacyInstance *)m_selectedInstance;
linst->setLWJGLVersion(lselect.selectedVersion());
}
}
2013-07-14 23:56:53 +05:30
void MainWindow::on_actionInstanceSettings_triggered()
{
if (view->selectionModel()->selectedIndexes().count() < 1)
return;
InstanceSettings settings(&m_selectedInstance->settings(), this);
settings.setWindowTitle(QString("Instance settings"));
settings.exec();
2013-07-14 23:56:53 +05:30
}
2013-10-06 04:43:40 +05:30
void MainWindow::instanceChanged(const QModelIndex &current, const QModelIndex &previous)
{
2013-10-06 04:43:40 +05:30
if (current.isValid() &&
nullptr != (m_selectedInstance =
(BaseInstance *)current.data(InstanceList::InstancePointerRole)
.value<void *>()))
{
ui->instanceToolBar->setEnabled(true);
QString iconKey = m_selectedInstance->iconKey();
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"));
ui->actionChangeInstMCVersion->setEnabled(
m_selectedInstance->menuActionEnabled("actionChangeInstMCVersion"));
statusBar()->clearMessage();
statusBar()->showMessage(m_selectedInstance->getStatusbarDescription());
2013-10-06 04:43:40 +05:30
auto ico = MMC->icons()->getIcon(iconKey);
ui->actionChangeInstIcon->setIcon(ico);
}
else
{
selectionBad();
}
}
void MainWindow::selectionBad()
{
m_selectedInstance = nullptr;
QString iconKey = "infinity";
statusBar()->clearMessage();
ui->instanceToolBar->setEnabled(false);
renameButton->setText(tr("Rename Instance"));
auto ico = MMC->icons()->getIcon(iconKey);
ui->actionChangeInstIcon->setIcon(ico);
}
void MainWindow::on_actionEditInstNotes_triggered()
{
if (!m_selectedInstance)
return;
2013-10-06 04:43:40 +05:30
LegacyInstance *linst = (LegacyInstance *)m_selectedInstance;
EditNotesDialog noteedit(linst->notes(), linst->name(), this);
noteedit.exec();
if (noteedit.result() == QDialog::Accepted)
{
2013-10-06 04:43:40 +05:30
linst->setNotes(noteedit.getText());
}
}
2013-09-07 03:22:17 +05:30
void MainWindow::instanceEnded()
{
this->show();
ui->actionLaunchInstance->setEnabled(m_selectedInstance);
}
void MainWindow::checkSetDefaultJava()
{
bool askForJava = false;
{
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...";
JavaVersionPtr java;
VersionSelectDialog vselect(MMC->javalist().get(), tr("Select a Java version"), this,
false);
vselect.setResizeOn(2);
vselect.exec();
if (!vselect.selectedVersion())
{
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."));
JavaUtils ju;
java = ju.GetDefaultJava();
}
java = std::dynamic_pointer_cast<JavaVersion>(vselect.selectedVersion());
MMC->settings()->set("JavaPath", java->path);
}
}