Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ComponentRegistrar.hpp
1#pragma once
2
3#include <unordered_map>
4#include <string>
5#include <entt/entt.hpp>
6
7#include <EngineCore/ECS/EntityHandle.hpp>
8#include <EngineCore/Reflection/ComponentReflection.hpp>
9
10#include "ComponentFunctions.hpp"
11#include "ComponentFunctionsDefinitions.hpp"
12
13using namespace Grindstone;
14
15namespace Grindstone::ECS {
17 public:
18 template<typename ComponentType>
19 void RegisterComponent(SetupComponentFn setupComponentFn = nullptr, DestroyComponentFn destroyComponentFn = nullptr) {
20 RegisterComponent(ComponentType::GetComponentName(), {
21 setupComponentFn,
22 destroyComponentFn,
23 &ECS::CreateComponent<ComponentType>,
24 &ECS::RemoveComponent<ComponentType>,
25 &ECS::HasComponent<ComponentType>,
26 &ECS::TryGetComponent<ComponentType>,
27 &ECS::GetComponentReflectionData<ComponentType>,
28 &ECS::CopyRegistryComponents<ComponentType>
29 });
30 }
31
32 template<typename ComponentType>
33 void UnregisterComponent() {
34 GetEntityRegistry().clear<ComponentType>();
35
36 auto comp = componentFunctionsList.find(ComponentType::GetComponentName());
37 if (comp != componentFunctionsList.end()) {
38 componentFunctionsList.erase(comp);
39 }
40 }
41
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);
46 virtual void DestroyEntity(ECS::Entity entity);
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);
54 virtual bool TryGetComponentReflectionData(const char *name, Grindstone::Reflection::TypeDescriptor_Struct& outReflectionData);
55 virtual void SetupComponent(const char* componentType, ECS::Entity entity, void* componentPtr);
56
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;
62 private:
63 ComponentMap componentFunctionsList;
64 };
65}
Definition ComponentFunctions.hpp:19
Definition ComponentRegistrar.hpp:16
Definition Entity.hpp:14
Definition TypeDescriptorStruct.hpp:9