metaforce/Runtime/Particle/CElementGen.hpp

241 lines
7.7 KiB
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CELEMENTGEN_HPP__
#define __PSHAG_CELEMENTGEN_HPP__
2015-08-17 23:46:41 +00:00
2016-02-11 22:38:25 +00:00
#include "RetroTypes.hpp"
2016-02-08 03:31:05 +00:00
#include "CTransform.hpp"
2016-02-09 22:52:33 +00:00
#include "CVector3f.hpp"
2016-02-08 03:31:05 +00:00
#include "CColor.hpp"
#include "CAABox.hpp"
2016-02-08 05:10:17 +00:00
#include "CToken.hpp"
2016-02-09 22:52:33 +00:00
#include "CLight.hpp"
2016-02-12 02:36:34 +00:00
#include "CGraphics.hpp"
2016-02-09 22:52:33 +00:00
#include "CRandom16.hpp"
2016-02-13 05:49:59 +00:00
#include "CParticleGen.hpp"
2016-02-15 04:00:26 +00:00
#include "CElementGenShaders.hpp"
#include "Graphics/CLineRenderer.hpp"
2015-08-21 00:06:39 +00:00
2016-02-13 09:02:47 +00:00
namespace pshag
2015-08-17 23:46:41 +00:00
{
2016-02-08 03:31:05 +00:00
class CWarp;
class CLight;
class IGenDescription;
2016-02-08 05:10:17 +00:00
class CGenDescription;
2016-02-11 22:38:25 +00:00
class CParticleSwoosh;
class CParticleElectric;
2015-08-17 23:46:41 +00:00
2016-02-13 05:49:59 +00:00
class CElementGen : public CParticleGen
2015-08-17 23:46:41 +00:00
{
2016-02-08 05:10:17 +00:00
public:
enum class EModelOrientationType
{
2016-02-09 22:52:33 +00:00
Normal,
One
2016-02-08 05:10:17 +00:00
};
enum class EOptionalSystemFlags
2016-02-09 22:52:33 +00:00
{
None,
One,
Two
};
enum class LightType
{
None = 0,
Custom = 1,
Directional = 2,
Spot = 3
};
2016-02-09 22:52:33 +00:00
class CParticleListItem
2016-02-08 05:10:17 +00:00
{
2016-02-11 02:36:21 +00:00
friend class CElementGen;
s16 x0_partIdx;
2016-02-13 00:57:09 +00:00
Zeus::CVector3f x4_viewPoint;
2016-02-10 02:00:28 +00:00
public:
2016-02-11 02:36:21 +00:00
CParticleListItem(s16 idx)
: x0_partIdx(idx)
{
++g_ParticleAliveCount;
}
~CParticleListItem()
{
--g_ParticleAliveCount;
}
2016-02-10 02:00:28 +00:00
};
2016-02-25 06:23:35 +00:00
struct CParticle
2016-02-10 02:00:28 +00:00
{
2016-02-11 02:36:21 +00:00
int x0_endFrame = 0;
Zeus::CVector3f x4_pos;
Zeus::CVector3f x10_prevPos;
Zeus::CVector3f x1c_vel;
int x28_startFrame = 0;
float x2c_lineLengthOrSize = 0.f;
float x30_lineWidthOrRota = 0.f;
Zeus::CColor x34_color = {0.f, 0.f, 0.f, 1.f};
2016-02-08 05:10:17 +00:00
};
2016-02-25 06:23:35 +00:00
static CParticle* g_currentParticle;
2016-02-15 04:00:26 +00:00
private:
friend class CElementGenShaders;
2016-02-13 05:49:59 +00:00
TLockedToken<CGenDescription> x1c_genDesc;
2016-02-08 05:10:17 +00:00
EModelOrientationType x28_orientType;
2016-02-09 22:52:33 +00:00
std::vector<CParticleListItem> x2c_particleLists;
std::vector<Zeus::CMatrix3f> x3c_parentMatrices;
u32 x4c_internalStartFrame = 0;
2016-02-10 02:00:28 +00:00
u32 x50_curFrame = 0;
double x58_curSeconds = 0.f;
float x60_timeDeltaScale;
2016-02-11 22:38:25 +00:00
u32 x64_prevFrame = -1;
2016-02-08 05:10:17 +00:00
bool x68_particleEmission = true;
2016-02-11 02:36:21 +00:00
float x6c_generatorRemainder = 0.f;
2016-02-09 22:52:33 +00:00
int x70_MAXP = 0;
u16 x74_randomSeed = 99;
2016-02-08 05:10:17 +00:00
float x78_generatorRate = 1.f;
2016-02-11 22:38:25 +00:00
Zeus::CVector3f x7c_translation;
2016-02-09 22:52:33 +00:00
Zeus::CVector3f x88_globalTranslation;
2016-02-11 02:36:21 +00:00
Zeus::CVector3f x94_POFS;
2016-02-11 22:38:25 +00:00
Zeus::CVector3f xa0_globalScale = {1.f, 1.f, 1.f};
Zeus::CTransform xac_globalScaleTransform = Zeus::CTransform::Identity();
Zeus::CTransform xdc_globalScaleTransformInverse = Zeus::CTransform::Identity();
2016-02-11 22:38:25 +00:00
Zeus::CVector3f x10c_localScale = {1.f, 1.f, 1.f};
Zeus::CTransform x118_localScaleTransform = Zeus::CTransform::Identity();
Zeus::CTransform x148_localScaleTransformInverse = Zeus::CTransform::Identity();
2016-02-11 22:38:25 +00:00
Zeus::CTransform x178_orientation = Zeus::CTransform::Identity();
Zeus::CTransform x1a8_orientationInverse = Zeus::CTransform::Identity();
2016-02-09 22:52:33 +00:00
Zeus::CTransform x1d8_globalOrientation = Zeus::CTransform::Identity();
2016-02-11 02:36:21 +00:00
u32 x208_activeParticleCount = 0;
2016-02-11 22:38:25 +00:00
u32 x20c_recursiveParticleCount = 0;
2016-02-11 02:36:21 +00:00
u32 x210_curEmitterFrame = 0;
2016-02-18 04:44:06 +00:00
int x214_PSLT = 90;//0x7fffff;
2016-02-09 22:52:33 +00:00
Zeus::CVector3f x218_PSIV;
bool x224_24_translationDirty = false;
2016-02-09 22:52:33 +00:00
bool x224_25_LIT_;
bool x224_26_AAPH;
bool x224_27_ZBUF;
2016-02-16 05:50:41 +00:00
bool x224_28_zTest = false;
2016-02-09 22:52:33 +00:00
bool x224_29_MBLR;
bool x224_30_VMD1;
bool x224_31_VMD2;
2016-02-11 02:36:21 +00:00
bool x225_24_VMD3;
bool x225_25_VMD4;
2016-02-09 22:52:33 +00:00
bool x225_26_LINE;
bool x225_27_FXLL;
2016-02-10 02:00:28 +00:00
bool x225_28_warmedUp = false;
2016-02-13 00:57:09 +00:00
bool x225_29_modelsUseLights = false;
bool x226_enableOPTS;
2016-02-15 04:00:26 +00:00
int x228_MBSP = 0; int m_maxMBSP = 0;
2016-02-12 02:36:34 +00:00
ERglLight x22c_backupLightActive = ERglLight::None;
2016-02-11 02:36:21 +00:00
CRandom16 x230_randState;
2016-02-11 22:38:25 +00:00
std::vector<std::unique_ptr<CElementGen>> x234_activePartChildren;
2016-02-09 22:52:33 +00:00
int x244_CSSD = 0;
2016-02-11 22:38:25 +00:00
std::vector<std::unique_ptr<CElementGen>> x248_finishPartChildren;
2016-02-09 22:52:33 +00:00
int x258_SISY = 16;
int x25c_PISY = 16;
2016-02-11 22:38:25 +00:00
std::vector<std::unique_ptr<CParticleSwoosh>> x260_swhcChildren;
2016-02-09 22:52:33 +00:00
int x270_SSSD = 0;
Zeus::CVector3f x274_SSPO;
2016-02-11 22:38:25 +00:00
std::vector<std::unique_ptr<CParticleElectric>> x280_elscChildren;
2016-02-09 22:52:33 +00:00
int x290_SESD = 0;
Zeus::CVector3f x294_SEPO;
float x2a0 = 0.f;
float x2a4 = 0.f;
2016-02-11 02:36:21 +00:00
Zeus::CVector3f x2a8_aabbMin;
Zeus::CVector3f x2b4_aabbMax;
float x2c0_maxSize = 0.f;
2016-02-11 22:38:25 +00:00
Zeus::CAABox x2c4_systemBounds = Zeus::CAABox::skInvertedBox;
LightType x2dc_lightType;
2016-02-11 22:38:25 +00:00
Zeus::CColor x2e0_LCLR = Zeus::CColor::skWhite;
float x2e4_LINT = 1.f;
Zeus::CVector3f x2e8_LOFF;
Zeus::CVector3f x2f4_LDIR = {1.f, 0.f, 0.f};
2016-02-09 22:52:33 +00:00
EFalloffType x300_falloffType = EFalloffType::Linear;
2016-02-11 22:38:25 +00:00
float x304_LFOR = 1.f;
float x308_LSLA = 45.f;
Zeus::CColor x30c_moduColor = {1.f, 1.f, 1.f, 1.f};
2016-02-09 22:52:33 +00:00
std::unique_ptr<CLineRenderer> m_lineRenderer;
2016-02-15 04:00:26 +00:00
CElementGenShaders::EShaderClass m_shaderClass;
2016-02-11 02:36:21 +00:00
void AccumulateBounds(Zeus::CVector3f& pos, float size);
2015-08-18 05:54:43 +00:00
public:
2016-02-08 05:10:17 +00:00
CElementGen(const TToken<CGenDescription>& gen, EModelOrientationType orientType, EOptionalSystemFlags flags);
2016-02-13 05:49:59 +00:00
~CElementGen();
2016-02-08 05:10:17 +00:00
2016-02-15 04:00:26 +00:00
boo::GraphicsDataToken m_gfxToken;
boo::IShaderDataBinding* m_normalDataBind = nullptr;
boo::IShaderDataBinding* m_redToAlphaDataBind = nullptr;
boo::IGraphicsBufferD* m_instBuf = nullptr;
boo::IGraphicsBufferD* m_uniformBuf = nullptr;
CGenDescription* GetDesc() {return x1c_genDesc.GetObj();}
2016-02-13 05:49:59 +00:00
static s32 g_FreeIndex;
static bool g_StaticListInitialized;
static int g_ParticleAliveCount;
static int g_ParticleSystemAliveCount;
static bool g_MoveRedToAlphaBuffer;
static void Initialize();
2016-02-16 19:42:24 +00:00
static void Shutdown();
void SetGeneratorRateScalar(float scalar)
{
if (scalar >= 0.0f)
x78_generatorRate = scalar;
else
x78_generatorRate = 0.0f;
2016-02-11 22:38:25 +00:00
for (std::unique_ptr<CElementGen>& child : x234_activePartChildren)
2016-02-09 22:52:33 +00:00
child->SetGeneratorRateScalar(x78_generatorRate);
2016-02-11 22:38:25 +00:00
for (std::unique_ptr<CElementGen>& child : x248_finishPartChildren)
2016-02-09 22:52:33 +00:00
child->SetGeneratorRateScalar(x78_generatorRate);
}
2016-02-10 02:00:28 +00:00
void UpdateExistingParticles();
void CreateNewParticles(int);
void UpdatePSTranslationAndOrientation();
void UpdateChildParticleSystems(double);
2016-02-11 06:58:33 +00:00
CElementGen* ConstructChildParticleSystem(const TToken<CGenDescription>&);
2016-02-10 02:00:28 +00:00
void UpdateLightParameters();
void BuildParticleSystemBounds();
2016-02-11 19:18:14 +00:00
u32 GetSystemCount();
2016-02-11 22:38:25 +00:00
u32 GetParticleCountAllInternal() const;
u32 GetParticleCountAll() const {return x20c_recursiveParticleCount;}
2016-02-26 03:31:00 +00:00
void EndLifetime();
void ForceParticleCreation(int amount) { CreateNewParticles(amount); }
2016-02-08 03:31:05 +00:00
2016-02-13 05:49:59 +00:00
bool InternalUpdate(double);
2016-02-12 02:36:34 +00:00
void RenderModels();
void RenderLines();
void RenderParticles();
2016-02-13 00:57:09 +00:00
void RenderParticlesIndirectTexture();
2016-02-12 02:36:34 +00:00
2016-02-13 05:49:59 +00:00
void Update(double);
void Render();
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&);
void SetParticleEmission(bool);
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;
bool IsSystemDeletable() const;
std::pair<Zeus::CAABox, bool> GetBounds() const;
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-17 23:46:41 +00:00
};
2016-02-09 22:52:33 +00:00
ENABLE_BITWISE_ENUM(CElementGen::EOptionalSystemFlags)
2015-08-17 23:46:41 +00:00
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CELEMENTGEN_HPP__