From bdc0e843a4762a1abddebc53d12a351debe8d457 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 19 Aug 2022 20:52:59 -0400 Subject: add cereal and entityx submodules; fix compile errors --- src/components/Audio.hpp | 2 +- src/components/Component.hpp | 2 +- src/components/EventListener.hpp | 2 +- src/components/Light.hpp | 2 +- src/components/Name.hpp | 2 +- src/components/Physics.hpp | 2 +- src/components/Player.hpp | 2 +- src/components/Position.hpp | 2 +- src/components/Render.hpp | 2 +- src/components/Script.hpp | 2 +- src/components/Velocity.hpp | 2 +- src/gamestate.hpp | 26 +++++++++++++++++++++++++- 12 files changed, 36 insertions(+), 12 deletions(-) (limited to 'src') 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(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..d7bc147 100644 --- a/src/components/Script.hpp +++ b/src/components/Script.hpp @@ -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/gamestate.hpp b/src/gamestate.hpp index 55f4e47..86a4198 100644 --- a/src/gamestate.hpp +++ b/src/gamestate.hpp @@ -27,6 +27,30 @@ #include +struct EntitySerializer +{ + template + static void serialize(entityx::EntityManager& entities, entityx::Entity entity, bool save, Archive& ar) + { + // TODO try and reimplement without modifying entityx? + // Or, make a new branch... + + //const auto mask = entity.component_mask(); + + //for (size_t i = 0; i < entities.component_helpers_.size(); i++) { + // auto helper = entities.component_helpers_[i]; + // if (helper && mask.test(i)) { + // auto* c = helper->get_component(entity); + // ar.setNextName(c->serializeName().c_str()); + // ar.startNode(); + // c->internal_serialize(save, static_cast(&ar)); + // ar.finishNode(); + // } + //} + } +}; + + /** * @class GameState * Manages save files that contain entity data. @@ -98,7 +122,7 @@ 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); + EntitySerializer::serialize(entities, entity, save, archive); archive.finishNode(); } } -- cgit v1.2.3 From 2364287a961fa9c860e1146bbcc3391ec5b1fd54 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 19 Aug 2022 20:53:21 -0400 Subject: add entityx config.h --- src/entityx/config.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/entityx/config.h (limited to 'src') 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 +#include + +namespace entityx { + +static const size_t MAX_COMPONENTS = 64; +typedef double TimeDelta; + +} // namespace entityx -- cgit v1.2.3 From ea719de76706140ce87f16fd9bde61c0e665d089 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 20 Aug 2022 11:15:45 -0400 Subject: fix serialization support --- .gitmodules | 2 +- Makefile | 8 +++++--- lib/entityx | 2 +- lib/soil/Makefile | 4 ++++ src/components/Script.hpp | 2 +- src/gamestate.hpp | 32 +++++++------------------------- 6 files changed, 19 insertions(+), 31 deletions(-) create mode 100644 lib/soil/Makefile (limited to 'src') diff --git a/.gitmodules b/.gitmodules index 911085e..812302f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,7 +4,7 @@ [submodule "lib/entityx"] path = lib/entityx url = https://github.com/tcsullivan/entityx - branch = remove-std-iterator + branch = serialize [submodule "lib/cereal"] path = lib/cereal url = https://github.com/USCiLab/cereal diff --git a/Makefile b/Makefile index db7c130..cc46888 100644 --- a/Makefile +++ b/Makefile @@ -68,6 +68,8 @@ directories: clean: @echo " CLEAN" @$(RM) -rf $(OUTDIR) + +cleanall: clean @$(RM) -f lib/libentityx.a lib/libluajit.a lib/libsoil.a cleaner: clean @@ -96,8 +98,8 @@ lib/libluajit.a: @cp lib/luajit/src/libluajit.a lib/libluajit.a lib/libsoil.a: - @gcc -c lib/soil/soil/*.c - @ar rcs lib/libsoil.a lib/soil/soil/*.o + @make -Clib/soil -j4 + @cp lib/soil/libsoil.a lib/libsoil.a -.PHONY: all remake clean cleaner resources +.PHONY: all remake clean cleaner cleanall resources diff --git a/lib/entityx b/lib/entityx index 39e0709..e04b856 160000 --- a/lib/entityx +++ b/lib/entityx @@ -1 +1 @@ -Subproject commit 39e07099da7227d7d7baec072411ddc0abfd8be4 +Subproject commit e04b856006cfe6b7e8ba5d6c1434331351cc791a diff --git a/lib/soil/Makefile b/lib/soil/Makefile new file mode 100644 index 0000000..0b67b7c --- /dev/null +++ b/lib/soil/Makefile @@ -0,0 +1,4 @@ +all: + @gcc -c soil/*.c + @ar rcs libsoil.a *.o + diff --git a/src/components/Script.hpp b/src/components/Script.hpp index d7bc147..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("return " + value.as()) + std::string("return ") + std::to_string(value.as()) )); else if (value.get_type() == sol::type::boolean) { table_components.push_back(std::make_tuple( diff --git a/src/gamestate.hpp b/src/gamestate.hpp index 86a4198..3ef641f 100644 --- a/src/gamestate.hpp +++ b/src/gamestate.hpp @@ -27,30 +27,6 @@ #include -struct EntitySerializer -{ - template - static void serialize(entityx::EntityManager& entities, entityx::Entity entity, bool save, Archive& ar) - { - // TODO try and reimplement without modifying entityx? - // Or, make a new branch... - - //const auto mask = entity.component_mask(); - - //for (size_t i = 0; i < entities.component_helpers_.size(); i++) { - // auto helper = entities.component_helpers_[i]; - // if (helper && mask.test(i)) { - // auto* c = helper->get_component(entity); - // ar.setNextName(c->serializeName().c_str()); - // ar.startNode(); - // c->internal_serialize(save, static_cast(&ar)); - // ar.finishNode(); - // } - //} - } -}; - - /** * @class GameState * Manages save files that contain entity data. @@ -122,7 +98,13 @@ private: for (auto entity : entities.entities_for_debugging()) { archive.setNextName((name + std::to_string(i++)).c_str()); archive.startNode(); - EntitySerializer::serialize(entities, entity, save, archive); + entities.serialize(entity, + [&archive, &save](auto c) { + archive.setNextName(c->serializeName().c_str()); + archive.startNode(); + c->internal_serialize(save, static_cast(&archive)); + archive.finishNode(); + }); archive.finishNode(); } } -- cgit v1.2.3