aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax-001 <80035972+Max-001@users.noreply.github.com>2024-10-02 16:29:17 +0200
committerMax-001 <80035972+Max-001@users.noreply.github.com>2024-10-02 16:29:17 +0200
commitb242f28862ac8e9c1137c3f8e3640011a1ddddfa (patch)
treea419d8aa36a6675f791f7958d04e5cf3ab312229
parent3e99a6fe36e63a1e14ba62f2a6e5a3827484e4e6 (diff)
DeleteComponents<> method created
-rw-r--r--mwe/ecs-homemade/inc/ComponentManager.hpp10
-rw-r--r--mwe/ecs-homemade/src/ComponentManager.cpp2
-rw-r--r--mwe/ecs-homemade/src/main.cpp5
3 files changed, 12 insertions, 5 deletions
diff --git a/mwe/ecs-homemade/inc/ComponentManager.hpp b/mwe/ecs-homemade/inc/ComponentManager.hpp
index 18bd548..e6523ca 100644
--- a/mwe/ecs-homemade/inc/ComponentManager.hpp
+++ b/mwe/ecs-homemade/inc/ComponentManager.hpp
@@ -16,12 +16,18 @@ void ComponentManager::AddComponent(std::uint32_t id, Args&&... args) {
template <typename T>
void ComponentManager::DeleteComponentsById(std::uint32_t id) {
+ std::type_index type = typeid(T); //Determine the type of T (this is used as the key of the unordered_map<>)
+
}
template <typename T>
void ComponentManager::DeleteComponents() {
+ std::type_index type = typeid(T); //Determine the type of T (this is used as the key of the unordered_map<>)
+ if (mComponents.find(type) != mComponents.end()) { //Find the type (in the unordered_map<>)
+ mComponents[type].clear(); //Clear the whole vector<> of this specific type
+ }
}
template <typename T>
@@ -30,7 +36,7 @@ std::vector<std::reference_wrapper<T>> ComponentManager::GetComponentsByID(std::
std::vector<std::reference_wrapper<T>> componentVector; //Create an empty vector<>
- if (mComponents.find(type) != mComponents.end()) { //Find the type (in the unordered_list<>)
+ if (mComponents.find(type) != mComponents.end()) { //Find the type (in the unordered_map<>)
const std::vector<std::vector<std::unique_ptr<Component>>>& componentArray = mComponents.at(type); //Get the correct vector<>
@@ -55,7 +61,7 @@ std::vector<std::pair<std::reference_wrapper<T>, std::uint32_t>> ComponentManage
std::vector<std::pair<std::reference_wrapper<T>, std::uint32_t>> componentVector; //Create an empty vector<>
std::uint32_t id = 0; //Set the id to 0 (the id will also be stored in the returned vector<>)
- if (mComponents.find(type) != mComponents.end()) { //Find the type (in the unordered_list<>)
+ if (mComponents.find(type) != mComponents.end()) { //Find the type (in the unordered_map<>)
const std::vector<std::vector<std::unique_ptr<Component>>>& componentArray = mComponents.at(type); //Get the correct vector<>
diff --git a/mwe/ecs-homemade/src/ComponentManager.cpp b/mwe/ecs-homemade/src/ComponentManager.cpp
index cca84bc..def50be 100644
--- a/mwe/ecs-homemade/src/ComponentManager.cpp
+++ b/mwe/ecs-homemade/src/ComponentManager.cpp
@@ -13,5 +13,5 @@ void ComponentManager::DeleteAllComponentsOfId(std::uint32_t id) {
}
void ComponentManager::DeleteAllComponents() {
- mComponents.clear();
+ mComponents.clear(); //Clear the whole unordered_map<>
}
diff --git a/mwe/ecs-homemade/src/main.cpp b/mwe/ecs-homemade/src/main.cpp
index df229a2..e1ca9e9 100644
--- a/mwe/ecs-homemade/src/main.cpp
+++ b/mwe/ecs-homemade/src/main.cpp
@@ -69,6 +69,9 @@ int main() {
}
std::cout << std::endl;
+ ComponentManager::GetInstance().DeleteComponents<Sprite>();
+ gameObect5.AddComponent<Sprite>();
+
std::cout << "Finding all rigidbodies of entity 3" << std::endl;
std::vector<std::reference_wrapper<Rigidbody>> rigidbodyOfEntity3 = ComponentManager::GetInstance().GetComponentsByID<Rigidbody>(gameObect3.mId);
for(Rigidbody& rigidbodyEntity3 : rigidbodyOfEntity3) {
@@ -99,8 +102,6 @@ int main() {
}
std::cout << std::endl;
- ComponentManager::GetInstance().DeleteAllComponents();
-
std::cout << "Finding all rigidbodies of all entities for the second time (after changing mMass to -1)" << std::endl;
std::vector<std::pair<std::reference_wrapper<Rigidbody>, std::uint32_t>> rigidBodies2 = ComponentManager::GetInstance().GetComponentsByType<Rigidbody>();
for(auto& [rigidbody2, id2] : rigidBodies2) {