NcEngine
CookedShape.h
Go to the documentation of this file.
1
5#pragma once
6
8#include "ncmath/Quaternion.h"
9
10namespace nc
11{
14{
15 using type = uint8_t;
16
17 static constexpr type None = 0; // shape matches ShapeType exactly
18 static constexpr type HasScalingTransformation = 1 << 0; // shape has additional scaling; never set for primitives
19 static constexpr type HasIsometricTransformation = 1 << 1; // shape has position/rotation offsets
20 static constexpr type IsStaticCompound = 1 << 2; // shape was cooked as a static compound
21};
22
25{
26 ShapeType type = ShapeType::Box;
27 ShapeDecorationFlags::type decorations = ShapeDecorationFlags::None;
28};
29
32{
33 public:
35 {
36 unsigned char buffer[8];
37 };
38
40 CookedShape(const Shape& shape);
41
43 CookedShape(const Shape& shape, const Vector3& position, const Quaternion& rotation);
44
46 CookedShape(const ShapeStorage& cookedData);
47
48 CookedShape(CookedShape&& other) noexcept;
49 CookedShape& operator=(CookedShape&& other) noexcept;
50 CookedShape(const CookedShape&) = delete;
51 CookedShape& operator=(const CookedShape&) = delete;
52 ~CookedShape() noexcept;
53
55 auto HasShape() const noexcept -> bool;
56
59
61 auto GetPosition() const -> Vector3;
62
64 auto GetRotation() const -> Quaternion;
65
67 void SetPositionAndRotation(const Vector3& position, const Quaternion& rotation);
68
70 auto GetShapeData() const -> const ShapeStorage& { return m_storage; }
73 private:
74 ShapeStorage m_storage;
75};
76} // namespace nc
ShapeType
Options for Shape geometry.
Definition: Shape.h:15
Handle to a processed Shape instance.
Definition: CookedShape.h:32
auto HasShape() const noexcept -> bool
Check if the internal shape is still valid (e.g. hasn't been moved from).
void SetPositionAndRotation(const Vector3 &position, const Quaternion &rotation)
Partially recook the shape with a new position and rotation.
auto GetProperties() const -> CookedShapeProperties
Get the type and decorations of the CookedShape.
auto GetPosition() const -> Vector3
Get the shape's translation (will be the origin, unless the shape was cooked with a position).
CookedShape(const ShapeStorage &cookedData)
Construct from existing cooked data.
CookedShape(const Shape &shape)
Cook from a Shape.
auto GetRotation() const -> Quaternion
Get the shape's rotation (will be identity, unless the shape was cooked with a rotation).
CookedShape(const Shape &shape, const Vector3 &position, const Quaternion &rotation)
Cook from a Shape, applying additional transformations.
Definition: CookedShape.h:35
Properties of a CookedShape.
Definition: CookedShape.h:25
Quaternion type for representing 3D rotations.
Definition: Quaternion.h:13
Flags describing internal structure of a CookedShape.
Definition: CookedShape.h:14
Describes collision geometry for physics types.
Definition: Shape.h:31
A three component vector.
Definition: Vector.h:29