diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-17 15:36:26 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-17 15:36:26 -0400 |
commit | 145d74e433216f8c17475685c553321ca4cbedf3 (patch) | |
tree | 58a06bc92cf13ae9587015cd6b9fc6dd34f919ba /src/engine.cpp | |
parent | 927348d9d8eb16b469c23ef32486bea5f94c5469 (diff) |
text rendering in-place; but something's missing
Diffstat (limited to 'src/engine.cpp')
-rw-r--r-- | src/engine.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index 70b0b45..703b45e 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -58,6 +58,10 @@ int Engine::init(void) [this](std::string name, std::string file, int size) { systems.system<TextSystem>().get()->loadFont(name, file, size); }); + script->addToGameNamespace("puts", + [this](std::string name, float x, float y, std::string text) { + systems.system<TextSystem>().get()->put(name, x, y, text); + }); script->init(); @@ -138,6 +142,7 @@ void Engine::renderLoop(void) { entityx::TimeDelta dt = 0; /**< Elapsed milliseconds since each loop */ while (shouldRun()) { + systems.update<TextSystem>(dt); systems.update<RenderSystem>(dt); } } |