PrismLauncher/launcher/ModDownloadTask.h

35 lines
886 B
C
Raw Normal View History

2022-01-14 08:43:42 +00:00
#pragma once
#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"
#include "modplatform/ModIndex.h"
2022-01-14 11:47:18 +00:00
#include "net/NetJob.h"
#include "tasks/SequentialTask.h"
#include "minecraft/mod/tasks/LocalModUpdateTask.h"
2022-01-14 08:43:42 +00:00
class ModDownloadTask : public SequentialTask {
2022-01-14 08:43:42 +00:00
Q_OBJECT
public:
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:
ModPlatform::IndexedPack m_mod;
ModPlatform::IndexedVersion m_mod_version;
2022-01-14 11:47:18 +00:00
const std::shared_ptr<ModFolderModel> mods;
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
};