From 6441c3e2081abe085b98578b67253f0f3ade0ca2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 3 Sep 2019 13:06:58 -0400 Subject: save json to file --- .gitignore | 1 + src/engine.cpp | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index da93793..65892b3 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ out .*.swp .*.swo *.o +*.json diff --git a/src/engine.cpp b/src/engine.cpp index 539515c..afd325d 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -30,6 +30,8 @@ #include "components/Position.hpp" #include "components/Velocity.hpp" +#include + using namespace std::chrono_literals; namespace cr = std::chrono; typedef std::chrono::high_resolution_clock mc; @@ -117,7 +119,8 @@ void Engine::run(void) // Done, bring logic thread back logicThread.join(); - cereal::JSONOutputArchive archive (std::cout); + std::ofstream saveFile ("save.json"); + cereal::JSONOutputArchive archive (saveFile); std::string name ("entity"); int i = 0; for (entityx::Entity e : entities.entities_for_debugging()) { @@ -126,7 +129,6 @@ void Engine::run(void) entities.entity_serialize(e, true, archive); archive.finishNode(); } - std::cout << std::endl; } bool Engine::shouldRun(void) -- cgit v1.2.3