NcEngine
NcPhysics.h
Go to the documentation of this file.
1
5#pragma once
6
10#include "ncengine/type/EngineId.h"
11
12#include <memory>
13
14namespace nc
15{
16class CookedShape;
17struct SystemEvents;
18
19namespace asset
20{
21class NcAsset;
22} // namespace asset
23
24namespace config
25{
26struct MemorySettings;
27struct PhysicsSettings;
28} // namespace config
29
38struct NcPhysics : public Module
39{
40 explicit NcPhysics() noexcept
41 : Module{NcPhysicsId} {}
42
44 virtual auto IsUpdateEnabled() const -> bool { return true; }
45
47 virtual void EnableUpdate(bool) {}
48
60 virtual auto GetTick() const -> PhysicsTick = 0;
61 virtual void ResetTick(PhysicsTick tick = PhysicsTick{0}) = 0;
62 virtual void Tick(uint32_t steps = 1) = 0;
63 virtual void SyncTransforms() = 0;
64 virtual void SyncTransformsInterpolated(float factor) = 0;
65 virtual void DispatchAccumulatedEvents() = 0;
66 virtual void SaveSnapshot(PhysicsSnapshot& snapshot) = 0;
67 virtual auto RestoreSnapshot(PhysicsSnapshot& snapshot) -> bool = 0;
68
80 virtual void BeginRigidBodyBatch(size_t bodyCountHint = 0ull) = 0;
81 virtual void EndRigidBodyBatch() = 0;
82
90 virtual void AddRuntimeCompoundShape(const CookedShape& cookedShape, asset::AssetId id) = 0;
91 virtual void RemoveRuntimeCompoundShape(asset::AssetId id) = 0;
92 virtual void RemoveAllRuntimeCompoundShapes() = 0;
93};
94
96auto BuildPhysicsModule(const config::MemorySettings& memorySettings,
97 const config::PhysicsSettings& physicsSettings,
98 ecs::Ecs world,
99 asset::NcAsset& ncAsset,
100 const task::AsyncDispatcher& dispatcher,
101 SystemEvents& events) -> std::unique_ptr<NcPhysics>;
102} // namespace nc
auto BuildPhysicsModule(const config::MemorySettings &memorySettings, const config::PhysicsSettings &physicsSettings, ecs::Ecs world, asset::NcAsset &ncAsset, const task::AsyncDispatcher &dispatcher, SystemEvents &events) -> std::unique_ptr< NcPhysics >
Build an NcPhysics module instance.
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
Type safe wrapper representing a timepoint in the physics simulation.
Definition: PhysicsTick.h:16
Asset module interface.
Definition: NcAsset.h:35
Interface for higher-level entity and component operations with optional type access restriction.
Definition: Ecs.h:18
Dispatcher for running tasks on the thread pool outside of a TaskGraph.
Definition: AsyncDispatcher.h:13
Physics module interface.
Definition: NcPhysics.h:39
virtual void EnableUpdate(bool)
Toggle physics update step on or off.
Definition: NcPhysics.h:47
virtual auto IsUpdateEnabled() const -> bool
Check if the physics update step is enabled.
Definition: NcPhysics.h:44
Signals for internal engine events.
Definition: Events.h:14
Options for configuring pre-allocated pools.
Definition: Config.h:53
Options for configuring NcPhysics.
Definition: Config.h:86