pollymc/application/pages/instance/WorldListPage.cpp

337 lines
8.7 KiB
C++
Raw Normal View History

2019-01-17 01:44:24 +05:30
/* Copyright 2015-2019 MultiMC Contributors
2015-08-31 01:03:53 +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
*
* 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 "WorldListPage.h"
#include "ui_WorldListPage.h"
#include "minecraft/WorldList.h"
#include <DesktopServices.h>
#include "dialogs/ModEditDialogCommon.h"
#include <QEvent>
#include <QMenu>
#include <QKeyEvent>
#include <QClipboard>
#include <QMessageBox>
#include <QTreeView>
2015-09-15 03:19:32 +05:30
#include <QInputDialog>
#include <tools/MCEditTool.h>
#include "MultiMC.h"
#include <GuiUtil.h>
#include <QProcess>
#include <FileSystem.h>
WorldListPage::WorldListPage(BaseInstance *inst, std::shared_ptr<WorldList> worlds, QWidget *parent)
: QMainWindow(parent), m_inst(inst), ui(new Ui::WorldListPage), m_worlds(worlds)
{
2018-07-15 18:21:05 +05:30
ui->setupUi(this);
2019-07-23 04:18:14 +05:30
ui->toolBar->insertSpacer(ui->actionRefresh);
2018-07-15 18:21:05 +05:30
QSortFilterProxyModel * proxy = new QSortFilterProxyModel(this);
proxy->setSortCaseSensitivity(Qt::CaseInsensitive);
proxy->setSourceModel(m_worlds.get());
ui->worldTreeView->setSortingEnabled(true);
ui->worldTreeView->setModel(proxy);
ui->worldTreeView->installEventFilter(this);
auto head = ui->worldTreeView->header();
head->setSectionResizeMode(0, QHeaderView::Stretch);
head->setSectionResizeMode(1, QHeaderView::ResizeToContents);
connect(ui->worldTreeView->selectionModel(), &QItemSelectionModel::currentChanged, this, &WorldListPage::worldChanged);
2018-07-15 18:21:05 +05:30
worldChanged(QModelIndex(), QModelIndex());
}
2018-03-19 07:06:12 +05:30
void WorldListPage::openedImpl()
{
2018-07-15 18:21:05 +05:30
m_worlds->startWatching();
}
2018-03-19 07:06:12 +05:30
void WorldListPage::closedImpl()
{
2018-07-15 18:21:05 +05:30
m_worlds->stopWatching();
}
WorldListPage::~WorldListPage()
{
2018-07-15 18:21:05 +05:30
m_worlds->stopWatching();
delete ui;
}
QMenu * WorldListPage::createPopupMenu()
{
QMenu* filteredMenu = QMainWindow::createPopupMenu();
filteredMenu->removeAction( ui->toolBar->toggleViewAction() );
return filteredMenu;
}
bool WorldListPage::shouldDisplay() const
{
2018-07-15 18:21:05 +05:30
return true;
}
bool WorldListPage::worldListFilter(QKeyEvent *keyEvent)
{
2018-07-15 18:21:05 +05:30
switch (keyEvent->key())
{
case Qt::Key_Delete:
on_actionRemove_triggered();
2018-07-15 18:21:05 +05:30
return true;
default:
break;
}
return QWidget::eventFilter(ui->worldTreeView, keyEvent);
}
bool WorldListPage::eventFilter(QObject *obj, QEvent *ev)
{
2018-07-15 18:21:05 +05:30
if (ev->type() != QEvent::KeyPress)
{
return QWidget::eventFilter(obj, ev);
}
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(ev);
if (obj == ui->worldTreeView)
return worldListFilter(keyEvent);
return QWidget::eventFilter(obj, ev);
}
void WorldListPage::on_actionRemove_triggered()
{
2018-07-15 18:21:05 +05:30
auto proxiedIndex = getSelectedWorld();
if(!proxiedIndex.isValid())
return;
auto result = QMessageBox::question(this,
tr("Are you sure?"),
tr("This will remove the selected world permenantly.\n"
"The world will be gone forever (A LONG TIME).\n"
"\n"
"Do you want to continue?"));
if(result != QMessageBox::Yes)
{
return;
}
m_worlds->stopWatching();
m_worlds->deleteWorld(proxiedIndex.row());
m_worlds->startWatching();
}
void WorldListPage::on_actionView_Folder_triggered()
{
2018-07-15 18:21:05 +05:30
DesktopServices::openDirectory(m_worlds->dir().absolutePath(), true);
}
QModelIndex WorldListPage::getSelectedWorld()
{
2018-07-15 18:21:05 +05:30
auto index = ui->worldTreeView->selectionModel()->currentIndex();
2018-07-15 18:21:05 +05:30
auto proxy = (QSortFilterProxyModel *) ui->worldTreeView->model();
return proxy->mapToSource(index);
}
void WorldListPage::on_actionCopy_Seed_triggered()
{
2018-07-15 18:21:05 +05:30
QModelIndex index = getSelectedWorld();
if (!index.isValid())
{
return;
}
int64_t seed = m_worlds->data(index, WorldList::SeedRole).toLongLong();
MMC->clipboard()->setText(QString::number(seed));
}
void WorldListPage::on_actionMCEdit_triggered()
{
2018-07-15 18:21:05 +05:30
if(m_mceditStarting)
return;
2018-07-15 18:21:05 +05:30
auto mcedit = MMC->mcedit();
2018-07-15 18:21:05 +05:30
const QString mceditPath = mcedit->path();
2018-07-15 18:21:05 +05:30
QModelIndex index = getSelectedWorld();
2018-07-15 18:21:05 +05:30
if (!index.isValid())
{
return;
}
2018-07-15 18:21:05 +05:30
if(!worldSafetyNagQuestion())
return;
2015-09-16 02:21:10 +05:30
2018-07-15 18:21:05 +05:30
auto fullPath = m_worlds->data(index, WorldList::FolderRole).toString();
2018-07-15 18:21:05 +05:30
auto program = mcedit->getProgramPath();
if(program.size())
{
#ifdef Q_OS_WIN32
2018-07-15 18:21:05 +05:30
if(!QProcess::startDetached(program, {fullPath}, mceditPath))
{
mceditError();
}
#else
2018-07-15 18:21:05 +05:30
m_mceditProcess.reset(new LoggedProcess());
m_mceditProcess->setDetachable(true);
connect(m_mceditProcess.get(), &LoggedProcess::stateChanged, this, &WorldListPage::mceditState);
m_mceditProcess->start(program, {fullPath});
m_mceditProcess->setWorkingDirectory(mceditPath);
m_mceditStarting = true;
#endif
2018-07-15 18:21:05 +05:30
}
else
{
QMessageBox::warning(
this->parentWidget(),
tr("No MCEdit found or set up!"),
tr("You do not have MCEdit set up or it was moved.\nYou can set it up in the global settings.")
);
}
}
void WorldListPage::mceditError()
{
2018-07-15 18:21:05 +05:30
QMessageBox::warning(
this->parentWidget(),
tr("MCEdit failed to start!"),
tr("MCEdit failed to start.\nIt may be necessary to reinstall it.")
);
}
void WorldListPage::mceditState(LoggedProcess::State state)
{
2018-07-15 18:21:05 +05:30
bool failed = false;
switch(state)
{
case LoggedProcess::NotRunning:
case LoggedProcess::Starting:
return;
case LoggedProcess::FailedToStart:
case LoggedProcess::Crashed:
case LoggedProcess::Aborted:
{
failed = true;
}
case LoggedProcess::Running:
case LoggedProcess::Finished:
{
m_mceditStarting = false;
break;
}
}
if(failed)
{
mceditError();
}
}
void WorldListPage::worldChanged(const QModelIndex &current, const QModelIndex &previous)
{
2018-07-15 18:21:05 +05:30
QModelIndex index = getSelectedWorld();
bool enable = index.isValid();
ui->actionCopy_Seed->setEnabled(enable);
ui->actionMCEdit->setEnabled(enable);
ui->actionRemove->setEnabled(enable);
ui->actionCopy->setEnabled(enable);
ui->actionRename->setEnabled(enable);
}
void WorldListPage::on_actionAdd_triggered()
{
2018-07-15 18:21:05 +05:30
auto list = GuiUtil::BrowseForFiles(
displayName(),
2018-07-15 18:21:05 +05:30
tr("Select a Minecraft world zip"),
tr("Minecraft World Zip File (*.zip)"), QString(), this->parentWidget());
if (!list.empty())
{
m_worlds->stopWatching();
for (auto filename : list)
{
m_worlds->installWorld(QFileInfo(filename));
}
m_worlds->startWatching();
}
2015-09-15 03:19:32 +05:30
}
2015-09-16 02:21:10 +05:30
bool WorldListPage::isWorldSafe(QModelIndex)
{
2018-07-15 18:21:05 +05:30
return !m_inst->isRunning();
2015-09-16 02:21:10 +05:30
}
bool WorldListPage::worldSafetyNagQuestion()
{
2018-07-15 18:21:05 +05:30
if(!isWorldSafe(getSelectedWorld()))
{
auto result = QMessageBox::question(this, tr("Copy World"), tr("Changing a world while Minecraft is running is potentially unsafe.\nDo you wish to proceed?"));
if(result == QMessageBox::No)
{
return false;
}
}
return true;
2015-09-16 02:21:10 +05:30
}
void WorldListPage::on_actionCopy_triggered()
2015-09-15 03:19:32 +05:30
{
2018-07-15 18:21:05 +05:30
QModelIndex index = getSelectedWorld();
if (!index.isValid())
{
return;
}
if(!worldSafetyNagQuestion())
return;
auto worldVariant = m_worlds->data(index, WorldList::ObjectRole);
auto world = (World *) worldVariant.value<void *>();
bool ok = false;
QString name = QInputDialog::getText(this, tr("World name"), tr("Enter a new name for the copy."), QLineEdit::Normal, world->name(), &ok);
if (ok && name.length() > 0)
{
world->install(m_worlds->dir().absolutePath(), name);
}
2015-09-15 03:19:32 +05:30
}
void WorldListPage::on_actionRename_triggered()
2015-09-15 03:19:32 +05:30
{
2018-07-15 18:21:05 +05:30
QModelIndex index = getSelectedWorld();
if (!index.isValid())
{
return;
}
2015-09-16 02:21:10 +05:30
2018-07-15 18:21:05 +05:30
if(!worldSafetyNagQuestion())
return;
2015-09-16 02:21:10 +05:30
2018-07-15 18:21:05 +05:30
auto worldVariant = m_worlds->data(index, WorldList::ObjectRole);
auto world = (World *) worldVariant.value<void *>();
2015-09-15 03:19:32 +05:30
2018-07-15 18:21:05 +05:30
bool ok = false;
QString name = QInputDialog::getText(this, tr("World name"), tr("Enter a new world name."), QLineEdit::Normal, world->name(), &ok);
2015-09-15 03:19:32 +05:30
2018-07-15 18:21:05 +05:30
if (ok && name.length() > 0)
{
world->rename(name);
}
2015-09-15 03:19:32 +05:30
}
2015-09-16 02:21:10 +05:30
void WorldListPage::on_actionRefresh_triggered()
2015-09-16 02:21:10 +05:30
{
2018-07-15 18:21:05 +05:30
m_worlds->update();
2015-09-16 02:21:10 +05:30
}