re3/src/render/Particle.h

109 lines
3.5 KiB
C
Raw Normal View History

2019-05-15 16:52:37 +02:00
#pragma once
2019-05-29 02:52:30 +02:00
#include "ParticleMgr.h"
2019-05-15 16:52:37 +02:00
class CEntity;
2019-05-29 02:52:30 +02:00
class CParticle
{
2019-07-11 02:22:01 +02:00
public:
2019-05-29 02:52:30 +02:00
enum
{
RAND_TABLE_SIZE = 20,
SIN_COS_TABLE_SIZE = 1024
};
2019-07-11 02:22:01 +02:00
2019-05-29 02:52:30 +02:00
CVector m_vecPosition;
CVector m_vecVelocity;
2020-05-27 01:16:31 +02:00
uint32 m_nTimeWhenWillBeDestroyed;
uint32 m_nTimeWhenColorWillBeChanged;
2019-06-17 00:16:38 +02:00
float m_fZGround;
2019-05-29 02:52:30 +02:00
CVector m_vecParticleMovementOffset;
2019-06-17 00:16:38 +02:00
int16 m_nCurrentZRotation;
2020-05-27 01:16:31 +02:00
uint16 m_nZRotationTimer;
2019-06-17 00:16:38 +02:00
float m_fCurrentZRadius;
2020-05-27 01:16:31 +02:00
uint16 m_nZRadiusTimer;
2019-06-17 00:16:38 +02:00
uint8 m_nColorIntensity;
uint8 m_nAlpha;
2020-05-27 01:16:31 +02:00
float m_fSize;
float m_fExpansionRate;
int16 m_nFadeToBlackTimer;
int16 m_nFadeAlphaTimer;
2019-06-17 00:16:38 +02:00
int16 m_nAnimationSpeedTimer;
int16 m_nRotationStep;
int16 m_nRotation;
2020-05-27 01:16:31 +02:00
uint8 m_nCurrentFrame;
2019-05-29 02:52:30 +02:00
RwRGBA m_Color;
CParticle *m_pNext;
CParticle()
{
;
}
~CParticle()
{
;
}
2020-04-17 07:54:14 +02:00
static float ms_afRandTable[RAND_TABLE_SIZE];
2019-05-29 02:52:30 +02:00
static CParticle *m_pUnusedListHead;
2019-06-17 00:16:38 +02:00
static float m_SinTable[SIN_COS_TABLE_SIZE];
static float m_CosTable[SIN_COS_TABLE_SIZE];
2019-05-29 02:52:30 +02:00
2019-08-15 03:43:00 +02:00
static float Sin(int32 value) { return m_SinTable[value]; }
static float Cos(int32 value) { return m_CosTable[value]; }
2019-05-29 02:52:30 +02:00
static void ReloadConfig();
static void Initialise();
static void Shutdown();
2020-05-27 01:16:31 +02:00
static void AddParticlesAlongLine(tParticleType type, CVector const &vecStart, CVector const &vecEnd, CVector const &vecDir, float fPower, CEntity *pEntity = nil, float fSize = 0.0f, int32 nRotationSpeed = 0, int32 nRotation = 0, int32 nCurFrame = 0, int32 nLifeSpan = 0);
static void AddParticlesAlongLine(tParticleType type, CVector const &vecStart, CVector const &vecEnd, CVector const &vecDir, float fPower, CEntity *pEntity, float fSize, RwRGBA const&color, int32 nRotationSpeed = 0, int32 nRotation = 0, int32 nCurFrame = 0, int32 nLifeSpan = 0);
static CParticle *AddParticle(tParticleType type, CVector const &vecPos, CVector const &vecDir, CEntity *pEntity = nil, float fSize = 0.0f, int32 nRotationSpeed = 0, int32 nRotation = 0, int32 nCurFrame = 0, int32 nLifeSpan = 0);
static CParticle *AddParticle(tParticleType type, CVector const &vecPos, CVector const &vecDir, CEntity *pEntity, float fSize, RwRGBA const &color, int32 nRotationSpeed = 0, int32 nRotation = 0, int32 nCurFrame = 0, int32 nLifeSpan = 0);
2019-05-29 02:52:30 +02:00
static void Update();
static void Render();
static void RemovePSystem(tParticleType type);
static void RemoveParticle(CParticle *pParticle, CParticle *pPrevParticle, tParticleSystemData *pPSystemData);
static void _Next(CParticle *&pParticle, CParticle *&pPrevParticle, tParticleSystemData *pPSystemData, bool bRemoveParticle)
2019-05-29 02:52:30 +02:00
{
if ( bRemoveParticle )
{
RemoveParticle(pParticle, pPrevParticle, pPSystemData);
if ( pPrevParticle )
pParticle = pPrevParticle->m_pNext;
else
pParticle = pPSystemData->m_pParticles;
}
else
{
pPrevParticle = pParticle;
pParticle = pParticle->m_pNext;
}
}
2019-06-17 00:16:38 +02:00
static void AddJetExplosion(CVector const &vecPos, float fPower, float fSize);
2019-05-29 02:52:30 +02:00
static void AddYardieDoorSmoke(CVector const &vecPos, CMatrix const &matMatrix);
2020-05-27 01:16:31 +02:00
static void CalWindDir(CVector *vecDirIn, CVector *vecDirOut);
static void HandleShipsAtHorizonStuff();
static void HandleShootableBirdsStuff(CEntity *entity, CVector const&camPos);
2019-05-29 02:52:30 +02:00
};
2019-05-29 20:02:58 +02:00
2020-05-31 19:59:01 +02:00
extern bool clearWaterDrop;
2020-07-01 18:03:39 +02:00
extern int32 numWaterDropOnScreen;
2020-12-16 21:53:47 +01:00
extern RwRaster *gpCarSplashRaster[];
extern RwRaster *gpHeatHazeRaster;
extern RwRaster *gpDotRaster;
extern RwRaster *gpRainDripRaster[];
extern RwRaster *gpRainDripDarkRaster[];
2020-05-31 19:59:01 +02:00
2020-05-27 01:16:31 +02:00
VALIDATE_SIZE(CParticle, 0x58);