2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-11-04 07:23:05 +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 "ConsoleWindow.h"
|
2013-11-23 06:11:28 +05:30
|
|
|
#include "MultiMC.h"
|
2013-02-22 22:48:23 +05:30
|
|
|
|
|
|
|
#include <QScrollBar>
|
2013-09-07 02:10:50 +05:30
|
|
|
#include <QMessageBox>
|
2014-01-06 07:22:51 +05:30
|
|
|
#include <QSystemTrayIcon>
|
2014-06-30 05:32:57 +05:30
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <qlayoutitem.h>
|
2014-11-18 03:13:10 +05:30
|
|
|
#include <QCloseEvent>
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include <Platform.h>
|
|
|
|
#include <dialogs/CustomMessageBox.h>
|
|
|
|
#include <dialogs/ProgressDialog.h>
|
2014-06-30 05:32:57 +05:30
|
|
|
#include "widgets/PageContainer.h"
|
|
|
|
#include "pages/LogPage.h"
|
2015-02-07 15:13:09 +05:30
|
|
|
#include "InstancePageProvider.h"
|
2013-12-07 02:54:55 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "icons/IconList.h"
|
2013-10-18 22:12:41 +05:30
|
|
|
|
2014-06-30 05:32:57 +05:30
|
|
|
class LogPageProvider : public BasePageProvider
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LogPageProvider(BasePageProviderPtr parent, BasePage * log_page)
|
|
|
|
{
|
|
|
|
m_parent = parent;
|
|
|
|
m_log_page = log_page;
|
|
|
|
}
|
|
|
|
virtual QString dialogTitle() {return "Fake";};
|
|
|
|
virtual QList<BasePage *> getPages()
|
|
|
|
{
|
|
|
|
auto pages = m_parent->getPages();
|
|
|
|
pages.prepend(m_log_page);
|
|
|
|
return pages;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
BasePageProviderPtr m_parent;
|
|
|
|
BasePage * m_log_page;
|
|
|
|
};
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
ConsoleWindow::ConsoleWindow(BaseProcess *process, QWidget *parent)
|
|
|
|
: QMainWindow(parent), m_proc(process)
|
2013-02-22 22:48:23 +05:30
|
|
|
{
|
2013-10-30 00:08:11 +05:30
|
|
|
MultiMCPlatform::fixWM_CLASS(this);
|
2014-08-21 03:53:20 +05:30
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
2014-06-30 05:32:57 +05:30
|
|
|
|
|
|
|
auto instance = m_proc->instance();
|
2015-02-01 16:14:47 +05:30
|
|
|
auto icon = ENV.icons()->getIcon(instance->iconKey());
|
2014-06-30 05:32:57 +05:30
|
|
|
QString windowTitle = tr("Console window for ") + instance->name();
|
|
|
|
|
|
|
|
// Set window properties
|
|
|
|
{
|
|
|
|
setWindowIcon(icon);
|
|
|
|
setWindowTitle(windowTitle);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add page container
|
|
|
|
{
|
|
|
|
auto mainLayout = new QVBoxLayout;
|
2015-02-07 15:13:09 +05:30
|
|
|
auto provider = std::make_shared<InstancePageProvider>(m_proc->instance());
|
|
|
|
auto baseprovider = std::dynamic_pointer_cast<BasePageProvider>(provider);
|
|
|
|
auto proxy_provider = std::make_shared<LogPageProvider>(baseprovider, new LogPage(m_proc));
|
2014-06-30 05:32:57 +05:30
|
|
|
m_container = new PageContainer(proxy_provider, "console", this);
|
|
|
|
mainLayout->addWidget(m_container);
|
|
|
|
mainLayout->setSpacing(0);
|
|
|
|
mainLayout->setContentsMargins(0,0,0,0);
|
|
|
|
setLayout(mainLayout);
|
|
|
|
setCentralWidget(m_container);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add custom buttons to the page container layout.
|
|
|
|
{
|
|
|
|
auto horizontalLayout = new QHBoxLayout();
|
|
|
|
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
|
|
|
|
horizontalLayout->setContentsMargins(6, -1, 6, -1);
|
|
|
|
|
|
|
|
auto btnHelp = new QPushButton();
|
|
|
|
btnHelp->setText(tr("Help"));
|
|
|
|
horizontalLayout->addWidget(btnHelp);
|
|
|
|
connect(btnHelp, SIGNAL(clicked(bool)), m_container, SLOT(help()));
|
|
|
|
|
|
|
|
auto spacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
|
|
horizontalLayout->addSpacerItem(spacer);
|
|
|
|
|
|
|
|
m_killButton = new QPushButton();
|
|
|
|
m_killButton->setText(tr("Kill Minecraft"));
|
|
|
|
horizontalLayout->addWidget(m_killButton);
|
|
|
|
connect(m_killButton, SIGNAL(clicked(bool)), SLOT(on_btnKillMinecraft_clicked()));
|
|
|
|
|
|
|
|
m_closeButton = new QPushButton();
|
|
|
|
m_closeButton->setText(tr("Close"));
|
|
|
|
horizontalLayout->addWidget(m_closeButton);
|
|
|
|
connect(m_closeButton, SIGNAL(clicked(bool)), SLOT(on_closeButton_clicked()));
|
|
|
|
|
|
|
|
m_container->addButtons(horizontalLayout);
|
|
|
|
}
|
|
|
|
|
|
|
|
// restore window state
|
|
|
|
{
|
|
|
|
auto base64State = MMC->settings()->get("ConsoleWindowState").toByteArray();
|
|
|
|
restoreState(QByteArray::fromBase64(base64State));
|
|
|
|
auto base64Geometry = MMC->settings()->get("ConsoleWindowGeometry").toByteArray();
|
|
|
|
restoreGeometry(QByteArray::fromBase64(base64Geometry));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up tray icon
|
|
|
|
{
|
|
|
|
m_trayIcon = new QSystemTrayIcon(icon, this);
|
|
|
|
m_trayIcon->setToolTip(windowTitle);
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2014-06-30 05:32:57 +05:30
|
|
|
connect(m_trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
|
|
|
|
SLOT(iconActivated(QSystemTrayIcon::ActivationReason)));
|
|
|
|
m_trayIcon->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up signal connections
|
2015-01-28 03:01:07 +05:30
|
|
|
connect(m_proc, SIGNAL(ended(InstancePtr, int, QProcess::ExitStatus)), this,
|
2014-05-18 22:37:01 +05:30
|
|
|
SLOT(onEnded(InstancePtr, int, QProcess::ExitStatus)));
|
2015-01-28 03:01:07 +05:30
|
|
|
connect(m_proc, SIGNAL(prelaunch_failed(InstancePtr, int, QProcess::ExitStatus)), this,
|
2014-05-18 22:37:01 +05:30
|
|
|
SLOT(onEnded(InstancePtr, int, QProcess::ExitStatus)));
|
2015-01-28 03:01:07 +05:30
|
|
|
connect(m_proc, SIGNAL(launch_failed(InstancePtr)), this,
|
2014-05-18 22:37:01 +05:30
|
|
|
SLOT(onLaunchFailed(InstancePtr)));
|
2014-02-24 14:04:21 +05:30
|
|
|
|
2014-06-30 05:32:57 +05:30
|
|
|
setMayClose(false);
|
2014-01-06 07:22:51 +05:30
|
|
|
|
2015-05-23 19:37:47 +05:30
|
|
|
if (m_proc->instance()->settings()->get("ShowConsole").toBool())
|
2013-11-23 06:11:28 +05:30
|
|
|
{
|
|
|
|
show();
|
|
|
|
}
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
2014-01-06 07:22:51 +05:30
|
|
|
void ConsoleWindow::iconActivated(QSystemTrayIcon::ActivationReason reason)
|
|
|
|
{
|
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case QSystemTrayIcon::Trigger:
|
|
|
|
{
|
|
|
|
toggleConsole();
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-22 22:48:23 +05:30
|
|
|
void ConsoleWindow::on_closeButton_clicked()
|
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
close();
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void ConsoleWindow::setMayClose(bool mayclose)
|
|
|
|
{
|
2014-01-09 05:52:34 +05:30
|
|
|
if(mayclose)
|
2014-06-30 05:32:57 +05:30
|
|
|
m_closeButton->setText(tr("Close"));
|
2014-01-09 05:52:34 +05:30
|
|
|
else
|
2014-06-30 05:32:57 +05:30
|
|
|
m_closeButton->setText(tr("Hide"));
|
2013-03-22 19:10:55 +05:30
|
|
|
m_mayclose = mayclose;
|
2014-01-06 07:22:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void ConsoleWindow::toggleConsole()
|
|
|
|
{
|
|
|
|
if (isVisible())
|
|
|
|
{
|
2014-03-24 06:24:18 +05:30
|
|
|
if(!isActiveWindow())
|
|
|
|
{
|
|
|
|
activateWindow();
|
|
|
|
return;
|
|
|
|
}
|
2014-01-06 07:22:51 +05:30
|
|
|
hide();
|
|
|
|
}
|
2013-03-22 19:10:55 +05:30
|
|
|
else
|
2014-01-06 07:22:51 +05:30
|
|
|
{
|
|
|
|
show();
|
|
|
|
}
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
2013-11-13 04:54:49 +05:30
|
|
|
void ConsoleWindow::closeEvent(QCloseEvent *event)
|
2013-02-22 22:48:23 +05:30
|
|
|
{
|
2013-11-13 04:54:49 +05:30
|
|
|
if (!m_mayclose)
|
2014-01-06 07:22:51 +05:30
|
|
|
{
|
|
|
|
toggleConsole();
|
2014-11-18 03:13:10 +05:30
|
|
|
event->ignore();
|
2014-01-06 07:22:51 +05:30
|
|
|
}
|
2014-07-11 00:43:17 +05:30
|
|
|
else if(m_container->requestClose(event))
|
2013-11-23 06:11:28 +05:30
|
|
|
{
|
|
|
|
MMC->settings()->set("ConsoleWindowState", saveState().toBase64());
|
|
|
|
MMC->settings()->set("ConsoleWindowGeometry", saveGeometry().toBase64());
|
|
|
|
|
|
|
|
emit isClosing();
|
2014-01-06 07:22:51 +05:30
|
|
|
m_trayIcon->hide();
|
2014-11-18 03:13:10 +05:30
|
|
|
event->accept();
|
2013-11-23 06:11:28 +05:30
|
|
|
}
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
2013-09-07 02:10:50 +05:30
|
|
|
|
|
|
|
void ConsoleWindow::on_btnKillMinecraft_clicked()
|
|
|
|
{
|
2014-06-30 05:32:57 +05:30
|
|
|
m_killButton->setEnabled(false);
|
2013-11-13 04:54:49 +05:30
|
|
|
auto response = CustomMessageBox::selectable(
|
|
|
|
this, tr("Kill Minecraft?"),
|
|
|
|
tr("This can cause the instance to get corrupted and should only be used if Minecraft "
|
|
|
|
"is frozen for some reason"),
|
|
|
|
QMessageBox::Question, QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes)->exec();
|
2013-10-29 18:10:09 +05:30
|
|
|
if (response == QMessageBox::Yes)
|
2015-01-28 03:01:07 +05:30
|
|
|
m_proc->killProcess();
|
2013-09-07 02:10:50 +05:30
|
|
|
else
|
2014-06-30 05:32:57 +05:30
|
|
|
m_killButton->setEnabled(true);
|
2013-09-07 03:22:17 +05:30
|
|
|
}
|
|
|
|
|
2014-05-18 22:37:01 +05:30
|
|
|
void ConsoleWindow::onEnded(InstancePtr instance, int code, QProcess::ExitStatus status)
|
2013-09-07 03:22:17 +05:30
|
|
|
{
|
2014-01-06 07:22:51 +05:30
|
|
|
bool peacefulExit = code == 0 && status != QProcess::CrashExit;
|
2014-06-30 05:32:57 +05:30
|
|
|
m_killButton->setEnabled(false);
|
2013-12-11 17:56:23 +05:30
|
|
|
setMayClose(true);
|
2015-05-23 19:37:47 +05:30
|
|
|
if (instance->settings()->get("AutoCloseConsole").toBool())
|
2013-10-22 22:55:10 +05:30
|
|
|
{
|
2014-01-06 07:22:51 +05:30
|
|
|
if (peacefulExit)
|
2013-11-12 13:53:39 +05:30
|
|
|
{
|
|
|
|
this->close();
|
2013-11-23 06:11:28 +05:30
|
|
|
return;
|
2013-11-12 13:53:39 +05:30
|
|
|
}
|
2013-10-22 22:55:10 +05:30
|
|
|
}
|
2014-01-06 07:22:51 +05:30
|
|
|
if (!isVisible())
|
2014-11-18 03:13:10 +05:30
|
|
|
{
|
2013-11-23 06:11:28 +05:30
|
|
|
show();
|
2014-11-18 03:13:10 +05:30
|
|
|
}
|
2014-04-17 17:43:16 +05:30
|
|
|
// Raise Window
|
|
|
|
if (MMC->settings()->get("RaiseConsole").toBool())
|
|
|
|
{
|
|
|
|
raise();
|
|
|
|
activateWindow();
|
|
|
|
}
|
2013-11-23 06:11:28 +05:30
|
|
|
}
|
|
|
|
|
2014-05-18 22:37:01 +05:30
|
|
|
void ConsoleWindow::onLaunchFailed(InstancePtr instance)
|
2013-11-23 06:11:28 +05:30
|
|
|
{
|
2014-06-30 05:32:57 +05:30
|
|
|
m_killButton->setEnabled(false);
|
2013-12-11 17:56:23 +05:30
|
|
|
|
|
|
|
setMayClose(true);
|
|
|
|
|
2014-01-06 07:22:51 +05:30
|
|
|
if (!isVisible())
|
2013-11-23 06:11:28 +05:30
|
|
|
show();
|
2013-09-07 03:22:17 +05:30
|
|
|
}
|
2014-08-21 03:53:20 +05:30
|
|
|
ConsoleWindow::~ConsoleWindow()
|
|
|
|
{
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2014-08-21 03:53:20 +05:30
|
|
|
}
|