diff --git a/.gitignore b/.gitignore index e257658..1a44371 100644 --- a/.gitignore +++ b/.gitignore @@ -1,34 +1,4 @@ # ---> 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 -*.exe -*.out -*.app - +2D_Engine \ No newline at end of file diff --git a/CompilerFileList.txt b/CompilerFileList.txt index a39ae7b..a74606a 100644 --- a/CompilerFileList.txt +++ b/CompilerFileList.txt @@ -32,8 +32,8 @@ $(sdl2-config --cflags --libs) -Woverloaded-virtual # Debug --DDEBUG_MODE --g +#-DDEBUG_MODE +#-g # Release -#-O2 +-O2 diff --git a/ECS/ECS.hpp b/ECS/ECS.hpp index 228bc3b..aa31e22 100644 --- a/ECS/ECS.hpp +++ b/ECS/ECS.hpp @@ -45,8 +45,7 @@ constexpr std::size_t maxComponents = 32; using ComponentBitSet = bitset; using ComponentArray = array; -class Component { - public: +struct Component { Entity *entity; virtual void init() {} @@ -98,16 +97,20 @@ class Entity { } template - bool hasComponent() const { + bool hasComponent() const + { // Vérifier d'abord si un type exact est présent ComponentID id = getComponentTypeID(); - if (m_componentBitSet[id]) { + if(m_componentBitSet[id]) + { return true; } // Si non, vérifier dynamiquement tous les composants pour un type dérivé - for (const auto& c : m_components) { - if (dynamic_cast(c.get())) { + for(const auto& c : m_components) + { + if (dynamic_cast(c.get())) + { return true; } } @@ -115,19 +118,24 @@ class Entity { } template - T& getComponent() const { + T& getComponent() const + { // Vérification rapide via le BitSet et l'accès direct au composant via l'array ComponentID id = getComponentTypeID(); - if (m_componentBitSet[id]) { + if (m_componentBitSet[id]) + { return *static_cast(m_componentArray[id]); } // Vérification polymorphique avec dynamic_cast - for (const auto& c : m_components) { - if (T* t = dynamic_cast(c.get())) { + for (const auto& c : m_components) + { + if (T* t = dynamic_cast(c.get())) + { return *t; } } + throw runtime_error("Composant non trouvé.\n"); } diff --git a/ressources/maps/map dungeon 1.json b/ressources/maps/map dungeon 1.json index 1710793..a83da52 100644 --- a/ressources/maps/map dungeon 1.json +++ b/ressources/maps/map dungeon 1.json @@ -190,7 +190,11 @@ "CurrentFrame": 0, +<<<<<<< HEAD "FrameDelay": 60, +======= + "FrameDelay": 30, +>>>>>>> stash "PlayAnimation": false },