NcEngine
SceneSerialization.h File Reference
#include "ncengine/asset/NcAsset.h"
#include "ncengine/ecs/Ecs.h"
#include "ncengine/module/ModuleProvider.h"
#include <iosfwd>

Go to the source code of this file.

Classes

struct  nc::SceneFragmentHeader
 Header for a binary scene fragment blob. More...
 
struct  nc::SerializationContext
 Context object passed to serialization functions. More...
 
struct  nc::DeserializationContext
 Context object passed to deserialization functions. More...
 

Typedefs

using nc::EntityToFragmentIdMap = std::unordered_map< Entity, uint32_t, Entity::Hash >
 A map of entities to their fragment ids.
 
using nc::FragmentIdToEntityMap = std::unordered_map< uint32_t, Entity >
 A map of fragment ids to entities.
 

Functions

void nc::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.
 
void nc::LoadSceneFragment (std::istream &stream, ecs::Ecs ecs, ModuleProvider modules)
 Load game state from a binary stream.
 

Variables

constexpr auto nc::g_sceneFragmentMagicNumber = 0x3ff0e17b
 Initial value in a binary scene fragment blob.
 
constexpr auto nc::g_currentSceneFragmentVersion = 3u
 Version number serialized with a scene fragment.
 

Detailed Description