27 auto IsValid() const ->
bool {
return !m_tick.IsNull(); }
48 void Save(std::any physicsSystem,
PhysicsTick tick);
49 auto Restore(std::any physicsSystem) ->
bool;
50 void SetValidationMode(
bool enabled);
55 std::unique_ptr<Impl> m_impl;
Holds serialized physics state for performing physics simulation rollbacks.
Definition: PhysicsSnapshot.h:18
void Clear()
Clear any recorded state.
auto GetTick() const -> PhysicsTick
Get the PhysicsTick the snapshot was taken at, or PhysicsTick::Null() if invalid.
Definition: PhysicsSnapshot.h:30
void ResetRead()
Set the read position back to the beginning of the snapshot.
auto GetSize() const -> size_t
Get the size of the snapshot in bytes.
auto IsValid() const -> bool
Check if the snapshot has recorded state.
Definition: PhysicsSnapshot.h:27
auto ExtractBuffer() -> std::vector< uint8_t >
Extract the serialized bytes, clearing the snapshot.
auto ViewBuffer() const -> std::span< const uint8_t >
Get a view over the serialized bytes.
Type safe wrapper representing a timepoint in the physics simulation.
Definition: PhysicsTick.h:16