A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Vector.cc
1#include "Vector.hh"
2
3namespace EGG {
4
6f32 Vector2f::normalise() {
7 f32 len = length();
8 if (len != 0.0f) {
9 *this = *this * (1.0f / len);
10 }
11
12 return len;
13}
14
16void Vector2f::read(Stream &stream) {
17 x = stream.read_f32();
18 y = stream.read_f32();
19}
20
22f32 Vector3f::ps_dot() const {
23 return ps_dot(*this);
24}
25
28f32 Vector3f::ps_dot(const Vector3f &rhs) const {
29 f32 y_ = y * rhs.y;
30 f32 xy = Mathf::fma(x, rhs.x, y_);
31 return xy + z * rhs.z;
32}
33
36 f32 x_ = x * x;
37 f32 zx = Mathf::fma(z, z, x_);
38 return zx + y * y;
39}
40
45 f32 len = 0.0f;
46
47 if (squaredLength() > std::numeric_limits<f32>::epsilon()) {
48 len = length();
49 *this *= (1.0f / len);
50 }
51
52 return len;
53}
54
56void Vector3f::normalise2() {
57 f32 sqLen = squaredLength();
58 if (sqLen > std::numeric_limits<f32>::epsilon()) {
59 *this *= Mathf::frsqrt(sqLen);
60 }
61}
62
66 Vector3f out;
67
68 out.x = x > rhs.x ? x : rhs.x;
69 out.y = y > rhs.y ? y : rhs.y;
70 out.z = z > rhs.z ? z : rhs.z;
71
72 return out;
73}
74
78 Vector3f out;
79
80 out.x = x < rhs.x ? x : rhs.x;
81 out.y = y < rhs.y ? y : rhs.y;
82 out.z = z < rhs.z ? z : rhs.z;
83
84 return out;
85}
86
89f32 Vector3f::ps_sqDistance(const Vector3f &rhs) const {
90 const EGG::Vector3f diff = *this - rhs;
91 return diff.ps_dot();
92}
93
96Vector3f Vector3f::perpInPlane(const EGG::Vector3f &rhs, bool normalise) const {
97 if (Mathf::abs(dot(rhs)) == 1.0f) {
98 return EGG::Vector3f::zero;
99 }
100
101 f32 _x = (rhs.z * x - rhs.x * z) * rhs.z - (rhs.x * y - rhs.y * x) * rhs.y;
102 f32 _y = (rhs.x * y - rhs.y * x) * rhs.x - (rhs.y * z - rhs.z * y) * rhs.z;
103 f32 _z = (rhs.y * z - rhs.z * y) * rhs.y - (rhs.z * x - rhs.x * z) * rhs.x;
104
105 EGG::Vector3f ret(_x, _y, _z);
106
107 if (normalise) {
108 ret.normalise();
109 }
110
111 return ret;
112}
113
115void Vector3f::read(Stream &stream) {
116 x = stream.read_f32();
117 y = stream.read_f32();
118 z = stream.read_f32();
119}
120
121const Vector2f Vector2f::zero = Vector2f(0.0f, 0.0f);
122const Vector2f Vector2f::ex = Vector2f(1.0f, 0.0f);
123const Vector2f Vector2f::ey = Vector2f(0.0f, 1.0f);
124
125const Vector3f Vector3f::zero = Vector3f(0.0f, 0.0f, 0.0f);
126const Vector3f Vector3f::ex = Vector3f(1.0f, 0.0f, 0.0f);
127const Vector3f Vector3f::ey = Vector3f(0.0f, 1.0f, 0.0f);
128const Vector3f Vector3f::ez = Vector3f(0.0f, 0.0f, 1.0f);
129
131const Vector3f Vector3f::inf = Vector3f(std::numeric_limits<f32>::infinity(),
132 std::numeric_limits<f32>::infinity(), std::numeric_limits<f32>::infinity());
133
134} // namespace EGG
A stream of data, abstracted to allow for continuous seeking.
Definition Stream.hh:10
static f32 fma(f32 x, f32 y, f32 z)
Fused multiply-add operation.
Definition Math.hh:67
f32 frsqrt(f32 x)
Definition Math.cc:315
EGG core library.
Definition Archive.cc:6
A 2D float vector.
Definition Vector.hh:12
void read(Stream &stream)
Initializes a Vector2f by reading 8 bytes from the stream.
Definition Vector.cc:16
A 3D float vector.
Definition Vector.hh:83
f32 normalise()
Normalizes the vector and returns the original length.
Definition Vector.cc:44
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.
Definition Vector.hh:182
f32 length() const
The square root of the vector's dot product.
Definition Vector.hh:187
f32 squaredLength() const
The dot product between the vector and itself.
Definition Vector.hh:177
f32 ps_squareMag() const
Differs from ps_dot due to variation in which operands are fused.
Definition Vector.cc:35
void read(Stream &stream)
Initializes a Vector3f by reading 12 bytes from the stream.
Definition Vector.cc:115
Vector3f perpInPlane(const EGG::Vector3f &rhs, bool normalise) const
Calculates the orthogonal vector, based on the plane defined by this vector and rhs.
Definition Vector.cc:96
Vector3f maximize(const Vector3f &rhs) const
Returns a vector whose elements are the max of the elements of both vectors.
Definition Vector.cc:65
f32 ps_sqDistance(const Vector3f &rhs) const
Paired-singles impl. of sqDistance.
Definition Vector.cc:89
f32 ps_dot() const
Paired-singles dot product implementation.
Definition Vector.cc:22
Vector3f minimize(const Vector3f &rhs) const
Returns a vector whose elements are the min of the elements of both vectors.
Definition Vector.cc:77