DarkflameServer/dDatabase/CDClientDatabase/CDClientTables/CDFeatureGatingTable.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
845 B
C
Raw Normal View History

#pragma once
// Custom Classes
#include "CDTable.h"
struct CDFeatureGating {
std::string featureName;
int32_t major;
int32_t current;
int32_t minor;
std::string description;
bool operator>=(const CDFeatureGating& b) const {
return (this->major > b.major) ||
(this->major == b.major && this->current > b.current) ||
(this->major == b.major && this->current == b.current && this->minor >= b.minor);
}
};
class CDFeatureGatingTable : public CDTable<CDFeatureGatingTable> {
private:
std::vector<CDFeatureGating> entries;
2022-07-28 13:39:57 +00:00
public:
void LoadValuesFromDatabase();
// Queries the table with a custom "where" clause
std::vector<CDFeatureGating> Query(std::function<bool(CDFeatureGating)> predicate);
2022-07-28 13:39:57 +00:00
bool FeatureUnlocked(const CDFeatureGating& feature) const;
2022-07-28 13:39:57 +00:00
const std::vector<CDFeatureGating>& GetEntries(void) const;
};