metaforce/Runtime/Particle/CFlameWarp.hpp

45 lines
1.3 KiB
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-02-16 03:25:06 +00:00
#include "CWarp.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
2017-09-10 09:04:51 +00:00
class CStateManager;
2018-12-08 05:30:43 +00:00
class CFlameWarp : public CWarp {
rstl::reserved_vector<zeus::CVector3f, 9> x4_vecs;
zeus::CVector3f x74_warpPoint;
zeus::CVector3f x80_floatingPoint;
float x8c_maxDistSq = 0.f;
float x90_minSize = FLT_MAX;
float x94_maxSize = FLT_MIN;
float x98_maxInfluenceDistSq;
CStateManager* x9c_stateMgr = nullptr;
bool xa0_24_activated : 1;
bool xa0_25_collisionWarp : 1;
bool xa0_26_processed : 1;
2016-02-16 03:25:06 +00:00
public:
2018-12-08 05:30:43 +00:00
CFlameWarp(float maxInfluenceDist, const zeus::CVector3f& warpPoint, bool collisionWarp)
: x74_warpPoint(warpPoint)
, x80_floatingPoint(warpPoint)
, x98_maxInfluenceDistSq(maxInfluenceDist * maxInfluenceDist) {
x4_vecs.resize(9, warpPoint);
xa0_24_activated = false;
xa0_25_collisionWarp = collisionWarp;
xa0_26_processed = false;
}
2016-02-16 03:25:06 +00:00
2018-12-08 05:30:43 +00:00
bool UpdateWarp() { return xa0_24_activated; }
void ModifyParticles(std::vector<CParticle>& particles);
void Activate(bool val) { xa0_24_activated = val; }
bool IsActivated() { return xa0_24_activated; }
FourCC Get4CharID() { return FOURCC('FWRP'); }
void ResetPosition(const zeus::CVector3f& pos) {
for (auto& vec : x4_vecs) {
vec = pos;
}
xa0_26_processed = false;
}
2016-02-16 03:25:06 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde