NcEngine
CompoundShape.h
1
5#pragma once
6
10#include "ncmath/Quaternion.h"
11
12#include <memory>
13
14namespace nc
15{
17using SubShapeIndex = uint32_t;
18
21{
23 Vector3 position = Vector3::Zero();
24 Quaternion rotation = Quaternion::Identity();
25 uint32_t userData = 0;
26};
27
32auto CreateMutableCompoundShape(std::span<const SubShapeInfo> shapes) -> CookedShape;
33
38auto CreateStaticCompoundShape(std::span<const SubShapeInfo> shapes) -> CookedShape;
39
48{
49 public:
52 ~CompoundShapeBuilder() noexcept;
53
55 auto GetSubShapeCount() const -> uint32_t;
56
61 auto GetSubShapeIndex(uint32_t userData) const -> SubShapeIndex;
62
64 auto GetSubShapePosition(SubShapeIndex index) const -> Vector3;
65
67 auto GetSubShapeRotation(SubShapeIndex index) const -> Quaternion;
68
70 auto AddSubShape(const SubShapeInfo& info) -> SubShapeIndex;
71
73 void RemoveSubShape(SubShapeIndex index);
74
76 void ModifySubShape(SubShapeIndex index,
77 const Vector3& position,
78 const Quaternion& rotation);
79
81 void ReplaceSubShape(SubShapeIndex index,
82 const SubShapeInfo& info);
83
86
87 private:
88 class Impl;
89 std::unique_ptr<Impl> m_impl;
90};
91} // namespace nc
Interface for modifying a mutable CompoundShape.
Definition: CompoundShape.h:48
void ModifySubShape(SubShapeIndex index, const Vector3 &position, const Quaternion &rotation)
Update the position and rotation of a SubShape.
auto AddSubShape(const SubShapeInfo &info) -> SubShapeIndex
Add a new SubShape.
auto GetSubShapePosition(SubShapeIndex index) const -> Vector3
Get the local position of a SubShape.
void RecalculateCenterOfMass()
Update internal COM offsets, if the shape has been modified significantly.
auto GetSubShapeRotation(SubShapeIndex index) const -> Quaternion
Get the local rotation of a SubShape.
auto GetSubShapeIndex(uint32_t userData) const -> SubShapeIndex
Get the index of the SubShape with userData.
void RemoveSubShape(SubShapeIndex index)
Remove the SubShape at index.
CompoundShapeBuilder(CookedShape &shape)
Construct a builder from a cooked mutable CompoundShape.
void ReplaceSubShape(SubShapeIndex index, const SubShapeInfo &info)
Replace the SubShape matching shapeId (user data will be unchanged).
auto GetSubShapeCount() const -> uint32_t
Get the number of SubShapes.
Handle to a processed Shape instance.
Definition: CookedShape.h:32
Quaternion type for representing 3D rotations.
Definition: Quaternion.h:13
Describes collision geometry for physics types.
Definition: Shape.h:31
static constexpr auto MakeBox(const Vector3 &extents=Vector3::Splat(1.0f)) -> Shape
Make a primitive box shape.
Definition: Shape.h:33
Describes a SubShape to be added to a compound shape.
Definition: CompoundShape.h:21
Shape shape
subshape info; supported types depend on mutable/static build option
Definition: CompoundShape.h:22
Quaternion rotation
local rotation of the subshape
Definition: CompoundShape.h:24
uint32_t userData
optional data for the subshape
Definition: CompoundShape.h:25
Vector3 position
local position of the subshape
Definition: CompoundShape.h:23
A three component vector.
Definition: Vector.h:29