From 6614ea639414caab546091841bf920fe6459cc9e Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 2 Sep 2019 18:23:09 -0400 Subject: json entity saving: cout --- src/engine.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/engine.cpp') diff --git a/src/engine.cpp b/src/engine.cpp index 61d119a..db31b9d 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -116,6 +116,16 @@ void Engine::run(void) // Done, bring logic thread back logicThread.join(); + + cereal::JSONOutputArchive archive (std::cout); + std::string name ("entity"); + int i = 0; + for (entityx::Entity e : entities.entities_for_debugging()) { + archive.setNextName((name + std::to_string(i++)).c_str()); + archive.startNode(); + entities.entity_serialize(e, true, archive); + archive.finishNode(); + } } bool Engine::shouldRun(void) -- cgit v1.2.3