2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDVendorComponent {
|
|
|
|
unsigned int id; //!< The Component ID
|
|
|
|
float buyScalar; //!< Buy Scalar (what does that mean?)
|
|
|
|
float sellScalar; //!< Sell Scalar (what does that mean?)
|
|
|
|
float refreshTimeSeconds; //!< The refresh time
|
|
|
|
unsigned int LootMatrixIndex; //!< LootMatrixIndex of the vendor's items
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDVendorComponentTable : public CDTable<CDVendorComponentTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDVendorComponent> entries;
|
|
|
|
|
|
|
|
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<CDVendorComponent> Query(std::function<bool(CDVendorComponent)> predicate);
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDVendorComponent>& GetEntries(void) const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|