NcEngine
Transform.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "Component.h"
8
10
11#include <span>
12#include <vector>
13
14namespace nc
15{
16namespace ecs
17{
18class EcsModule;
19}
20
32class Transform final : public ComponentBase
33{
34 public:
35 Transform(Entity entity, const Vector3& pos, const Quaternion& rot, const Vector3& scale)
36 : ComponentBase(entity),
37 m_localMatrix{ComposeMatrix(scale, rot, pos)},
38 m_worldMatrix{m_localMatrix}
39 {
40 NC_ASSERT(!HasAnyZeroElement(scale), "Invalid scale(elements cannot be 0)");
41 }
42
43 Transform(Entity entity,
44 const Vector3& pos,
45 const Quaternion& rot,
46 const Vector3& scale,
47 DirectX::FXMMATRIX parentTransform)
48 : ComponentBase(entity),
49 m_localMatrix{ComposeMatrix(scale, rot, pos)},
50 m_worldMatrix{m_localMatrix * parentTransform}
51 {
52 NC_ASSERT(!HasAnyZeroElement(scale), "Invalid scale(elements cannot be 0)");
53 }
54
55 Transform(Transform&&) = default;
56 Transform& operator=(Transform&&) = default;
57 ~Transform() = default;
58 Transform(const Transform&) = delete;
59 Transform& operator=(const Transform&) = delete;
60
62 auto Position() const noexcept -> Vector3 { return ToVector3(PositionXM()); }
63
65 auto PositionXM() const noexcept -> DirectX::FXMVECTOR { return m_worldMatrix.r[3]; }
66
68 auto LocalPosition() const noexcept -> Vector3 { return ToVector3(LocalPositionXM()); }
69
71 auto LocalPositionXM() const noexcept -> DirectX::FXMVECTOR { return m_localMatrix.r[3]; }
72
74 auto Rotation() const noexcept -> Quaternion { return ToQuaternion(RotationXM()); }
75
77 auto RotationXM() const noexcept -> DirectX::XMVECTOR { return DecomposeRotation(m_worldMatrix); }
78
80 auto LocalRotation() const noexcept -> Quaternion { return ToQuaternion(LocalRotationXM()); }
81
83 auto LocalRotationXM() const noexcept -> DirectX::XMVECTOR { return DecomposeRotation(m_localMatrix); }
84
86 auto Scale() const noexcept -> Vector3 { return ToVector3(ScaleXM()); }
87
89 auto ScaleXM() const noexcept -> DirectX::XMVECTOR { return DecomposeScale(m_worldMatrix); }
90
92 auto LocalScale() const noexcept -> Vector3 { return ToVector3(LocalScaleXM()); }
93
95 auto LocalScaleXM() const noexcept -> DirectX::XMVECTOR { return DecomposeScale(m_localMatrix); }
96
98 auto TransformationMatrix() const noexcept -> DirectX::FXMMATRIX { return m_worldMatrix; }
99
101 auto LocalTransformationMatrix() const noexcept -> DirectX::FXMMATRIX { return m_localMatrix; }
102
104 auto ToLocalSpace(const Vector3& vec) const -> Vector3;
105
107 auto Up() const noexcept -> Vector3 { return ToVector3(UpXM()); }
108
110 auto UpXM() const noexcept -> DirectX::XMVECTOR;
111
113 auto Forward() const noexcept -> Vector3 { return ToVector3(ForwardXM()); }
114
116 auto ForwardXM() const noexcept -> DirectX::XMVECTOR;
117
119 auto Right() const noexcept -> Vector3 { return ToVector3(RightXM()); }
120
122 auto RightXM() const noexcept -> DirectX::XMVECTOR;
123
125 void Set(const Vector3& pos, const Quaternion& quat, const Vector3& scale);
126
128 void Set(const Vector3& pos, const Vector3& angles, const Vector3& scale);
129
131 void SetPosition(const Vector3& pos);
132
134 void SetRotation(const Quaternion& quat);
135
137 void SetRotation(const Vector3& angles);
138
140 void SetScale(const Vector3& scale);
141
143 void SetPositionAndRotationXM(DirectX::FXMVECTOR position, DirectX::FXMVECTOR orientation)
144 {
145 const auto scale = DecomposeScale(m_localMatrix);
146 m_localMatrix = DirectX::XMMatrixScalingFromVector(scale) *
147 DirectX::XMMatrixRotationQuaternion(orientation);
148 m_localMatrix.r[3] = DirectX::XMVectorSetW(position, 1.0f);
149 m_dirty = true;
150 }
151
153 void Translate(const Vector3& vec);
154
156 void Translate(DirectX::FXMVECTOR translation);
157
159 void TranslateLocalSpace(const Vector3& vec);
160
162 void Rotate(const Quaternion& quat);
163
165 void Rotate(DirectX::FXMVECTOR quaternion);
166
168 void Rotate(const Vector3& axis, float radians);
169
171 void RotateAround(const Vector3& point, const Vector3& axis, float radians);
172
174 void LookAt(const Vector3& target);
175
176 private:
177 friend class ecs::EcsModule;
178 bool m_dirty = false;
179 DirectX::XMMATRIX m_localMatrix;
180 DirectX::XMMATRIX m_worldMatrix;
181
182 auto IsDirty() const noexcept
183 {
184 return m_dirty;
185 }
186
187 void UpdateWorldMatrix()
188 {
189 m_dirty = false;
190 m_worldMatrix = m_localMatrix;
191 }
192
193 void UpdateWorldMatrix(DirectX::FXMMATRIX parentMatrix)
194 {
195 m_dirty = false;
196 m_worldMatrix = m_localMatrix * parentMatrix;
197 }
198};
199} //end namespace nc
Optional base class for components.
Definition: Component.h:27
Identifies an object in the registry.
Definition: Entity.h:18
Component with translation, rotation, and scale properties.
Definition: Transform.h:33
auto Forward() const noexcept -> Vector3
Get the forward axis of the transform.
Definition: Transform.h:113
void SetPositionAndRotationXM(DirectX::FXMVECTOR position, DirectX::FXMVECTOR orientation)
Set local position and rotation from XMVECTORs.
Definition: Transform.h:143
void Rotate(DirectX::FXMVECTOR quaternion)
Apply a rotation quaternion to local rotation [XMVECTOR].
auto LocalScaleXM() const noexcept -> DirectX::XMVECTOR
Get local space scale as an XMVECTOR.
Definition: Transform.h:95
auto LocalRotationXM() const noexcept -> DirectX::XMVECTOR
Get local space rotation as an XMVECTOR.
Definition: Transform.h:83
auto Rotation() const noexcept -> Quaternion
Get world space rotation.
Definition: Transform.h:74
auto LocalScale() const noexcept -> Vector3
Get local space scale.
Definition: Transform.h:92
auto LocalPositionXM() const noexcept -> DirectX::FXMVECTOR
Get local space position as an XMVECTOR.
Definition: Transform.h:71
auto Position() const noexcept -> Vector3
Get world space position.
Definition: Transform.h:62
auto LocalTransformationMatrix() const noexcept -> DirectX::FXMMATRIX
Get local space matrix.
Definition: Transform.h:101
void SetRotation(const Quaternion &quat)
Set local rotation [Quaternion].
auto Right() const noexcept -> Vector3
Get the right axis of the transform.
Definition: Transform.h:119
void TranslateLocalSpace(const Vector3 &vec)
Rotate a vector into local space and add it to local position.
void SetPosition(const Vector3 &pos)
Set local position.
auto UpXM() const noexcept -> DirectX::XMVECTOR
Get the up axis of the transform as an XMVECTOR.
void Set(const Vector3 &pos, const Quaternion &quat, const Vector3 &scale)
Set all local values [Quaternion].
auto PositionXM() const noexcept -> DirectX::FXMVECTOR
Get world space position as an XMVECTOR.
Definition: Transform.h:65
void LookAt(const Vector3 &target)
Rotate to point towards a target position.
void Rotate(const Quaternion &quat)
Apply rotation quaternion to local rotation.
auto ToLocalSpace(const Vector3 &vec) const -> Vector3
Get local space matrix.
auto TransformationMatrix() const noexcept -> DirectX::FXMMATRIX
Get world space matrix.
Definition: Transform.h:98
void Translate(const Vector3 &vec)
Add to local position.
auto RightXM() const noexcept -> DirectX::XMVECTOR
Get the right axis of the transform as an XMVECTOR.
auto ScaleXM() const noexcept -> DirectX::XMVECTOR
Get world space scale as an XMVECTOR.
Definition: Transform.h:89
auto ForwardXM() const noexcept -> DirectX::XMVECTOR
Get the forward axis of the transform as an XMVECTOR.
auto Scale() const noexcept -> Vector3
Get world space scale.
Definition: Transform.h:86
auto LocalPosition() const noexcept -> Vector3
Get local space position.
Definition: Transform.h:68
void RotateAround(const Vector3 &point, const Vector3 &axis, float radians)
Apply a rotation about an axis passing through a point.
void Rotate(const Vector3 &axis, float radians)
Apply a rotation about an axis to local rotation.
auto RotationXM() const noexcept -> DirectX::XMVECTOR
Get world space rotation as an XMVECTOR.
Definition: Transform.h:77
void Translate(DirectX::FXMVECTOR translation)
Add to local position [XMVECTOR].
auto LocalRotation() const noexcept -> Quaternion
Get local space rotation.
Definition: Transform.h:80
void SetScale(const Vector3 &scale)
Set local scale.
auto Up() const noexcept -> Vector3
Get the up axis of the transform.
Definition: Transform.h:107
Quaternion type for representing 3D rotations.
Definition: Quaternion.h:13
A three component vector.
Definition: Vector.h:29