mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
8e84cafdfa
* feat: add configurable feature and versions to allow for easily swithing it out to enable features in the client for funsies tested that this doesn't break anything and added test * cleanup
34 lines
845 B
C++
34 lines
845 B
C++
#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;
|
|
|
|
public:
|
|
void LoadValuesFromDatabase();
|
|
|
|
// Queries the table with a custom "where" clause
|
|
std::vector<CDFeatureGating> Query(std::function<bool(CDFeatureGating)> predicate);
|
|
|
|
bool FeatureUnlocked(const CDFeatureGating& feature) const;
|
|
|
|
const std::vector<CDFeatureGating>& GetEntries(void) const;
|
|
};
|