2013-11-04 07:23:05 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
#include "ui_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>
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#include <gui/Platform.h>
|
|
|
|
#include <gui/dialogs/CustomMessageBox.h>
|
2013-10-18 22:12:41 +05:30
|
|
|
|
2013-11-13 04:54:49 +05:30
|
|
|
ConsoleWindow::ConsoleWindow(MinecraftProcess *mcproc, QWidget *parent)
|
2013-11-23 06:11:28 +05:30
|
|
|
: QMainWindow(parent), ui(new Ui::ConsoleWindow), proc(mcproc)
|
2013-02-22 22:48:23 +05:30
|
|
|
{
|
2013-10-30 00:08:11 +05:30
|
|
|
MultiMCPlatform::fixWM_CLASS(this);
|
2013-03-22 19:10:55 +05:30
|
|
|
ui->setupUi(this);
|
2013-11-23 06:11:28 +05:30
|
|
|
connect(mcproc, SIGNAL(log(QString, MessageLevel::Enum)), this,
|
|
|
|
SLOT(write(QString, MessageLevel::Enum)));
|
2013-11-17 16:18:01 +05:30
|
|
|
connect(mcproc, SIGNAL(ended(BaseInstance *, int, QProcess::ExitStatus)), this,
|
2013-11-13 04:54:49 +05:30
|
|
|
SLOT(onEnded(BaseInstance *, int, QProcess::ExitStatus)));
|
2013-11-23 06:11:28 +05:30
|
|
|
connect(mcproc, SIGNAL(prelaunch_failed(BaseInstance*,int,QProcess::ExitStatus)), this,
|
|
|
|
SLOT(onEnded(BaseInstance *, int, QProcess::ExitStatus)));
|
|
|
|
connect(mcproc, SIGNAL(launch_failed(BaseInstance*)), this,
|
|
|
|
SLOT(onLaunchFailed(BaseInstance*)));
|
|
|
|
|
|
|
|
restoreState(QByteArray::fromBase64(MMC->settings()->get("ConsoleWindowState").toByteArray()));
|
|
|
|
restoreGeometry(QByteArray::fromBase64(MMC->settings()->get("ConsoleWindowGeometry").toByteArray()));
|
|
|
|
|
|
|
|
if (mcproc->instance()->settings().get("ShowConsole").toBool())
|
|
|
|
{
|
|
|
|
show();
|
|
|
|
}
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
ConsoleWindow::~ConsoleWindow()
|
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
delete ui;
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void ConsoleWindow::writeColor(QString text, const char *color)
|
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
// append a paragraph
|
|
|
|
if (color != nullptr)
|
2013-09-08 18:32:52 +05:30
|
|
|
ui->text->appendHtml(QString("<font color=\"%1\">%2</font>").arg(color).arg(text));
|
2013-03-22 19:10:55 +05:30
|
|
|
else
|
|
|
|
ui->text->appendPlainText(text);
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
2013-03-22 19:10:55 +05:30
|
|
|
void ConsoleWindow::write(QString data, MessageLevel::Enum mode)
|
2013-02-22 22:48:23 +05:30
|
|
|
{
|
2013-12-01 06:30:42 +05:30
|
|
|
QScrollBar *bar = ui->text->verticalScrollBar();
|
|
|
|
int max_bar = bar->maximum();
|
|
|
|
int val_bar = bar->value();
|
|
|
|
if(m_scroll_active)
|
|
|
|
{
|
|
|
|
if(m_last_scroll_value > val_bar)
|
|
|
|
m_scroll_active = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_scroll_active = val_bar == max_bar;
|
|
|
|
}
|
|
|
|
|
2013-03-22 19:10:55 +05:30
|
|
|
if (data.endsWith('\n'))
|
2013-11-13 04:54:49 +05:30
|
|
|
data = data.left(data.length() - 1);
|
2013-03-22 19:10:55 +05:30
|
|
|
QStringList paragraphs = data.split('\n');
|
2013-11-13 04:54:49 +05:30
|
|
|
for (QString ¶graph : paragraphs)
|
2013-10-16 07:16:57 +05:30
|
|
|
{
|
|
|
|
paragraph = paragraph.trimmed();
|
|
|
|
}
|
|
|
|
|
2013-03-22 19:10:55 +05:30
|
|
|
QListIterator<QString> iter(paragraphs);
|
|
|
|
if (mode == MessageLevel::MultiMC)
|
2013-11-13 04:54:49 +05:30
|
|
|
while (iter.hasNext())
|
2013-03-22 19:10:55 +05:30
|
|
|
writeColor(iter.next(), "blue");
|
|
|
|
else if (mode == MessageLevel::Error)
|
2013-11-13 04:54:49 +05:30
|
|
|
while (iter.hasNext())
|
2013-03-22 19:10:55 +05:30
|
|
|
writeColor(iter.next(), "red");
|
2013-09-07 02:10:50 +05:30
|
|
|
else if (mode == MessageLevel::Warning)
|
2013-11-13 04:54:49 +05:30
|
|
|
while (iter.hasNext())
|
2013-09-07 02:10:50 +05:30
|
|
|
writeColor(iter.next(), "orange");
|
2013-09-08 18:32:52 +05:30
|
|
|
else if (mode == MessageLevel::Fatal)
|
2013-11-13 04:54:49 +05:30
|
|
|
while (iter.hasNext())
|
2013-09-08 18:32:52 +05:30
|
|
|
writeColor(iter.next(), "pink");
|
|
|
|
else if (mode == MessageLevel::Debug)
|
2013-11-13 04:54:49 +05:30
|
|
|
while (iter.hasNext())
|
2013-09-08 18:32:52 +05:30
|
|
|
writeColor(iter.next(), "green");
|
2013-03-22 19:10:55 +05:30
|
|
|
// TODO: implement other MessageLevels
|
|
|
|
else
|
2013-11-13 04:54:49 +05:30
|
|
|
while (iter.hasNext())
|
2013-03-22 19:10:55 +05:30
|
|
|
writeColor(iter.next());
|
2013-12-01 06:30:42 +05:30
|
|
|
if(m_scroll_active)
|
|
|
|
{
|
|
|
|
bar->setValue(bar->maximum());
|
|
|
|
}
|
|
|
|
m_last_scroll_value = bar->value();
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void ConsoleWindow::clear()
|
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
ui->text->clear();
|
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)
|
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
m_mayclose = mayclose;
|
|
|
|
if (mayclose)
|
|
|
|
ui->closeButton->setEnabled(true);
|
|
|
|
else
|
|
|
|
ui->closeButton->setEnabled(false);
|
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)
|
2013-03-22 19:10:55 +05:30
|
|
|
event->ignore();
|
|
|
|
else
|
2013-11-23 06:11:28 +05:30
|
|
|
{
|
|
|
|
MMC->settings()->set("ConsoleWindowState", saveState().toBase64());
|
|
|
|
MMC->settings()->set("ConsoleWindowGeometry", saveGeometry().toBase64());
|
|
|
|
|
|
|
|
emit isClosing();
|
|
|
|
QMainWindow::closeEvent(event);
|
|
|
|
}
|
2013-02-22 22:48:23 +05:30
|
|
|
}
|
2013-09-07 02:10:50 +05:30
|
|
|
|
|
|
|
void ConsoleWindow::on_btnKillMinecraft_clicked()
|
|
|
|
{
|
|
|
|
ui->btnKillMinecraft->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)
|
2013-09-07 02:10:50 +05:30
|
|
|
proc->killMinecraft();
|
|
|
|
else
|
|
|
|
ui->btnKillMinecraft->setEnabled(true);
|
2013-09-07 03:22:17 +05:30
|
|
|
}
|
|
|
|
|
2013-11-13 04:54:49 +05:30
|
|
|
void ConsoleWindow::onEnded(BaseInstance *instance, int code, QProcess::ExitStatus status)
|
2013-09-07 03:22:17 +05:30
|
|
|
{
|
|
|
|
ui->btnKillMinecraft->setEnabled(false);
|
2013-10-22 22:55:10 +05:30
|
|
|
|
2013-11-13 04:54:49 +05:30
|
|
|
if (instance->settings().get("AutoCloseConsole").toBool())
|
2013-10-22 22:55:10 +05:30
|
|
|
{
|
2013-11-12 13:53:39 +05:30
|
|
|
if (code == 0 && status != QProcess::CrashExit)
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
2013-11-23 06:11:28 +05:30
|
|
|
if(!isVisible())
|
|
|
|
show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConsoleWindow::onLaunchFailed(BaseInstance *instance)
|
|
|
|
{
|
|
|
|
ui->btnKillMinecraft->setEnabled(false);
|
|
|
|
if(!isVisible())
|
|
|
|
show();
|
2013-09-07 03:22:17 +05:30
|
|
|
}
|