175132539b
modpacks.ch searching has changed, and while likely a bug - we may as well make this change while we fetch all packs anyway. This makes MMC more reactive for searchs for the platform. This should be reverted if/when the modpacks.ch hits a size where we need to restrict how many packs are fetched.
62 lines
1.3 KiB
C++
62 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include "modplatform/modpacksch/FTBPackManifest.h"
|
|
#include "net/NetJob.h"
|
|
#include <QIcon>
|
|
|
|
namespace Ftb {
|
|
|
|
struct Logo {
|
|
QString fullpath;
|
|
NetJobPtr downloadJob;
|
|
QIcon result;
|
|
bool failed = false;
|
|
};
|
|
|
|
typedef QMap<QString, Logo> LogoMap;
|
|
typedef std::function<void(QString)> LogoCallback;
|
|
|
|
class ListModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ListModel(QObject *parent);
|
|
virtual ~ListModel();
|
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
int columnCount(const QModelIndex &parent) const override;
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
void request();
|
|
|
|
void getLogo(const QString &logo, const QString &logoUrl, LogoCallback callback);
|
|
|
|
private slots:
|
|
void requestFinished();
|
|
void requestFailed(QString reason);
|
|
|
|
void requestPack();
|
|
void packRequestFinished();
|
|
void packRequestFailed(QString reason);
|
|
|
|
void logoFailed(QString logo);
|
|
void logoLoaded(QString logo, bool stale);
|
|
|
|
private:
|
|
void requestLogo(QString file, QString url);
|
|
|
|
private:
|
|
QList<ModpacksCH::Modpack> modpacks;
|
|
LogoMap m_logoMap;
|
|
|
|
NetJobPtr jobPtr;
|
|
int currentPack;
|
|
QList<int> remainingPacks;
|
|
QByteArray response;
|
|
};
|
|
|
|
}
|