Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Entity.hpp
1#pragma once
2
3#include <Common/Math.hpp>
4#include <EngineCore/CoreComponents/Parent/ParentComponent.hpp>
5
6#include "EntityHandle.hpp"
7
8namespace Grindstone {
9 namespace SceneManagement {
10 class Scene;
11 }
12
13 namespace ECS {
14 class Entity {
15 private:
16 EntityHandle entityId = entt::null;
17 SceneManagement::Scene* scene = nullptr;
18 public:
19 Entity() = default;
20 Entity(const Entity& other) = default;
21 Entity(entt::entity entityId, SceneManagement::Scene * scene)
22 : entityId(entityId), scene(scene) {}
23
24 virtual void* AddComponent(const char* componentType);
25 virtual void* AddComponentWithoutSetup(const char* componentType);
26 virtual bool HasComponent(const char* componentType) const;
27 virtual void* GetComponent(const char* componentType) const;
28 virtual bool TryGetComponent(const char* componentType, void*& outComponent) const;
29 virtual void RemoveComponent(const char* componentType);
30
31 // Parent helpers
32 virtual bool IsChildOf(const Entity& other) const;
33 virtual Entity GetParent() const;
34 virtual bool SetParent(Entity);
35
36 // Transform helpers
37 virtual Math::Matrix4 GetLocalMatrix() const;
38 virtual Math::Matrix4 GetWorldMatrix() const;
39 virtual Math::Float3 GetLocalPosition() const;
40 virtual Math::Float3 GetWorldPosition() const;
41 virtual Math::Quaternion GetLocalRotation() const;
42 virtual Math::Quaternion GetWorldRotation() const;
43 virtual Math::Float3 GetLocalScale() const;
44
45 virtual Math::Float3 GetLocalForward() const;
46 virtual Math::Float3 GetWorldForward() const;
47 virtual Math::Float3 GetLocalRight() const;
48 virtual Math::Float3 GetWorldRight() const;
49 virtual Math::Float3 GetLocalUp() const;
50 virtual Math::Float3 GetWorldUp() const;
51
52 virtual void Destroy();
53 virtual entt::registry& GetSceneEntityRegistry() const;
54
55 template<typename ComponentType, typename... Args>
56 ComponentType& AddComponent(Args&&... args) {
57 return GetSceneEntityRegistry().emplace<ComponentType>(entityId, std::forward<Args>(args)...);
58 }
59
60 template<typename ComponentType>
61 bool HasComponent() const {
62 return GetSceneEntityRegistry().all_of<ComponentType>(entityId);
63 }
64
65 template<typename ComponentType>
66 ComponentType& GetComponent() const {
67 return GetSceneEntityRegistry().get<ComponentType>(entityId);
68 }
69
70 template<typename ComponentType>
71 bool TryGetComponent(ComponentType*& outComponent) const {
72 ComponentType* testComponent = GetSceneEntityRegistry().try_get<ComponentType>(entityId);
73 if (testComponent != nullptr) {
74 outComponent = testComponent;
75 return true;
76 }
77
78 return false;
79 }
80
81 template<typename ComponentType>
82 void RemoveComponent(const char* componentType) {
83 GetSceneEntityRegistry().remove<ComponentType>(entityId);
84 }
85
86 virtual EntityHandle GetHandle() const {
87 return entityId;
88 }
89
90 virtual SceneManagement::Scene* GetScene() const {
91 return scene;
92 }
93
94 explicit operator bool() const {
95 return entityId != entt::null && scene != nullptr && GetSceneEntityRegistry().valid(entityId);
96 }
97
98 bool operator==(const Entity& other) const {
99 return (entityId == other.entityId) && (scene == other.scene);
100 }
101
102 bool operator!=(const Entity& other) const {
103 return !(*this == other);
104 }
105 };
106
107 inline bool operator < (const ECS::Entity& lhs, const ECS::Entity& rhs) {
108 const bool isSceneLess = lhs.GetScene() < rhs.GetScene();
109 const bool isEntityLess = lhs.GetHandle() < rhs.GetHandle();
110 return isSceneLess || isEntityLess;
111 }
112 }
113}
Definition Entity.hpp:14
Definition Quaternion.cs:6
Definition Scene.hpp:21
Definition FloatVectors.cs:108