metaforce/Runtime/World/CScriptGenerator.cpp

147 lines
4.8 KiB
C++
Raw Permalink Normal View History

#include "Runtime/World/CScriptGenerator.hpp"
#include "Runtime/CStateManager.hpp"
#include "Runtime/World/CWallCrawlerSwarm.hpp"
#include "TCastTo.hpp" // Generated file, do not modify include path
2016-04-20 14:44:18 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-04-20 14:44:18 -07:00
2017-11-12 22:19:18 -08:00
CScriptGenerator::CScriptGenerator(TUniqueId uid, std::string_view name, const CEntityInfo& info, u32 spawnCount,
bool noReuseFollowers, const zeus::CVector3f& vec1, bool noInheritXf, bool active,
float minScale, float maxScale)
2017-01-24 09:23:10 -08:00
: CEntity(uid, info, active, name)
, x34_spawnCount(spawnCount)
, x38_24_noReuseFollowers(noReuseFollowers)
, x38_25_noInheritTransform(noInheritXf)
2017-01-24 09:23:10 -08:00
, x3c_offset(vec1)
, x48_minScale(minScale)
2018-12-07 21:30:43 -08:00
, x4c_maxScale(maxScale) {}
2016-05-03 01:27:28 -07:00
2017-01-24 09:23:10 -08:00
void CScriptGenerator::Accept(IVisitor& visitor) { visitor.Visit(this); }
2017-01-14 19:07:01 -08:00
2018-12-07 21:30:43 -08:00
void CScriptGenerator::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId sender, CStateManager& stateMgr) {
switch (msg) {
case EScriptObjectMessage::SetToZero: {
if (!GetActive()) {
2018-12-07 21:30:43 -08:00
break;
}
2018-12-07 21:30:43 -08:00
std::vector<TUniqueId> follows;
follows.reserve(x20_conns.size());
for (const SConnection& conn : x20_conns) {
if (conn.x0_state != EScriptObjectState::Zero || conn.x4_msg != EScriptObjectMessage::Follow) {
2018-12-07 21:30:43 -08:00
continue;
}
2018-12-07 21:30:43 -08:00
const TUniqueId uid = stateMgr.GetIdForScript(conn.x8_objId);
if (uid != kInvalidUniqueId) {
const CEntity* ent = stateMgr.GetObjectById(uid);
if (ent && ent->GetActive()) {
follows.push_back(uid);
}
}
2018-12-07 21:30:43 -08:00
}
2017-01-24 09:23:10 -08:00
if (follows.empty()) {
2018-12-07 21:30:43 -08:00
follows.push_back(sender);
}
2018-12-07 21:30:43 -08:00
std::vector<std::pair<TUniqueId, TEditorId>> activates;
activates.reserve(x20_conns.size());
2017-01-24 09:23:10 -08:00
2018-12-07 21:30:43 -08:00
for (const SConnection& conn : x20_conns) {
if (conn.x0_state != EScriptObjectState::Zero) {
2018-12-07 21:30:43 -08:00
continue;
}
2017-01-24 09:23:10 -08:00
2018-12-07 21:30:43 -08:00
TUniqueId uid = stateMgr.GetIdForScript(conn.x8_objId);
if (uid == kInvalidUniqueId) {
2018-12-07 21:30:43 -08:00
continue;
}
2017-01-24 09:23:10 -08:00
2018-12-07 21:30:43 -08:00
if (conn.x4_msg == EScriptObjectMessage::Activate) {
if (!stateMgr.GetObjectById(uid)) {
2018-12-07 21:30:43 -08:00
continue;
}
2018-12-07 21:30:43 -08:00
activates.emplace_back(uid, conn.x8_objId);
2019-01-30 00:38:16 -08:00
} else {
stateMgr.SendScriptMsgAlways(uid, GetUniqueId(), conn.x4_msg);
2018-12-07 21:30:43 -08:00
}
}
2017-01-31 03:21:45 -08:00
if (activates.empty()) {
2018-12-07 21:30:43 -08:00
break;
}
2018-12-07 21:30:43 -08:00
for (u32 i = 0; i < x34_spawnCount; ++i) {
if (activates.size() == 0 || follows.size() == 0) {
break;
}
2018-12-07 21:30:43 -08:00
u32 activatesRand = 0.99f * (stateMgr.GetActiveRandom()->Float() * activates.size());
const u32 followsRand = 0.99f * (stateMgr.GetActiveRandom()->Float() * follows.size());
2018-12-07 21:30:43 -08:00
for (u32 j = 0; j < activates.size(); ++j) {
if (TCastToConstPtr<CScriptSound>(stateMgr.GetObjectById(activates[j].first))) {
2018-12-07 21:30:43 -08:00
activatesRand = j;
break;
}
}
2018-12-07 21:30:43 -08:00
const std::pair<TUniqueId, TEditorId> idPair = activates[activatesRand];
2018-12-07 21:30:43 -08:00
CEntity* activate = stateMgr.ObjectById(idPair.first);
CEntity* follow = stateMgr.ObjectById(follows[followsRand]);
if (!activate || !follow) {
break;
}
2018-12-07 21:30:43 -08:00
const bool oldGeneratingObject = stateMgr.GetIsGeneratingObject();
2018-12-07 21:30:43 -08:00
stateMgr.SetIsGeneratingObject(true);
const std::pair<TEditorId, TUniqueId> objId = stateMgr.GenerateObject(idPair.second);
2018-12-07 21:30:43 -08:00
stateMgr.SetIsGeneratingObject(oldGeneratingObject);
if (objId.second != kInvalidUniqueId) {
if (CEntity* genObj = stateMgr.ObjectById(objId.second)) {
const TCastToPtr<CActor> activateActor(genObj);
const TCastToConstPtr<CActor> followActor(follow);
const TCastToConstPtr<CWallCrawlerSwarm> wallCrawlerSwarm(follow);
2018-12-07 21:30:43 -08:00
if (activateActor && wallCrawlerSwarm) {
if (!x38_25_noInheritTransform) {
2018-12-07 21:30:43 -08:00
activateActor->SetTransform(wallCrawlerSwarm->GetTransform());
}
2018-12-07 21:30:43 -08:00
activateActor->SetTranslation(wallCrawlerSwarm->GetLastKilledOffset() + x3c_offset);
} else if (activateActor && followActor) {
if (!x38_25_noInheritTransform) {
2018-12-07 21:30:43 -08:00
activateActor->SetTransform(followActor->GetTransform());
}
2018-12-07 21:30:43 -08:00
activateActor->SetTranslation(followActor->GetTranslation() + x3c_offset);
}
const float rnd = stateMgr.GetActiveRandom()->Range(x48_minScale, x4c_maxScale);
CModelData* mData = activateActor->GetModelData();
if (mData && !mData->IsNull()) {
2018-12-07 21:30:43 -08:00
mData->SetScale(rnd * mData->GetScale());
}
2018-12-07 21:30:43 -08:00
stateMgr.SendScriptMsg(genObj, GetUniqueId(), EScriptObjectMessage::Activate);
}
}
activates.erase(std::find(activates.begin(), activates.end(), idPair));
if (x38_24_noReuseFollowers) {
2018-12-07 21:30:43 -08:00
follows.erase(std::find(follows.begin(), follows.end(), follows[followsRand]));
}
2016-05-03 01:27:28 -07:00
}
2018-12-07 21:30:43 -08:00
break;
}
default:
break;
}
2016-05-03 01:27:28 -07:00
2018-12-07 21:30:43 -08:00
CEntity::AcceptScriptMsg(msg, sender, stateMgr);
2016-05-03 01:27:28 -07:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce