1#include "KartHalfPipe.hh"
3#include "game/kart/KartCollide.hh"
4#include "game/kart/KartDynamics.hh"
5#include "game/kart/KartMove.hh"
6#include "game/kart/KartParam.hh"
7#include "game/kart/KartPhysics.hh"
8#include "game/kart/KartState.hh"
10#include "game/field/CourseColMgr.hh"
12#include <egg/math/Math.hh>
17KartHalfPipe::KartHalfPipe() =
default;
20KartHalfPipe::~KartHalfPipe() =
default;
23void KartHalfPipe::reset() {
24 m_stunt = StuntType::None;
25 m_touchingZipper =
false;
30void KartHalfPipe::calc() {
31 constexpr s16 LANDING_BOOST_DELAY = 3;
33 if (state()->airtime() > 15 && state()->isOverZipper()) {
34 m_timer = LANDING_BOOST_DELAY;
37 bool isLanding = state()->isHalfPipeRamp() && m_timer <= 0;
41 if (collide()->surfaceFlags().offBit(KartCollide::eSurfaceFlags::StopHalfPipeState) &&
42 m_touchingZipper && state()->isAirStart()) {
43 dynamics()->setExtVel(EGG::Vector3f::zero);
44 state()->setOverZipper(
true);
52 m_nextSign = local_64.
dot(EGG::Vector3f::ey) > 0.0f ? 1.0f : -1.0f;
59 m_prevPos = prevPos();
63 f32 scaledDir = std::min(65.0f, move()->dir().y * move()->speed());
66 if (state()->isOverZipper()) {
67 dynamics()->setGravity(-1.3f);
75 sideRot = sideRot.multSwap(mainRot()).multSwap(m_rot);
77 f32 t = move()->calcSlerpRate(DEG2RAD360, mainRot(), sideRot);
79 dynamics()->setFullRot(slerp);
80 dynamics()->setMainRot(slerp);
87 if (state()->isHalfPipeRamp()) {
93 m_timer = std::max(0, m_timer - 1);
94 m_touchingZipper = isLanding;
98void KartHalfPipe::calcTrick() {
99 constexpr s16 TRICK_COOLDOWN = 10;
101 auto &trick = inputs()->currentState().trick;
103 if (trick != System::Trick::None) {
104 m_nextTimer = TRICK_COOLDOWN;
108 if (state()->isOverZipper()) {
109 if (!state()->isZipperTrick() && m_nextTimer > 0 && state()->airtime() > 3 &&
110 state()->airtime() < 10) {
115 m_nextTimer = std::max(0, m_nextTimer - 1);
119void KartHalfPipe::calcRot() {
120 if (m_stunt == StuntType::None) {
124 m_stuntManager.calcAngle();
126 f32 angle = m_rotSign * (DEG2RAD * m_stuntManager.angle);
129 case StuntType::Side360:
130 case StuntType::Side720:
133 case StuntType::Backside: {
136 EGG::Vector3f(0.0f, DEG2RAD * (0.25f * -m_rotSign * m_stuntManager.angle), 0.0f));
140 case StuntType::Frontside: {
142 rpy.
setRPY(
EGG::Vector3f(0.0f, 0.0f, DEG2RAD * (0.2f * -m_rotSign * m_stuntManager.angle)));
146 case StuntType::Frontflip:
149 case StuntType::Backflip:
156 physics()->composeStuntRot(m_stuntRot);
160void KartHalfPipe::calcLanding(
bool) {
161 constexpr f32 LANDING_RADIUS = 150.0f;
162 constexpr f32 PREVIOUS_RADIUS = 200.0f;
163 constexpr f32 MIDAIR_RADIUS = 50.0f;
164 constexpr f32 WALL_RADIUS = 100.0f;
166 constexpr f32 COS_PI_OVER_4 = 0.707f;
170 Field::KCLTypeMask maskOut;
174 Field::KCLTypeMask mask = state()->isOverZipper() ?
177 EGG::Vector3f prevPos = m_prevPos + EGG::Vector3f::ey * PREVIOUS_RADIUS;
179 bool hasDriverFloorCollision = move()->calcZipperCollision(LANDING_RADIUS, bsp().initialYPos,
182 prevPos = hasDriverFloorCollision ? EGG::Vector3f::inf : prevPos;
184 if (state()->isOverZipper()) {
185 if (!move()->calcZipperCollision(MIDAIR_RADIUS, bsp().initialYPos, pos, upLocal, prevPos,
186 &colInfo2, &maskOut, mask)) {
191 if (move()->calcZipperCollision(WALL_RADIUS, bsp().initialYPos, pos, upLocal, prevPos,
192 &colInfo2, &maskOut, mask)) {
194 move()->setUp(up + (colInfo2.wallNrm - up) * 0.2f);
195 move()->setSmoothedUp(move()->up());
197 f32 yScale = bsp().initialYPos * scale().y;
199 pos + colInfo2.tangentOff + -WALL_RADIUS * colInfo2.wallNrm + yScale * upLocal;
200 newPos.y += move()->hopPosY();
202 dynamics()->setPos(newPos);
203 move()->setDir(move()->dir().perpInPlane(move()->up(),
true));
204 move()->setVel1Dir(move()->dir());
206 if (state()->isOverZipper()) {
207 state()->setZipperStick(
true);
212 if (state()->isOverZipper()) {
213 state()->setZipperStick(
false);
217 if (!hasDriverFloorCollision || state()->airtime() <= 5) {
221 if (colInfo.floorNrm.
dot(EGG::Vector3f::ey) <= COS_PI_OVER_4) {
225 if (state()->isOverZipper()) {
226 state()->setZipperStick(
false);
231void KartHalfPipe::activateTrick(s32 duration, System::Trick trick) {
232 if (duration < 51 || trick == System::Trick::None) {
233 m_stunt = StuntType::None;
235 m_rotSign = m_nextSign;
236 bool timerThreshold = duration > 70;
239 case System::Trick::Up:
240 m_stunt = timerThreshold ? StuntType::Backside : StuntType::Backflip;
242 case System::Trick::Down:
243 m_stunt = timerThreshold ? StuntType::Frontside : StuntType::Frontflip;
245 case System::Trick::Left:
246 case System::Trick::Right:
247 m_stunt = timerThreshold ? StuntType::Side720 : StuntType::Side360;
248 m_rotSign = trick == System::Trick::Left ? 1.0f : -1.0f;
254 m_stuntManager.setProperties(
static_cast<size_t>(m_stunt));
256 state()->setZipperTrick(
true);
259 m_stuntRot = EGG::Quatf::ident;
263void KartHalfPipe::end(
bool boost) {
264 if (state()->isOverZipper() && state()->airtime() > 5 && boost) {
265 move()->activateZipperBoost();
268 if (state()->isZipperTrick()) {
269 physics()->composeDecayingStuntRot(m_stuntRot);
272 if (state()->isOverZipper()) {
273 move()->setDir(mainRot().rotateVector(EGG::Vector3f::ez));
274 move()->setVel1Dir(move()->dir());
277 state()->setOverZipper(
false);
278 state()->setZipperTrick(
false);
279 state()->setZipperStick(
false);
281 m_stunt = StuntType::None;
284void KartHalfPipe::StuntManager::calcAngle() {
285 if (finalAngle * properties.finalAngleScalar < angle) {
286 angleDelta = std::max(properties.angleDeltaMin, angleDelta * angleDeltaFactor);
287 angleDeltaFactor = std::max(properties.angleDeltaFactorMin,
288 angleDeltaFactor - properties.angleDeltaFactorDecr);
291 angle = std::min(finalAngle, angle + angleDelta);
294void KartHalfPipe::StuntManager::setProperties(
size_t idx) {
295 static constexpr std::array<StuntProperties, 6> STUNT_PROPERTIES = {{
296 {6.0f, 2.5f, 0.955f, 0.01f, 0.7f, 360.0f},
297 {7.0f, 3.0f, 0.955f, 0.01f, 0.7f, 360.0f},
298 {7.0f, 3.0f, 0.95f, 0.01f, 0.7f, 360.0f},
299 {12.0f, 2.5f, 0.955f, 0.01f, 0.0f, 360.0f},
300 {4.0f, 4.0f, 0.98f, 0.01f, 0.0f, 360.0f},
301 {9.0f, 3.0f, 0.92f, 0.01f, 0.8f, 720.0f},
304 ASSERT(idx < STUNT_PROPERTIES.size());
306 properties = STUNT_PROPERTIES[idx];
307 finalAngle = properties.finalAngle;
308 angleDelta = properties.angleDelta;
309 angleDeltaFactorDecr = properties.angleDeltaFactorDecr;
311 angleDeltaFactor = 1.0f;
#define KCL_TYPE_DRIVER_WALL
0xC010B000
@ COL_TYPE_HALFPIPE_INVISIBLE_WALL
Invisible wall after a half-pipe jump, like in BC.
#define KCL_TYPE_DRIVER_FLOOR
0x20E80DFF - Any KCL that the player can drive on.
#define KCL_TYPE_ANY_INVISIBLE_WALL
0x90002000
s32 m_attemptedTrickTimer
When attempting a trick, tracks how long the animation would be.
EGG::Vector3f bodyUp() const
Returns the second column of the rotation matrix, which is the "up" direction.
Pertains to kart-related functionality.
A quaternion, used to represent 3D rotation.
Vector3f rotateVector(const Vector3f &vec) const
Rotates a vector based on the quat.
Quatf slerpTo(const Quatf &q2, f32 t) const
Performs spherical linear interpolation.
void setAxisRotation(f32 angle, const Vector3f &axis)
Set the quat given angle and axis.
Vector3f rotateVectorInv(const Vector3f &vec) const
Rotates a vector on the inverse quat.
void setRPY(const Vector3f &rpy)
Sets roll, pitch, and yaw.
void makeVectorRotation(const Vector3f &from, const Vector3f &to)
Captures rotation between two vectors.
f32 normalise()
Normalizes the vector and returns the original length.
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.
Vector3f perpInPlane(const EGG::Vector3f &rhs, bool normalise) const
Calculates the orthogonal vector, based on the plane defined by this vector and rhs.