blob: e60be07cb625b18a339875a358fddc8f333e8b6c (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#pragma once
#include "../ComponentManager.h"
#include "BehaviorScript.h"
#include "Script.h"
namespace crepe {
template <typename T>
T & Script::get_component() const {
using namespace std;
vector<reference_wrapper<T>> all_components = this->get_components<T>();
if (all_components.size() < 1)
throw runtime_error(
format("Script: no component found with type = {}", typeid(T).name()));
return all_components.back().get();
}
template <typename T>
std::vector<std::reference_wrapper<T>> Script::get_components() const {
ComponentManager & mgr = *this->component_manager_ref;
return mgr.get_components_by_id<T>(*this->game_object_id_ref);
}
template <typename... Args>
void Script::logf(Args &&... args) {
Log::logf(std::forward<Args>(args)...);
}
template <typename EventType>
void Script::subscribe_internal(const EventHandler<EventType> & callback,
event_channel_t channel) {
EventManager & mgr = *this->event_manager_ref;
subscription_t listener = mgr.subscribe<EventType>(
[this, callback](const EventType & data) -> bool {
bool & active = *this->active_ref;
if (!active) return false;
return callback(data);
},
channel);
this->listeners.push_back(listener);
}
template <typename EventType>
void Script::subscribe(const EventHandler<EventType> & callback, event_channel_t channel) {
this->subscribe_internal(callback, channel);
}
template <typename EventType>
void Script::subscribe(const EventHandler<EventType> & callback) {
this->subscribe_internal(callback, EventManager::CHANNEL_ALL);
}
} // namespace crepe
|