pollymc/gui/mainwindow.cpp

572 lines
15 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 "mainwindow.h"
#include "ui_mainwindow.h"
#include <QMenu>
2013-02-02 00:37:36 +05:30
#include <QMessageBox>
#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>
#include <QFileInfo>
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 "gui/settingsdialog.h"
2013-02-02 00:37:36 +05:30
#include "gui/newinstancedialog.h"
#include "gui/logindialog.h"
#include "gui/taskdialog.h"
#include "gui/browserdialog.h"
#include "gui/aboutdialog.h"
#include "gui/versionselectdialog.h"
#include "gui/lwjglselectdialog.h"
#include "gui/consolewindow.h"
#include "gui/legacymodeditdialog.h"
#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
#include "lists/InstanceList.h"
#include "AppSettings.h"
#include "AppVersion.h"
2013-01-16 06:16:27 +05:30
#include "tasks/LoginTask.h"
#include "BaseInstance.h"
#include "InstanceFactory.h"
#include "MinecraftProcess.h"
#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"
#include "IconPickerDialog.h"
#include "lists/MinecraftVersionList.h"
#include "lists/LwjglVersionList.h"
// Opens the given file in the default application.
// TODO: Move this somewhere.
void openFileInDefaultProgram ( QString filename );
void openDirInDefaultProgram ( QString dirpath, bool ensureExists = false );
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 );
// 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 );
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-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);
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() ) );
// 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 &)));
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();
//FIXME: WTF
if (!MinecraftVersionList::getMainList().isLoaded())
{
m_versionLoadTask = MinecraftVersionList::getMainList().getLoadTask();
startTask(m_versionLoadTask);
}
//FIXME: WTF X 2
if (!LWJGLVersionList::get().isLoaded())
{
LWJGLVersionList::get().loadList();
}
//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;
delete assets_downloader;
2013-03-12 02:49:17 +05:30
}
void MainWindow::instanceActivated ( QModelIndex index )
{
if(!index.isValid())
return;
BaseInstance * inst = (BaseInstance *) index.data(InstanceModel::InstancePointerRole).value<void *>();
doLogin();
2013-01-09 23:52:22 +05:30
}
void MainWindow::on_actionAddInstance_triggered()
{
if (!MinecraftVersionList::getMainList().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();
}
NewInstanceDialog newInstDlg( this );
if (!newInstDlg.exec())
return;
BaseInstance *newInstance = NULL;
QString instDirName = DirNameFromString(newInstDlg.instName());
QString instDir = PathCombine(globalSettings->get("InstanceDir").toString(), instDirName);
auto &loader = InstanceFactory::get();
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());
instList.add(InstancePtr(newInstance));
return;
case InstanceFactory::InstExists:
errorMsg += "An instance with the given directory name already exists.";
QMessageBox::warning(this, "Error", errorMsg);
break;
2013-04-23 03:45:18 +05:30
case InstanceFactory::CantCreateDir:
errorMsg += "Failed to create the instance directory.";
QMessageBox::warning(this, "Error", errorMsg);
break;
2013-04-23 03:45:18 +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()
{
BaseInstance* inst = selectedInstance();
if(!inst)
return;
IconPickerDialog dlg(this);
dlg.exec(selectedInstance()->iconKey());
if(dlg.result() == QDialog::Accepted)
{
selectedInstance()->setIconKey(dlg.selectedIconKey);
}
}
void MainWindow::on_actionChangeInstGroup_triggered()
{
BaseInstance* inst = selectedInstance();
if(!inst)
return;
bool ok = false;
QString name ( inst->group() );
name = QInputDialog::getText ( this, tr ( "Group name" ), tr ( "Enter a new group name." ),
QLineEdit::Normal, name, &ok );
if(ok)
inst->setGroup(name);
}
2013-01-09 23:52:22 +05:30
void MainWindow::on_actionViewInstanceFolder_triggered()
{
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()
{
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()
{
openWebPage ( QUrl ( "http://jira.forkk.net/browse/MMC" ) );
2013-01-09 23:52:22 +05:30
}
void MainWindow::on_actionNews_triggered()
{
2013-03-12 02:49:17 +05:30
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
}
void MainWindow::on_actionDeleteInstance_triggered()
{
BaseInstance* inst = selectedInstance();
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();
}
}
}
void MainWindow::on_actionRenameInstance_triggered()
{
BaseInstance* inst = selectedInstance();
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 );
if (name.length() > 0)
{
if(ok && name.length() && name.length() <= 25)
inst->setName(name);
}
}
}
void MainWindow::on_actionViewSelectedInstFolder_triggered()
{
BaseInstance* inst = selectedInstance();
if(inst)
{
QString str = inst->rootDir();
openDirInDefaultProgram ( QDir(str).absolutePath() );
}
}
void MainWindow::on_actionEditInstMods_triggered()
{
//TODO: Needs to do current ModEditDialog too
BaseInstance* inst = selectedInstance();
if (inst)
{
LegacyModEditDialog dialog ( this, inst );
dialog.exec();
}
}
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.
// 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-03-12 02:49:17 +05:30
void MainWindow::on_instanceView_customContextMenuRequested ( const QPoint &pos )
{
2013-03-12 02:49:17 +05:30
QMenu *instContextMenu = new QMenu ( "Instance", this );
// 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 ) );
}
BaseInstance* MainWindow::selectedInstance()
{
QAbstractItemView * iv = view;
auto smodel = iv->selectionModel();
QModelIndex mindex;
if(smodel->hasSelection())
2013-03-12 02:49:17 +05:30
{
auto rows = smodel->selectedRows();
mindex = rows.at(0);
}
if(mindex.isValid())
{
return (BaseInstance *) mindex.data(InstanceModel::InstancePointerRole).value<void *>();
}
else
return nullptr;
}
void MainWindow::on_actionLaunchInstance_triggered()
{
BaseInstance* inst = selectedInstance();
if(inst)
2013-03-12 02:49:17 +05:30
{
doLogin();
2013-03-12 02:49:17 +05:30
}
}
void MainWindow::doLogin(const QString& errorMsg)
{
if (!selectedInstance())
return;
LoginDialog* loginDlg = new LoginDialog(this, errorMsg);
loginDlg->exec();
if(loginDlg->result() == QDialog::Accepted)
{
2013-08-04 18:16:33 +05:30
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 = selectedInstance();
tDialog->exec(loginTask);
}
}
void MainWindow::onLoginComplete()
{
2013-08-03 19:27:33 +05:30
if(!m_activeInst)
return;
LoginTask * task = (LoginTask *) QObject::sender();
m_activeLogin = task->getResult();
BaseUpdate *updateTask = m_activeInst->doUpdate();
2013-08-03 19:27:33 +05:30
if(!updateTask)
{
2013-08-04 03:28:39 +05:30
launchInstance(m_activeInst, m_activeLogin);
}
else
{
TaskDialog *tDialog = new TaskDialog(this);
connect(updateTask, SIGNAL(succeeded()),SLOT(onGameUpdateComplete()));
connect(updateTask, SIGNAL(failed(QString)), SLOT(onGameUpdateError(QString)));
tDialog->exec(updateTask);
}
}
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-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-08-03 19:27:33 +05:30
console = new ConsoleWindow();
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
}
void MainWindow::taskStart()
{
// Nothing to do here yet.
}
void MainWindow::taskEnd()
{
QObject *sender = QObject::sender();
if (sender == m_versionLoadTask)
m_versionLoadTask = NULL;
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->startTask();
}
2013-03-12 02:49:17 +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-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-03-12 02:49:17 +05:30
QMessageBox::warning ( this, "Not useful", "A Dummy Shortcut was created. it will not do anything productive" );
}
// BrowserDialog
2013-03-12 02:49:17 +05:30
void MainWindow::openWebPage ( QUrl url )
{
2013-03-12 02:49:17 +05:30
BrowserDialog *browser = new BrowserDialog ( this );
2013-03-12 02:49:17 +05:30
browser->load ( url );
browser->exec();
}
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-03-12 02:49:17 +05:30
QDesktopServices::openUrl ( "file:///" + QFileInfo ( filename ).absolutePath() );
}
void MainWindow::on_actionChangeInstMCVersion_triggered()
{
if (view->selectionModel()->selectedIndexes().count() < 1)
return;
BaseInstance *inst = selectedInstance();
VersionSelectDialog vselect(inst->versionList(), this);
if (vselect.exec() && vselect.selectedVersion())
2013-05-07 07:58:28 +05:30
{
inst->setIntendedVersionId(vselect.selectedVersion()->descriptor);
2013-05-07 07:58:28 +05:30
}
}
void MainWindow::on_actionChangeInstLWJGLVersion_triggered()
{
BaseInstance *inst = selectedInstance();
if (!inst)
return;
LWJGLSelectDialog lselect(this);
lselect.exec();
if (lselect.result() == QDialog::Accepted)
{
}
}
2013-07-14 23:56:53 +05:30
void MainWindow::on_actionInstanceSettings_triggered()
{
if (view->selectionModel()->selectedIndexes().count() < 1)
return;
BaseInstance *inst = selectedInstance();
SettingsObject *s;
s = &inst->settings();
InstanceSettings settings(s, this);
settings.setWindowTitle(QString("Instance settings"));
settings.exec();
2013-07-14 23:56:53 +05:30
}
void MainWindow::instanceChanged(QModelIndex idx) {
ui->instanceToolBar->setEnabled(idx.isValid());
}