metaforce/Runtime/Particle/CParticleElectric.hpp

87 lines
2.6 KiB
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CPARTICLEELECTRIC_HPP__
#define __PSHAG_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"
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;
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
{
2016-02-11 22:38:25 +00:00
public:
2016-02-26 03:31:00 +00:00
class CLineManager
{
};
private:
TLockedToken<CElectricDescription> x1c_elecDesc;
u32 x28 = 0;
u32 x2c = 0;
double x30 = 0.0;
2016-03-04 23:04:53 +00:00
zeus::CVector3f x38_translation;
zeus::CTransform x44_orientation;
zeus::CVector3f xa4_globalTranslation;
zeus::CTransform xb0_globalOrientation;
zeus::CVector3f xe0_globalScale;
zeus::CVector3f xec_localScale;
2016-02-26 03:31:00 +00:00
float x128 = 0.f;
float x12c = 0.f;
2016-03-04 23:04:53 +00:00
zeus::CVector3f x130;
2016-02-26 03:31:00 +00:00
CRandom16 x14c_randState;
u32 x150 = 0;
u32 x154 = 1;
u32 x158 = 0;
float x15c = 0.f;
2016-03-04 23:04:53 +00:00
zeus::CAABox x160_systemBounds = zeus::CAABox::skInvertedBox;
2016-02-26 03:31:00 +00:00
bool x184 = false;
bool x194 = false;
bool x1b4 = false;
2016-03-04 23:04:53 +00:00
zeus::CColor x1b8_moduColor;
2016-02-26 03:31:00 +00:00
bool x1bc_hasModuColor = false;
rstl::reserved_vector<std::unique_ptr<CLineManager>, 32> x1c0_lineManagers;
union
{
struct { bool x438_25 : 1; bool x438_26 : 1; bool x438_28: 1; };
u8 dummy = 0;
};
public:
2016-02-11 22:38:25 +00:00
CParticleElectric(const TToken<CElectricDescription>& desc);
2016-02-13 05:49:59 +00:00
void SetupLineGXMaterial();
2016-02-26 03:31:00 +00:00
void RenderLines();
2016-02-13 05:49:59 +00:00
void Update(double);
void Render();
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&);
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;
2016-03-04 23:04:53 +00:00
std::pair<zeus::CAABox, bool> 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() {}
2015-08-21 00:06:39 +00:00
};
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CPARTICLEELECTRIC_HPP__