diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-05-17 15:55:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-17 15:55:37 -0400 |
| commit | 90aadf3844386824140a20d7fbb847bc16009a94 (patch) | |
| tree | 6f83fce90e71abb22b1a8f3e09c79963b2a34d5d /src/systems/scripting.h | |
| parent | bc63fa57ced1c7329f7fdcfd168eaf7e290158bc (diff) | |
| parent | 86f0106d0523825549f1e74b835688c78a10cf6c (diff) | |
| download | therapy-90aadf3844386824140a20d7fbb847bc16009a94.tar.gz therapy-90aadf3844386824140a20d7fbb847bc16009a94.tar.bz2 therapy-90aadf3844386824140a20d7fbb847bc16009a94.zip | |
Merge pull request #7 from hatkirby/es-rewrite
The ECS rewrite exceeds the original branch in functionality, so it is time to merge it in.
Diffstat (limited to 'src/systems/scripting.h')
| -rw-r--r-- | src/systems/scripting.h | 34 |
1 files changed, 34 insertions, 0 deletions
| diff --git a/src/systems/scripting.h b/src/systems/scripting.h new file mode 100644 index 0000000..b119c3f --- /dev/null +++ b/src/systems/scripting.h | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | #ifndef AUTOMATING_H_E6E5D76E | ||
| 2 | #define AUTOMATING_H_E6E5D76E | ||
| 3 | |||
| 4 | #include "system.h" | ||
| 5 | #include <sol.hpp> | ||
| 6 | |||
| 7 | class ScriptingSystem : public System { | ||
| 8 | public: | ||
| 9 | |||
| 10 | ScriptingSystem(Game& game); | ||
| 11 | |||
| 12 | void tick(double dt); | ||
| 13 | |||
| 14 | void killScript(id_type entity); | ||
| 15 | |||
| 16 | void startBehavior(id_type entity); | ||
| 17 | |||
| 18 | void stopBehavior(id_type entity); | ||
| 19 | |||
| 20 | void onTouch(id_type entity, id_type player); | ||
| 21 | |||
| 22 | private: | ||
| 23 | |||
| 24 | template <typename... Args> | ||
| 25 | sol::optional<id_type> runScript( | ||
| 26 | std::string table, | ||
| 27 | std::string event, | ||
| 28 | id_type entity, | ||
| 29 | Args&&... args); | ||
| 30 | |||
| 31 | sol::state engine_; | ||
| 32 | }; | ||
| 33 | |||
| 34 | #endif /* end of include guard: AUTOMATING_H_E6E5D76E */ | ||
