metaforce/Runtime/Particle/CEmitterElement.hpp

56 lines
2.2 KiB
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CEMITTERELEMENT_HPP__
#define __URDE_CEMITTERELEMENT_HPP__
2016-02-05 08:34:14 +00:00
#include "IElement.hpp"
2016-02-28 06:55:05 +00:00
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Emitter_Elements */
2016-03-04 23:04:53 +00:00
namespace urde
{
2016-02-05 08:34:14 +00:00
class CEESimpleEmitter : public CEmitterElement
{
std::unique_ptr<CVectorElement> x4_loc;
std::unique_ptr<CVectorElement> x8_vec;
public:
CEESimpleEmitter(std::unique_ptr<CVectorElement>&& a, std::unique_ptr<CVectorElement>&& b)
: x4_loc(std::move(a)), x8_vec(std::move(b)) {}
2016-03-04 23:04:53 +00:00
bool GetValue(int frame, zeus::CVector3f& pPos, zeus::CVector3f& pVel) const;
};
2016-02-05 08:34:14 +00:00
class CVESphere : public CEmitterElement
{
2016-02-29 03:03:11 +00:00
std::unique_ptr<CVectorElement> x4_sphereOrigin;
std::unique_ptr<CRealElement> x8_sphereRadius;
std::unique_ptr<CRealElement> xc_velocityMag;
public:
CVESphere(std::unique_ptr<CVectorElement>&& a, std::unique_ptr<CRealElement>&& b,
std::unique_ptr<CRealElement>&& c)
: x4_sphereOrigin(std::move(a)), x8_sphereRadius(std::move(b)), xc_velocityMag(std::move(c)) {}
2016-03-04 23:04:53 +00:00
bool GetValue(int frame, zeus::CVector3f& pPos, zeus::CVector3f& pVel) const;
2016-02-05 08:34:14 +00:00
};
class CVEAngleSphere : public CEmitterElement
2016-02-05 08:34:14 +00:00
{
2016-02-29 03:03:11 +00:00
std::unique_ptr<CVectorElement> x4_sphereOrigin;
std::unique_ptr<CRealElement> x8_sphereRadius;
std::unique_ptr<CRealElement> xc_velocityMag;
std::unique_ptr<CRealElement> x10_angleXBias;
std::unique_ptr<CRealElement> x14_angleYBias;
std::unique_ptr<CRealElement> x18_angleXRange;
std::unique_ptr<CRealElement> x1c_angleYRange;
public:
CVEAngleSphere(std::unique_ptr<CVectorElement>&& a, std::unique_ptr<CRealElement>&& b,
std::unique_ptr<CRealElement>&& c, std::unique_ptr<CRealElement>&& d,
std::unique_ptr<CRealElement>&& e, std::unique_ptr<CRealElement>&& f,
std::unique_ptr<CRealElement>&& g)
: x4_sphereOrigin(std::move(a)), x8_sphereRadius(std::move(b)), xc_velocityMag(std::move(c)),
x10_angleXBias(std::move(d)), x14_angleYBias(std::move(e)), x18_angleXRange(std::move(f)),
x1c_angleYRange(std::move(g)) {}
2016-03-04 23:04:53 +00:00
bool GetValue(int frame, zeus::CVector3f& pPos, zeus::CVector3f& pVel) const;
2016-02-05 08:34:14 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CEMITTERELEMENT_HPP__