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-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"
|
|
|
|
#include "gui/taskdialog.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-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-08-17 17:10:51 +05:30
|
|
|
#include "logic/tasks/LoginTask.h"
|
|
|
|
#include "logic/BaseInstance.h"
|
|
|
|
#include "logic/InstanceFactory.h"
|
|
|
|
#include "logic/MinecraftProcess.h"
|
|
|
|
#include "logic/OneSixAssets.h"
|
|
|
|
#include "logic/OneSixUpdate.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-09-07 07:30:58 +05:30
|
|
|
MainWindow::MainWindow ( QWidget *parent )
|
|
|
|
:QMainWindow ( parent ), ui ( new Ui::MainWindow )
|
2013-01-09 23:52:22 +05:30
|
|
|
{
|
2013-03-12 02:49:17 +05:30
|
|
|
ui->setupUi ( this );
|
2013-09-07 07:30:58 +05:30
|
|
|
setWindowTitle ( QString ( "MultiMC %1" ).arg ( MMC->version().toString() ) );
|
2013-08-26 02:18:41 +05:30
|
|
|
|
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-08-26 02:18:41 +05:30
|
|
|
|
2013-08-27 20:20:42 +05:30
|
|
|
// OSX magic.
|
|
|
|
setUnifiedTitleAndToolBarOnMac(true);
|
|
|
|
|
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);
|
|
|
|
renameButton->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Preferred);
|
|
|
|
}
|
2013-05-04 06:44:38 +05:30
|
|
|
|
2013-08-26 10:39:54 +05:30
|
|
|
// Create the instance list widget
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
view->setMouseTracking ( true );
|
|
|
|
view->viewport()->setAttribute ( Qt::WA_Hover );
|
|
|
|
auto delegate = new ListViewDelegate();
|
|
|
|
view->setItemDelegate(delegate);
|
|
|
|
view->setSpacing(10);
|
|
|
|
view->setUniformItemWidths(true);
|
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-08-26 10:39:54 +05:30
|
|
|
view->installEventFilter(this);
|
2013-03-12 02:49:17 +05:30
|
|
|
|
2013-08-26 10:39:54 +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?
|
2013-09-07 07:30:58 +05:30
|
|
|
proxymodel->setSourceModel ( MMC->instances() );
|
2013-08-26 10:39:54 +05:30
|
|
|
proxymodel->sort ( 0 );
|
|
|
|
view->setFrameShape ( QFrame::NoFrame );
|
|
|
|
view->setModel ( proxymodel );
|
|
|
|
|
|
|
|
ui->horizontalLayout->addWidget ( view );
|
|
|
|
}
|
|
|
|
// 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-08-25 05:02:42 +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-08-25 05:02:42 +05:30
|
|
|
connect(
|
2013-08-26 10:39:54 +05:30
|
|
|
view->selectionModel(),
|
2013-08-25 05:02:42 +05:30
|
|
|
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-09-07 07:30:58 +05:30
|
|
|
connect(MMC->instances() ,SIGNAL(dataIsInvalid()),SLOT(selectionBad()));
|
2013-05-07 03:49:20 +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-08-26 10:39:54 +05:30
|
|
|
if (!MinecraftVersionList::getMainList().isLoaded())
|
|
|
|
{
|
|
|
|
m_versionLoadTask = MinecraftVersionList::getMainList().getLoadTask();
|
|
|
|
startTask(m_versionLoadTask);
|
|
|
|
}
|
|
|
|
if (!LWJGLVersionList::get().isLoaded())
|
|
|
|
{
|
|
|
|
LWJGLVersionList::get().loadList();
|
|
|
|
}
|
|
|
|
assets_downloader = new OneSixAssets();
|
|
|
|
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-08-12 04:09:19 +05:30
|
|
|
bool MainWindow::eventFilter ( QObject* obj, QEvent* ev )
|
|
|
|
{
|
|
|
|
if(obj == view)
|
|
|
|
{
|
|
|
|
if (ev->type() == QEvent::KeyPress)
|
|
|
|
{
|
|
|
|
QKeyEvent *keyEvent = static_cast<QKeyEvent*>(ev);
|
|
|
|
switch(keyEvent->key())
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QMainWindow::eventFilter ( obj, ev );
|
|
|
|
}
|
|
|
|
|
2013-08-26 02:18:41 +05:30
|
|
|
void MainWindow::onCatToggled ( bool state )
|
|
|
|
{
|
|
|
|
setCatBackground(state);
|
2013-09-07 07:30:58 +05:30
|
|
|
MMC->settings()->set("TheCat", state);
|
2013-08-26 02:18:41 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::setCatBackground ( bool enabled )
|
|
|
|
{
|
|
|
|
if(enabled)
|
|
|
|
{
|
|
|
|
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-08-12 04:09:19 +05:30
|
|
|
|
2013-03-12 02:49:17 +05:30
|
|
|
void MainWindow::instanceActivated ( QModelIndex index )
|
|
|
|
{
|
|
|
|
if(!index.isValid())
|
|
|
|
return;
|
2013-08-26 10:00:11 +05:30
|
|
|
BaseInstance * inst = (BaseInstance *) index.data(InstanceList::InstancePointerRole).value<void *>();
|
2013-05-08 23:26:43 +05:30
|
|
|
doLogin();
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionAddInstance_triggered()
|
|
|
|
{
|
2013-05-07 03:49:20 +05:30
|
|
|
if (!MinecraftVersionList::getMainList().isLoaded() &&
|
|
|
|
m_versionLoadTask && m_versionLoadTask->isRunning())
|
|
|
|
{
|
|
|
|
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-08-10 22:04:08 +05:30
|
|
|
NewInstanceDialog newInstDlg( this );
|
|
|
|
if (!newInstDlg.exec())
|
2013-07-28 12:10:15 +05:30
|
|
|
return;
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance *newInstance = NULL;
|
2013-07-28 12:10:15 +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-07-28 12:10:15 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
auto &loader = InstanceFactory::get();
|
2013-07-28 12:10:15 +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-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-04-23 03:45:18 +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-04-23 03:45:18 +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-08-25 05:02:42 +05:30
|
|
|
if(!m_selectedInstance)
|
2013-08-10 22:04:08 +05:30
|
|
|
return;
|
|
|
|
|
|
|
|
IconPickerDialog dlg(this);
|
2013-08-25 05:02:42 +05:30
|
|
|
dlg.exec(m_selectedInstance->iconKey());
|
2013-08-10 22:04:08 +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-08-25 05:02:42 +05:30
|
|
|
if(!m_selectedInstance)
|
2013-08-10 22:04:08 +05:30
|
|
|
return;
|
|
|
|
|
|
|
|
bool ok = false;
|
2013-08-25 05:02:42 +05:30
|
|
|
QString name ( m_selectedInstance->group() );
|
2013-08-10 22:04:08 +05:30
|
|
|
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-09-07 07:30:58 +05:30
|
|
|
QString str = MMC->settings()->get ( "InstanceDir" ).toString();
|
2013-06-24 01:40:32 +05:30
|
|
|
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-09-07 07:30:58 +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()
|
|
|
|
{
|
|
|
|
if(m_selectedInstance)
|
|
|
|
{
|
|
|
|
QString str = m_selectedInstance->instanceConfigFolder();
|
|
|
|
openDirInDefaultProgram ( QDir(str).absolutePath() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-09 23:52:22 +05:30
|
|
|
void MainWindow::on_actionCheckUpdate_triggered()
|
|
|
|
{
|
2013-03-12 02:49:17 +05:30
|
|
|
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionSettings_triggered()
|
|
|
|
{
|
2013-03-12 02:49:17 +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-09-08 19:29:50 +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-08-26 03:11:23 +05:30
|
|
|
openWebPage ( QUrl ( "http://forkk.net/tag/multimc.html" ) );
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionAbout_triggered()
|
|
|
|
{
|
2013-03-12 02:49:17 +05:30
|
|
|
AboutDialog dialog ( this );
|
|
|
|
dialog.exec();
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
2013-01-30 11:22:37 +05:30
|
|
|
|
2013-03-12 02:49:17 +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-03-12 02:49:17 +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
|
|
|
{
|
|
|
|
int response = QMessageBox::question(this, "CAREFUL",
|
2013-08-25 05:02:42 +05:30
|
|
|
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-08-25 05:02:42 +05:30
|
|
|
if(m_selectedInstance)
|
2013-06-24 01:40:32 +05:30
|
|
|
{
|
|
|
|
bool ok = false;
|
2013-08-25 05:02:42 +05:30
|
|
|
QString name ( m_selectedInstance->name() );
|
2013-06-24 01:40:32 +05:30
|
|
|
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-08-29 01:22:19 +05:30
|
|
|
if(ok && name.length())
|
|
|
|
{
|
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-08-25 05:02:42 +05:30
|
|
|
|
2013-06-24 01:40:32 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionViewSelectedInstFolder_triggered()
|
|
|
|
{
|
2013-08-25 05:02:42 +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-06-24 01:40:32 +05:30
|
|
|
openDirInDefaultProgram ( QDir(str).absolutePath() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-08-19 00:22:17 +05:30
|
|
|
if(dialog)
|
|
|
|
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-03-12 02:49:17 +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.
|
|
|
|
// settings->getConfig().setValue("MainWindowGeometry", saveGeometry());
|
|
|
|
// settings->getConfig().setValue("MainWindowState", saveState());
|
2013-03-12 02:49:17 +05:30
|
|
|
QMainWindow::closeEvent ( event );
|
2013-01-30 11:22:37 +05:30
|
|
|
}
|
2013-02-01 02:01:16 +05:30
|
|
|
|
2013-03-12 02:49:17 +05:30
|
|
|
void MainWindow::on_instanceView_customContextMenuRequested ( const QPoint &pos )
|
2013-02-01 02:01:16 +05:30
|
|
|
{
|
2013-03-12 02:49:17 +05:30
|
|
|
QMenu *instContextMenu = new QMenu ( "Instance", this );
|
|
|
|
|
2013-02-01 02:01:16 +05:30
|
|
|
// Add the actions from the toolbar to the context menu.
|
2013-03-12 02:49:17 +05:30
|
|
|
instContextMenu->addActions ( ui->instanceToolBar->actions() );
|
|
|
|
|
|
|
|
instContextMenu->exec ( view->mapToGlobal ( pos ) );
|
2013-02-01 02:01:16 +05:30
|
|
|
}
|
2013-02-06 04:04:20 +05:30
|
|
|
|
|
|
|
void MainWindow::on_actionLaunchInstance_triggered()
|
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
if(m_selectedInstance)
|
2013-03-12 02:49:17 +05:30
|
|
|
{
|
2013-05-08 23:26:43 +05:30
|
|
|
doLogin();
|
2013-03-12 02:49:17 +05:30
|
|
|
}
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
|
2013-05-08 23:26:43 +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;
|
|
|
|
|
|
|
|
LoginDialog* loginDlg = new LoginDialog(this, errorMsg);
|
2013-09-06 20:38:12 +05:30
|
|
|
if (!m_selectedInstance->lastLaunch())
|
|
|
|
loginDlg->forceOnline();
|
|
|
|
|
2013-08-10 22:04:08 +05:30
|
|
|
loginDlg->exec();
|
|
|
|
if(loginDlg->result() == QDialog::Accepted)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-09-06 20:38:12 +05:30
|
|
|
if (loginDlg->isOnline())
|
|
|
|
{
|
|
|
|
UserInfo uInfo{loginDlg->getUsername(), loginDlg->getPassword()};
|
|
|
|
|
|
|
|
TaskDialog* tDialog = new TaskDialog(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);
|
|
|
|
m_activeInst = m_selectedInstance;
|
|
|
|
tDialog->exec(loginTask);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_activeLogin = {loginDlg->getUsername(), QString("Offline"), qint64(-1)};
|
|
|
|
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-08-03 19:27:33 +05:30
|
|
|
if(!m_activeInst)
|
|
|
|
return;
|
2013-08-09 03:56:35 +05:30
|
|
|
LoginTask * task = (LoginTask *) QObject::sender();
|
|
|
|
m_activeLogin = task->getResult();
|
2013-05-08 23:26:43 +05:30
|
|
|
|
2013-08-07 05:08:18 +05:30
|
|
|
BaseUpdate *updateTask = m_activeInst->doUpdate();
|
2013-08-03 19:27:33 +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-05-08 23:26:43 +05:30
|
|
|
TaskDialog *tDialog = new TaskDialog(this);
|
2013-08-09 03:56:35 +05:30
|
|
|
connect(updateTask, SIGNAL(succeeded()),SLOT(onGameUpdateComplete()));
|
|
|
|
connect(updateTask, SIGNAL(failed(QString)), SLOT(onGameUpdateError(QString)));
|
2013-05-08 23:26:43 +05:30
|
|
|
tDialog->exec(updateTask);
|
2013-03-24 20:06:00 +05:30
|
|
|
}
|
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-08-04 03:28:39 +05:30
|
|
|
proc = instance->prepareForLaunch(response.username, response.sessionID);
|
2013-08-03 19:27:33 +05:30
|
|
|
if(!proc)
|
|
|
|
return;
|
2013-05-08 23:26:43 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
console = new ConsoleWindow();
|
2013-05-08 23:26:43 +05:30
|
|
|
console->show();
|
|
|
|
connect(proc, SIGNAL(log(QString, MessageLevel::Enum)),
|
|
|
|
console, SLOT(write(QString, MessageLevel::Enum)));
|
|
|
|
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-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-05-07 03:49:20 +05:30
|
|
|
task->startTask();
|
|
|
|
}
|
|
|
|
|
2013-03-12 02:49:17 +05:30
|
|
|
|
2013-02-13 08:33:15 +05:30
|
|
|
// Create A Desktop Shortcut
|
|
|
|
void MainWindow::on_actionMakeDesktopShortcut_triggered()
|
|
|
|
{
|
2013-03-12 02:49:17 +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-03-12 02:49:17 +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-03-12 02:49:17 +05:30
|
|
|
QMessageBox::warning ( this, "Not useful", "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-03-12 02:49:17 +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-08-25 05:02:42 +05:30
|
|
|
VersionSelectDialog vselect(m_selectedInstance->versionList(), this);
|
2013-08-10 22:04:08 +05:30
|
|
|
if (vselect.exec() && vselect.selectedVersion())
|
2013-05-07 07:58:28 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +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-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-08-25 05:02:42 +05:30
|
|
|
LegacyInstance * linst = (LegacyInstance *) m_selectedInstance;
|
|
|
|
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-08-25 05:02:42 +05:30
|
|
|
void MainWindow::instanceChanged( const QModelIndex& current, const QModelIndex& previous )
|
|
|
|
{
|
2013-08-26 10:00:11 +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-08-25 05:02:42 +05:30
|
|
|
ui->actionChangeInstLWJGLVersion->setEnabled(m_selectedInstance->menuActionEnabled("actionChangeInstLWJGLVersion"));
|
|
|
|
ui->actionEditInstMods->setEnabled(m_selectedInstance->menuActionEnabled("actionEditInstMods"));
|
|
|
|
statusBar()->clearMessage();
|
|
|
|
statusBar()->showMessage(m_selectedInstance->getStatusbarDescription());
|
2013-09-07 07:30:58 +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);
|
|
|
|
renameButton->setText("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;
|
|
|
|
LegacyInstance * linst = (LegacyInstance *) m_selectedInstance;
|
|
|
|
|
|
|
|
EditNotesDialog noteedit(linst->notes(), linst->name(), this);
|
|
|
|
noteedit.exec();
|
|
|
|
if (noteedit.result() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
|
|
|
|
linst->setNotes(noteedit.getText());
|
|
|
|
}
|
|
|
|
}
|