Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ComponentFunctionsDefinitions.hpp
1#pragma once
2
3#include "ComponentFunctions.hpp"
4
5namespace Grindstone::ECS {
6 template<typename ComponentType>
7 void* CreateComponent(entt::registry& registry, entt::entity entity) {
8 return &registry.emplace<ComponentType>(entity);
9 }
10
11 template<typename ComponentType>
12 void RemoveComponent(entt::registry& registry, entt::entity entity) {
13 if (registry.any_of<ComponentType>(entity)) {
14 registry.remove<ComponentType>(entity);
15 }
16 }
17
18 template<typename ComponentType>
19 Grindstone::Reflection::TypeDescriptor_Struct GetComponentReflectionData() {
20 return ComponentType::reflectionInfo;
21 }
22
23 template<typename ComponentType>
24 bool TryGetComponent(entt::registry& registry, entt::entity entity, void*& outComponent) {
25 ComponentType* foundComp = registry.try_get<ComponentType>(entity);
26 outComponent = foundComp;
27
28 return foundComp != nullptr;
29 }
30
31 template<typename ComponentType>
32 bool HasComponent(entt::registry& registry, entt::entity entity) {
33 return registry.all_of<ComponentType>(entity);
34 }
35
36 template<typename ComponentType>
37 void CopyRegistryComponents(entt::registry& dst, entt::registry& src) {
38 auto& srcEntities = src.view<ComponentType>();
39
40 for (entt::entity srcEntity : srcEntities) {
41 ComponentType srcComponent = src.get<ComponentType>(srcEntity);
42 dst.emplace_or_replace<ComponentType>(srcEntity, srcComponent);
43 }
44 }
45}
Definition TypeDescriptorStruct.hpp:9