52 std::move_only_function<
bool(
Entity)> entityFilter =
nullptr);
std::unordered_map< asset::AssetType, std::vector< std::string > > AssetMap
A map of AssetType to a list of asset paths of that type.
Definition: NcAsset.h:31
constexpr auto g_sceneFragmentMagicNumber
Initial value in a binary scene fragment blob.
Definition: SceneSerialization.h:16
void SaveSceneFragment(std::ostream &stream, ecs::Ecs ecs, const asset::AssetMap &assets, std::move_only_function< bool(Entity)> entityFilter=nullptr)
Save current game state to a binary stream.
std::unordered_map< uint32_t, Entity > FragmentIdToEntityMap
A map of fragment ids to entities.
Definition: SceneSerialization.h:32
void LoadSceneFragment(std::istream &stream, ecs::Ecs ecs, ModuleProvider modules)
Load game state from a binary stream.
std::unordered_map< Entity, uint32_t, Entity::Hash > EntityToFragmentIdMap
A map of entities to their fragment ids.
Definition: SceneSerialization.h:29
constexpr auto g_currentSceneFragmentVersion
Version number serialized with a scene fragment.
Definition: SceneSerialization.h:19
Identifies an object in the registry.
Definition: Entity.h:18
Provides access to registered Modules.
Definition: ModuleProvider.h:15
Interface for higher-level entity and component operations with optional type access restriction.
Definition: Ecs.h:18
Context object passed to deserialization functions.
Definition: SceneSerialization.h:43
Context object passed to serialization functions.
Definition: SceneSerialization.h:36