managewidget.cpp 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. #include "managewidget.h"
  2. #include "ui_managewidget.h"
  3. #include "models/lotromanager.h"
  4. #include "models/filesystem.h"
  5. #include "widgets/mainwindow.h"
  6. #include <QMessageBox>
  7. #include <QFileDialog>
  8. #include <QDebug>
  9. ManageWidget::ManageWidget(LotroManager* mgr, QSettings* settings, QWidget *parent) :
  10. QWidget(parent), lotro_manager(mgr), settings(settings), ui(new Ui::ManageWidget)
  11. {
  12. ui->setupUi(this);
  13. connect(lotro_manager, &LotroManager::processFinished, this, &ManageWidget::onLotroManagerProcessFinished, Qt::QueuedConnection);
  14. connect(lotro_manager, &LotroManager::unactiveCategoriesReceived, this, &ManageWidget::onLotroManagerInactiveCateroiesListUpdated);
  15. }
  16. ManageWidget::~ManageWidget()
  17. {
  18. delete ui;
  19. }
  20. void ManageWidget::updateUI()
  21. {
  22. if (lotro_manager->initialised()) {
  23. ui->open_status_title->show();
  24. ui->close_status_title->hide();
  25. ui->initButton_common->hide();
  26. ui->deinitButton_common->show();
  27. ui->changeLocaleButton_common->setEnabled(true);
  28. ui->createCoreStatusFile_button_common->setEnabled(true);
  29. ui->activate_category_button->setEnabled(true);
  30. ui->deactivate_category_button->setEnabled(true);
  31. emit enableMenuItems();
  32. // Updating patched status label
  33. if (lotro_manager->notPatched())
  34. ui->not_patched_status_title->show();
  35. else
  36. ui->not_patched_status_title->hide();
  37. // Updating current locale status label
  38. if (lotro_manager->currentLocale() == int(LOTRO_DAT::DatLocaleManager::PATCHED)) {
  39. ui->original_locale_title->hide();
  40. ui->patched_locale_title->show();
  41. } else {
  42. ui->original_locale_title->show();
  43. ui->patched_locale_title->hide();
  44. }
  45. } else {
  46. ui->initButton_common->show();
  47. ui->deinitButton_common->hide();
  48. ui->changeLocaleButton_common->setEnabled(false);
  49. ui->createCoreStatusFile_button_common->setEnabled(false);
  50. ui->activate_category_button->setEnabled(false);
  51. ui->deactivate_category_button->setEnabled(false);
  52. emit disableMenuItems();
  53. ui->open_status_title->hide();
  54. ui->close_status_title->show();
  55. ui->not_patched_status_title->hide();
  56. }
  57. }
  58. void ManageWidget::onLotroManagerProcessFinished(QString proc_name, QVector<QVariant> data) {
  59. if (proc_name == "initialiseDatFile" && data[0].toString() == "Success") {
  60. settings->setValue("advanced/dat_path", data[1].toString());
  61. settings->sync();
  62. ui->datfile_name_common->setText(data[1].toString());
  63. }
  64. if (proc_name == "initialiseDatFile" && data[0].toString() == "Error") {
  65. settings->setValue("advanced/dat_path", "");
  66. settings->sync();
  67. ui->datfile_name_common->setText("Ошибка инициализации, файл не выбран");
  68. }
  69. updateUI();
  70. }
  71. void ManageWidget::onLotroManagerInactiveCateroiesListUpdated(QStringList categories)
  72. {
  73. if (categories.empty())
  74. ui->inactive_categories_list->setText("(нет)");
  75. else
  76. ui->inactive_categories_list->setText(categories.join(", "));
  77. }
  78. void ManageWidget::on_change_folder_button_clicked()
  79. {
  80. QStringList known_paths = FileSystem::recognizeRegistryLotroPath();
  81. QString template_path = known_paths.size() > 0 ? known_paths[0] : "";
  82. QString fileName = QFileDialog::getOpenFileName(0, "Расположение файла .dat", template_path, "Файлы ресурсов (*.dat *.datx)");
  83. if (fileName.isEmpty())
  84. return;
  85. QMetaObject::invokeMethod(lotro_manager, "initialiseDatFile", Qt::QueuedConnection,
  86. Q_ARG(QString, fileName));
  87. }
  88. void ManageWidget::on_changeLocaleButton_common_clicked()
  89. {
  90. QMetaObject::invokeMethod(lotro_manager, "changeLocale", Qt::QueuedConnection);
  91. }
  92. void ManageWidget::on_createCoreStatusFile_button_common_clicked()
  93. {
  94. QString fileName = QFileDialog::getSaveFileName(this->parentWidget(), "Сохранение файла",
  95. settings->value("advanced/export_path", "").toString(), "Файл ядра Наследия (*.txt);;Все файлы (*)");
  96. if (fileName.isEmpty())
  97. return;
  98. settings->setValue("advanced/export_path", fileName.left(std::max(fileName.lastIndexOf('/'), fileName.lastIndexOf('\\'))));
  99. settings->sync();
  100. qDebug() << "Saving export path to " << settings->value("advanced/export_path", "").toString();
  101. QMetaObject::invokeMethod(lotro_manager, "createCoreStatusFile", Qt::QueuedConnection,
  102. Q_ARG(QString, fileName));
  103. }
  104. void ManageWidget::on_initButton_common_clicked()
  105. {
  106. QMetaObject::invokeMethod(lotro_manager, "initialiseDatFile", Qt::QueuedConnection,
  107. Q_ARG(QString, settings->value("advanced/dat_path", "").toString()));
  108. }
  109. void ManageWidget::on_deinitButton_common_clicked()
  110. {
  111. QMetaObject::invokeMethod(lotro_manager, "deinitialiseDatFile", Qt::QueuedConnection);
  112. }
  113. void ManageWidget::on_activate_category_button_clicked()
  114. {
  115. if (ui->activate_category_label->text().toLongLong() == 0) {
  116. QMessageBox::warning(this->parentWidget(), "Не указан ID категории!", "Укажите, пожалуйста, корректный (числовой) ID категории для активации!");
  117. return;
  118. }
  119. QMetaObject::invokeMethod(lotro_manager, "enableCategory", Qt::QueuedConnection,
  120. Q_ARG(long long, ui->activate_category_label->text().toLongLong())
  121. );
  122. }
  123. void ManageWidget::on_deactivate_category_button_clicked()
  124. {
  125. if (ui->deactivate_category_label->text().toLongLong() == 0) {
  126. QMessageBox::warning(this->parentWidget(), "Не указан ID категории!", "Укажите, пожалуйста, корректный (числовой) ID категории для деактивации!");
  127. return;
  128. }
  129. QMetaObject::invokeMethod(lotro_manager, "disableCategory", Qt::QueuedConnection,
  130. Q_ARG(long long, ui->deactivate_category_label->text().toLongLong())
  131. );
  132. }