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 "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-02-20 04:37:52 +05:30
|
|
|
#include <QApplication>
|
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-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-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-13 05:05:35 +05:30
|
|
|
#include "gui/browserdialog.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-28 01:12:32 +05:30
|
|
|
#include "gui/legacymodeditdialog.h"
|
2013-07-15 01:31:30 +05:30
|
|
|
#include "gui/instancesettings.h"
|
2013-02-02 00:37:36 +05:30
|
|
|
|
2013-08-04 15:51:51 +05:30
|
|
|
#include "categorizedview.h"
|
|
|
|
#include "categorydrawer.h"
|
2013-03-12 02:49:17 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "lists/InstanceList.h"
|
|
|
|
#include "AppSettings.h"
|
|
|
|
#include "AppVersion.h"
|
2013-01-16 06:16:27 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "tasks/LoginTask.h"
|
2013-05-08 23:26:43 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "BaseInstance.h"
|
|
|
|
#include "InstanceFactory.h"
|
|
|
|
#include "MinecraftProcess.h"
|
2013-08-04 07:49:10 +05:30
|
|
|
#include "OneSixAssets.h"
|
2013-08-04 18:16:33 +05:30
|
|
|
#include "OneSixUpdate.h"
|
2013-03-12 02:49:17 +05:30
|
|
|
|
|
|
|
#include "instancemodel.h"
|
|
|
|
#include "instancedelegate.h"
|
2013-02-06 04:04:20 +05:30
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "lists/MinecraftVersionList.h"
|
|
|
|
#include "lists/LwjglVersionList.h"
|
2013-05-07 03:49:20 +05:30
|
|
|
|
2013-02-21 06:40:09 +05:30
|
|
|
// Opens the given file in the default application.
|
|
|
|
// TODO: Move this somewhere.
|
2013-06-24 01:40:32 +05:30
|
|
|
void openFileInDefaultProgram ( QString filename );
|
|
|
|
void openDirInDefaultProgram ( QString dirpath, bool ensureExists = false );
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2013-03-12 02:49:17 +05:30
|
|
|
MainWindow::MainWindow ( QWidget *parent ) :
|
|
|
|
QMainWindow ( parent ),
|
|
|
|
ui ( new Ui::MainWindow ),
|
|
|
|
instList ( globalSettings->get ( "InstanceDir" ).toString() )
|
2013-01-09 23:52:22 +05:30
|
|
|
{
|
2013-03-12 02:49:17 +05:30
|
|
|
ui->setupUi ( this );
|
2013-05-08 23:26:43 +05:30
|
|
|
|
|
|
|
// Set active instance to null.
|
|
|
|
m_activeInst = NULL;
|
|
|
|
|
2013-03-12 02:49:17 +05:30
|
|
|
// Create the widget
|
|
|
|
view = new KCategorizedView ( ui->centralWidget );
|
|
|
|
drawer = new KCategoryDrawer ( view );
|
2013-07-29 04:29:35 +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-05-04 06:44:38 +05:30
|
|
|
|
2013-03-12 02:49:17 +05:30
|
|
|
view->setSelectionMode ( QAbstractItemView::SingleSelection );
|
|
|
|
//view->setSpacing( KDialog::spacingHint() );
|
|
|
|
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);
|
2013-03-25 22:09:52 +05:30
|
|
|
view->setUniformItemWidths(true);
|
2013-03-12 02:49:17 +05:30
|
|
|
|
|
|
|
model = new InstanceModel ( instList,this );
|
|
|
|
proxymodel = new InstanceProxyModel ( this );
|
|
|
|
proxymodel->setSortRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
|
|
|
|
proxymodel->setFilterRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
|
|
|
|
//proxymodel->setDynamicSortFilter ( true );
|
|
|
|
proxymodel->setSourceModel ( model );
|
|
|
|
proxymodel->sort ( 0 );
|
|
|
|
|
|
|
|
view->setFrameShape ( QFrame::NoFrame );
|
|
|
|
|
|
|
|
ui->horizontalLayout->addWidget ( view );
|
2013-08-03 19:27:33 +05:30
|
|
|
setWindowTitle ( QString ( "MultiMC %1" ).arg ( AppVersion::current.toString() ) );
|
2013-02-26 00:54:46 +05:30
|
|
|
// TODO: Make this work with the new settings system.
|
|
|
|
// restoreGeometry(settings->getConfig().value("MainWindowGeometry", saveGeometry()).toByteArray());
|
|
|
|
// restoreState(settings->getConfig().value("MainWindowState", saveState()).toByteArray());
|
2013-03-12 02:49:17 +05:30
|
|
|
view->setModel ( proxymodel );
|
|
|
|
connect(view, SIGNAL(doubleClicked(const QModelIndex &)),
|
|
|
|
this, SLOT(instanceActivated(const QModelIndex &)));
|
2013-07-15 01:31:30 +05:30
|
|
|
|
|
|
|
connect(view, SIGNAL(clicked(const QModelIndex &)),
|
|
|
|
this, SLOT(instanceChanged(const QModelIndex &)));
|
2013-03-19 03:30:46 +05:30
|
|
|
|
2013-08-04 15:51:51 +05:30
|
|
|
// Load the instances. FIXME: this is not the place I'd say.
|
2013-03-19 03:30:46 +05:30
|
|
|
instList.loadList();
|
2013-05-07 03:49:20 +05:30
|
|
|
|
2013-08-04 07:49:10 +05:30
|
|
|
//FIXME: WTF
|
2013-05-07 03:49:20 +05:30
|
|
|
if (!MinecraftVersionList::getMainList().isLoaded())
|
|
|
|
{
|
|
|
|
m_versionLoadTask = MinecraftVersionList::getMainList().getLoadTask();
|
|
|
|
startTask(m_versionLoadTask);
|
|
|
|
}
|
2013-08-04 07:49:10 +05:30
|
|
|
//FIXME: WTF X 2
|
2013-05-17 22:23:22 +05:30
|
|
|
if (!LWJGLVersionList::get().isLoaded())
|
|
|
|
{
|
|
|
|
LWJGLVersionList::get().loadList();
|
|
|
|
}
|
2013-08-04 07:49:10 +05:30
|
|
|
//FIXME: I guess you get the idea. This is a quick hack.
|
|
|
|
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 model;
|
|
|
|
delete drawer;
|
2013-08-04 07:49:10 +05:30
|
|
|
delete assets_downloader;
|
2013-03-12 02:49:17 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::instanceActivated ( QModelIndex index )
|
|
|
|
{
|
|
|
|
if(!index.isValid())
|
|
|
|
return;
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance * inst = (BaseInstance *) index.data(InstanceModel::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;
|
|
|
|
waitLoop.connect(m_versionLoadTask, SIGNAL(ended()), SLOT(quit()));
|
|
|
|
waitLoop.exec();
|
|
|
|
}
|
|
|
|
|
2013-03-12 02:49:17 +05:30
|
|
|
NewInstanceDialog *newInstDlg = new NewInstanceDialog ( this );
|
2013-07-28 12:10:15 +05:30
|
|
|
if (!newInstDlg->exec())
|
|
|
|
return;
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance *newInstance = NULL;
|
2013-07-28 12:10:15 +05:30
|
|
|
|
|
|
|
QString instDirName = DirNameFromString(newInstDlg->instName());
|
|
|
|
QString instDir = PathCombine(globalSettings->get("InstanceDir").toString(), instDirName);
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
auto &loader = InstanceFactory::get();
|
2013-07-28 12:10:15 +05:30
|
|
|
|
2013-08-04 03:28:39 +05:30
|
|
|
auto error = loader.createInstance(newInstance, newInstDlg->selectedVersion(), instDir);
|
|
|
|
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-07-28 12:10:15 +05:30
|
|
|
newInstance->setName(newInstDlg->instName());
|
|
|
|
instList.add(InstancePtr(newInstance));
|
|
|
|
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-03-19 10:54:34 +05:30
|
|
|
void MainWindow::on_actionChangeInstGroup_triggered()
|
|
|
|
{
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance* inst = selectedInstance();
|
2013-03-19 10:54:34 +05:30
|
|
|
if(inst)
|
|
|
|
{
|
2013-06-24 01:40:32 +05:30
|
|
|
bool ok = false;
|
2013-03-19 10:54:34 +05:30
|
|
|
QString name ( inst->group() );
|
2013-06-24 01:40:32 +05:30
|
|
|
QInputDialog dlg(this);
|
|
|
|
dlg.result();
|
|
|
|
name = QInputDialog::getText ( this, tr ( "Group name" ), tr ( "Enter a new group name." ),
|
|
|
|
QLineEdit::Normal, name, &ok );
|
|
|
|
if(ok)
|
|
|
|
inst->setGroup(name);
|
2013-03-19 10:54:34 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-09 23:52:22 +05:30
|
|
|
void MainWindow::on_actionViewInstanceFolder_triggered()
|
|
|
|
{
|
2013-06-24 01:40:32 +05:30
|
|
|
QString str = globalSettings->get ( "InstanceDir" ).toString();
|
|
|
|
openDirInDefaultProgram ( str );
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionRefresh_triggered()
|
|
|
|
{
|
2013-02-19 23:45:22 +05:30
|
|
|
instList.loadList();
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionViewCentralModsFolder_triggered()
|
|
|
|
{
|
2013-06-24 01:40:32 +05:30
|
|
|
openDirInDefaultProgram ( globalSettings->get ( "CentralModsDir" ).toString() , true);
|
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-03-12 02:49:17 +05:30
|
|
|
//QDesktopServices::openUrl(QUrl("http://bugs.forkk.net/"));
|
|
|
|
openWebPage ( QUrl ( "http://bugs.forkk.net/" ) );
|
2013-01-09 23:52:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionNews_triggered()
|
|
|
|
{
|
2013-03-12 02:49:17 +05:30
|
|
|
//QDesktopServices::openUrl(QUrl("http://news.forkk.net/"));
|
|
|
|
openWebPage ( QUrl ( "http://news.forkk.net/" ) );
|
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-07-29 04:29:35 +05:30
|
|
|
BaseInstance* inst = selectedInstance();
|
2013-07-05 04:09:41 +05:30
|
|
|
if (inst)
|
|
|
|
{
|
|
|
|
int response = QMessageBox::question(this, "CAREFUL",
|
|
|
|
QString("This is permanent! Are you sure?\nAbout to delete: ") + inst->name());
|
|
|
|
if (response == QMessageBox::Yes)
|
|
|
|
{
|
|
|
|
QDir(inst->rootDir()).removeRecursively();
|
|
|
|
instList.loadList();
|
|
|
|
}
|
|
|
|
}
|
2013-06-24 01:40:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionRenameInstance_triggered()
|
|
|
|
{
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance* inst = selectedInstance();
|
2013-06-24 01:40:32 +05:30
|
|
|
if(inst)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
QString name ( inst->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)
|
|
|
|
{
|
|
|
|
if(ok && name.length() && name.length() <= 25)
|
|
|
|
inst->setName(name);
|
|
|
|
}
|
2013-06-24 01:40:32 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionViewSelectedInstFolder_triggered()
|
|
|
|
{
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance* inst = selectedInstance();
|
2013-06-24 01:40:32 +05:30
|
|
|
if(inst)
|
|
|
|
{
|
|
|
|
QString str = inst->rootDir();
|
|
|
|
openDirInDefaultProgram ( QDir(str).absolutePath() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-07 07:41:24 +05:30
|
|
|
void MainWindow::on_actionEditInstMods_triggered()
|
|
|
|
{
|
2013-07-28 01:12:32 +05:30
|
|
|
//TODO: Needs to do current ModEditDialog too
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance* inst = selectedInstance();
|
2013-07-07 07:41:24 +05:30
|
|
|
if (inst)
|
|
|
|
{
|
2013-07-28 01:12:32 +05:30
|
|
|
LegacyModEditDialog dialog ( this, inst );
|
2013-07-07 07:41:24 +05:30
|
|
|
dialog.exec();
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance* MainWindow::selectedInstance()
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-03-16 07:31:51 +05:30
|
|
|
QAbstractItemView * iv = view;
|
|
|
|
auto smodel = iv->selectionModel();
|
|
|
|
QModelIndex mindex;
|
|
|
|
if(smodel->hasSelection())
|
2013-03-12 02:49:17 +05:30
|
|
|
{
|
2013-03-16 07:31:51 +05:30
|
|
|
auto rows = smodel->selectedRows();
|
|
|
|
mindex = rows.at(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mindex.isValid())
|
|
|
|
{
|
2013-07-29 04:29:35 +05:30
|
|
|
return (BaseInstance *) mindex.data(InstanceModel::InstancePointerRole).value<void *>();
|
2013-03-19 10:54:34 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-02-06 04:04:20 +05:30
|
|
|
|
|
|
|
void MainWindow::on_actionLaunchInstance_triggered()
|
|
|
|
{
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance* inst = selectedInstance();
|
2013-03-19 10:54:34 +05:30
|
|
|
if(inst)
|
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-05-08 23:26:43 +05:30
|
|
|
if (!selectedInstance())
|
|
|
|
return;
|
|
|
|
|
|
|
|
LoginDialog* loginDlg = new LoginDialog(this, errorMsg);
|
|
|
|
if (loginDlg->exec())
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-08-04 18:16:33 +05:30
|
|
|
UserInfo uInfo{loginDlg->getUsername(), loginDlg->getPassword()};
|
2013-05-08 23:26:43 +05:30
|
|
|
|
|
|
|
TaskDialog* tDialog = new TaskDialog(this);
|
|
|
|
LoginTask* loginTask = new LoginTask(uInfo, tDialog);
|
|
|
|
connect(loginTask, SIGNAL(loginComplete(LoginResponse)),
|
|
|
|
SLOT(onLoginComplete(LoginResponse)), Qt::QueuedConnection);
|
|
|
|
connect(loginTask, SIGNAL(loginFailed(QString)),
|
|
|
|
SLOT(doLogin(QString)), Qt::QueuedConnection);
|
|
|
|
m_activeInst = selectedInstance();
|
|
|
|
tDialog->exec(loginTask);
|
2013-02-06 04:04:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-08 23:26:43 +05:30
|
|
|
void MainWindow::onLoginComplete(LoginResponse response)
|
2013-02-06 04:04:20 +05:30
|
|
|
{
|
2013-08-03 19:27:33 +05:30
|
|
|
if(!m_activeInst)
|
|
|
|
return;
|
2013-08-04 03:28:39 +05:30
|
|
|
m_activeLogin = LoginResponse(response);
|
2013-05-08 23:26:43 +05:30
|
|
|
|
2013-08-04 18:16:33 +05:30
|
|
|
OneSixUpdate *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-04 03:28:39 +05:30
|
|
|
connect(updateTask, SIGNAL(gameUpdateComplete()),SLOT(onGameUpdateComplete()));
|
2013-05-08 23:26:43 +05:30
|
|
|
connect(updateTask, SIGNAL(gameUpdateError(QString)), SLOT(onGameUpdateError(QString)));
|
|
|
|
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-05-07 03:49:20 +05:30
|
|
|
void MainWindow::taskStart(Task *task)
|
|
|
|
{
|
|
|
|
// Nothing to do here yet.
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::taskEnd(Task *task)
|
|
|
|
{
|
|
|
|
if (task == m_versionLoadTask)
|
|
|
|
m_versionLoadTask = NULL;
|
|
|
|
|
|
|
|
delete task;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::startTask(Task *task)
|
|
|
|
{
|
|
|
|
connect(task, SIGNAL(started(Task*)), SLOT(taskStart(Task*)));
|
|
|
|
connect(task, SIGNAL(ended(Task*)), SLOT(taskEnd(Task*)));
|
|
|
|
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-03-12 02:49:17 +05:30
|
|
|
BrowserDialog *browser = new BrowserDialog ( this );
|
2013-02-13 05:05:35 +05:30
|
|
|
|
2013-03-12 02:49:17 +05:30
|
|
|
browser->load ( url );
|
|
|
|
browser->exec();
|
2013-02-13 05:05:35 +05:30
|
|
|
}
|
2013-02-22 01:10:32 +05:30
|
|
|
|
2013-06-24 01:40:32 +05:30
|
|
|
void openDirInDefaultProgram ( QString path, bool ensureExists )
|
|
|
|
{
|
|
|
|
QDir parentPath;
|
|
|
|
QDir dir( path );
|
|
|
|
if(!dir.exists())
|
|
|
|
{
|
|
|
|
parentPath.mkpath(dir.absolutePath());
|
|
|
|
}
|
|
|
|
QDesktopServices::openUrl ( "file:///" + dir.absolutePath() );
|
|
|
|
}
|
|
|
|
|
|
|
|
void openFileInDefaultProgram ( QString filename )
|
2013-02-21 06:40:09 +05:30
|
|
|
{
|
2013-03-12 02:49:17 +05:30
|
|
|
QDesktopServices::openUrl ( "file:///" + QFileInfo ( filename ).absolutePath() );
|
2013-02-21 06:40:09 +05:30
|
|
|
}
|
2013-03-28 22:03:31 +05:30
|
|
|
|
|
|
|
void MainWindow::on_actionChangeInstMCVersion_triggered()
|
|
|
|
{
|
|
|
|
if (view->selectionModel()->selectedIndexes().count() < 1)
|
|
|
|
return;
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
BaseInstance *inst = selectedInstance();
|
2013-03-28 22:03:31 +05:30
|
|
|
|
|
|
|
VersionSelectDialog *vselect = new VersionSelectDialog(inst->versionList(), this);
|
2013-05-07 07:58:28 +05:30
|
|
|
if (vselect->exec() && vselect->selectedVersion())
|
|
|
|
{
|
2013-08-04 03:28:39 +05:30
|
|
|
inst->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-07-29 04:29:35 +05:30
|
|
|
BaseInstance *inst = selectedInstance();
|
2013-05-17 22:23:22 +05:30
|
|
|
|
|
|
|
if (!inst)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LWJGLSelectDialog *lselect = new LWJGLSelectDialog(this);
|
|
|
|
if (lselect->exec())
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
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-07-29 04:29:35 +05:30
|
|
|
BaseInstance *inst = selectedInstance();
|
2013-07-16 04:00:32 +05:30
|
|
|
SettingsObject *s;
|
|
|
|
s = &inst->settings();
|
|
|
|
InstanceSettings settings(s, this);
|
|
|
|
settings.setWindowTitle(QString("Instance settings"));
|
|
|
|
settings.exec();
|
2013-07-14 23:56:53 +05:30
|
|
|
}
|
2013-07-15 01:31:30 +05:30
|
|
|
|
|
|
|
void MainWindow::instanceChanged(QModelIndex idx) {
|
|
|
|
ui->instanceToolBar->setEnabled(idx.isValid());
|
|
|
|
}
|