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

#include <type_traits>

#include "../util/Log.h"

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

namespace crepe {

template <class T, typename... Args>
BehaviorScript & BehaviorScript::set_script(Args &&... args) {
	dbg_trace();
	static_assert(std::is_base_of<Script, T>::value);
	Script * s = new T(std::forward<Args>(args)...);

	s->game_object_id = this->game_object_id;
	s->active = this->active;
	s->component_manager = this->component_manager;
	s->event_manager = EventManager::get_instance();

	this->script = std::unique_ptr<Script>(s);
	return *this;
}

} // namespace crepe