pollymc/gui/mainwindow.cpp

484 lines
13 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"
2013-02-02 00:37:36 +05:30
2013-03-12 02:49:17 +05:30
#include "kcategorizedview.h"
#include "kcategorydrawer.h"
#include "instancelist.h"
2013-02-27 04:17:39 +05:30
#include "appsettings.h"
#include "version.h"
2013-01-16 06:16:27 +05:30
2013-02-27 04:17:39 +05:30
#include "logintask.h"
#include "gameupdatetask.h"
#include "instance.h"
#include "minecraftprocess.h"
2013-03-12 02:49:17 +05:30
#include "instancemodel.h"
#include "instancedelegate.h"
#include "minecraftversionlist.h"
#include "lwjglversionlist.h"
// Opens the given file in the default application.
// TODO: Move this somewhere.
2013-03-12 02:49:17 +05:30
void openInDefaultProgram ( QString filename );
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 );
/*
QPalette pal = view->palette();
pal.setBrush(QPalette::Base, QBrush(QPixmap(QString::fromUtf8(":/backgrounds/kitteh"))));
view->setPalette(pal);
*/
// 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 );
setWindowTitle ( QString ( "MultiMC %1" ).arg ( Version::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 &)));
2013-03-19 03:30:46 +05:30
// Load the instances.
instList.loadList();
// just a test
/*
instList.at(0)->setGroup("TEST GROUP");
instList.at(0)->setName("TEST ITEM");
*/
if (!MinecraftVersionList::getMainList().isLoaded())
{
m_versionLoadTask = MinecraftVersionList::getMainList().getLoadTask();
startTask(m_versionLoadTask);
}
if (!LWJGLVersionList::get().isLoaded())
{
LWJGLVersionList::get().loadList();
}
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;
}
void MainWindow::instanceActivated ( QModelIndex index )
{
if(!index.isValid())
return;
Instance * inst = (Instance *) 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(ended()), SLOT(quit()));
waitLoop.exec();
}
2013-03-12 02:49:17 +05:30
NewInstanceDialog *newInstDlg = new NewInstanceDialog ( this );
2013-04-23 03:45:18 +05:30
if (newInstDlg->exec())
{
Instance *newInstance = NULL;
QString instDirName = DirNameFromString(newInstDlg->instName());
QString instDir = PathCombine(globalSettings->get("InstanceDir").toString(),
instDirName);
InstanceLoader::InstLoaderError error = InstanceLoader::get().
createInstance(newInstance, instDir);
2013-04-23 03:45:18 +05:30
if (error == InstanceLoader::NoError)
{
newInstance->setName(newInstDlg->instName());
2013-05-07 07:58:28 +05:30
newInstance->setIntendedVersion(newInstDlg->selectedVersion()->descriptor());
2013-04-23 03:45:18 +05:30
instList.add(InstancePtr(newInstance));
}
else
{
QString errorMsg = QString("Failed to create instance %1: ").
arg(instDirName);
switch (error)
{
case InstanceLoader::InstExists:
errorMsg += "An instance with the given directory name already exists.";
break;
case InstanceLoader::CantCreateDir:
errorMsg += "Failed to create the instance directory.";
break;
default:
errorMsg += QString("Unknown instance loader error %1").
arg(error);
break;
}
QMessageBox::warning(this, "Error", errorMsg);
}
}
2013-01-09 23:52:22 +05:30
}
void MainWindow::on_actionChangeInstGroup_triggered()
{
Instance* inst = selectedInstance();
if(inst)
{
QString name ( inst->group() );
name = QInputDialog::getText ( this, tr ( "Group name" ), tr ( "Enter a new group name." ), QLineEdit::Normal, name );
inst->setGroup(name);
}
}
2013-01-09 23:52:22 +05:30
void MainWindow::on_actionViewInstanceFolder_triggered()
{
2013-03-12 02:49:17 +05:30
openInDefaultProgram ( globalSettings->get ( "InstanceDir" ).toString() );
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-03-12 02:49:17 +05:30
openInDefaultProgram ( globalSettings->get ( "CentralModsDir" ).toString() );
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-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 ) );
}
Instance* 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 (Instance *) mindex.data(InstanceModel::InstancePointerRole).value<void *>();
}
else
return nullptr;
}
void MainWindow::on_actionLaunchInstance_triggered()
{
Instance* 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);
if (loginDlg->exec())
{
UserInfo uInfo(loginDlg->getUsername(), loginDlg->getPassword());
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);
}
}
void MainWindow::onLoginComplete(LoginResponse response)
{
Q_ASSERT_X(m_activeInst != NULL, "onLoginComplete", "no active instance is set");
if (!m_activeInst->shouldUpdateGame())
{
launchInstance(m_activeInst, response);
}
else
{
TaskDialog *tDialog = new TaskDialog(this);
GameUpdateTask *updateTask = new GameUpdateTask(response, m_activeInst);
connect(updateTask, SIGNAL(gameUpdateComplete(LoginResponse)),
SLOT(onGameUpdateComplete(LoginResponse)));
connect(updateTask, SIGNAL(gameUpdateError(QString)), SLOT(onGameUpdateError(QString)));
tDialog->exec(updateTask);
}
}
void MainWindow::onGameUpdateComplete(LoginResponse response)
{
launchInstance(response);
}
void MainWindow::onGameUpdateError(QString error)
2013-03-12 02:49:17 +05:30
{
QMessageBox::warning(this, "Error downloading instance", error);
}
void MainWindow::launchInstance(LoginResponse response)
{
Q_ASSERT_X(m_activeInst != NULL, "onLoginComplete", "no active instance is set");
launchInstance(m_activeInst, response);
}
void MainWindow::launchInstance(QString instID, LoginResponse response)
{
Instance *instance = instList.getInstanceById(instID).data();
Q_ASSERT_X(instance != NULL, "launchInstance", "instance ID does not correspond to a valid instance");
launchInstance(instance, response);
}
void MainWindow::launchInstance(Instance *instance, LoginResponse response)
{
Q_ASSERT_X(instance != NULL, "launchInstance", "instance is NULL");
console = new ConsoleWindow();
proc = new MinecraftProcess(instance, response.username(), response.sessionID());
console->show();
//connect(proc, SIGNAL(ended()), SLOT(onTerminated()));
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(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
// 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();
}
2013-03-12 02:49:17 +05:30
void openInDefaultProgram ( 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;
Instance *inst = selectedInstance();
VersionSelectDialog *vselect = new VersionSelectDialog(inst->versionList(), this);
2013-05-07 07:58:28 +05:30
if (vselect->exec() && vselect->selectedVersion())
{
inst->setIntendedVersion(vselect->selectedVersion()->descriptor());
}
}
void MainWindow::on_actionChangeInstLWJGLVersion_triggered()
{
Instance *inst = selectedInstance();
if (!inst)
return;
LWJGLSelectDialog *lselect = new LWJGLSelectDialog(this);
if (lselect->exec())
{
}
}