-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform.hpp
81 lines (61 loc) · 2.96 KB
/
transform.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#pragma once
#include <glm/glm.hpp>
#include <glm/gtc/quaternion.hpp>
#include <glm/gtx/quaternion.hpp>
#include "game/component.hpp"
#include "math/matrix.hpp"
class Transform final : public Component {
public:
glm::vec4 position, previousPosition{};
glm::vec3 scale, previousScale{};
glm::quat rotation{}, previousRotation{};
Transform() : position(0.0f, 0.0f, 0.0f, 1.0f), scale(1.0f), rotation(glm::quat()) { saveState(); }
explicit Transform(const glm::vec3 &position) : position(position, 1.0f), scale(1.0f), rotation(glm::quat()) {
saveState();
}
Transform(const glm::vec3 &position, const glm::vec3 &scale) :
position(position, 1.0f), scale(scale), rotation(glm::quat()) {
saveState();
}
Transform(const glm::vec3 &position, const glm::quat &quat) :
position(position, 1.0f), scale(1.0f), rotation(quat) {
saveState();
}
Transform(const glm::vec3 &position, const glm::vec3 &scale, const glm::vec3 &eulerRotation) :
position(position, 1.0f), scale(scale) {
setRotation(eulerRotation);
saveState();
}
Transform(const glm::vec3 &position, const glm::vec3 &scale, const glm::quat &quat) :
position(position, 1.0f), scale(scale), rotation(quat) {
saveState();
}
void saveState() {
previousPosition = position;
previousScale = scale;
previousRotation = rotation;
}
[[nodiscard]] glm::vec4 getPosition() const { return position; }
void setPosition(const glm::vec3 &position) { this->position = glm::vec4(position, 1.0f); }
[[nodiscard]] glm::vec3 getScale() const { return scale; }
void setScale(const glm::vec3 &scale) { this->scale = scale; }
[[nodiscard]] glm::quat getRotation() const { return rotation; }
void setRotation(const glm::vec3 &eulerRotation) { rotation = glm::quat(glm::radians(eulerRotation)); }
void setRotation(const glm::quat &rotation) { this->rotation = rotation; }
[[nodiscard]] glm::mat4 getModelMatrix() const {
glm::mat4 model = math::translateMatrix(position.x, position.y, position.z);
model *= glm::toMat4(rotation);
model *= math::scaleMatrix(scale.x, scale.y, scale.z);
return model;
}
[[nodiscard]] glm::mat4 getRotationMatrix() const { return glm::toMat4(rotation); }
[[nodiscard]] glm::vec3 getUp() const { return glm::normalize(glm::vec3(0.0f, 1.0f, 0.0f) * rotation); }
friend std::ostream &operator<<(std::ostream &os, const Transform &transform) {
os << "Position: " << transform.position.x << ", " << transform.position.y << ", " << transform.position.z
<< std::endl;
os << "Rotation: " << glm::eulerAngles(transform.rotation).x << ", " << glm::eulerAngles(transform.rotation).y
<< ", " << glm::eulerAngles(transform.rotation).z << std::endl;
os << "Scale: " << transform.scale.x << ", " << transform.scale.y << ", " << transform.scale.z << std::endl;
return os;
}
};