aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/ScriptSystem.cpp
blob: d54bbc93d84a65d6d4b86e95bc8565945809bf5d (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
#include "../ComponentManager.h"
#include "../api/BehaviorScript.h"
#include "../api/Script.h"

#include "ScriptSystem.h"

using namespace std;
using namespace crepe;

void ScriptSystem::update() {
	dbg_trace();

	ComponentManager & mgr = this->component_manager;
	RefVector<BehaviorScript> behavior_scripts = mgr.get_components_by_type<BehaviorScript>();

	for (BehaviorScript & behavior_script : behavior_scripts) {
		if (!behavior_script.active) continue;

		Script * script = behavior_script.script.get();
		if (script == nullptr) continue;

		if (!script->initialized) {
			script->init();
			script->initialized = true;
		}
		script->update();
	}
}