2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDActivityRewards {
|
|
|
|
unsigned int objectTemplate; //!< The object template (?)
|
|
|
|
unsigned int ActivityRewardIndex; //!< The activity reward index
|
|
|
|
int activityRating; //!< The activity rating
|
|
|
|
unsigned int LootMatrixIndex; //!< The loot matrix index
|
|
|
|
unsigned int CurrencyIndex; //!< The currency index
|
|
|
|
unsigned int ChallengeRating; //!< The challenge rating
|
|
|
|
std::string description; //!< The description
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDActivityRewardsTable : public CDTable<CDActivityRewardsTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDActivityRewards> 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
|
|
|
CDActivityRewardsTable();
|
|
|
|
// Queries the table with a custom "where" clause
|
2021-12-05 17:54:36 +00:00
|
|
|
std::vector<CDActivityRewards> Query(std::function<bool(CDActivityRewards)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
std::vector<CDActivityRewards> GetEntries(void) const;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|