2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
2024-03-07 05:45:24 +00:00
|
|
|
#include <cstdint>
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
struct CDMissionTasks {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t id; //!< The Mission ID that the task belongs to
|
|
|
|
UNUSED(uint32_t locStatus); //!< ???
|
|
|
|
uint32_t taskType; //!< The task type
|
|
|
|
uint32_t target; //!< The mission target
|
2021-12-05 17:54:36 +00:00
|
|
|
std::string targetGroup; //!< The mission target group
|
2024-01-09 07:54:14 +00:00
|
|
|
int32_t targetValue; //!< The target value
|
2021-12-05 17:54:36 +00:00
|
|
|
std::string taskParam1; //!< The task param 1
|
|
|
|
UNUSED(std::string largeTaskIcon); //!< ???
|
2024-01-09 07:54:14 +00:00
|
|
|
UNUSED(uint32_t IconID); //!< ???
|
|
|
|
uint32_t uid; //!< ???
|
|
|
|
UNUSED(uint32_t largeTaskIconID); //!< ???
|
2021-12-05 17:54:36 +00:00
|
|
|
UNUSED(bool localize); //!< Whether or not the task should be localized
|
|
|
|
UNUSED(std::string gate_version); //!< ???
|
|
|
|
};
|
|
|
|
|
2024-02-09 13:37:58 +00:00
|
|
|
class CDMissionTasksTable : public CDTable<CDMissionTasksTable, std::vector<CDMissionTasks>> {
|
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<CDMissionTasks> Query(std::function<bool(CDMissionTasks)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2024-03-07 05:45:24 +00:00
|
|
|
std::vector<CDMissionTasks*> GetByMissionID(const uint32_t missionID);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2024-02-09 13:37:58 +00:00
|
|
|
// TODO: Remove this and replace it with a proper lookup function.
|
|
|
|
const CDTable::StorageType& GetEntries() const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|