2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\file CDCurrencyTableTable.hpp
|
|
|
|
\brief Contains data for the CurrencyTable table
|
|
|
|
*/
|
|
|
|
|
|
|
|
//! CurrencyTable Struct
|
|
|
|
struct CDCurrencyTable {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t currencyIndex; //!< The Currency Index
|
|
|
|
uint32_t npcminlevel; //!< The minimum level of the npc
|
|
|
|
uint32_t minvalue; //!< The minimum currency
|
|
|
|
uint32_t maxvalue; //!< The maximum currency
|
|
|
|
uint32_t id; //!< The ID of the currency index
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//! CurrencyTable table
|
2024-02-09 13:37:58 +00:00
|
|
|
class CDCurrencyTableTable : public CDTable<CDCurrencyTableTable, std::vector<CDCurrencyTable>> {
|
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<CDCurrencyTable> Query(std::function<bool(CDCurrencyTable)> predicate);
|
|
|
|
};
|