diff options
author | clyne <clyne@bitgloo.com> | 2022-11-17 07:41:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 07:41:09 -0500 |
commit | 6663c25633a27fcc14d0648bd1afea7ea12f497f (patch) | |
tree | dcc2ec993db3c4b75c3e7e3df35b0494a9ce1f32 /src | |
parent | da0913771538fd9b1ca538615fd9aa0388608466 (diff) | |
parent | 57013add5b7c524086272be7d395f9ec5109bde2 (diff) |
Lib cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/components/Audio.hpp | 2 | ||||
-rw-r--r-- | src/components/Component.hpp | 2 | ||||
-rw-r--r-- | src/components/EventListener.hpp | 2 | ||||
-rw-r--r-- | src/components/Light.hpp | 2 | ||||
-rw-r--r-- | src/components/Name.hpp | 2 | ||||
-rw-r--r-- | src/components/Physics.hpp | 2 | ||||
-rw-r--r-- | src/components/Player.hpp | 2 | ||||
-rw-r--r-- | src/components/Position.hpp | 2 | ||||
-rw-r--r-- | src/components/Render.hpp | 2 | ||||
-rw-r--r-- | src/components/Script.hpp | 4 | ||||
-rw-r--r-- | src/components/Velocity.hpp | 2 | ||||
-rw-r--r-- | src/entityx/config.h | 11 | ||||
-rw-r--r-- | src/gamestate.hpp | 8 |
13 files changed, 30 insertions, 13 deletions
diff --git a/src/components/Audio.hpp b/src/components/Audio.hpp index a97b235..2bb63eb 100644 --- a/src/components/Audio.hpp +++ b/src/components/Audio.hpp @@ -47,7 +47,7 @@ public: void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {} void serialize([[maybe_unused]] cereal::JSONInputArchive& ar) final {} - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Audio"; } }; diff --git a/src/components/Component.hpp b/src/components/Component.hpp index 2928366..576a059 100644 --- a/src/components/Component.hpp +++ b/src/components/Component.hpp @@ -33,7 +33,7 @@ public: virtual void serialize(cereal::JSONOutputArchive& ar) = 0; virtual void serialize(cereal::JSONInputArchive& ar) = 0; - void internal_serialize(bool save, void *ar) final { + virtual void internal_serialize(bool save, void *ar) final { if (save) serialize(*reinterpret_cast<cereal::JSONOutputArchive*>(ar)); else diff --git a/src/components/EventListener.hpp b/src/components/EventListener.hpp index c39b6ad..fb55d95 100644 --- a/src/components/EventListener.hpp +++ b/src/components/EventListener.hpp @@ -52,7 +52,7 @@ public: void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {} void serialize([[maybe_unused]] cereal::JSONInputArchive& ar) final {} - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "EventListener"; } }; diff --git a/src/components/Light.hpp b/src/components/Light.hpp index 6849d7c..c63b6cc 100644 --- a/src/components/Light.hpp +++ b/src/components/Light.hpp @@ -58,7 +58,7 @@ public: ar(CEREAL_NVP(r), CEREAL_NVP(g), CEREAL_NVP(b), CEREAL_NVP(strength)); } - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Light"; } }; diff --git a/src/components/Name.hpp b/src/components/Name.hpp index a6a6d8a..6390d5e 100644 --- a/src/components/Name.hpp +++ b/src/components/Name.hpp @@ -47,7 +47,7 @@ public: ar(CEREAL_NVP(name)); } - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Name"; } }; diff --git a/src/components/Physics.hpp b/src/components/Physics.hpp index 378e87f..edf5ac5 100644 --- a/src/components/Physics.hpp +++ b/src/components/Physics.hpp @@ -33,7 +33,7 @@ public: void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {} void serialize([[maybe_unused]] cereal::JSONInputArchive& ar) final {} - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Physics"; } }; diff --git a/src/components/Player.hpp b/src/components/Player.hpp index a550c4f..43d083e 100644 --- a/src/components/Player.hpp +++ b/src/components/Player.hpp @@ -36,7 +36,7 @@ public: void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {} void serialize([[maybe_unused]] cereal::JSONInputArchive& ar) final {} - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Player"; } }; diff --git a/src/components/Position.hpp b/src/components/Position.hpp index 56e8707..fcd62f8 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -51,7 +51,7 @@ public: ar(CEREAL_NVP(x), CEREAL_NVP(y)); } - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Position"; } }; diff --git a/src/components/Render.hpp b/src/components/Render.hpp index 81ca591..93be5d8 100644 --- a/src/components/Render.hpp +++ b/src/components/Render.hpp @@ -62,7 +62,7 @@ public: ar(CEREAL_NVP(visible), CEREAL_NVP(flipX)); } - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Render"; } }; diff --git a/src/components/Script.hpp b/src/components/Script.hpp index 3f96be5..93997a9 100644 --- a/src/components/Script.hpp +++ b/src/components/Script.hpp @@ -74,7 +74,7 @@ public: else if (value.get_type() == sol::type::number) table_components.push_back(std::make_tuple( key.as<std::string>(), - std::string("return " + value.as<std::string>()) + std::string("return ") + std::to_string(value.as<double>()) )); else if (value.get_type() == sol::type::boolean) { table_components.push_back(std::make_tuple( @@ -119,7 +119,7 @@ public: } - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Scripted"; } }; diff --git a/src/components/Velocity.hpp b/src/components/Velocity.hpp index 776c1dd..f48a9f3 100644 --- a/src/components/Velocity.hpp +++ b/src/components/Velocity.hpp @@ -52,7 +52,7 @@ public: ar(CEREAL_NVP(x), CEREAL_NVP(y)); } - std::string serializeName(void) const final { + virtual std::string serializeName(void) const final { return "Velocity"; } }; diff --git a/src/entityx/config.h b/src/entityx/config.h new file mode 100644 index 0000000..630f8a8 --- /dev/null +++ b/src/entityx/config.h @@ -0,0 +1,11 @@ +#pragma once + +#include <cstdint> +#include <cstddef> + +namespace entityx { + +static const size_t MAX_COMPONENTS = 64; +typedef double TimeDelta; + +} // namespace entityx diff --git a/src/gamestate.hpp b/src/gamestate.hpp index 55f4e47..3ef641f 100644 --- a/src/gamestate.hpp +++ b/src/gamestate.hpp @@ -98,7 +98,13 @@ private: for (auto entity : entities.entities_for_debugging()) { archive.setNextName((name + std::to_string(i++)).c_str()); archive.startNode(); - entities.entity_serialize(entity, save, archive); + entities.serialize(entity, + [&archive, &save](auto c) { + archive.setNextName(c->serializeName().c_str()); + archive.startNode(); + c->internal_serialize(save, static_cast<void*>(&archive)); + archive.finishNode(); + }); archive.finishNode(); } } |