metaforce/Runtime/World/CScriptTargetingPoint.cpp

34 lines
1.2 KiB
C++
Raw Permalink Normal View History

#include "Runtime/World/CScriptTargetingPoint.hpp"
#include "Runtime/World/CActorParameters.hpp"
#include "TCastTo.hpp" // Generated file, do not modify include path
2017-01-18 14:30:02 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2017-01-18 14:30:02 -08:00
2017-11-12 22:19:18 -08:00
CScriptTargetingPoint::CScriptTargetingPoint(TUniqueId uid, std::string_view name, const CEntityInfo& info,
2017-01-18 14:30:02 -08:00
const zeus::CTransform& xf, bool active)
2017-12-18 19:05:50 -08:00
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(EMaterialTypes::NoStepLogic),
CActorParameters::None(), kInvalidUniqueId) {}
2017-01-18 14:30:02 -08:00
void CScriptTargetingPoint::Accept(IVisitor& visitor) { visitor.Visit(this); }
2018-12-07 21:30:43 -08:00
void CScriptTargetingPoint::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr) {
CActor::AcceptScriptMsg(msg, uid, mgr);
2017-01-18 14:30:02 -08:00
if (msg == EScriptObjectMessage::Deactivate || msg == EScriptObjectMessage::Activate) {
2018-12-07 21:30:43 -08:00
CEntity::SendScriptMsgs(EScriptObjectState::Attack, mgr, EScriptObjectMessage::None);
}
2017-01-18 14:30:02 -08:00
}
2018-12-07 21:30:43 -08:00
void CScriptTargetingPoint::Think(float dt, CStateManager&) {
if (xec_time <= 0.f) {
2018-12-07 21:30:43 -08:00
return;
}
2017-01-18 14:30:02 -08:00
2018-12-07 21:30:43 -08:00
xec_time -= dt;
2017-01-18 14:30:02 -08:00
}
bool CScriptTargetingPoint::GetLocked() const { return !x20_conns.empty(); }
2021-04-10 01:42:06 -07:00
} // namespace metaforce