A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectCollisionConvexHull.cc
1#include "ObjectCollisionConvexHull.hh"
2
3namespace Field {
4
10ObjectCollisionConvexHull::ObjectCollisionConvexHull(const std::span<const EGG::Vector3f> &points)
11 : ObjectCollisionConvexHull(points.size()) {
12 m_worldRadius = 70.0f;
13
14 for (size_t i = 0; i < points.size(); ++i) {
15 m_points[i] = points[i];
16 }
17}
18
20ObjectCollisionConvexHull::~ObjectCollisionConvexHull() {
21 delete[] m_points.data();
22 delete[] m_worldPoints.data();
23}
24
26void ObjectCollisionConvexHull::transform(const EGG::Matrix34f &mat, const EGG::Vector3f &scale,
27 const EGG::Vector3f &speed) {
28 m_translation = speed;
29
30 if (scale.x == 0.0f) {
31 for (size_t i = 0; i < m_points.size(); ++i) {
32 m_worldPoints[i] = mat.ps_multVector(m_points[i]);
33 }
34 } else {
35 EGG::Matrix34f temp;
36 temp.makeS(scale);
37 temp = mat.multiplyTo(temp);
38
39 for (size_t i = 0; i < m_points.size(); ++i) {
40 m_worldPoints[i] = temp.ps_multVector(m_points[i]);
41 }
42 }
43}
44
46const EGG::Vector3f &ObjectCollisionConvexHull::getSupport(const EGG::Vector3f &v) const {
47 const EGG::Vector3f *result = &m_worldPoints[0];
48 f32 maxDot = v.dot(*result);
49
50 for (size_t i = 1; i < m_worldPoints.size(); ++i) {
51 const auto &iter = m_worldPoints[i];
52 f32 iterDot = v.dot(iter);
53
54 if (maxDot < iterDot) {
55 result = &iter;
56 maxDot = iterDot;
57 }
58 }
59
60 return *result;
61}
62
70 ASSERT(count < 0x100);
71
72 m_points = std::span<EGG::Vector3f>(new EGG::Vector3f[count], count);
73 m_worldPoints = std::span<EGG::Vector3f>(new EGG::Vector3f[count], count);
74}
75
76} // namespace Field
A 3 x 4 matrix.
Definition Matrix.hh:8
Matrix34f multiplyTo(const Matrix34f &rhs) const
Multiplies two matrices.
Definition Matrix.cc:197
Vector3f ps_multVector(const Vector3f &vec) const
Paired-singles impl. of multVector.
Definition Matrix.cc:232
Smallest convex shape that encloses a given set of points.
ObjectCollisionConvexHull(const std::span< const EGG::Vector3f > &points)
Creates a convex hull with the provided points.
Pertains to collision.
A 3D float vector.
Definition Vector.hh:83
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.
Definition Vector.hh:182