NcEngine
PhysicsSnapshot.h
Go to the documentation of this file.
1
5#pragma once
6
8
9#include <any>
10#include <memory>
11#include <span>
12#include <vector>
13
14namespace nc
15{
17class PhysicsSnapshot final
18{
19 public:
21 PhysicsSnapshot(PhysicsTick tick, std::vector<uint8_t> bytes);
23 PhysicsSnapshot& operator=(PhysicsSnapshot&&) noexcept;
24 ~PhysicsSnapshot() noexcept;
25
27 auto IsValid() const -> bool { return !m_tick.IsNull(); }
28
30 auto GetTick() const -> PhysicsTick { return m_tick; }
31
33 auto GetSize() const -> size_t;
34
36 auto ViewBuffer() const -> std::span<const uint8_t>;
37
39 auto ExtractBuffer() -> std::vector<uint8_t>;
40
42 void ResetRead();
43
45 void Clear();
46
48 void Save(std::any physicsSystem, PhysicsTick tick);
49 auto Restore(std::any physicsSystem) -> bool;
50 void SetValidationMode(bool enabled);
53 protected:
54 class Impl;
55 std::unique_ptr<Impl> m_impl;
56 PhysicsTick m_tick = PhysicsTick::Null();
57};
58} // namespace nc
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