16 EntityHandle entityId = entt::null;
22 : entityId(entityId), scene(scene) {}
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);
32 virtual bool IsChildOf(
const Entity& other)
const;
33 virtual Entity GetParent()
const;
34 virtual bool SetParent(
Entity);
37 virtual Math::Matrix4 GetLocalMatrix()
const;
38 virtual Math::Matrix4 GetWorldMatrix()
const;
52 virtual void Destroy();
53 virtual entt::registry& GetSceneEntityRegistry()
const;
55 template<
typename ComponentType,
typename... Args>
56 ComponentType& AddComponent(Args&&... args) {
57 return GetSceneEntityRegistry().emplace<ComponentType>(entityId, std::forward<Args>(args)...);
60 template<
typename ComponentType>
61 bool HasComponent()
const {
62 return GetSceneEntityRegistry().all_of<ComponentType>(entityId);
65 template<
typename ComponentType>
66 ComponentType& GetComponent()
const {
67 return GetSceneEntityRegistry().get<ComponentType>(entityId);
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;
81 template<
typename ComponentType>
82 void RemoveComponent(
const char* componentType) {
83 GetSceneEntityRegistry().remove<ComponentType>(entityId);
86 virtual EntityHandle GetHandle()
const {
94 explicit operator bool()
const {
95 return entityId != entt::null && scene !=
nullptr && GetSceneEntityRegistry().valid(entityId);
98 bool operator==(
const Entity& other)
const {
99 return (entityId == other.entityId) && (scene == other.scene);
102 bool operator!=(
const Entity& other)
const {
103 return !(*
this == other);