2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDMissionNPCComponent {
|
|
|
|
unsigned int id; //!< The ID
|
|
|
|
unsigned int missionID; //!< The Mission ID
|
|
|
|
bool offersMission; //!< Whether or not this NPC offers a mission
|
|
|
|
bool acceptsMission; //!< Whether or not this NPC accepts a mission
|
|
|
|
std::string gate_version; //!< The gate version
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDMissionNPCComponentTable : public CDTable<CDMissionNPCComponentTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDMissionNPCComponent> entries;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
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<CDMissionNPCComponent> Query(std::function<bool(CDMissionNPCComponent)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
// Gets all the entries in the table
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDMissionNPCComponent>& GetEntries() const;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|