aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-16 12:46:44 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-16 12:46:44 -0400
commitdbb26902ed54ce308fdcec4697616e152f2894fd (patch)
tree13f6d840e6b300c10a1f6ff54051c12d9a4126e4 /src/engine.cpp
parent331e858d2dd0155b54b4bf9edfbbb84d3d5a8145 (diff)
success with font loading
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 66739ff..37f6e68 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -27,6 +27,7 @@
#include "script.hpp"
#include "render.hpp"
#include "physics.hpp"
+#include "text.hpp"
#include "components/EventListener.hpp"
#include "components/Script.hpp"
@@ -47,10 +48,18 @@ int Engine::init(void)
systems.add<RenderSystem>();
systems.add<ScriptSystem>(entities);
systems.add<PhysicsSystem>();
+ systems.add<TextSystem>();
systems.configure();
// Load game script and entity data
- systems.system<ScriptSystem>()->init();
+ auto* script = systems.system<ScriptSystem>().get();
+ script->addToGameNamespace("loadFont",
+ [this](std::string name, std::string file, int size) {
+ systems.system<TextSystem>().get()->loadFont(name, file, size);
+ });
+ script->init();
+
+
if (GameState::load("save.json", entities)) {
std::cout << "Loaded from save.json. Delete the file if you don't want "
"it." << std::endl;