aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Script.hpp
blob: d755fdaf157a772fd3373ec64fe70ae803941fbf (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
#pragma once

#include "../ComponentManager.h"
#include "../Exception.h"

#include "BehaviorScript.h"
#include "Script.h"

namespace crepe {

template <typename T>
T & Script::get_component() const {
	std::vector<std::reference_wrapper<T>> all_components
		= this->get_components<T>();
	if (all_components.size() < 1)
		throw Exception("Script: no component found with type = %s",
						typeid(T).name());

	return all_components.back().get();
}

template <typename T>
std::vector<std::reference_wrapper<T>> Script::get_components() const {
	ComponentManager & mgr = ComponentManager::get_instance();
	return mgr.get_components_by_id<T>(this->parent->game_object_id);
}

} // namespace crepe