10#include "ncengine/type/EngineId.h"
27struct PhysicsSettings;
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;
80 virtual void BeginRigidBodyBatch(
size_t bodyCountHint = 0ull) = 0;
81 virtual void EndRigidBodyBatch() = 0;
90 virtual void AddRuntimeCompoundShape(
const CookedShape& cookedShape, asset::AssetId
id) = 0;
91 virtual void RemoveRuntimeCompoundShape(asset::AssetId
id) = 0;
92 virtual void RemoveAllRuntimeCompoundShapes() = 0;
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