2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
2023-11-18 00:47:18 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
|
2023-03-04 07:16:37 +00:00
|
|
|
enum class eReplicaComponentType : uint32_t;
|
2021-12-05 17:54:36 +00:00
|
|
|
struct CDComponentsRegistry {
|
|
|
|
unsigned int id; //!< The LOT is used as the ID
|
2023-03-04 07:16:37 +00:00
|
|
|
eReplicaComponentType component_type; //!< See ComponentTypes enum for values
|
2021-12-05 17:54:36 +00:00
|
|
|
unsigned int component_id; //!< The ID used within the component's table (0 may either mean it's non-networked, or that the ID is actually 0
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDComponentsRegistryTable : public CDTable<CDComponentsRegistryTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
2023-08-11 04:27:40 +00:00
|
|
|
std::unordered_map<uint64_t, uint32_t> mappedEntries; //id, component_type, component_id
|
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-04 07:16:37 +00:00
|
|
|
int32_t GetByIDAndType(uint32_t id, eReplicaComponentType componentType, int32_t defaultValue = 0);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|