2016-04-16 21:49:47 +00:00
|
|
|
#include "CParticleGenInfo.hpp"
|
2017-01-21 06:03:37 +00:00
|
|
|
#include "Graphics/IRenderer.hpp"
|
2016-04-16 21:49:47 +00:00
|
|
|
#include "Particle/CParticleGen.hpp"
|
2017-01-21 06:03:37 +00:00
|
|
|
#include "GameGlobalObjects.hpp"
|
|
|
|
#include "World/CGameLight.hpp"
|
|
|
|
#include "CStateManager.hpp"
|
|
|
|
#include "Graphics/CBooRenderer.hpp"
|
2019-09-21 13:07:13 +00:00
|
|
|
#include "TCastTo.hpp" // Generated file, do not modify include path
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2017-11-13 06:19:18 +00:00
|
|
|
CParticleGenInfo::CParticleGenInfo(const SObjectTag& part, int frameCount, std::string_view boneName,
|
2018-12-08 05:30:43 +00:00
|
|
|
const zeus::CVector3f& scale, CParticleData::EParentedMode parentMode, int flags,
|
|
|
|
EParticleGenType type)
|
2017-01-21 06:03:37 +00:00
|
|
|
: x4_part(part)
|
|
|
|
, xc_seconds(frameCount / 60.f)
|
|
|
|
, x10_boneName(boneName)
|
|
|
|
, x28_parentMode(parentMode)
|
2017-06-03 06:03:07 +00:00
|
|
|
, x2c_flags(flags)
|
2017-01-21 06:03:37 +00:00
|
|
|
, x30_particleScale(scale)
|
2018-12-08 05:30:43 +00:00
|
|
|
, x80_type(type) {}
|
2017-01-21 06:03:37 +00:00
|
|
|
|
|
|
|
static TUniqueId _initializeLight(const std::weak_ptr<CParticleGen>& system, CStateManager& stateMgr, TAreaId areaId,
|
2018-12-08 05:30:43 +00:00
|
|
|
int lightId) {
|
|
|
|
TUniqueId ret = kInvalidUniqueId;
|
|
|
|
std::shared_ptr<CParticleGen> systemRef = system.lock();
|
|
|
|
if (systemRef->SystemHasLight()) {
|
|
|
|
ret = stateMgr.AllocateUniqueId();
|
|
|
|
stateMgr.AddObject(
|
|
|
|
new CGameLight(ret, areaId, false, "ParticleLight",
|
|
|
|
zeus::CTransform(systemRef->GetOrientation().buildMatrix3f(), systemRef->GetTranslation()),
|
|
|
|
kInvalidUniqueId, systemRef->GetLight(), u32(lightId), 0, 0.f));
|
|
|
|
}
|
|
|
|
return ret;
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 06:03:37 +00:00
|
|
|
CParticleGenInfoGeneric::CParticleGenInfoGeneric(const SObjectTag& part, const std::weak_ptr<CParticleGen>& system,
|
2017-11-13 06:19:18 +00:00
|
|
|
int frameCount, std::string_view boneName,
|
2017-01-21 06:03:37 +00:00
|
|
|
const zeus::CVector3f& scale, CParticleData::EParentedMode parentMode,
|
2017-06-03 06:03:07 +00:00
|
|
|
int flags, CStateManager& stateMgr, TAreaId areaId, int lightId,
|
2018-05-13 23:27:47 +00:00
|
|
|
EParticleGenType state)
|
2018-12-08 05:30:43 +00:00
|
|
|
: CParticleGenInfo(part, frameCount, boneName, scale, parentMode, flags, state), x84_system(system) {
|
|
|
|
if (lightId == -1)
|
|
|
|
x88_lightId = kInvalidUniqueId;
|
|
|
|
else
|
|
|
|
x88_lightId = _initializeLight(system, stateMgr, areaId, lightId);
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 06:03:37 +00:00
|
|
|
void CParticleGenInfoGeneric::AddToRenderer() { g_Renderer->AddParticleGen(*x84_system.get()); }
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2017-01-21 06:03:37 +00:00
|
|
|
void CParticleGenInfoGeneric::Render() { x84_system->Render(); }
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CParticleGenInfoGeneric::Update(float dt, CStateManager& stateMgr) {
|
|
|
|
x84_system->Update(dt);
|
2017-01-21 06:03:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x88_lightId != kInvalidUniqueId) {
|
|
|
|
TCastToPtr<CGameLight> gl(stateMgr.ObjectById(x88_lightId));
|
|
|
|
if (gl)
|
|
|
|
gl->SetLight(x84_system->GetLight());
|
|
|
|
}
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CParticleGenInfoGeneric::SetOrientation(const zeus::CTransform& xf, CStateManager& stateMgr) {
|
|
|
|
x84_system->SetOrientation(xf);
|
2017-01-21 06:03:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x88_lightId != kInvalidUniqueId) {
|
|
|
|
TCastToPtr<CGameLight> gl(stateMgr.ObjectById(x88_lightId));
|
|
|
|
if (gl)
|
|
|
|
gl->SetRotation(zeus::CQuaternion(xf.buildMatrix3f()));
|
|
|
|
}
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CParticleGenInfoGeneric::SetTranslation(const zeus::CVector3f& trans, CStateManager& stateMgr) {
|
|
|
|
x84_system->SetTranslation(trans);
|
2017-01-21 06:03:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x88_lightId != kInvalidUniqueId) {
|
|
|
|
TCastToPtr<CGameLight> gl(stateMgr.ObjectById(x88_lightId));
|
|
|
|
if (gl)
|
|
|
|
gl->SetTranslation(trans);
|
|
|
|
}
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CParticleGenInfoGeneric::SetGlobalOrientation(const zeus::CTransform& xf, CStateManager& stateMgr) {
|
|
|
|
x84_system->SetGlobalOrientation(xf);
|
2017-01-21 06:03:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x88_lightId != kInvalidUniqueId) {
|
|
|
|
TCastToPtr<CGameLight> gl(stateMgr.ObjectById(x88_lightId));
|
|
|
|
if (gl)
|
|
|
|
gl->SetRotation(zeus::CQuaternion(xf.buildMatrix3f()));
|
|
|
|
}
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CParticleGenInfoGeneric::SetGlobalTranslation(const zeus::CVector3f& trans, CStateManager& stateMgr) {
|
|
|
|
x84_system->SetGlobalTranslation(trans);
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x88_lightId != kInvalidUniqueId) {
|
|
|
|
TCastToPtr<CGameLight> gl(stateMgr.ObjectById(x88_lightId));
|
|
|
|
if (gl)
|
|
|
|
gl->SetTranslation(trans);
|
|
|
|
}
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 06:03:37 +00:00
|
|
|
void CParticleGenInfoGeneric::SetGlobalScale(const zeus::CVector3f& scale) { x84_system->SetGlobalScale(scale); }
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CParticleGenInfoGeneric::SetParticleEmission(bool emission, CStateManager& stateMgr) {
|
|
|
|
x84_system->SetParticleEmission(emission);
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
TCastToPtr<CGameLight> gl(stateMgr.ObjectById(x88_lightId));
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (gl)
|
|
|
|
gl->SetActive(emission);
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 06:03:37 +00:00
|
|
|
bool CParticleGenInfoGeneric::IsSystemDeletable() const { return x84_system->IsSystemDeletable(); }
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2019-06-12 02:05:17 +00:00
|
|
|
std::optional<zeus::CAABox> CParticleGenInfoGeneric::GetBounds() const { return x84_system->GetBounds(); }
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2017-01-21 06:03:37 +00:00
|
|
|
bool CParticleGenInfoGeneric::HasActiveParticles() const { return x84_system->GetParticleCount() != 0; }
|
|
|
|
|
|
|
|
void CParticleGenInfoGeneric::DestroyParticles() { x84_system->DestroyParticles(); }
|
|
|
|
|
|
|
|
bool CParticleGenInfoGeneric::HasLight() const { return x84_system->SystemHasLight(); }
|
|
|
|
|
|
|
|
TUniqueId CParticleGenInfoGeneric::GetLightId() const { return x88_lightId; }
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CParticleGenInfoGeneric::DeleteLight(CStateManager& mgr) {
|
|
|
|
if (x88_lightId != kInvalidUniqueId) {
|
|
|
|
mgr.FreeScriptObject(x88_lightId);
|
|
|
|
x88_lightId = kInvalidUniqueId;
|
|
|
|
}
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 06:03:37 +00:00
|
|
|
void CParticleGenInfoGeneric::SetModulationColor(const zeus::CColor& color) { x84_system->SetModulationColor(color); }
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|