-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathEntity.cpp
45 lines (36 loc) · 1.01 KB
/
Entity.cpp
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
38
39
40
41
42
43
44
45
#include "Entity.hpp"
namespace acid {
void Entity::Update() {
for (auto it = components.begin(); it != components.end();) {
if ((*it)->IsRemoved()) {
it = components.erase(it);
continue;
}
if ((*it)->GetEntity() != this)
(*it)->SetEntity(this);
if ((*it)->IsEnabled()) {
if (!(*it)->started) {
(*it)->Start();
(*it)->started = true;
}
(*it)->Update();
}
++it;
}
}
Component *Entity::AddComponent(std::unique_ptr<Component> &&component) {
if (!component) return nullptr;
component->SetEntity(this);
return components.emplace_back(std::move(component)).get();
}
void Entity::RemoveComponent(Component *component) {
components.erase(std::remove_if(components.begin(), components.end(), [component](const auto &c) {
return c.get() == component;
}), components.end());
}
void Entity::RemoveComponent(const std::string &name) {
components.erase(std::remove_if(components.begin(), components.end(), [name](const auto &c) {
return name == c->GetTypeName();
}), components.end());
}
}