1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-22 03:57:45 +00:00
novus/armoury/src/gearlistmodel.cpp

186 lines
5.3 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#include "gearlistmodel.h"
#include <QDebug>
#include <QtConcurrent>
#include <magic_enum.hpp>
GearListModel::GearListModel(GameData* data) : gameData(data), QAbstractItemModel() {
// smallclothes body
{
GearInfo info = {};
info.name = "Smallclothes Body";
info.slot = Slot::Body;
gears.push_back(info);
}
// smallclothes legs
{
GearInfo info = {};
info.name = "Smallclothes Legs";
info.slot = Slot::Legs;
gears.push_back(info);
}
auto exh = physis_gamedata_read_excel_sheet_header(data, "Item");
exdFuture = new QFutureWatcher<physis_EXD>(this);
connect(exdFuture, &QFutureWatcher<physis_EXD>::resultReadyAt, this, &GearListModel::exdFinished);
connect(exdFuture, &QFutureWatcher<physis_EXD>::finished, this, &GearListModel::finished);
QVector<int> pages;
for(int i = 0; i < exh->page_count; i++) {
pages.push_back(i);
}
std::function<physis_EXD(int)> loadEXD = [data, exh](const int page) -> physis_EXD {
return physis_gamedata_read_excel_sheet(data, "Item", exh, Language::English, page);
};
exdFuture->setFuture(QtConcurrent::mapped(pages, loadEXD));
for (auto slotName : magic_enum::enum_names<Slot>()) {
slotNames.push_back(slotName.data());
}
rootItem = new TreeInformation();
rootItem->type = TreeType::Root;
}
int GearListModel::rowCount(const QModelIndex& parent) const {
TreeInformation* parentItem;
if (parent.column() > 0)
return 0;
if (!parent.isValid())
parentItem = rootItem;
else
parentItem = static_cast<TreeInformation*>(parent.internalPointer());
return parentItem->children.size();
}
int GearListModel::columnCount(const QModelIndex& parent) const {
return 1;
}
QModelIndex GearListModel::index(int row, int column, const QModelIndex& parent) const {
if (!hasIndex(row, column, parent))
return QModelIndex();
TreeInformation* parentItem;
if (!parent.isValid())
parentItem = rootItem;
else
parentItem = static_cast<TreeInformation*>(parent.internalPointer());
TreeInformation* childItem = parentItem->children[row];
if (childItem)
return createIndex(row, column, childItem);
return QModelIndex();
}
QModelIndex GearListModel::parent(const QModelIndex& index) const {
if (!index.isValid())
return QModelIndex();
TreeInformation* childItem = static_cast<TreeInformation*>(index.internalPointer());
TreeInformation* parentItem = childItem->parent;
if (parentItem == rootItem)
return QModelIndex();
return createIndex(parentItem->row, 0, parentItem);
}
QVariant GearListModel::data(const QModelIndex& index, int role) const {
if (!index.isValid())
return {};
if (!index.isValid())
return QVariant();
if (role != Qt::DisplayRole)
return QVariant();
TreeInformation* item = static_cast<TreeInformation*>(index.internalPointer());
if (item->type == TreeType::Category) {
return magic_enum::enum_name(*item->slotType).data();
} else if (item->type == TreeType::Item) {
return item->gear->name.data();
}
return {};
}
QVariant GearListModel::headerData(int section, Qt::Orientation orientation, int role) const {
if (role == Qt::DisplayRole && orientation == Qt::Horizontal) {
if (section == 0) {
return "Name";
}
}
return QAbstractItemModel::headerData(section, orientation, role);
}
std::optional<GearInfo> GearListModel::getGearFromIndex(const QModelIndex& index) {
TreeInformation* item = static_cast<TreeInformation*>(index.internalPointer());
if (item->type == TreeType::Item) {
return item->gear;
}
return {};
}
void GearListModel::exdFinished(int index) {
auto exd = exdFuture->resultAt(index);
for (int i = 0; i < exd.row_count; i++) {
const auto row = exd.row_data[i];
auto primaryModel = row.column_data[47].u_int64._0;
auto secondaryModel = row.column_data[48].u_int64._0;
int16_t parts[4];
memcpy(parts, &primaryModel, sizeof(int16_t) * 4);
GearInfo info = {};
info.name = row.column_data[9].string._0;
info.slot = physis_slot_from_id(row.column_data[17].u_int8._0);
info.modelInfo.primaryID = parts[0];
gears.push_back(info);
}
}
void GearListModel::finished() {
beginResetModel();
int i = 0;
for (auto slot : magic_enum::enum_values<Slot>()) {
TreeInformation* categoryItem = new TreeInformation();
categoryItem->type = TreeType::Category;
categoryItem->slotType = slot;
categoryItem->parent = rootItem;
categoryItem->row = i++;
rootItem->children.push_back(categoryItem);
int j = 0;
for (auto gear : gears) {
if (gear.slot == slot) {
TreeInformation* item = new TreeInformation();
item->type = TreeType::Item;
item->gear = gear;
item->parent = categoryItem;
item->row = j++;
categoryItem->children.push_back(item);
}
}
}
endResetModel();
}
#include "moc_gearlistmodel.cpp"