aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-03 13:35:13 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-03 13:35:13 -0400
commit752438f0be9e4940556ebcc633165cd0b9c17c6f (patch)
tree47edbcd5eaabf58d483abb77bf5f946e7eaf2532 /src/engine.cpp
parent6441c3e2081abe085b98578b67253f0f3ade0ca2 (diff)
json save and load, made GameState class
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index afd325d..9c0b09b 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -20,6 +20,7 @@
*/
#include "engine.hpp"
+#include "gamestate.hpp"
#include "gamerun.hpp"
#include "input.hpp"
#include "player.hpp"
@@ -45,7 +46,9 @@ int Engine::init(void)
systems.add<ScriptSystem>();
systems.configure();
+ // Load game script and entity data
systems.system<ScriptSystem>()->init();
+ GameState::load("save.json", entities);
return 0;
}
@@ -119,16 +122,8 @@ void Engine::run(void)
// Done, bring logic thread back
logicThread.join();
- std::ofstream saveFile ("save.json");
- cereal::JSONOutputArchive archive (saveFile);
- 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();
- }
+ // Save the entities' data
+ GameState::save("save.json", entities);
}
bool Engine::shouldRun(void)