NOISSUE add import from curse zip packs

Does not actually grab mods, but resolves them and prints the results in logs.
This commit is contained in:
Petr Mrázek 2017-04-20 05:22:04 +02:00
parent e9a6199507
commit 6bd2605a79
7 changed files with 298 additions and 11 deletions

View file

@ -0,0 +1,32 @@
#pragma once
#include "tasks/Task.h"
#include "net/NetJob.h"
#include "PackManifest.h"
#include "multimc_logic_export.h"
namespace Curse
{
class MULTIMC_LOGIC_EXPORT FileResolvingTask : public Task
{
Q_OBJECT
public:
explicit FileResolvingTask(QVector<Curse::File> &toProcess);
const QVector<Curse::File> &getResults() const
{
return m_toProcess;
}
protected:
virtual void executeTask() override;
protected slots:
void netJobFinished();
private: /* data */
QVector<Curse::File> m_toProcess;
QVector<QByteArray> results;
NetJobPtr m_dljob;
};
}