2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDItemSets {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t setID; //!< The item set ID
|
|
|
|
uint32_t locStatus; //!< The loc status
|
2021-12-05 17:54:36 +00:00
|
|
|
std::string itemIDs; //!< THe item IDs
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t kitType; //!< The item kit type
|
|
|
|
uint32_t kitRank; //!< The item kit rank
|
|
|
|
uint32_t kitImage; //!< The item kit image
|
|
|
|
uint32_t skillSetWith2; //!< The skill set with 2
|
|
|
|
uint32_t skillSetWith3; //!< The skill set with 3
|
|
|
|
uint32_t skillSetWith4; //!< The skill set with 4
|
|
|
|
uint32_t skillSetWith5; //!< The skill set with 5
|
|
|
|
uint32_t skillSetWith6; //!< The skill set with 6
|
2021-12-05 17:54:36 +00:00
|
|
|
bool localize; //!< Whether or localize
|
|
|
|
std::string gate_version; //!< The gate version
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t kitID; //!< The kit ID
|
2021-12-05 17:54:36 +00:00
|
|
|
float priority; //!< The priority
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDItemSetsTable : public CDTable<CDItemSetsTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDItemSets> entries;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
2023-03-17 14:36:21 +00:00
|
|
|
// Queries the table with a custom "where" clause
|
2021-12-05 17:54:36 +00:00
|
|
|
std::vector<CDItemSets> Query(std::function<bool(CDItemSets)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDItemSets>& GetEntries(void) const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|