diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-31 18:40:45 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-31 18:40:45 +0100 |
commit | 35ef3ba91ce9e00466508f2388f4c1dd2321b505 (patch) | |
tree | f51fa33fec8ecee4a77d0d37d3d440968d473814 /src/example | |
parent | 314354fda83f7f0e4ef11b13322e84997b4ccee0 (diff) |
minor script system fixes
Diffstat (limited to 'src/example')
-rw-r--r-- | src/example/script.cpp | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/src/example/script.cpp b/src/example/script.cpp index 43f1c22..cda9591 100644 --- a/src/example/script.cpp +++ b/src/example/script.cpp @@ -17,27 +17,38 @@ using namespace crepe; using namespace crepe::api; using namespace std; +// Unrelated stuff that is not part of this POC +int _ = [] () { + // Show dbg_trace() output + auto & cfg = api::Config::get_instance(); + cfg.log.level = util::LogLevel::TRACE; + + return 0; // satisfy compiler +}(); + + + +// User-defined script: class MyScript : public Script { void update() { + // Retrieve component from the same GameObject this script is on Transform & test = get_component<Transform>(); dbg_logf("Transform(%.2f, %.2f)", test.position.x, test.position.y); } }; int main() { - auto & cfg = api::Config::get_instance(); - cfg.log.level = util::LogLevel::TRACE; - + // Create game object with Transform and BehaviorScript components auto obj = GameObject(0, "name", "tag", 0); - Point point = { - .x = 1.2, - .y = 3.4, - }; - obj.add_component<Transform>(point, 0, 0); + obj.add_component<Transform>(Point { .x = 1.2, .y = 3.4, }, 0, 0); obj.add_component<BehaviorScript>().set_script<MyScript>(); + // Get ScriptSystem singleton instance (this would normally be done from the + // game loop) auto & sys = ScriptSystem::get_instance(); - sys.update(); // -> MyScript::update + // Update all scripts. This should result in MyScript::update being called + sys.update(); - return 0; + return EXIT_SUCCESS; } + |