ECS/ECS.hpp is now beautiful !

This commit is contained in:
Ulysse Cura 2024-09-08 13:58:06 +02:00
parent a2e70e3184
commit aaaa21f73a
4 changed files with 26 additions and 44 deletions

32
.gitignore vendored
View File

@ -1,34 +1,4 @@
# ---> C++ # ---> C++
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables # Executables
*.exe 2D_Engine
*.out
*.app

View File

@ -32,8 +32,8 @@ $(sdl2-config --cflags --libs)
-Woverloaded-virtual -Woverloaded-virtual
# Debug # Debug
-DDEBUG_MODE #-DDEBUG_MODE
-g #-g
# Release # Release
#-O2 -O2

View File

@ -45,8 +45,7 @@ constexpr std::size_t maxComponents = 32;
using ComponentBitSet = bitset<maxComponents>; using ComponentBitSet = bitset<maxComponents>;
using ComponentArray = array<Component*, maxComponents>; using ComponentArray = array<Component*, maxComponents>;
class Component { struct Component {
public:
Entity *entity; Entity *entity;
virtual void init() {} virtual void init() {}
@ -98,16 +97,20 @@ class Entity {
} }
template <typename T> template <typename T>
bool hasComponent() const { bool hasComponent() const
{
// Vérifier d'abord si un type exact est présent // Vérifier d'abord si un type exact est présent
ComponentID id = getComponentTypeID<T>(); ComponentID id = getComponentTypeID<T>();
if (m_componentBitSet[id]) { if(m_componentBitSet[id])
{
return true; return true;
} }
// Si non, vérifier dynamiquement tous les composants pour un type dérivé // Si non, vérifier dynamiquement tous les composants pour un type dérivé
for (const auto& c : m_components) { for(const auto& c : m_components)
if (dynamic_cast<T*>(c.get())) { {
if (dynamic_cast<T*>(c.get()))
{
return true; return true;
} }
} }
@ -115,19 +118,24 @@ class Entity {
} }
template <typename T> template <typename T>
T& getComponent() const { T& getComponent() const
{
// Vérification rapide via le BitSet et l'accès direct au composant via l'array // Vérification rapide via le BitSet et l'accès direct au composant via l'array
ComponentID id = getComponentTypeID<T>(); ComponentID id = getComponentTypeID<T>();
if (m_componentBitSet[id]) { if (m_componentBitSet[id])
{
return *static_cast<T*>(m_componentArray[id]); return *static_cast<T*>(m_componentArray[id]);
} }
// Vérification polymorphique avec dynamic_cast // Vérification polymorphique avec dynamic_cast
for (const auto& c : m_components) { for (const auto& c : m_components)
if (T* t = dynamic_cast<T*>(c.get())) { {
if (T* t = dynamic_cast<T*>(c.get()))
{
return *t; return *t;
} }
} }
throw runtime_error("Composant non trouvé.\n"); throw runtime_error("Composant non trouvé.\n");
} }

View File

@ -190,7 +190,11 @@
"CurrentFrame": 0, "CurrentFrame": 0,
<<<<<<< HEAD
"FrameDelay": 60, "FrameDelay": 60,
=======
"FrameDelay": 30,
>>>>>>> stash
"PlayAnimation": false "PlayAnimation": false
}, },