NcEngine
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
Shape.h
Go to the documentation of this file.
1
5#pragma once
6
9#include "ncmath/Vector.h"
10
11namespace nc
12{
14enum class ShapeType : uint8_t
15{
16 Box,
17 Sphere,
18 Capsule,
20 Mesh,
21 Compound
22};
23
26 const Vector3& currentScale,
27 const Vector3& newScale) -> Vector3;
28
30struct Shape
31{
33 static constexpr auto MakeBox(const Vector3& extents = Vector3::Splat(1.0f)) -> Shape
34 {
35 return Shape{asset::NullAssetId, extents, ShapeType::Box};
36 }
37
39 static constexpr auto MakeSphere(float radius = 0.5f) -> Shape
40 {
41 return Shape{asset::NullAssetId, Vector3::Splat(radius * 2.0f), ShapeType::Sphere};
42 }
43
45 static constexpr auto MakeCapsule(float height = 2.0f,
46 float radius = 0.5f) -> Shape
47 {
48 return Shape{asset::NullAssetId, Vector3{radius * 2.0f, height * 0.5f, radius * 2.0f}, ShapeType::Capsule};
49 }
50
52 static constexpr auto MakeConvexHull(asset::AssetId assetId,
53 const Vector3& scale = Vector3::One()) -> Shape
54 {
55 return Shape{assetId, scale, ShapeType::ConvexHull};
56 }
57
62 static constexpr auto MakeMesh(asset::AssetId assetId,
63 const Vector3& scale = Vector3::One()) -> Shape
64 {
65 return Shape{assetId, scale, ShapeType::Mesh};
66 }
67
69 static constexpr auto MakeCompound(asset::AssetId assetId,
70 float scale = 1.0f) -> Shape
71 {
72 return Shape{assetId, Vector3::Splat(scale), ShapeType::Compound};
73 }
74
75 auto GetLocalScale() const -> const Vector3& { return m_localScale; }
76 auto GetAssetId() const -> asset::AssetId { return m_assetId; }
77 auto GetType() const -> ShapeType { return m_type; }
78
79 private:
80 constexpr Shape(asset::AssetId id, const Vector3& scale, ShapeType type)
81 : m_assetId{id}, m_localScale{scale}, m_type{type}
82 {
83 }
84
85 asset::AssetId m_assetId = asset::NullAssetId;
86 Vector3 m_localScale = Vector3::One();
87 ShapeType m_type;
88};
89} // namespace nc
ShapeType
Options for Shape geometry.
Definition: Shape.h:15
auto NormalizeScaleForShape(nc::ShapeType shape, const Vector3 &currentScale, const Vector3 &newScale) -> Vector3
Get a valid scale for a shape given its current and desired scale values.
Definition: Geometry.h:20
Definition: Geometry.h:27
Definition: Geometry.h:34
Describes collision geometry for physics types.
Definition: Shape.h:31
static constexpr auto MakeConvexHull(asset::AssetId assetId, const Vector3 &scale=Vector3::One()) -> Shape
Make a shape from a ConvexHull asset.
Definition: Shape.h:52
static constexpr auto MakeMesh(asset::AssetId assetId, const Vector3 &scale=Vector3::One()) -> Shape
Make a shape from a MeshCollider asset.
Definition: Shape.h:62
static constexpr auto MakeSphere(float radius=0.5f) -> Shape
Make a primitive sphere shape.
Definition: Shape.h:39
static constexpr auto MakeCapsule(float height=2.0f, float radius=0.5f) -> Shape
Make a primitive capsule shape.
Definition: Shape.h:45
static constexpr auto MakeBox(const Vector3 &extents=Vector3::Splat(1.0f)) -> Shape
Make a primitive box shape.
Definition: Shape.h:33
static constexpr auto MakeCompound(asset::AssetId assetId, float scale=1.0f) -> Shape
Make a shape from a CompoundShape asset.
Definition: Shape.h:69
Definition: Geometry.h:14
A three component vector.
Definition: Vector.h:29