2019-12-22 20:04:07 +00:00
|
|
|
#include "Runtime/World/CScriptAiJumpPoint.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/CStateManager.hpp"
|
|
|
|
#include "Runtime/World/CActorParameters.hpp"
|
|
|
|
#include "Runtime/World/CScriptWaypoint.hpp"
|
|
|
|
|
2019-09-21 13:07:13 +00:00
|
|
|
#include "TCastTo.hpp" // Generated file, do not modify include path
|
2016-10-01 19:00:16 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2017-11-13 06:19:18 +00:00
|
|
|
CScriptAiJumpPoint::CScriptAiJumpPoint(TUniqueId uid, std::string_view name, const CEntityInfo& info,
|
2019-07-19 08:30:11 +00:00
|
|
|
zeus::CTransform& xf, bool active, float apex)
|
2017-12-19 03:05:50 +00:00
|
|
|
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(EMaterialTypes::NoStepLogic),
|
2016-12-19 18:27:58 +00:00
|
|
|
CActorParameters::None(), kInvalidUniqueId)
|
2019-07-19 08:30:11 +00:00
|
|
|
, xe8_apex(apex)
|
2020-04-20 04:57:50 +00:00
|
|
|
, xec_touchBounds(xf.origin, xf.origin) {}
|
2016-10-01 19:00:16 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CScriptAiJumpPoint::Accept(IVisitor& visitor) { visitor.Visit(this); }
|
2017-01-15 03:07:01 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CScriptAiJumpPoint::Think(float dt, CStateManager&) {
|
2020-05-07 12:01:35 +00:00
|
|
|
if (x110_timeRemaining <= 0) {
|
2018-12-08 05:30:43 +00:00
|
|
|
return;
|
2020-05-07 12:01:35 +00:00
|
|
|
}
|
2016-10-01 19:00:16 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
x110_timeRemaining -= dt;
|
2016-10-01 19:00:16 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CScriptAiJumpPoint::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId other, CStateManager& mgr) {
|
|
|
|
CActor::AcceptScriptMsg(msg, other, mgr);
|
|
|
|
|
2020-05-07 12:01:35 +00:00
|
|
|
if (msg != EScriptObjectMessage::InitializedInArea) {
|
2018-12-08 05:30:43 +00:00
|
|
|
return;
|
2020-05-07 12:01:35 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
|
2020-05-20 18:32:20 +00:00
|
|
|
for (const SConnection& conn : x20_conns) {
|
2020-05-07 12:01:35 +00:00
|
|
|
if (conn.x0_state != EScriptObjectState::Arrived || conn.x4_msg != EScriptObjectMessage::Next) {
|
2018-12-08 05:30:43 +00:00
|
|
|
continue;
|
2020-05-07 12:01:35 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
|
2020-05-07 12:01:35 +00:00
|
|
|
const auto* wpnt = static_cast<const CScriptWaypoint*>(mgr.GetObjectById(mgr.GetIdForScript(conn.x8_objId)));
|
2018-12-08 05:30:43 +00:00
|
|
|
if (wpnt) {
|
|
|
|
x10c_currentWaypoint = wpnt->GetUniqueId();
|
|
|
|
x10e_nextWaypoint = wpnt->NextWaypoint(mgr);
|
2016-10-01 19:00:16 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2016-10-01 19:00:16 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 02:05:17 +00:00
|
|
|
std::optional<zeus::CAABox> CScriptAiJumpPoint::GetTouchBounds() const { return xec_touchBounds; }
|
2016-10-01 19:00:16 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool CScriptAiJumpPoint::GetInUse(TUniqueId uid) const {
|
2020-04-29 07:03:14 +00:00
|
|
|
return x108_24_inUse || x110_timeRemaining > 0.f ||
|
|
|
|
(x10a_occupant != kInvalidUniqueId && uid != kInvalidUniqueId && x10a_occupant != uid);
|
2016-10-01 19:00:16 +00:00
|
|
|
}
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|