blob: c6b658c818858d7ac28539f743ae557932e9a8da (
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
30
31
32
33
34
35
36
37
|
#include "api/GameObject.h"
#include "util/Log.h"
#include "ComponentManager.h"
using namespace crepe;
using namespace std;
void ComponentManager::delete_all_components_of_id(game_object_id_t id) {
// Loop through all the types (in the unordered_map<>)
for (auto & [type, componentArray] : this->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(); }
GameObject & ComponentManager::new_object(const string & name,
const string & tag,
const Vector2 & position,
double rotation, double scale) {
GameObject * object = new GameObject(*this, this->next_id, name, tag,
position, rotation, scale);
this->objects.push_front(unique_ptr<GameObject>(object));
this->next_id++;
return *object;
}
|