metaforce/Runtime/World/CEnvFxManager.hpp

55 lines
951 B
C++
Raw Normal View History

2016-04-17 02:50:45 +00:00
#ifndef __URDE_CENVFXMANAGER_HPP__
#define __URDE_CENVFXMANAGER_HPP__
#include "RetroTypes.hpp"
#include "CToken.hpp"
#include "zeus/CAABox.hpp"
2016-04-17 02:50:45 +00:00
namespace urde
{
class CStateManager;
class CTexture;
2016-04-17 02:50:45 +00:00
2016-04-23 18:04:49 +00:00
enum class EEnvFxType
{
None,
Rain,
Snow
};
enum class EPhazonType
{
None,
Blue,
Orange
};
2016-04-17 02:50:45 +00:00
class CEnvFxManager
{
zeus::CAABox x0_ = zeus::CAABox(-63.5, 63.5);
zeus::CVector3f x18_ = zeus::CVector3f::skZero;
u8 x24_ = 0;
float x28_ = 0.f;
u32 x2c_ = -1;
float x30_ = 0.f;
float x34_fxDensity = 0.f;
float x38_ = 0.f;
u8 x3c = 0;
void SetupSnowTevs();
void SetupRainTevs();
public:
CEnvFxManager();
void AsyncLoadResources(CStateManager& mgr);
void Update(float, float, EEnvFxType, const CStateManager&);
void SetFxDensity(s32, float);
void MoveWrapCells(s32, s32);
void GetParticleBoundsToWorldScale() const;
2016-04-17 02:50:45 +00:00
};
}
#endif // __URDE_CENVFXMANAGER_HPP__