aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/ScriptSystem.h
blob: 095515f082c3bf156f68d881e78eece2c8e05f72 (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
#pragma once

#include "System.h"

#include "../manager/LoopTimerManager.h"

namespace crepe {

class Script;

/**
 * \brief Script system
 *
 * The script system is responsible for all \c BehaviorScript components, and
 * calls the methods on classes derived from \c Script.
 */
class ScriptSystem : public System {
public:
	using System::System;
	/**
	 * \brief Call Script::fixed_update() on all active \c BehaviorScript instances
	 *
	 * This routine updates all scripts sequentially using the Script::update()
	 * method. It also calls Script::init() if this has not been done before on
	 * the \c BehaviorScript instance.
	 */
	void fixed_update() override;

	/**
	 * \brief Call Script::frame_update() on all active \c BehaviorScript instances
	 *
	 * This routine updates all scripts sequentially using the Script::update()
	 * method. It also calls Script::init() if this has not been done before on
	 * the \c BehaviorScript instance.
	 */
	void frame_update() override;

private:
	void update(void (Script::*update_function)(duration_t), const duration_t & delta_time);
};

} // namespace crepe