* Fix #4043, Support MTGJSONv5 format in Oracle downloader * Auto redirect V4 downloads to V5, as we won't support V4 after this change * clangify >_> * Remove null values and account for IDs missing * fix split cards and double faced cards somewhat * do not consider double faced cards duplicates * fix promo double sided cards * typo * fix alternative versions of cards with (letter) * zach says this is more readable * pre qt 5.10 compatibility Co-authored-by: ebbit1q <ebbit1q@gmail.com>
130 lines
3.6 KiB
C++
130 lines
3.6 KiB
C++
#ifndef ORACLEIMPORTER_H
|
|
#define ORACLEIMPORTER_H
|
|
|
|
#include <QMap>
|
|
#include <QVariant>
|
|
#include <carddatabase.h>
|
|
#include <utility>
|
|
|
|
// many users prefer not to see these sets with non english arts
|
|
// as a solution we remove the date property on these sets
|
|
// that way they will be sorted last by default
|
|
// this will cause their art to not get priority over english cards
|
|
// users will still be able to find these sets and prioritize them manually
|
|
const QStringList nonEnglishSets = {"4BB", "FBB", "PS11", "PSAL", "REN", "RIN"};
|
|
|
|
class SetToDownload
|
|
{
|
|
private:
|
|
QString shortName, longName;
|
|
QList<QVariant> cards;
|
|
QDate releaseDate;
|
|
QString setType;
|
|
|
|
public:
|
|
const QString &getShortName() const
|
|
{
|
|
return shortName;
|
|
}
|
|
const QString &getLongName() const
|
|
{
|
|
return longName;
|
|
}
|
|
const QList<QVariant> &getCards() const
|
|
{
|
|
return cards;
|
|
}
|
|
const QString &getSetType() const
|
|
{
|
|
return setType;
|
|
}
|
|
const QDate &getReleaseDate() const
|
|
{
|
|
return releaseDate;
|
|
}
|
|
SetToDownload(QString _shortName,
|
|
QString _longName,
|
|
QList<QVariant> _cards,
|
|
QString _setType = QString(),
|
|
const QDate &_releaseDate = QDate())
|
|
: shortName(std::move(_shortName)), longName(std::move(_longName)), cards(std::move(_cards)),
|
|
releaseDate(_releaseDate), setType(std::move(_setType))
|
|
{
|
|
}
|
|
bool operator<(const SetToDownload &set) const
|
|
{
|
|
return longName.compare(set.longName, Qt::CaseInsensitive) < 0;
|
|
}
|
|
};
|
|
|
|
class SplitCardPart
|
|
{
|
|
public:
|
|
SplitCardPart(const QString &_name, const QString &_text, const QVariantHash &_properties, CardInfoPerSet setInfo);
|
|
inline const QString &getName() const
|
|
{
|
|
return name;
|
|
}
|
|
inline const QString &getText() const
|
|
{
|
|
return text;
|
|
}
|
|
inline const QVariantHash &getProperties() const
|
|
{
|
|
return properties;
|
|
}
|
|
inline const CardInfoPerSet &getSetInfo() const
|
|
{
|
|
return setInfo;
|
|
}
|
|
|
|
private:
|
|
QString name;
|
|
QString text;
|
|
QVariantHash properties;
|
|
CardInfoPerSet setInfo;
|
|
};
|
|
|
|
class OracleImporter : public CardDatabase
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
const QStringList mainCardTypes = {"Planeswalker", "Creature", "Land", "Sorcery",
|
|
"Instant", "Artifact", "Enchantment"};
|
|
QList<SetToDownload> allSets;
|
|
QVariantMap setsMap;
|
|
QString dataDir;
|
|
|
|
QString getMainCardType(const QStringList &typeList);
|
|
CardInfoPtr addCard(QString name,
|
|
QString text,
|
|
bool isToken,
|
|
QVariantHash properties,
|
|
QList<CardRelation *> &relatedCards,
|
|
CardInfoPerSet setInfo);
|
|
signals:
|
|
void setIndexChanged(int cardsImported, int setIndex, const QString &setName);
|
|
void dataReadProgress(int bytesRead, int totalBytes);
|
|
|
|
public:
|
|
explicit OracleImporter(const QString &_dataDir, QObject *parent = nullptr);
|
|
bool readSetsFromByteArray(const QByteArray &data);
|
|
int startImport();
|
|
bool saveToFile(const QString &fileName, const QString &sourceUrl, const QString &sourceVersion);
|
|
int importCardsFromSet(const CardSetPtr ¤tSet, const QList<QVariant> &cards, bool skipSpecialNums = true);
|
|
QList<SetToDownload> &getSets()
|
|
{
|
|
return allSets;
|
|
}
|
|
const QString &getDataDir() const
|
|
{
|
|
return dataDir;
|
|
}
|
|
void clear();
|
|
|
|
protected:
|
|
inline QString getStringPropertyFromMap(const QVariantMap &card, const QString &propertyName);
|
|
void sortAndReduceColors(QString &colors);
|
|
};
|
|
|
|
#endif
|