2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDActivityRewards {
|
2023-03-20 13:10:52 +00:00
|
|
|
unsigned int objectTemplate;
|
|
|
|
unsigned int ActivityRewardIndex;
|
|
|
|
int activityRating;
|
|
|
|
unsigned int LootMatrixIndex;
|
|
|
|
unsigned int CurrencyIndex;
|
|
|
|
unsigned int ChallengeRating;
|
|
|
|
std::string description;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|