metaforce/Runtime/World/CScriptSpawnPoint.cpp

73 lines
3.0 KiB
C++
Raw Normal View History

#include "Runtime/World/CScriptSpawnPoint.hpp"
#include "Runtime/CStateManager.hpp"
#include "Runtime/World/CPlayer.hpp"
#include "Runtime/World/CWorld.hpp"
#include "TCastTo.hpp" // Generated file, do not modify include path
2016-04-26 17:21:08 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-04-26 17:21:08 -07:00
2018-12-07 21:30:43 -08:00
CScriptSpawnPoint::CScriptSpawnPoint(TUniqueId uid, std::string_view name, const CEntityInfo& info,
const zeus::CTransform& xf,
2018-01-05 22:50:42 -08:00
const rstl::reserved_vector<u32, int(CPlayerState::EItemType::Max)>& itemCounts,
bool defaultSpawn, bool active, bool morphed)
2021-04-02 16:46:16 -07:00
: CEntity(uid, info, active, name)
, x34_xf(xf)
, x64_itemCounts(itemCounts)
, x10c_24_firstSpawn(defaultSpawn)
2021-06-07 12:29:18 -07:00
, x10c_25_morphed(morphed) {}
2017-01-06 17:58:05 -08:00
2018-12-07 21:30:43 -08:00
void CScriptSpawnPoint::Accept(IVisitor& visitor) { visitor.Visit(this); }
2017-01-06 17:58:05 -08:00
2018-12-07 21:30:43 -08:00
void CScriptSpawnPoint::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr) {
CEntity::AcceptScriptMsg(msg, objId, stateMgr);
2017-01-06 17:58:05 -08:00
2018-12-07 21:30:43 -08:00
if (msg == EScriptObjectMessage::SetToZero || msg == EScriptObjectMessage::Reset) {
if (msg == EScriptObjectMessage::Reset) {
using EPlayerItemType = CPlayerState::EItemType;
const std::shared_ptr<CPlayerState>& plState = stateMgr.GetPlayerState();
for (u32 i = 0; i < u32(EPlayerItemType::Max); ++i) {
plState->ReInitializePowerUp(EPlayerItemType(i), GetPowerup(EPlayerItemType(i)));
2018-12-07 21:30:43 -08:00
plState->ResetAndIncrPickUp(EPlayerItemType(i), GetPowerup(EPlayerItemType(i)));
}
}
2017-01-06 17:58:05 -08:00
2018-12-07 21:30:43 -08:00
if (GetActive()) {
CPlayer* player = stateMgr.Player();
2017-01-06 17:58:05 -08:00
2018-12-07 21:30:43 -08:00
if (x4_areaId != stateMgr.GetNextAreaId()) {
CGameArea* area = stateMgr.GetWorld()->GetArea(x4_areaId);
2018-12-07 21:30:43 -08:00
if (area->IsPostConstructed() && area->GetOcclusionState() == CGameArea::EOcclusionState::Occluded) {
/* while (!area->TryTakingOutOfARAM()) {} */
CWorld::PropogateAreaChain(CGameArea::EOcclusionState::Visible, area, stateMgr.GetWorld());
2017-01-06 17:58:05 -08:00
}
2018-12-07 21:30:43 -08:00
stateMgr.SetCurrentAreaId(x4_areaId);
stateMgr.SetActorAreaId(*stateMgr.Player(), x4_areaId);
player->Teleport(GetTransform(), stateMgr, true);
player->SetSpawnedMorphBallState(CPlayer::EPlayerMorphBallState(x10c_25_morphed), stateMgr);
if (area->IsPostConstructed() && area->GetOcclusionState() == CGameArea::EOcclusionState::Visible) {
2018-12-07 21:30:43 -08:00
CWorld::PropogateAreaChain(CGameArea::EOcclusionState::Occluded,
stateMgr.GetWorld()->GetArea(stateMgr.GetNextAreaId()), stateMgr.GetWorld());
}
2018-12-07 21:30:43 -08:00
} else {
player->Teleport(GetTransform(), stateMgr, true);
player->SetSpawnedMorphBallState(CPlayer::EPlayerMorphBallState(x10c_25_morphed), stateMgr);
}
2017-01-06 17:58:05 -08:00
}
2018-12-07 21:30:43 -08:00
CEntity::SendScriptMsgs(EScriptObjectState::Zero, stateMgr, EScriptObjectMessage::None);
}
2016-04-26 17:21:08 -07:00
}
2018-12-07 21:30:43 -08:00
u32 CScriptSpawnPoint::GetPowerup(CPlayerState::EItemType item) const {
const auto idx = static_cast<size_t>(item);
if (item >= CPlayerState::EItemType::Max) {
2018-12-07 21:30:43 -08:00
return x64_itemCounts.front();
}
2018-12-07 21:30:43 -08:00
return x64_itemCounts[idx];
2016-04-26 17:21:08 -07:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce