2016-04-13 06:07:23 +00:00
|
|
|
#ifndef __URDE_CPARTICLEELECTRIC_HPP__
|
|
|
|
#define __URDE_CPARTICLEELECTRIC_HPP__
|
2015-08-21 00:06:39 +00:00
|
|
|
|
2016-02-13 05:49:59 +00:00
|
|
|
#include "CParticleGen.hpp"
|
|
|
|
#include "CToken.hpp"
|
2016-02-26 03:31:00 +00:00
|
|
|
#include "CRandom16.hpp"
|
2017-06-11 02:57:35 +00:00
|
|
|
#include "Graphics/CLineRenderer.hpp"
|
2015-08-21 00:06:39 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-21 00:06:39 +00:00
|
|
|
{
|
2016-02-11 22:38:25 +00:00
|
|
|
class CElectricDescription;
|
2016-03-06 02:55:09 +00:00
|
|
|
class CParticleSwoosh;
|
|
|
|
class CElementGen;
|
2015-08-21 00:06:39 +00:00
|
|
|
|
2016-02-13 05:49:59 +00:00
|
|
|
class CParticleElectric : public CParticleGen
|
2015-08-21 00:06:39 +00:00
|
|
|
{
|
2017-06-11 02:57:35 +00:00
|
|
|
static u16 g_GlobalSeed;
|
2016-02-11 22:38:25 +00:00
|
|
|
public:
|
2017-06-11 02:57:35 +00:00
|
|
|
static void SetGlobalSeed(u16 seed) { g_GlobalSeed = seed; }
|
|
|
|
class CLineManager
|
2016-02-26 03:31:00 +00:00
|
|
|
{
|
2017-06-11 02:57:35 +00:00
|
|
|
friend class CParticleElectric;
|
|
|
|
std::vector<zeus::CVector3f> x0_verts;
|
|
|
|
float x10_widths[3] = {1.f, 2.f, 3.f};
|
|
|
|
zeus::CColor x1c_colors[3];
|
|
|
|
zeus::CAABox x28_aabb = zeus::CAABox::skInvertedBox;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CParticleElectricManager
|
|
|
|
{
|
|
|
|
friend class CParticleElectric;
|
|
|
|
u32 x0_idx;
|
|
|
|
u32 x4_slif;
|
|
|
|
u32 x8_startFrame;
|
|
|
|
u32 xc_endFrame;
|
|
|
|
int x10_gpsmIdx = -1;
|
|
|
|
int x14_epsmIdx = -1;
|
|
|
|
public:
|
|
|
|
CParticleElectricManager(u32 idx, u32 slif, u32 startFrame)
|
|
|
|
: x0_idx(idx), x4_slif(slif), x8_startFrame(startFrame), xc_endFrame(startFrame + slif) {}
|
2016-02-26 03:31:00 +00:00
|
|
|
};
|
2016-07-28 06:37:50 +00:00
|
|
|
|
2016-02-26 03:31:00 +00:00
|
|
|
private:
|
|
|
|
TLockedToken<CElectricDescription> x1c_elecDesc;
|
2016-03-06 02:55:09 +00:00
|
|
|
int x28_currentFrame = 0;
|
2017-06-11 02:57:35 +00:00
|
|
|
int x2c_LIFE;
|
|
|
|
double x30_curTime = 0.0;
|
2016-03-04 23:04:53 +00:00
|
|
|
zeus::CVector3f x38_translation;
|
|
|
|
zeus::CTransform x44_orientation;
|
2017-06-11 02:57:35 +00:00
|
|
|
zeus::CTransform x74_invOrientation;
|
2016-03-04 23:04:53 +00:00
|
|
|
zeus::CVector3f xa4_globalTranslation;
|
|
|
|
zeus::CTransform xb0_globalOrientation;
|
|
|
|
zeus::CVector3f xe0_globalScale;
|
|
|
|
zeus::CVector3f xec_localScale;
|
2017-06-11 02:57:35 +00:00
|
|
|
zeus::CTransform xf8_cachedXf;
|
2016-02-26 03:31:00 +00:00
|
|
|
float x128 = 0.f;
|
|
|
|
float x12c = 0.f;
|
2017-06-11 02:57:35 +00:00
|
|
|
zeus::CAABox x130_buildBounds = zeus::CAABox::skInvertedBox;
|
2016-02-26 03:31:00 +00:00
|
|
|
CRandom16 x14c_randState;
|
2016-03-06 02:55:09 +00:00
|
|
|
int x150_SSEG = 8;
|
|
|
|
int x154_SCNT = 1;
|
|
|
|
int x158 = 0;
|
2017-06-11 02:57:35 +00:00
|
|
|
float x15c_genRem = 0.f;
|
2016-03-04 23:04:53 +00:00
|
|
|
zeus::CAABox x160_systemBounds = zeus::CAABox::skInvertedBox;
|
2017-06-11 02:57:35 +00:00
|
|
|
std::experimental::optional<zeus::CVector3f> x178_overrideIPos;
|
|
|
|
std::experimental::optional<zeus::CVector3f> x188_overrideIVel;
|
|
|
|
std::experimental::optional<zeus::CVector3f> x198_overrideFPos;
|
|
|
|
std::experimental::optional<zeus::CVector3f> x1a8_overrideFVel;
|
2016-03-04 23:04:53 +00:00
|
|
|
zeus::CColor x1b8_moduColor;
|
2017-06-11 02:57:35 +00:00
|
|
|
rstl::reserved_vector<bool, 32> x1bc_allocated;
|
|
|
|
rstl::reserved_vector<std::unique_ptr<CParticleSwoosh>, 32> x1e0_swooshGenerators;
|
|
|
|
rstl::reserved_vector<std::unique_ptr<CLineManager>, 32> x2e4_lineManagers;
|
|
|
|
std::list<CParticleElectricManager> x3e8_electricManagers;
|
|
|
|
std::vector<std::unique_ptr<CElementGen>> x400_gpsmGenerators;
|
|
|
|
std::vector<std::unique_ptr<CElementGen>> x410_epsmGenerators;
|
|
|
|
std::vector<zeus::CVector3f> x420_calculatedVerts;
|
|
|
|
std::vector<float> x430_fractalMags;
|
|
|
|
std::vector<zeus::CVector3f> x440_fractalOffsets;
|
|
|
|
|
|
|
|
size_t m_nextLineRenderer = 0;
|
|
|
|
std::vector<std::unique_ptr<CLineRenderer>> m_lineRenderers;
|
2016-02-26 03:31:00 +00:00
|
|
|
|
|
|
|
union
|
|
|
|
{
|
2016-03-06 02:55:09 +00:00
|
|
|
struct
|
|
|
|
{
|
2017-06-11 02:57:35 +00:00
|
|
|
bool x450_24_emitting : 1; bool x450_25_haveGPSM : 1; bool x450_26_haveEPSM : 1;
|
|
|
|
bool x450_27_haveSSWH : 1; bool x450_28_haveLWD: 1; bool x450_29_transformDirty : 1;
|
2016-03-06 02:55:09 +00:00
|
|
|
};
|
2017-06-11 02:57:35 +00:00
|
|
|
u32 dummy = 0;
|
2016-02-26 03:31:00 +00:00
|
|
|
};
|
2016-03-15 23:44:59 +00:00
|
|
|
|
2017-06-11 02:57:35 +00:00
|
|
|
void SetupLineGXMaterial();
|
|
|
|
void DrawLineStrip(const std::vector<zeus::CVector3f>& verts, float width, const zeus::CColor& color);
|
|
|
|
void RenderLines();
|
|
|
|
void RenderSwooshes();
|
|
|
|
void UpdateCachedTransform();
|
|
|
|
void UpdateLine(int idx, int frame);
|
|
|
|
void UpdateElectricalEffects();
|
|
|
|
void CalculateFractal(int start, int end, float ampl, float ampd);
|
|
|
|
void CalculatePoints();
|
|
|
|
void CreateNewParticles(int count);
|
|
|
|
void AddElectricalEffects();
|
|
|
|
void BuildBounds();
|
2016-02-26 03:31:00 +00:00
|
|
|
|
2017-06-11 02:57:35 +00:00
|
|
|
public:
|
2016-02-11 22:38:25 +00:00
|
|
|
CParticleElectric(const TToken<CElectricDescription>& desc);
|
2016-02-13 05:49:59 +00:00
|
|
|
|
2017-06-04 04:54:47 +00:00
|
|
|
bool Update(double);
|
2018-05-14 21:44:09 +00:00
|
|
|
void Render(const CActorLights* = nullptr);
|
2016-03-04 23:04:53 +00:00
|
|
|
void SetOrientation(const zeus::CTransform&);
|
|
|
|
void SetTranslation(const zeus::CVector3f&);
|
|
|
|
void SetGlobalOrientation(const zeus::CTransform&);
|
|
|
|
void SetGlobalTranslation(const zeus::CVector3f&);
|
|
|
|
void SetGlobalScale(const zeus::CVector3f&);
|
|
|
|
void SetLocalScale(const zeus::CVector3f&);
|
2016-02-13 05:49:59 +00:00
|
|
|
void SetParticleEmission(bool);
|
2016-03-04 23:04:53 +00:00
|
|
|
void SetModulationColor(const zeus::CColor&);
|
2017-08-01 10:08:42 +00:00
|
|
|
void SetOverrideIPos(const zeus::CVector3f& vec) { x178_overrideIPos.emplace(vec); }
|
|
|
|
void SetOverrideIVel(const zeus::CVector3f& vec) { x188_overrideIVel.emplace(vec); }
|
|
|
|
void SetOverrideFPos(const zeus::CVector3f& vec) { x198_overrideFPos.emplace(vec); }
|
|
|
|
void SetOverrideFVel(const zeus::CVector3f& vec) { x1a8_overrideFVel.emplace(vec); }
|
2016-03-04 23:04:53 +00:00
|
|
|
const zeus::CTransform& GetOrientation() const;
|
|
|
|
const zeus::CVector3f& GetTranslation() const;
|
|
|
|
const zeus::CTransform& GetGlobalOrientation() const;
|
|
|
|
const zeus::CVector3f& GetGlobalTranslation() const;
|
|
|
|
const zeus::CVector3f& GetGlobalScale() const;
|
|
|
|
const zeus::CColor& GetModulationColor() const;
|
2016-02-13 05:49:59 +00:00
|
|
|
bool IsSystemDeletable() const;
|
2018-04-30 03:12:41 +00:00
|
|
|
std::experimental::optional<zeus::CAABox> GetBounds() const;
|
2016-02-13 05:49:59 +00:00
|
|
|
u32 GetParticleCount() const;
|
|
|
|
bool SystemHasLight() const;
|
|
|
|
CLight GetLight() const;
|
|
|
|
bool GetParticleEmission() const;
|
|
|
|
void DestroyParticles();
|
2016-02-18 04:44:06 +00:00
|
|
|
void Reset() {}
|
2017-08-01 10:08:42 +00:00
|
|
|
void ForceParticleCreation(s32 count)
|
|
|
|
{
|
|
|
|
CGlobalRandom gRnd{x14c_randState};
|
|
|
|
CreateNewParticles(count);
|
|
|
|
}
|
2017-06-04 01:01:09 +00:00
|
|
|
FourCC Get4CharId() const { return FOURCC('ELSC'); }
|
2015-08-21 00:06:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_CPARTICLEELECTRIC_HPP__
|