18 template<
typename ComponentType>
19 void RegisterComponent(SetupComponentFn setupComponentFn =
nullptr, DestroyComponentFn destroyComponentFn =
nullptr) {
20 RegisterComponent(ComponentType::GetComponentName(), {
23 &ECS::CreateComponent<ComponentType>,
24 &ECS::RemoveComponent<ComponentType>,
25 &ECS::HasComponent<ComponentType>,
26 &ECS::TryGetComponent<ComponentType>,
27 &ECS::GetComponentReflectionData<ComponentType>,
28 &ECS::CopyRegistryComponents<ComponentType>
32 template<
typename ComponentType>
33 void UnregisterComponent() {
34 GetEntityRegistry().clear<ComponentType>();
36 auto comp = componentFunctionsList.find(ComponentType::GetComponentName());
37 if (comp != componentFunctionsList.end()) {
38 componentFunctionsList.erase(comp);
42 virtual entt::registry& GetEntityRegistry();
43 virtual void CopyRegistry(entt::registry& to, entt::registry& from);
44 virtual void CallCreateOnRegistry(entt::registry& registry);
45 virtual void CallDestroyOnRegistry(entt::registry& registry);
47 virtual void RegisterComponent(
const char* name,
ComponentFunctions componentFunctions);
48 virtual void UnregisterComponent(
const char* name);
49 virtual void* CreateComponentWithSetup(
const char* name,
ECS::Entity entity);
50 virtual void* CreateComponent(
const char *name,
ECS::Entity entity);
51 virtual void RemoveComponent(
const char *name,
ECS::Entity entity);
52 virtual bool HasComponent(
const char* name,
ECS::Entity entity);
53 virtual bool TryGetComponent(
const char *name,
ECS::Entity entity,
void*& outComponent);
55 virtual void SetupComponent(
const char* componentType,
ECS::Entity entity,
void* componentPtr);
57 using ComponentMap = std::unordered_map<std::string, ComponentFunctions>;
58 virtual ComponentMap::iterator begin();
59 virtual ComponentMap::const_iterator begin()
const;
60 virtual ComponentMap::iterator end();
61 virtual ComponentMap::const_iterator end()
const;
63 ComponentMap componentFunctionsList;