From 1549ecad22294cae6f1a2e6e6b256b2192b0c3d3 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Wed, 4 Sep 2019 02:58:07 -0400 Subject: Values in entity table are now saved in the save file --- src/components/Script.hpp | 56 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 2 deletions(-) (limited to 'src/components/Script.hpp') diff --git a/src/components/Script.hpp b/src/components/Script.hpp index f792750..82381e9 100644 --- a/src/components/Script.hpp +++ b/src/components/Script.hpp @@ -20,6 +20,8 @@ #define COMPONENT_SCRIPT_HPP_ #include "Component.hpp" +#include +#include struct Scripted : Component { @@ -61,8 +63,58 @@ public: caller["RenderIdle"](caller); } - void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {} - void serialize([[maybe_unused]] cereal::JSONInputArchive& ar) final {} + void serialize(cereal::JSONOutputArchive& ar) final { + std::vector> table_components; + caller.for_each([&table_components](sol::object key, sol::object value){ + if (value.get_type() == sol::type::string) + table_components.push_back(std::make_tuple( + key.as(), + std::string("return \"" + value.as() + "\"") + )); + else if (value.get_type() == sol::type::number) + table_components.push_back(std::make_tuple( + key.as(), + std::string("return " + value.as()) + )); + else if (value.get_type() == sol::type::boolean) + table_components.push_back(std::make_tuple( + key.as(), + std::string("return " + value.as()) + )); + //else if (value.get_type() == sol::type::function) { + // sol::state lua; + // lua.open_libraries(sol::lib::base, sol::lib::string); + + // sol::function dump = lua.script("return string.dump"); + + // sol::function f = value; + // std::string gg = dump(f); + // table_components.push_back(std::make_tuple( + // key.as(), + // std::string("return (loadstring or load)(" + + // gg + ")") + // )); + //} + }); + + ar(CEREAL_NVP(table_components)); + } + + void serialize(cereal::JSONInputArchive& ar) final { + sol::state lua; + lua.open_libraries(sol::lib::base, sol::lib::math, sol::lib::string); + + std::vector> table_components; + ar(CEREAL_NVP(table_components)); + + for (auto &s : table_components) { + std::string key = std::get<0>(s); + std::string value = std::get<1>(s); + sol::object ret = lua.script(value); + caller[key.c_str()] = ret; + } + + } std::string serializeName(void) const final { return "Scripted"; -- cgit v1.2.3