2016-04-13 06:07:23 +00:00
|
|
|
#ifndef __URDE_CPARTICLEDATABASE_HPP__
|
|
|
|
#define __URDE_CPARTICLEDATABASE_HPP__
|
2016-04-12 22:28:08 +00:00
|
|
|
|
2016-04-16 21:49:47 +00:00
|
|
|
#include "CCharacterInfo.hpp"
|
|
|
|
#include "CParticleGenInfo.hpp"
|
2016-09-04 02:27:35 +00:00
|
|
|
#include "zeus/CFrustum.hpp"
|
2016-04-16 21:49:47 +00:00
|
|
|
#include <map>
|
|
|
|
|
2016-04-12 22:28:08 +00:00
|
|
|
namespace urde
|
|
|
|
{
|
2016-09-04 02:27:35 +00:00
|
|
|
class CPoseAsTransforms;
|
|
|
|
class CCharLayoutInfo;
|
2016-04-12 22:28:08 +00:00
|
|
|
|
|
|
|
class CParticleDatabase
|
|
|
|
{
|
2016-04-16 21:49:47 +00:00
|
|
|
std::map<std::string, std::unique_ptr<CParticleGenInfo>> x3c_;
|
2016-11-20 21:53:15 +00:00
|
|
|
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
|
|
|
void CacheParticleDesc(const CCharacterInfo::CParticleResData& desc);
|
|
|
|
void SetModulationColorAllActiveEffects(const zeus::CColor& color);
|
2016-08-21 20:39:18 +00:00
|
|
|
void SuspendAllActiveEffects(CStateManager& stateMgr);
|
2016-11-20 21:53:15 +00:00
|
|
|
void StartEffect(const std::string& name, u32 flags, const CParticleData& data, const zeus::CVector3f& scale,
|
|
|
|
CStateManager& stateMgr, TAreaId aid, u32 unk1);
|
|
|
|
void Update(float dt, const CPoseAsTransforms& pose, const CCharLayoutInfo& charInfo, const zeus::CTransform& xf,
|
|
|
|
const zeus::CVector3f& vec, CStateManager& stateMgr);
|
2016-09-04 02:27:35 +00:00
|
|
|
void AddToRendererClipped(const zeus::CFrustum& frustum);
|
2016-11-20 21:53:15 +00:00
|
|
|
void GetActiveParticleLightIds(std::vector<TUniqueId>&);
|
|
|
|
void GetActiveParticleLightIdsFromParticleDB(
|
|
|
|
std::vector<TUniqueId>&,
|
|
|
|
const std::map<std::string, std::unique_ptr<CParticleGenInfo>, std::less<std::string>>&);
|
2016-04-12 22:28:08 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_CPARTICLEDATABASE_HPP__
|