2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-17 02:50:45 +00:00
|
|
|
|
2016-10-02 03:06:20 +00:00
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
#include "CToken.hpp"
|
|
|
|
#include "zeus/CAABox.hpp"
|
2017-03-31 19:51:40 +00:00
|
|
|
#include "Particle/CGenDescription.hpp"
|
2018-11-02 08:16:16 +00:00
|
|
|
#include "Audio/CSfxManager.hpp"
|
|
|
|
#include "Graphics/Shaders/CEnvFxShaders.hpp"
|
|
|
|
#include "Graphics/CLineRenderer.hpp"
|
|
|
|
#include "hecl/VertexBufferPool.hpp"
|
|
|
|
#include "hecl/UniformBufferPool.hpp"
|
2016-10-02 03:06:20 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-08-15 01:19:04 +00:00
|
|
|
class CStateManager;
|
2016-10-02 03:06:20 +00:00
|
|
|
class CTexture;
|
2018-06-08 21:00:18 +00:00
|
|
|
class CActor;
|
2016-04-17 02:50:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
enum class EEnvFxType { None, Snow, Rain, UnderwaterFlake };
|
2016-04-23 18:04:49 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
enum class EPhazonType { None, Blue, Orange };
|
2016-04-23 18:04:49 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CVectorFixed8_8 {
|
2018-11-02 08:16:16 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
s16 x, y, z;
|
2018-11-02 08:16:16 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
s16 v[3];
|
|
|
|
};
|
|
|
|
CVectorFixed8_8() { x = y = z = 0; }
|
|
|
|
CVectorFixed8_8(s16 xi, s16 yi, s16 zi) {
|
|
|
|
x = xi;
|
|
|
|
y = yi;
|
|
|
|
z = zi;
|
|
|
|
}
|
|
|
|
CVectorFixed8_8(const zeus::CVector3f& vec) {
|
|
|
|
zeus::simd_floats f(vec.mSimd);
|
|
|
|
x = s16(f[0] * 256.f);
|
|
|
|
y = s16(f[1] * 256.f);
|
|
|
|
z = s16(f[2] * 256.f);
|
|
|
|
}
|
|
|
|
CVectorFixed8_8 operator+(const CVectorFixed8_8& other) const {
|
|
|
|
return {s16(x + other.x), s16(y + other.y), s16(z + other.z)};
|
|
|
|
}
|
|
|
|
CVectorFixed8_8 operator-(const CVectorFixed8_8& other) const {
|
|
|
|
return {s16(x - other.x), s16(y - other.y), s16(z - other.z)};
|
|
|
|
}
|
|
|
|
zeus::CVector3f toVec3f() const { return {x / 256.f, y / 256.f, z / 256.f}; }
|
2017-03-31 19:51:40 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CEnvFxManagerGrid {
|
|
|
|
friend class CEnvFxManager;
|
|
|
|
friend class CEnvFxShaders;
|
|
|
|
bool x0_24_blockDirty = true;
|
|
|
|
zeus::CVector2i x4_position; /* 8.8 fixed point */
|
|
|
|
zeus::CVector2i xc_extent; /* 8.8 fixed point */
|
|
|
|
std::pair<bool, float> x14_block = {false, FLT_MAX}; /* Blocked-bool, Z-coordinate */
|
|
|
|
std::vector<CVectorFixed8_8> x1c_particles;
|
|
|
|
|
|
|
|
mutable hecl::VertexBufferPool<CEnvFxShaders::Instance>::Token m_instBuf;
|
|
|
|
mutable hecl::UniformBufferPool<CEnvFxShaders::Uniform>::Token m_uniformBuf;
|
|
|
|
mutable CLineRenderer m_lineRenderer;
|
2018-11-02 08:16:16 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
boo::ObjToken<boo::IShaderDataBinding> m_snowBinding;
|
|
|
|
boo::ObjToken<boo::IShaderDataBinding> m_underwaterBinding;
|
2018-11-02 08:16:16 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
mutable float m_uvyOffset = 0.f;
|
2018-11-02 08:16:16 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void RenderSnowParticles(const zeus::CTransform& camXf) const;
|
|
|
|
void RenderRainParticles(const zeus::CTransform& camXf) const;
|
|
|
|
void RenderUnderwaterParticles(const zeus::CTransform& camXf) const;
|
2018-11-02 08:16:16 +00:00
|
|
|
|
2017-03-31 19:51:40 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CEnvFxManagerGrid(const zeus::CVector2i& position, const zeus::CVector2i& extent,
|
|
|
|
const std::vector<CVectorFixed8_8>& initialParticles, int reserve, CEnvFxManager& parent,
|
|
|
|
boo::IGraphicsDataFactory::Context& ctx);
|
|
|
|
void Render(const zeus::CTransform& xf, const zeus::CTransform& invXf, const zeus::CTransform& camXf, float fxDensity,
|
|
|
|
EEnvFxType fxType, const CEnvFxManager& parent) const;
|
2017-03-31 19:51:40 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CEnvFxManager {
|
|
|
|
friend class CEnvFxManagerGrid;
|
|
|
|
friend class CEnvFxShaders;
|
|
|
|
|
|
|
|
mutable hecl::VertexBufferPool<CEnvFxShaders::Instance> m_instPool;
|
|
|
|
mutable hecl::UniformBufferPool<CEnvFxShaders::Uniform> m_uniformPool;
|
|
|
|
mutable CEnvFxShaders::Uniform m_uniformData;
|
|
|
|
boo::ObjToken<boo::IGraphicsBufferD> m_fogUniformBuf;
|
|
|
|
|
|
|
|
zeus::CAABox x0_particleBounds = zeus::CAABox(-63.5f, 63.5f);
|
|
|
|
zeus::CVector3f x18_focusCellPosition = zeus::CVector3f::skZero;
|
|
|
|
bool x24_enableSplash = false;
|
|
|
|
float x28_firstSnowForce = 0.f;
|
|
|
|
s32 x2c_lastBlockedGridIdx = -1;
|
|
|
|
float x30_fxDensity = 0.f;
|
|
|
|
float x34_targetFxDensity = 0.f;
|
|
|
|
float x38_maxDensityDeltaSpeed = 0.f;
|
|
|
|
// bool x3c_snowflakeTextureMipBlanked = false; /* Shader simulates this texture mod */
|
|
|
|
TLockedToken<CTexture> x40_txtrEnvGradient;
|
|
|
|
rstl::reserved_vector<CEnvFxManagerGrid, 64> x50_grids;
|
|
|
|
float xb54_baseSplashRate;
|
|
|
|
TLockedToken<CGenDescription> xb58_envRainSplash;
|
|
|
|
bool xb64_ = true;
|
|
|
|
TUniqueId xb68_envRainSplashId = kInvalidUniqueId;
|
|
|
|
bool xb6a_rainSoundActive = false;
|
|
|
|
CSfxHandle xb6c_leftRainSound;
|
|
|
|
CSfxHandle xb70_rightRainSound;
|
|
|
|
TLockedToken<CTexture> xb74_txtrSnowFlake;
|
|
|
|
bool xb80_ = true;
|
|
|
|
rstl::reserved_vector<zeus::CVector3f, 16> xb84_snowZDeltas;
|
|
|
|
TLockedToken<CTexture> xc48_underwaterFlake;
|
|
|
|
bool xc54_ = true;
|
|
|
|
|
|
|
|
void SetSplashEffectRate(float f, const CStateManager& mgr);
|
|
|
|
void UpdateRainSounds(const CStateManager& mgr);
|
|
|
|
zeus::CVector3f GetParticleBoundsToWorldScale() const;
|
|
|
|
zeus::CTransform GetParticleBoundsToWorldTransform() const;
|
|
|
|
void UpdateVisorSplash(CStateManager& mgr, float dt, const zeus::CTransform& camXf);
|
|
|
|
void MoveWrapCells(s32, s32);
|
|
|
|
void CalculateSnowForces(const CVectorFixed8_8& zVec, rstl::reserved_vector<CVectorFixed8_8, 256>& snowForces,
|
|
|
|
EEnvFxType type, const zeus::CVector3f& oopbtws, float dt);
|
|
|
|
static void BuildBlockObjectList(rstl::reserved_vector<TUniqueId, 1024>& list, CStateManager& mgr);
|
|
|
|
void UpdateBlockedGrids(CStateManager& mgr, EEnvFxType type, const zeus::CTransform& camXf,
|
|
|
|
const zeus::CTransform& xf, const zeus::CTransform& invXf);
|
|
|
|
void CreateNewParticles(EEnvFxType type);
|
|
|
|
void UpdateSnowParticles(const rstl::reserved_vector<CVectorFixed8_8, 256>& snowForces);
|
|
|
|
void UpdateRainParticles(const CVectorFixed8_8& zVec, const zeus::CVector3f& oopbtws, float dt);
|
|
|
|
void UpdateUnderwaterParticles(const CVectorFixed8_8& zVec);
|
|
|
|
void SetupSnowTevs(const CStateManager& mgr) const;
|
|
|
|
void SetupRainTevs() const;
|
|
|
|
void SetupUnderwaterTevs(const zeus::CTransform& invXf, const CStateManager& mgr) const;
|
|
|
|
|
2016-08-15 01:19:04 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CEnvFxManager();
|
|
|
|
void AsyncLoadResources(CStateManager& mgr);
|
|
|
|
|
|
|
|
void Update(float, CStateManager& mgr);
|
|
|
|
void Render(const CStateManager& mgr) const;
|
|
|
|
void SetFxDensity(s32, float);
|
|
|
|
void AreaLoaded();
|
|
|
|
void SetSplashRate(float f) { xb54_baseSplashRate = f; }
|
|
|
|
bool IsSplashActive() const { return x24_enableSplash; }
|
|
|
|
float GetRainMagnitude() const { return x30_fxDensity; }
|
|
|
|
void Cleanup();
|
|
|
|
|
|
|
|
static void Initialize();
|
2016-04-17 02:50:45 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|