2022-01-14 08:43:42 +00:00
|
|
|
#pragma once
|
2022-04-13 23:18:28 +01:00
|
|
|
|
2022-04-16 00:35:17 +01:00
|
|
|
#include <QUrl>
|
2022-01-14 08:43:42 +00:00
|
|
|
#include "QObjectPtr.h"
|
2022-01-14 11:47:18 +00:00
|
|
|
#include "minecraft/mod/ModFolderModel.h"
|
2022-04-16 00:35:17 +01:00
|
|
|
#include "modplatform/ModIndex.h"
|
2022-01-14 11:47:18 +00:00
|
|
|
#include "net/NetJob.h"
|
2022-04-16 00:35:17 +01:00
|
|
|
|
|
|
|
#include "tasks/SequentialTask.h"
|
|
|
|
#include "minecraft/mod/tasks/LocalModUpdateTask.h"
|
2022-01-14 08:43:42 +00:00
|
|
|
|
2022-04-13 23:18:28 +01:00
|
|
|
class ModDownloadTask : public SequentialTask {
|
2022-01-14 08:43:42 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-04-13 23:18:28 +01:00
|
|
|
explicit ModDownloadTask(ModPlatform::IndexedPack mod, ModPlatform::IndexedVersion version, const std::shared_ptr<ModFolderModel> mods);
|
|
|
|
const QString& getFilename() const { return m_mod_version.fileName; }
|
2022-01-14 08:43:42 +00:00
|
|
|
|
|
|
|
private:
|
2022-04-13 23:18:28 +01:00
|
|
|
ModPlatform::IndexedPack m_mod;
|
|
|
|
ModPlatform::IndexedVersion m_mod_version;
|
2022-01-14 11:47:18 +00:00
|
|
|
const std::shared_ptr<ModFolderModel> mods;
|
2022-04-13 23:18:28 +01:00
|
|
|
|
|
|
|
NetJob::Ptr m_filesNetJob;
|
|
|
|
LocalModUpdateTask::Ptr m_update_task;
|
2022-01-14 11:47:18 +00:00
|
|
|
|
|
|
|
void downloadProgressChanged(qint64 current, qint64 total);
|
|
|
|
|
|
|
|
void downloadFailed(QString reason);
|
|
|
|
|
|
|
|
void downloadSucceeded();
|
2022-01-14 08:43:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|