2018-03-04 01:52:00 +05:30
|
|
|
#include "FtbListModel.h"
|
|
|
|
#include "MultiMC.h"
|
|
|
|
|
|
|
|
#include <MMCStrings.h>
|
2018-03-12 19:39:07 +05:30
|
|
|
#include <Version.h>
|
2018-03-04 01:52:00 +05:30
|
|
|
|
|
|
|
#include <QtMath>
|
|
|
|
|
|
|
|
FtbFilterModel::FtbFilterModel(QObject *parent) : QSortFilterProxyModel(parent)
|
|
|
|
{
|
|
|
|
currentSorting = Sorting::ByGameVersion;
|
|
|
|
sortings.insert("Sort by name", Sorting::ByName);
|
|
|
|
sortings.insert("Sort by game version", Sorting::ByGameVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FtbFilterModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
|
|
|
|
{
|
|
|
|
FtbModpack leftPack = sourceModel()->data(left, Qt::UserRole).value<FtbModpack>();
|
|
|
|
FtbModpack rightPack = sourceModel()->data(right, Qt::UserRole).value<FtbModpack>();
|
|
|
|
|
|
|
|
if(currentSorting == Sorting::ByGameVersion) {
|
2018-03-12 19:39:07 +05:30
|
|
|
Version lv(leftPack.mcVersion);
|
|
|
|
Version rv(rightPack.mcVersion);
|
|
|
|
return lv < rv;
|
2018-03-04 01:52:00 +05:30
|
|
|
|
|
|
|
} else if(currentSorting == Sorting::ByName) {
|
|
|
|
return Strings::naturalCompare(leftPack.name, rightPack.name, Qt::CaseSensitive) >= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//UHM, some inavlid value set?!
|
|
|
|
qWarning() << "Invalid sorting set!";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FtbFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QMap<QString, FtbFilterModel::Sorting> FtbFilterModel::getAvailableSortings()
|
|
|
|
{
|
|
|
|
return sortings;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FtbFilterModel::setSorting(Sorting s)
|
|
|
|
{
|
|
|
|
currentSorting = s;
|
|
|
|
invalidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
FtbFilterModel::Sorting FtbFilterModel::getCurrentSorting()
|
|
|
|
{
|
|
|
|
return currentSorting;
|
|
|
|
}
|
|
|
|
|
|
|
|
FtbListModel::FtbListModel(QObject *parent) : QAbstractListModel(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int FtbListModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return modpacks.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
int FtbListModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant FtbListModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
int pos = index.row();
|
2018-03-12 19:39:07 +05:30
|
|
|
if(modpacks.size() <= pos || pos < 0) {
|
2018-03-04 01:52:00 +05:30
|
|
|
return QString("INVALID INDEX %1").arg(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
FtbModpack pack = modpacks.at(pos);
|
|
|
|
|
|
|
|
if(role == Qt::DisplayRole) {
|
|
|
|
return pack.name;
|
|
|
|
} else if (role == Qt::ToolTipRole) {
|
|
|
|
if(pack.description.length() > 100) {
|
|
|
|
//some magic to prevent to long tooltips and replace html linebreaks
|
|
|
|
QString edit = pack.description.left(97);
|
|
|
|
edit = edit.left(edit.lastIndexOf("<br>")).left(edit.lastIndexOf(" ")).append("...");
|
|
|
|
return edit;
|
|
|
|
|
|
|
|
}
|
|
|
|
return pack.description;
|
|
|
|
} else if(role == Qt::DecorationRole) {
|
|
|
|
//TODO: Add pack logos or something... but they have a weird size. This needs some design hacks
|
|
|
|
} else if(role == Qt::TextColorRole) {
|
|
|
|
if(pack.broken) {
|
2018-03-12 19:39:07 +05:30
|
|
|
//FIXME: Hardcoded color
|
2018-03-04 01:52:00 +05:30
|
|
|
return QColor(255, 0, 50);
|
|
|
|
} else if(pack.bugged) {
|
2018-03-12 19:39:07 +05:30
|
|
|
//FIXME: Hardcoded color
|
2018-03-04 01:52:00 +05:30
|
|
|
//bugged pack, currently only indicates bugged xml
|
|
|
|
return QColor(244, 229, 66);
|
|
|
|
}
|
|
|
|
} else if(role == Qt::UserRole) {
|
|
|
|
QVariant v;
|
|
|
|
v.setValue(pack);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FtbListModel::fill(FtbModpackList modpacks)
|
|
|
|
{
|
|
|
|
this->modpacks = modpacks;
|
|
|
|
}
|
|
|
|
|
|
|
|
FtbModpack FtbListModel::at(int row)
|
|
|
|
{
|
|
|
|
return modpacks.at(row);
|
|
|
|
}
|