2019-12-22 20:04:07 +00:00
|
|
|
#include "Runtime/World/CScriptActorRotate.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/CStateManager.hpp"
|
|
|
|
#include "Runtime/World/CScriptPlatform.hpp"
|
|
|
|
#include "Runtime/World/CScriptSpiderBallWaypoint.hpp"
|
|
|
|
|
2019-09-21 13:07:13 +00:00
|
|
|
#include "TCastTo.hpp" // Generated file, do not modify include path
|
2016-04-27 19:59:38 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2017-11-13 06:19:18 +00:00
|
|
|
CScriptActorRotate::CScriptActorRotate(TUniqueId uid, std::string_view name, const CEntityInfo& info,
|
2017-08-29 13:17:52 +00:00
|
|
|
const zeus::CVector3f& rotation, float maxTime, bool updateActors,
|
|
|
|
bool updateOnCreation, bool active)
|
2016-12-19 18:27:58 +00:00
|
|
|
: CEntity(uid, info, active, name)
|
2017-08-10 13:40:07 +00:00
|
|
|
, x34_rotation(rotation)
|
2017-08-29 13:17:52 +00:00
|
|
|
, x40_maxTime(maxTime)
|
2017-08-19 22:46:24 +00:00
|
|
|
, x58_24_updateRotation(false)
|
|
|
|
, x58_25_skipSpiderBallWaypoints(false)
|
2017-08-29 13:17:52 +00:00
|
|
|
, x58_26_updateActors(updateActors)
|
2018-12-08 05:30:43 +00:00
|
|
|
, x58_27_updateOnCreation(updateOnCreation) {}
|
|
|
|
|
|
|
|
void CScriptActorRotate::Accept(IVisitor& visitor) { visitor.Visit(this); }
|
|
|
|
|
|
|
|
void CScriptActorRotate::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr) {
|
|
|
|
if (msg == EScriptObjectMessage::Activate) {
|
|
|
|
CEntity::AcceptScriptMsg(msg, uid, mgr);
|
|
|
|
return;
|
|
|
|
}
|
2017-01-15 03:07:01 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (msg == EScriptObjectMessage::Action || msg == EScriptObjectMessage::Next ||
|
|
|
|
(msg == EScriptObjectMessage::Registered && x58_27_updateOnCreation))
|
|
|
|
UpdateActors(msg == EScriptObjectMessage::Next, mgr);
|
|
|
|
|
|
|
|
CEntity::AcceptScriptMsg(msg, uid, mgr);
|
2017-01-15 03:07:01 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CScriptActorRotate::Think(float dt, CStateManager& mgr) {
|
|
|
|
if (x58_24_updateRotation && GetActive()) {
|
|
|
|
x44_currentTime += dt;
|
|
|
|
if (x44_currentTime >= x40_maxTime) {
|
|
|
|
x58_24_updateRotation = false;
|
|
|
|
x44_currentTime = x40_maxTime;
|
2017-08-19 22:46:24 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
float timeOffset = x44_currentTime / x40_maxTime;
|
2017-08-19 22:46:24 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
for (const auto& actorPair : x48_actors) {
|
|
|
|
if (TCastToPtr<CActor> act = mgr.ObjectById(actorPair.first)) {
|
|
|
|
zeus::CTransform xf = zeus::CTransform::RotateZ(zeus::degToRad(timeOffset * x34_rotation.z())) *
|
|
|
|
zeus::CTransform::RotateY(zeus::degToRad(timeOffset * x34_rotation.y())) *
|
|
|
|
zeus::CTransform::RotateX(zeus::degToRad(timeOffset * x34_rotation.x()));
|
|
|
|
zeus::CTransform localRot = actorPair.second * xf;
|
|
|
|
localRot.origin = act->GetTranslation();
|
|
|
|
act->SetTransform(localRot);
|
|
|
|
|
|
|
|
if (TCastToPtr<CScriptPlatform> plat = mgr.ObjectById(actorPair.first))
|
|
|
|
UpdatePlatformRiders(*plat.GetPtr(), xf, mgr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x58_24_updateRotation) {
|
|
|
|
if (!x58_25_skipSpiderBallWaypoints)
|
|
|
|
UpdateSpiderBallWaypoints(mgr);
|
2017-08-10 13:40:07 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x58_26_updateActors)
|
|
|
|
UpdateActors(false, mgr);
|
2017-08-19 22:46:24 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2017-08-19 22:46:24 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CScriptActorRotate::UpdatePlatformRiders(CScriptPlatform& plat, const zeus::CTransform& xf, CStateManager& mgr) {
|
|
|
|
UpdatePlatformRiders(plat.GetStaticSlaves(), plat, xf, mgr);
|
|
|
|
UpdatePlatformRiders(plat.GetDynamicSlaves(), plat, xf, mgr);
|
2017-08-19 22:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CScriptActorRotate::UpdatePlatformRiders(std::vector<SRiders>& riders, CScriptPlatform& plat,
|
2018-12-08 05:30:43 +00:00
|
|
|
const zeus::CTransform& xf, CStateManager& mgr) {
|
|
|
|
for (SRiders& rider : riders) {
|
|
|
|
if (TCastToPtr<CActor> act = mgr.ObjectById(rider.x0_uid)) {
|
|
|
|
zeus::CTransform& riderXf = rider.x8_transform;
|
|
|
|
act->SetTransform(rider.x8_transform);
|
|
|
|
act->SetTranslation(act->GetTranslation() + plat.GetTranslation());
|
|
|
|
|
|
|
|
if (x58_24_updateRotation) {
|
|
|
|
riderXf = {act->GetTransform().basis, act->GetTranslation() - plat.GetTranslation()};
|
|
|
|
|
|
|
|
if (TCastToPtr<CScriptSpiderBallWaypoint> wp = act.GetPtr())
|
|
|
|
x58_25_skipSpiderBallWaypoints = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TCastToPtr<CScriptPlatform> plat2 = mgr.ObjectById(rider.x0_uid))
|
|
|
|
UpdatePlatformRiders(*plat2.GetPtr(), xf, mgr);
|
2017-08-19 22:46:24 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2017-08-19 22:46:24 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CScriptActorRotate::UpdateActors(bool next, CStateManager& mgr) {
|
|
|
|
if (x58_24_updateRotation)
|
|
|
|
return;
|
2017-08-19 22:46:24 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
x48_actors.clear();
|
2017-08-19 22:46:24 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
for (const SConnection& conn : x20_conns) {
|
|
|
|
if (conn.x0_state == EScriptObjectState::Play && conn.x4_msg == EScriptObjectMessage::Play) {
|
|
|
|
auto search = mgr.GetIdListForScript(conn.x8_objId);
|
|
|
|
for (auto it = search.first; it != search.second; ++it) {
|
|
|
|
if (TCastToPtr<CActor> act = mgr.ObjectById(it->second))
|
|
|
|
x48_actors[it->second] = act->GetTransform().getRotation();
|
|
|
|
}
|
2017-08-19 22:46:24 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2017-08-19 22:46:24 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
SendScriptMsgs(EScriptObjectState::Play, mgr, EScriptObjectMessage::None);
|
|
|
|
|
|
|
|
if (!x48_actors.empty()) {
|
|
|
|
x58_24_updateRotation = true;
|
|
|
|
x44_currentTime = (next ? x40_maxTime : 0.f);
|
|
|
|
}
|
|
|
|
}
|
2017-08-19 22:46:24 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CScriptActorRotate::UpdateSpiderBallWaypoints(CStateManager& mgr) {
|
|
|
|
rstl::reserved_vector<TUniqueId, 1024> waypointIds;
|
|
|
|
CObjectList& objectList = mgr.GetAllObjectList();
|
|
|
|
for (CEntity* ent : objectList) {
|
|
|
|
if (TCastToPtr<CScriptSpiderBallWaypoint> wp = ent)
|
|
|
|
waypointIds.push_back(wp->GetUniqueId());
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const TUniqueId& uid : waypointIds) {
|
|
|
|
CScriptSpiderBallWaypoint* wp = static_cast<CScriptSpiderBallWaypoint*>(mgr.ObjectById(uid));
|
|
|
|
if (wp) {
|
2017-08-19 22:46:24 +00:00
|
|
|
#if 0
|
|
|
|
wp->sub_801187B4(mgr);
|
|
|
|
wp->xe4_27_ = true;
|
|
|
|
#endif
|
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2017-08-19 22:46:24 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
x58_25_skipSpiderBallWaypoints = false;
|
2016-04-27 19:59:38 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|