2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDRebuildComponent {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t id; //!< The component Id
|
2021-12-05 17:54:36 +00:00
|
|
|
float reset_time; //!< The reset time
|
|
|
|
float complete_time; //!< The complete time
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t take_imagination; //!< The amount of imagination it costs
|
2021-12-05 17:54:36 +00:00
|
|
|
bool interruptible; //!< Whether or not the rebuild is interruptible
|
|
|
|
bool self_activator; //!< Whether or not the rebuild is a rebuild activator itself
|
|
|
|
std::string custom_modules; //!< The custom modules
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t activityID; //!< The activity ID
|
|
|
|
uint32_t post_imagination_cost; //!< The post imagination cost
|
2021-12-05 17:54:36 +00:00
|
|
|
float time_before_smash; //!< The time before smash
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDRebuildComponentTable : public CDTable<CDRebuildComponentTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDRebuildComponent> 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<CDRebuildComponent> Query(std::function<bool(CDRebuildComponent)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDRebuildComponent>& GetEntries() const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|