aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ComponentManager.cpp
blob: 8bde33ad6da9d2080c7c5c11b29dfb9e5ea4ff9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "ComponentManager.h"
#include "util/log.h"

using namespace crepe;

ComponentManager & ComponentManager::get_instance() {
	static ComponentManager instance;
	return instance;
}

void ComponentManager::delete_all_components_of_id(uint32_t id) {
	// Loop through all the types (in the unordered_map<>)
	for (auto & [type, componentArray] : components) {
		// Make sure that the id (that we are looking for) is within the boundaries of the vector<>
		if (id < componentArray.size()) {
			// Clear the components at this specific id
			componentArray[id].clear();
		}
	}
}

void ComponentManager::delete_all_components() {
	// Clear the whole unordered_map<>
	this->components.clear();
}

ComponentManager::ComponentManager() { dbg_trace(); }

ComponentManager::~ComponentManager() { dbg_trace(); }