blob: d6b2ca11693649b2056bafc3affcd0d11ed21e62 (
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
 | #include "../api/BehaviorScript.h"
#include "../api/Script.h"
#include "../manager/ComponentManager.h"
#include "ScriptSystem.h"
using namespace std;
using namespace crepe;
void ScriptSystem::update() {
	dbg_trace();
	ComponentManager & mgr = this->mediator.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();
	}
}
 |