metaforce/Runtime/Particle/CModVectorElement.cpp

273 lines
8.0 KiB
C++
Raw Normal View History

2016-02-07 23:59:05 +00:00
#include "CModVectorElement.hpp"
#include "CParticleGlobals.hpp"
#include "CRandom16.hpp"
2016-03-04 23:04:53 +00:00
#include "zeus/Math.hpp"
2016-02-07 23:59:05 +00:00
2016-02-28 06:55:05 +00:00
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Mod_Vector_Elements */
2016-03-04 23:04:53 +00:00
namespace urde
2016-02-07 23:59:05 +00:00
{
2016-03-04 23:04:53 +00:00
bool CMVEImplosion::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& pPos) const
2016-02-07 23:59:05 +00:00
{
2016-03-04 23:04:53 +00:00
zeus::CVector3f av;
2016-02-07 23:59:05 +00:00
x4_implPoint->GetValue(frame, av);
2016-03-04 23:04:53 +00:00
zeus::CVector3f dv = av - pPos;
2016-02-07 23:59:05 +00:00
float dvm = dv.magnitude();
float c;
xc_maxMag->GetValue(frame, c);
if (dvm > c)
return false;
float d;
x10_minMag->GetValue(frame, d);
if (x14_enableMinMag && dvm < d)
return false;
if (0.f == dvm)
return false;
float b;
x8_magScale->GetValue(frame, b);
2016-03-04 23:04:53 +00:00
pVel += zeus::CVector3f(b / dvm) * dv;
2016-02-07 23:59:05 +00:00
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVEExponentialImplosion::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& pPos) const
2016-02-07 23:59:05 +00:00
{
2016-03-04 23:04:53 +00:00
zeus::CVector3f av;
2016-02-07 23:59:05 +00:00
x4_implPoint->GetValue(frame, av);
2016-03-04 23:04:53 +00:00
zeus::CVector3f dv = av - pPos;
2016-02-07 23:59:05 +00:00
float dvm = dv.magnitude();
float c;
xc_maxMag->GetValue(frame, c);
if (dvm > c)
return false;
float d;
x10_minMag->GetValue(frame, d);
if (x14_enableMinMag && dvm < d)
return false;
if (0.f == dvm)
return false;
float b;
x8_magScale->GetValue(frame, b);
2016-03-04 23:04:53 +00:00
pVel += zeus::CVector3f(b) * dv;
2016-02-07 23:59:05 +00:00
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVELinearImplosion::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& pPos) const
2016-02-07 23:59:05 +00:00
{
2016-03-04 23:04:53 +00:00
zeus::CVector3f av;
2016-02-07 23:59:05 +00:00
x4_implPoint->GetValue(frame, av);
2016-03-04 23:04:53 +00:00
zeus::CVector3f dv = av - pPos;
2016-02-07 23:59:05 +00:00
float dvm = dv.magnitude();
float c;
xc_maxMag->GetValue(frame, c);
if (dvm > c)
return false;
float d;
x10_minMag->GetValue(frame, d);
if (x14_enableMinMag && dvm < d)
return false;
if (0.f == dvm)
return false;
float b;
x8_magScale->GetValue(frame, b);
2016-03-04 23:04:53 +00:00
pVel = zeus::CVector3f(b / dvm) * dv;
2016-02-07 23:59:05 +00:00
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVETimeChain::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& pPos) const
2016-02-07 23:59:05 +00:00
{
int v;
xc_swFrame->GetValue(frame, v);
if (frame >= v)
return x8_b->GetValue(frame, pVel, pPos);
else
return x4_a->GetValue(frame, pVel, pPos);
}
CMVEBounce::CMVEBounce(std::unique_ptr<CVectorElement>&& a, std::unique_ptr<CVectorElement>&& b,
std::unique_ptr<CRealElement>&& c, std::unique_ptr<CRealElement>&& d, bool e)
: x4_planePoint(std::move(a)), x8_planeNormal(std::move(b)), xc_friction(std::move(c)),
x10_restitution(std::move(d)), x14_planePrecomputed(false), x15_dieOnPenetrate(e), x24_planeD(0.0)
2016-02-13 06:25:29 +00:00
{
2016-02-28 06:55:05 +00:00
if (x4_planePoint && x8_planeNormal && x4_planePoint->IsFastConstant() && x8_planeNormal->IsFastConstant())
2016-02-13 06:25:29 +00:00
{
2016-02-28 06:55:05 +00:00
/* Precompute Hesse normal form of plane (for penetration testing)
* https://en.wikipedia.org/wiki/Hesse_normal_form */
x14_planePrecomputed = true;
x8_planeNormal->GetValue(0, x18_planeValidatedNormal);
2016-02-13 06:25:29 +00:00
2016-02-28 06:55:05 +00:00
if (x18_planeValidatedNormal.magSquared() > 0.0)
x18_planeValidatedNormal.normalize();
2016-03-04 23:04:53 +00:00
zeus::CVector3f a;
2016-02-28 06:55:05 +00:00
x4_planePoint->GetValue(0, a);
x24_planeD = x18_planeValidatedNormal.dot(a);
2016-02-13 06:25:29 +00:00
}
}
2016-03-04 23:04:53 +00:00
bool CMVEBounce::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& pPos) const
2016-02-13 06:25:29 +00:00
{
2016-02-28 06:55:05 +00:00
if (!x14_planePrecomputed)
2016-02-13 06:25:29 +00:00
{
2016-02-28 06:55:05 +00:00
/* Compute Hesse normal form of plane (for penetration testing) */
2016-03-04 23:04:53 +00:00
x8_planeNormal->GetValue(frame, ((zeus::CVector3f&)x18_planeValidatedNormal));
((zeus::CVector3f&)x18_planeValidatedNormal).normalize();
2016-02-13 06:25:29 +00:00
2016-03-04 23:04:53 +00:00
zeus::CVector3f a;
2016-02-28 06:55:05 +00:00
x4_planePoint->GetValue(frame, a);
2016-02-13 06:25:29 +00:00
2016-02-28 06:55:05 +00:00
(float&)(x24_planeD) = x18_planeValidatedNormal.dot(a);
2016-02-13 06:25:29 +00:00
}
2016-02-28 06:55:05 +00:00
float dot = x18_planeValidatedNormal.dot(pPos);
if ((dot - x24_planeD) <= 0.0f)
2016-02-13 06:25:29 +00:00
{
2016-02-28 06:55:05 +00:00
if (x15_dieOnPenetrate)
2016-02-13 06:25:29 +00:00
return true;
}
else
return false;
2016-02-28 06:55:05 +00:00
/* Deflection event */
2016-02-13 06:25:29 +00:00
if (pVel.magSquared() > 0.0f)
return false;
2016-03-04 23:04:53 +00:00
zeus::CVector3f delta = pPos - pVel;
pPos += zeus::CVector3f{(-((((delta.z * ((delta.x * (delta.y * x18_planeValidatedNormal.y))
2016-02-28 06:55:05 +00:00
+ ((pVel.x * (x18_planeValidatedNormal.y * pVel.y)) + x18_planeValidatedNormal.x))) + x18_planeValidatedNormal.z) - x24_planeD)) /
((pVel.z * ((pVel.x * (x18_planeValidatedNormal.y * pVel.y)) + x18_planeValidatedNormal.x)) + x18_planeValidatedNormal.z)) - (
(x18_planeValidatedNormal.z * ((x18_planeValidatedNormal.x * (x18_planeValidatedNormal.y * pVel.y)) + pVel.x)) + pVel.z)} * pVel;
2016-02-13 06:25:29 +00:00
2016-02-14 06:23:03 +00:00
float d = 0.0f;
2016-02-28 06:55:05 +00:00
x10_restitution->GetValue(frame, d);
2016-02-14 06:23:03 +00:00
pVel -= d * pVel;
float c = 0.0f;
2016-02-28 06:55:05 +00:00
xc_friction->GetValue(frame, c);
2016-03-04 23:04:53 +00:00
pVel -= zeus::CVector3f{(1.0f + c) * ((x18_planeValidatedNormal.z * (x18_planeValidatedNormal.x * (x18_planeValidatedNormal.y * pVel.y)) + pVel.x) + pVel.x)} * x18_planeValidatedNormal;
2016-02-13 06:25:29 +00:00
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVEConstant::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& /*pPos*/) const
2016-02-14 00:14:23 +00:00
{
x4_x->GetValue(frame, pVel.x);
x8_y->GetValue(frame, pVel.y);
xc_z->GetValue(frame, pVel.z);
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVEFastConstant::GetValue(int /*frame*/, zeus::CVector3f& pVel, zeus::CVector3f& /*pPos*/) const
2016-02-14 00:14:23 +00:00
{
pVel = x4_val;
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVEGravity::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& /*pPos*/) const
2016-02-14 00:14:23 +00:00
{
2016-03-04 23:04:53 +00:00
zeus::CVector3f grav;
2016-02-14 00:14:23 +00:00
x4_a->GetValue(frame, grav);
pVel += grav;
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVEExplode::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& /*pPos*/) const
2016-02-14 00:14:23 +00:00
{
if (frame == 0)
{
CRandom16* rand = CRandom16::GetRandomNumber();
2016-03-04 23:04:53 +00:00
zeus::CVector3f vec = {rand->Float() - 0.5f, rand->Float() - 0.5f, rand->Float() - 0.5f};
2016-02-14 00:14:23 +00:00
vec.normalize();
float a;
x4_a->GetValue(frame, a);
pVel = vec * a;
}
2016-02-29 03:03:11 +00:00
else
{
float b;
x8_b->GetValue(frame, b);
2017-12-18 02:54:50 +00:00
pVel *= zeus::CVector3f(b);
2016-02-29 03:03:11 +00:00
}
2016-02-14 00:14:23 +00:00
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVESetPosition::GetValue(int frame, zeus::CVector3f& /*pVel*/, zeus::CVector3f& pPos) const
2016-02-13 20:02:50 +00:00
{
x4_a->GetValue(frame, pPos);
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVEPulse::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& pPos) const
2016-02-14 00:14:23 +00:00
{
int a, b;
x4_aDuration->GetValue(frame, a);
x8_bDuration->GetValue(frame, b);
int cv = std::max(1, a + b + 1);
if (b >= 1)
{
int cv2 = frame % cv;
if (cv2 >= a)
x10_bVal->GetValue(frame, pVel, pPos);
else
xc_aVal->GetValue(frame, pVel, pPos);
}
else
xc_aVal->GetValue(frame, pVel, pPos);
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVEWind::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& /*pPos*/) const
2016-02-14 00:14:23 +00:00
{
2016-03-04 23:04:53 +00:00
zeus::CVector3f wVel;
2016-02-29 03:03:11 +00:00
x4_velocity->GetValue(frame, wVel);
float factor;
x8_factor->GetValue(frame, factor);
pVel += (wVel - pVel) * factor;
2016-02-14 00:14:23 +00:00
return false;
}
2016-03-04 23:04:53 +00:00
bool CMVESwirl::GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& pPos) const
2016-02-14 00:14:23 +00:00
{
2016-03-04 23:04:53 +00:00
zeus::CVector3f a, b;
2016-02-29 03:03:11 +00:00
x4_helixPoint->GetValue(frame, a);
x8_curveBinormal->GetValue(frame, b);
/* Compute FrenetSerret normal
* https://en.wikipedia.org/wiki/FrenetSerret_formulas */
2016-03-04 23:04:53 +00:00
const zeus::CVector3f diff = a - pPos;
2016-02-14 00:14:23 +00:00
float x = (diff.x - (((diff.z * ((diff.x * (diff.y * b.y)) + b.x)) + b.z) * b.x));
float y = (diff.y - (((diff.z * ((diff.x * (diff.y * b.y)) + b.x)) + b.z) * b.y));
float z = (diff.z - (((diff.z * ((diff.x * (diff.y * b.y)) + b.x)) + b.z) * b.z));
float c = 0.0f, d = 0.0f;
2016-02-29 03:03:11 +00:00
xc_targetRadius->GetValue(frame, c);
x10_tangentialVelocity->GetValue(frame, d);
2016-02-14 00:14:23 +00:00
2016-02-29 03:03:11 +00:00
/* Integrate tangential velocity by crossing particle normal with binormal,
* also "homing" towards the target radius */
2016-02-14 00:14:23 +00:00
const float f9 = (b.z * ((b.x * (b.y * pVel.y)) + pVel.x)) + pVel.x;
pVel.x = (c * ((f9 * b.x) + (d * ((b.y * (y * b.z)) - z)))) + ((1.0 - c) * pVel.x);
pVel.y = (c * ((f9 * b.y) + (d * ((b.z * x) - (z * b.x))))) + ((1.0 - c) * pVel.y);
pVel.z = (c * ((f9 * b.z) + (d * ((b.x * (x * b.y)) - y)))) + ((1.0 - c) * pVel.x);
return false;
}
2016-02-07 23:59:05 +00:00
}