2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDMissionTasks {
|
2022-07-28 13:39:57 +00:00
|
|
|
unsigned int id; //!< The Mission ID that the task belongs to
|
|
|
|
UNUSED(unsigned int locStatus); //!< ???
|
|
|
|
unsigned int taskType; //!< The task type
|
|
|
|
unsigned int target; //!< The mission target
|
|
|
|
std::string targetGroup; //!< The mission target group
|
|
|
|
int targetValue; //!< The target value
|
|
|
|
std::string taskParam1; //!< The task param 1
|
|
|
|
UNUSED(std::string largeTaskIcon); //!< ???
|
|
|
|
UNUSED(unsigned int IconID); //!< ???
|
|
|
|
unsigned int uid; //!< ???
|
|
|
|
UNUSED(unsigned int largeTaskIconID); //!< ???
|
|
|
|
UNUSED(bool localize); //!< Whether or not the task should be localized
|
|
|
|
UNUSED(std::string gate_version); //!< ???
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDMissionTasksTable : public CDTable<CDMissionTasksTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
2022-07-28 13:39:57 +00:00
|
|
|
std::vector<CDMissionTasks> entries;
|
|
|
|
|
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
|
2022-07-28 13:39:57 +00:00
|
|
|
std::vector<CDMissionTasks> Query(std::function<bool(CDMissionTasks)> predicate);
|
|
|
|
|
|
|
|
std::vector<CDMissionTasks*> GetByMissionID(uint32_t missionID);
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDMissionTasks>& GetEntries() const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|