diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-02 18:23:09 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-02 18:23:09 -0400 |
commit | 6614ea639414caab546091841bf920fe6459cc9e (patch) | |
tree | 408df7aeb419ed6e096512d371f499ac6732cade /src/components/Component.hpp | |
parent | 0466537f81106f679c0b291be26861862c43c13c (diff) |
json entity saving: cout
Diffstat (limited to 'src/components/Component.hpp')
-rw-r--r-- | src/components/Component.hpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/components/Component.hpp b/src/components/Component.hpp index 5a062bd..2928366 100644 --- a/src/components/Component.hpp +++ b/src/components/Component.hpp @@ -18,13 +18,27 @@ #ifndef COMPONENT_HPP_ #define COMPONENT_HPP_ +#include <cereal/cereal.hpp> +#include <cereal/archives/json.hpp> + +#include <entityx/entityx.h> #include <sol/sol.hpp> template<typename T> -class Component +class Component : public entityx::Component<T> { public: virtual T FromLua(sol::object) = 0; + + virtual void serialize(cereal::JSONOutputArchive& ar) = 0; + virtual void serialize(cereal::JSONInputArchive& ar) = 0; + + void internal_serialize(bool save, void *ar) final { + if (save) + serialize(*reinterpret_cast<cereal::JSONOutputArchive*>(ar)); + else + serialize(*reinterpret_cast<cereal::JSONInputArchive*>(ar)); + } }; #endif // COMPONENT_HPP_ |