|
@@ -2,8 +2,10 @@
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
-PatchList::PatchList(LotroDatManager *mgr, QObject *parent)
|
|
|
+PatchList::PatchList(LotroDatManager *mgr, QObject *parent) : QObject(parent)
|
|
|
{
|
|
|
+ lotro_mgr_ = mgr;
|
|
|
+
|
|
|
texts_patch_ = new TextsPatch(mgr);
|
|
|
graphics_patch_ = new GraphicsPatch(mgr);
|
|
|
sounds_patch_ = new SoundsPatch(mgr);
|
|
@@ -24,44 +26,67 @@ PatchList::PatchList(LotroDatManager *mgr, QObject *parent)
|
|
|
sounds_patch_->moveToThread(sounds_patch_thread_);
|
|
|
videos_patch_->moveToThread(videos_patch_thread_);
|
|
|
|
|
|
+ connect(texts_patch_, &TextsPatch::operationStarted, this, &PatchList::onPatchOperationStarted, Qt::QueuedConnection);
|
|
|
+ connect(graphics_patch_, &GraphicsPatch::operationStarted, this, &PatchList::onPatchOperationStarted, Qt::QueuedConnection);
|
|
|
+ connect(sounds_patch_, &SoundsPatch::operationStarted, this, &PatchList::onPatchOperationStarted, Qt::QueuedConnection);
|
|
|
+ connect(videos_patch_, &VideosPatch::operationStarted, this, &PatchList::onPatchOperationStarted, Qt::QueuedConnection);
|
|
|
+
|
|
|
+ connect(texts_patch_, &TextsPatch::operationFinished, this, &PatchList::onPatchOperationFinished, Qt::QueuedConnection);
|
|
|
+ connect(graphics_patch_, &GraphicsPatch::operationFinished, this, &PatchList::onPatchOperationFinished, Qt::QueuedConnection);
|
|
|
+ connect(sounds_patch_, &SoundsPatch::operationFinished, this, &PatchList::onPatchOperationFinished, Qt::QueuedConnection);
|
|
|
+ connect(videos_patch_, &VideosPatch::operationFinished, this, &PatchList::onPatchOperationFinished, Qt::QueuedConnection);
|
|
|
+
|
|
|
+ connect(texts_patch_, &TextsPatch::downloadStatusChanged, this, &PatchList::onPatchDownloadStatusChanged, Qt::QueuedConnection);
|
|
|
+ connect(graphics_patch_, &GraphicsPatch::downloadStatusChanged, this, &PatchList::onPatchDownloadStatusChanged, Qt::QueuedConnection);
|
|
|
+ connect(sounds_patch_, &SoundsPatch::downloadStatusChanged, this, &PatchList::onPatchDownloadStatusChanged, Qt::QueuedConnection);
|
|
|
+ connect(videos_patch_, &VideosPatch::downloadStatusChanged, this, &PatchList::onPatchDownloadStatusChanged, Qt::QueuedConnection);
|
|
|
+
|
|
|
+ connect(texts_patch_, &TextsPatch::installStatusChanged, this, &PatchList::onPatchInstallStatusChanged, Qt::QueuedConnection);
|
|
|
+ connect(graphics_patch_, &GraphicsPatch::installStatusChanged, this, &PatchList::onPatchInstallStatusChanged, Qt::QueuedConnection);
|
|
|
+ connect(sounds_patch_, &SoundsPatch::installStatusChanged, this, &PatchList::onPatchInstallStatusChanged, Qt::QueuedConnection);
|
|
|
+ connect(videos_patch_, &VideosPatch::installStatusChanged, this, &PatchList::onPatchInstallStatusChanged, Qt::QueuedConnection);
|
|
|
+
|
|
|
+ connect(lotro_mgr_, &LotroDatManager::operationFinished, this, &PatchList::onLotroManagerOperationFinished, Qt::QueuedConnection);
|
|
|
+
|
|
|
texts_patch_thread_->start();
|
|
|
graphics_patch_thread_->start();
|
|
|
sounds_patch_thread_->start();
|
|
|
videos_patch_thread_->start();
|
|
|
|
|
|
patch_update_timer.setInterval(10 * 60 * 1000); // 10 minutes
|
|
|
- connect(&patch_update_timer, &QTimer::timeout, this, &PatchList::onUpdateTimerTimeout);
|
|
|
-}
|
|
|
-
|
|
|
-const TextsPatch *PatchList::getTextsPatch()
|
|
|
-{
|
|
|
- return texts_patch_;
|
|
|
-}
|
|
|
-
|
|
|
-const GraphicsPatch *PatchList::getGraphicsPatch()
|
|
|
-{
|
|
|
- return graphics_patch_;
|
|
|
+ connect(&patch_update_timer, &QTimer::timeout, this, &PatchList::update);
|
|
|
}
|
|
|
|
|
|
-const SoundsPatch *PatchList::getSoundsPatch()
|
|
|
+QList<Patch *> PatchList::getPatchList()
|
|
|
{
|
|
|
- return sounds_patch_;
|
|
|
-}
|
|
|
-
|
|
|
-const VideosPatch *PatchList::getVideosPatch()
|
|
|
-{
|
|
|
- return videos_patch_;
|
|
|
+ return {texts_patch_, graphics_patch_, sounds_patch_, videos_patch_};
|
|
|
}
|
|
|
|
|
|
void PatchList::onPatchOperationStarted(QString operation_name, Patch *patch)
|
|
|
{
|
|
|
+ patch_update_timer.stop();
|
|
|
+ if (active_operations_num_ == 0) {
|
|
|
+ emit patchOperationsStarted();
|
|
|
+ }
|
|
|
+ ++active_operations_num_;
|
|
|
+
|
|
|
qDebug() << "Operation " << operation_name << " started of patchset " << patch->getPatchName();
|
|
|
}
|
|
|
|
|
|
void PatchList::onPatchOperationFinished(QString operation_name, Patch *patch, bool result)
|
|
|
{
|
|
|
qDebug() << "Operation " << operation_name << " finished of patchset " << patch->getPatchName() << ", result = " << result;
|
|
|
+ --active_operations_num_;
|
|
|
+
|
|
|
if (!result) {
|
|
|
+ if (active_operations_num_ == 0) {
|
|
|
+ if (auto_updates_enabled_) {
|
|
|
+ patch_update_timer.start();
|
|
|
+ }
|
|
|
+ qDebug() << __FUNCTION__ << "All patch operations successfully finished!";
|
|
|
+ emit patchOperationsFinished();
|
|
|
+ }
|
|
|
+
|
|
|
return; // Do not continue operations chain, if error occured
|
|
|
}
|
|
|
|
|
@@ -76,10 +101,79 @@ void PatchList::onPatchOperationFinished(QString operation_name, Patch *patch, b
|
|
|
if (operation_name == "install") {
|
|
|
QMetaObject::invokeMethod(patch, &Patch::activate, Qt::QueuedConnection);
|
|
|
}
|
|
|
+
|
|
|
+ if (operation_name == "activate" && active_operations_num_ == 0) {
|
|
|
+ emit patchOperationsFinished();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (active_operations_num_ == 0) {
|
|
|
+ if (auto_updates_enabled_) {
|
|
|
+ patch_update_timer.start();
|
|
|
+ }
|
|
|
+ qDebug() << __FUNCTION__ << "All patch operations successfully finished!";
|
|
|
+ emit patchOperationsFinished();
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void PatchList::onPatchDownloadStatusChanged(Patch *patch, Downloader::Status status)
|
|
|
+{
|
|
|
+ patches_download_status_[patch] = status;
|
|
|
+ Downloader::Status total_status;
|
|
|
+
|
|
|
+ foreach (Downloader::Status st, patches_download_status_) {
|
|
|
+ total_status = total_status + st;
|
|
|
+ }
|
|
|
+
|
|
|
+ emit downloadTotalStatusChanged(total_status);
|
|
|
+}
|
|
|
+
|
|
|
+void PatchList::onPatchInstallStatusChanged(Patch *patch, Patch::InstallationStatus status)
|
|
|
+{
|
|
|
+ patches_installation_status_[patch] = status;
|
|
|
+ Patch::InstallationStatus total_status;
|
|
|
+
|
|
|
+ foreach (Patch::InstallationStatus st, patches_installation_status_) {
|
|
|
+ total_status = total_status + st;
|
|
|
+ }
|
|
|
+
|
|
|
+ emit installTotalStatusChanged(total_status);
|
|
|
+}
|
|
|
+
|
|
|
+void PatchList::onLotroManagerOperationFinished(QString operation_name, QVector<QVariant>, bool result)
|
|
|
+{
|
|
|
+ if (operation_name == "initializeManager") {
|
|
|
+ --active_operations_num_;
|
|
|
+
|
|
|
+ if (active_operations_num_ == 0) {
|
|
|
+ emit patchOperationsFinished();
|
|
|
+ }
|
|
|
+
|
|
|
+// if (result == true) {
|
|
|
+ update();
|
|
|
+// }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void PatchList::startAutoUpdate()
|
|
|
+{
|
|
|
+ auto_updates_enabled_ = true;
|
|
|
+ patch_update_timer.start();
|
|
|
+}
|
|
|
+
|
|
|
+void PatchList::initialize() {
|
|
|
+ ++active_operations_num_;
|
|
|
+ emit patchOperationsStarted();
|
|
|
+ QMetaObject::invokeMethod(lotro_mgr_, &LotroDatManager::initializeManager, Qt::QueuedConnection);
|
|
|
}
|
|
|
|
|
|
-void PatchList::onUpdateTimerTimeout()
|
|
|
+void PatchList::update()
|
|
|
{
|
|
|
+ if (active_operations_num_ != 0) {
|
|
|
+ qDebug() << __FUNCTION__ << "Tried to start update, while other operations weren't finished yet!";
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ qDebug() << __FUNCTION__ << "Starting update!";
|
|
|
QMetaObject::invokeMethod(texts_patch_, &TextsPatch::checkForUpdates, Qt::QueuedConnection);
|
|
|
QMetaObject::invokeMethod(graphics_patch_, &GraphicsPatch::checkForUpdates, Qt::QueuedConnection);
|
|
|
QMetaObject::invokeMethod(sounds_patch_, &SoundsPatch::checkForUpdates, Qt::QueuedConnection);
|