2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDRarityTable {
|
2022-07-28 13:39:57 +00:00
|
|
|
float randmax;
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t rarity;
|
2024-02-09 13:37:58 +00:00
|
|
|
|
|
|
|
typedef uint32_t Index;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 20:33:22 +00:00
|
|
|
typedef std::vector<CDRarityTable> RarityTable;
|
|
|
|
|
2024-02-09 13:37:58 +00:00
|
|
|
class CDRarityTableTable : public CDTable<CDRarityTableTable, std::unordered_map<CDRarityTable::Index, std::vector<CDRarityTable>>> {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2023-10-09 20:33:22 +00:00
|
|
|
const std::vector<CDRarityTable>& GetRarityTable(uint32_t predicate);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|