mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-05 21:35:41 +00:00
This member function alters instance state in a few implementations, so it shouldn't be made const. The state manager parameter also shouldn't be const. Retrieved data from the post constructed instance is further modified in some implementations. This removes the constness on this parameter in order to fix more const_cast usages in a follow-up change.
45 lines
1.8 KiB
C++
45 lines
1.8 KiB
C++
#include "Runtime/World/CScriptVisorFlare.hpp"
|
|
|
|
#include "Runtime/CStateManager.hpp"
|
|
#include "Runtime/Particle/CGenDescription.hpp"
|
|
#include "Runtime/World/CActorParameters.hpp"
|
|
#include "Runtime/World/CPlayer.hpp"
|
|
|
|
#include "TCastTo.hpp" // Generated file, do not modify include path
|
|
|
|
namespace urde {
|
|
|
|
CScriptVisorFlare::CScriptVisorFlare(TUniqueId uid, std::string_view name, const CEntityInfo& info, bool active,
|
|
const zeus::CVector3f& pos, CVisorFlare::EBlendMode blendMode, bool b1, float f1,
|
|
float f2, float f3, u32 w1, u32 w2, std::vector<CVisorFlare::CFlareDef> flares)
|
|
: CActor(uid, active, name, info, zeus::CTransform::Translate(pos), CModelData::CModelDataNull(),
|
|
CMaterialList(EMaterialTypes::NoStepLogic), CActorParameters::None(), kInvalidUniqueId)
|
|
, xe8_flare(blendMode, b1, f1, f2, f3, w1, w2, std::move(flares)) {
|
|
xe6_27_thermalVisorFlags = 2;
|
|
}
|
|
|
|
void CScriptVisorFlare::Accept(IVisitor& visitor) { visitor.Visit(this); }
|
|
|
|
void CScriptVisorFlare::Think(float dt, CStateManager& stateMgr) {
|
|
if (GetActive())
|
|
xe8_flare.Update(dt, GetTranslation(), this, stateMgr);
|
|
}
|
|
|
|
void CScriptVisorFlare::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr) {
|
|
CActor::AcceptScriptMsg(msg, objId, stateMgr);
|
|
}
|
|
|
|
void CScriptVisorFlare::PreRender(CStateManager& stateMgr, const zeus::CFrustum&) {
|
|
x11c_notInRenderLast = !stateMgr.RenderLast(x8_uid);
|
|
}
|
|
|
|
void CScriptVisorFlare::AddToRenderer(const zeus::CFrustum&, CStateManager& stateMgr) {
|
|
if (x11c_notInRenderLast) {
|
|
EnsureRendered(stateMgr, stateMgr.GetPlayer().GetTranslation(), GetSortingBounds(stateMgr));
|
|
}
|
|
}
|
|
|
|
void CScriptVisorFlare::Render(const CStateManager& stateMgr) const { xe8_flare.Render(GetTranslation(), stateMgr); }
|
|
|
|
} // namespace urde
|