2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDLootMatrix {
|
|
|
|
unsigned int LootMatrixIndex; //!< The Loot Matrix Index
|
|
|
|
unsigned int LootTableIndex; //!< The Loot Table Index
|
|
|
|
unsigned int RarityTableIndex; //!< The Rarity Table Index
|
|
|
|
float percent; //!< The percent that this matrix is used?
|
|
|
|
unsigned int minToDrop; //!< The minimum amount of loot from this matrix to drop
|
|
|
|
unsigned int maxToDrop; //!< The maximum amount of loot from this matrix to drop
|
|
|
|
unsigned int id; //!< The ID of the Loot Matrix
|
|
|
|
unsigned int flagID; //!< ???
|
|
|
|
UNUSED(std::string gate_version); //!< The Gate Version
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDLootMatrixTable : public CDTable<CDLootMatrixTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDLootMatrix> entries;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-03-17 14:36:21 +00:00
|
|
|
CDLootMatrixTable();
|
|
|
|
// Queries the table with a custom "where" clause
|
2021-12-05 17:54:36 +00:00
|
|
|
std::vector<CDLootMatrix> Query(std::function<bool(CDLootMatrix)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-20 10:25:45 +00:00
|
|
|
const std::vector<CDLootMatrix>& GetEntries(void) const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|