metaforce/Runtime/World/CScriptAreaAttributes.cpp

54 lines
1.5 KiB
C++
Raw Normal View History

2016-04-23 18:04:49 +00:00
#include "CScriptAreaAttributes.hpp"
#include "CEnvFxManager.hpp"
#include "CStateManager.hpp"
#include "CWorld.hpp"
2017-01-15 03:07:01 +00:00
#include "TCastTo.hpp"
2016-04-23 18:04:49 +00:00
namespace urde
{
CScriptAreaAttributes::CScriptAreaAttributes(TUniqueId uid, const CEntityInfo& info, bool showSkybox, EEnvFxType fxType,
float envFxDensity, float thermalHeat, float xrayFogDistance,
2017-08-13 05:26:14 +00:00
float worldLightingLevel, CAssetId skybox, EPhazonType phazonType)
: CEntity(uid, info, true, std::string())
, x34_24_showSkybox(showSkybox)
, x38_envFx(fxType)
, x3c_envFxDensity(envFxDensity)
, x40_thermalHeat(thermalHeat)
, x44_xrayFogDistance(xrayFogDistance)
, x48_worldLightingLevel(worldLightingLevel)
, x4c_skybox(skybox)
, x50_phazon(phazonType)
2016-04-23 18:04:49 +00:00
{
}
2017-01-15 03:07:01 +00:00
void CScriptAreaAttributes::Accept(IVisitor& visitor)
{
visitor.Visit(this);
}
void CScriptAreaAttributes::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr)
{
2017-03-04 04:58:33 +00:00
CEntity::AcceptScriptMsg(msg, objId, stateMgr);
if (x4_areaId == kInvalidAreaId)
return;
2017-03-24 05:30:16 +00:00
if (msg == EScriptObjectMessage::InitializedInArea)
{
CGameArea* area = stateMgr.WorldNC()->GetArea(x4_areaId);
area->SetAreaAttributes(this);
stateMgr.GetEnvFxManager()->SetFxDensity(500, x3c_envFxDensity);
}
2017-11-12 05:14:57 +00:00
else if (msg == EScriptObjectMessage::Deleted)
{
CGameArea* area = stateMgr.WorldNC()->GetArea(x4_areaId);
if (!area->IsPostConstructed())
return;
area->SetAreaAttributes(nullptr);
}
}
2016-04-23 18:04:49 +00:00
}