aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp6
1 files changed, 4 insertions, 2 deletions
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 <fstream>
+
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)