2013-02-22 22:48:23 +05:30
|
|
|
#include "consolewindow.h"
|
|
|
|
#include "ui_consolewindow.h"
|
|
|
|
|
|
|
|
#include <QScrollBar>
|
2013-09-07 02:10:50 +05:30
|
|
|
#include <QMessageBox>
|
2013-02-22 22:48:23 +05:30
|
|
|
|
2013-10-18 22:12:41 +05:30
|
|
|
#include <gui/platform.h>
|
2013-10-29 18:10:09 +05:30
|
|
|
#include <gui/CustomMessageBox.h>
|
2013-10-18 22:12:41 +05:30
|
|
|
|
2013-09-07 02:10:50 +05:30
|
|
|
ConsoleWindow::ConsoleWindow(MinecraftProcess *mcproc, QWidget *parent) :
|
2013-03-22 19:10:55 +05:30
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::ConsoleWindow),
|
2013-09-07 02:10:50 +05:30
|
|
|
m_mayclose(true),
|
|
|
|
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-10-30 00:08:11 +05:30
|
|
|
this->setWindowFlags(Qt::Window);
|
2013-10-22 22:55:10 +05:30
|
|
|
connect(mcproc, SIGNAL(ended(BaseInstance*)), this, SLOT(onEnded(BaseInstance*)));
|
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);
|
|
|
|
// scroll down
|
|
|
|
QScrollBar *bar = ui->text->verticalScrollBar();
|
|
|
|
bar->setValue(bar->maximum());
|
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-03-22 19:10:55 +05:30
|
|
|
if (data.endsWith('\n'))
|
|
|
|
data = data.left(data.length()-1);
|
|
|
|
QStringList paragraphs = data.split('\n');
|
2013-10-16 07:16:57 +05:30
|
|
|
for(QString ¶graph : paragraphs)
|
|
|
|
{
|
|
|
|
paragraph = paragraph.trimmed();
|
|
|
|
}
|
|
|
|
|
2013-03-22 19:10:55 +05:30
|
|
|
QListIterator<QString> iter(paragraphs);
|
|
|
|
if (mode == MessageLevel::MultiMC)
|
|
|
|
while(iter.hasNext())
|
|
|
|
writeColor(iter.next(), "blue");
|
|
|
|
else if (mode == MessageLevel::Error)
|
|
|
|
while(iter.hasNext())
|
|
|
|
writeColor(iter.next(), "red");
|
2013-09-07 02:10:50 +05:30
|
|
|
else if (mode == MessageLevel::Warning)
|
|
|
|
while(iter.hasNext())
|
|
|
|
writeColor(iter.next(), "orange");
|
2013-09-08 18:32:52 +05:30
|
|
|
else if (mode == MessageLevel::Fatal)
|
|
|
|
while(iter.hasNext())
|
|
|
|
writeColor(iter.next(), "pink");
|
|
|
|
else if (mode == MessageLevel::Debug)
|
|
|
|
while(iter.hasNext())
|
|
|
|
writeColor(iter.next(), "green");
|
2013-03-22 19:10:55 +05:30
|
|
|
// TODO: implement other MessageLevels
|
|
|
|
else
|
|
|
|
while(iter.hasNext())
|
|
|
|
writeColor(iter.next());
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void ConsoleWindow::closeEvent(QCloseEvent * event)
|
|
|
|
{
|
2013-03-22 19:10:55 +05:30
|
|
|
if(!m_mayclose)
|
|
|
|
event->ignore();
|
|
|
|
else
|
|
|
|
QDialog::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-10-29 18:10:09 +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();
|
|
|
|
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-10-22 22:55:10 +05:30
|
|
|
void ConsoleWindow::onEnded(BaseInstance *instance)
|
2013-09-07 03:22:17 +05:30
|
|
|
{
|
|
|
|
ui->btnKillMinecraft->setEnabled(false);
|
2013-10-22 22:55:10 +05:30
|
|
|
|
|
|
|
// TODO: Might need an option to forcefully close, even on an error
|
|
|
|
if(instance->settings().get("AutoCloseConsole").toBool())
|
|
|
|
{
|
|
|
|
// TODO: Check why this doesn't work
|
|
|
|
if (!proc->exitCode()) this->close();
|
|
|
|
}
|
2013-09-07 03:22:17 +05:30
|
|
|
}
|