From 70e3c70d3d5e6a4cd4a2b6172ad3af3e6670ed25 Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Thu, 17 Oct 2024 20:38:11 +0200 Subject: [PATCH] Fixing the 1 frame bug --- TileMap.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/TileMap.cpp b/TileMap.cpp index d2dc9ca..81d38ae 100644 --- a/TileMap.cpp +++ b/TileMap.cpp @@ -100,8 +100,8 @@ void TileMap::LoadTileMap(const string &path) // Erase lasts entities and load news if there are some std::size_t numberOfEntity {Game::entityManager.getNumberOfEntity()}; - - for(std::size_t i {1}; i < numberOfEntity; i++) Game::entityManager.erase(i); + for(std::size_t i {1}; i < numberOfEntity; i++) Game::entityManager.destroy(i); + Game::entityManager.refresh(); if(mapData->contains("Entities")) { @@ -118,7 +118,7 @@ void TileMap::LoadTileMap(const string &path) pos = pos * TILE_SIZE * TILEMAP_SCALE; - e.addComponent(pos, dim, component->at("Scale").get(), component->at("Speed").get()); + e.addComponent(pos, dim, component->at("Scale").get(), component->at("Speed").get()); } else if(component->at("Type").get() == "SpriteComponent") { @@ -160,8 +160,10 @@ void TileMap::LoadTileMap(const string &path) } } } + Game::entityManager.update(); // Texture renderer creating + if(Game::textureRenderer != NULL) SDL_DestroyTexture(Game::textureRenderer); Game::textureRenderer = SDL_CreateTexture(Game::renderer, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, worldWidth, worldHeight); if(Game::textureRenderer == NULL) {