summaryrefslogtreecommitdiff
path: root/src/lootdialog.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-11-24 20:11:50 -0500
committerisanae <14251494+isanae@users.noreply.github.com>2019-11-24 20:11:50 -0500
commitcd876a0f9ffd03c711812c2ade92836e5d6c0203 (patch)
treecf472e0d3aa07e874721eb069a3a5d99f7ccf3f2 /src/lootdialog.cpp
parentf5476531ae39fdae8c3adc63d4c4a11f92600ff8 (diff)
split loot dialog, added ui file
Diffstat (limited to 'src/lootdialog.cpp')
-rw-r--r--src/lootdialog.cpp222
1 files changed, 222 insertions, 0 deletions
diff --git a/src/lootdialog.cpp b/src/lootdialog.cpp
new file mode 100644
index 00000000..db41959d
--- /dev/null
+++ b/src/lootdialog.cpp
@@ -0,0 +1,222 @@
+#include "lootdialog.h"
+#include "ui_lootdialog.h"
+#include "loot.h"
+#include "organizercore.h"
+#include <utility.h>
+#include <expanderwidget.h>
+
+using namespace MOBase;
+
+LootDialog::LootDialog(QWidget* parent, OrganizerCore& core, Loot& loot) :
+ QDialog(parent), ui(new Ui::LootDialog), m_core(core), m_loot(loot),
+ m_finished(false), m_cancelling(false)
+{
+ createUI();
+
+ QObject::connect(
+ &m_loot, &Loot::output, this,
+ [&](auto&& s){ addOutput(s); }, Qt::QueuedConnection);
+
+ QObject::connect(
+ &m_loot, &Loot::progress,
+ this, [&](auto&& p){ setProgress(p); }, Qt::QueuedConnection);
+
+ QObject::connect(
+ &m_loot, &Loot::log, this,
+ [&](auto&& lv, auto&& s){ log(lv, s); }, Qt::QueuedConnection);
+
+ QObject::connect(
+ &m_loot, &Loot::finished, this,
+ [&]{ onFinished(); }, Qt::QueuedConnection);
+}
+
+LootDialog::~LootDialog() = default;
+
+void LootDialog::setText(const QString& s)
+{
+ ui->progressText->setText(s);
+}
+
+void LootDialog::setProgress(lootcli::Progress p)
+{
+ setText(progressToString(p));
+
+ if (p == lootcli::Progress::Done) {
+ ui->progressBar->setRange(0, 1);
+ ui->progressBar->setValue(1);
+ }
+}
+
+QString LootDialog::progressToString(lootcli::Progress p)
+{
+ using P = lootcli::Progress;
+
+ switch (p)
+ {
+ case P::CheckingMasterlistExistence: return tr("Checking masterlist existence");
+ case P::UpdatingMasterlist: return tr("Updating masterlist");
+ case P::LoadingLists: return tr("Loading lists");
+ case P::ReadingPlugins: return tr("Reading plugins");
+ case P::SortingPlugins: return tr("Sorting plugins");
+ case P::WritingLoadorder: return tr("Writing loadorder.txt");
+ case P::ParsingLootMessages: return tr("Parsing loot messages");
+ case P::Done: return tr("Done");
+ default: return QString("unknown progress %1").arg(static_cast<int>(p));
+ }
+}
+
+void LootDialog::addOutput(const QString& s)
+{
+ if (m_core.settings().diagnostics().lootLogLevel() > lootcli::LogLevels::Debug) {
+ return;
+ }
+
+ const auto lines = s.split(QRegExp("[\\r\\n]"), QString::SkipEmptyParts);
+
+ for (auto&& line : lines) {
+ if (line.isEmpty()) {
+ continue;
+ }
+
+ addLineOutput(line);
+ }
+}
+
+bool LootDialog::result() const
+{
+ return m_loot.result();
+}
+
+void LootDialog::cancel()
+{
+ if (!m_finished && !m_cancelling) {
+ addLineOutput(tr("Stopping LOOT..."));
+ m_loot.cancel();
+ ui->buttons->setEnabled(false);
+ m_cancelling = true;
+ }
+}
+
+void LootDialog::openReport()
+{
+ const auto path = m_loot.outPath();
+ shell::Open(path);
+}
+
+void LootDialog::createUI()
+{
+ ui->setupUi(this);
+ ui->progressBar->setMaximum(0);
+
+ ui->openJsonReport->setEnabled(false);
+ connect(ui->openJsonReport, &QPushButton::clicked, [&]{ openReport(); });
+
+ new ExpanderWidget(ui->details, ui->detailsPanel);
+
+ connect(ui->buttons, &QDialogButtonBox::clicked, [&](auto* b){ onButton(b); });
+
+ resize(480, 275);
+}
+
+void LootDialog::closeEvent(QCloseEvent* e)
+{
+ if (m_finished) {
+ QDialog::closeEvent(e);
+ } else {
+ cancel();
+ e->ignore();
+ }
+}
+
+void LootDialog::onButton(QAbstractButton* b)
+{
+ if (ui->buttons->buttonRole(b) == QDialogButtonBox::RejectRole) {
+ if (m_finished) {
+ close();
+ } else {
+ cancel();
+ }
+ }
+}
+
+void LootDialog::addLineOutput(const QString& line)
+{
+ ui->output->appendPlainText(line);
+}
+
+void LootDialog::onFinished()
+{
+ m_finished = true;
+
+ if (m_cancelling) {
+ close();
+ } else {
+ handleReport();
+ ui->openJsonReport->setEnabled(true);
+ ui->buttons->setStandardButtons(QDialogButtonBox::Close);
+ }
+}
+
+void LootDialog::log(log::Levels lv, const QString& s)
+{
+ if (lv >= log::Levels::Warning) {
+ log::log(lv, "{}", s);
+ }
+
+ if (m_core.settings().diagnostics().lootLogLevel() > lootcli::LogLevels::Debug) {
+ addLineOutput(QString("[%1] %2").arg(log::levelToString(lv)).arg(s));
+ }
+}
+
+void LootDialog::handleReport()
+{
+ const auto& report = m_loot.report();
+
+ if (!report.messages.empty()) {
+ addLineOutput("");
+ }
+
+ QString html;
+
+ if (!report.messages.empty()) {
+ html += "<ul>";
+
+ for (auto&& m : report.messages) {
+ log(m.type, m.text);
+
+ html += "<li>";
+
+ switch (m.type)
+ {
+ case log::Error:
+ {
+ html += "<b>" + QObject::tr("Error") + "</b>: ";
+ break;
+ }
+
+ case log::Warning:
+ {
+ html += "<b>" + QObject::tr("Warning") + "</b>: ";
+ break;
+ }
+
+ default:
+ {
+ break;
+ }
+ }
+
+ html += m.text + "</li>";
+ }
+
+ html + "</ul>";
+ } else {
+ html += QObject::tr("No messages.");
+ }
+
+ ui->report->setHtml(html);
+
+ for (auto&& p : report.plugins) {
+ m_core.pluginList()->addLootReport(p.name, p);
+ }
+}