mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 22:27:43 +00:00
Implement CScriptCameraHint scripting interface
This commit is contained in:
@@ -1,17 +1,21 @@
|
||||
#include "CScriptCameraHint.hpp"
|
||||
#include "Character/CModelData.hpp"
|
||||
#include "CActorParameters.hpp"
|
||||
#include "CStateManager.hpp"
|
||||
#include "TCastTo.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CScriptCameraHint::CScriptCameraHint(TUniqueId uid, const std::string& name, const CEntityInfo& info,
|
||||
const zeus::CTransform& xf, bool active, u32, u32, u32, float, float, float,
|
||||
const zeus::CVector3f&, const zeus::CVector3f&, const zeus::CVector3f&, float,
|
||||
float, float, float, float, float, float, float, float, float)
|
||||
const zeus::CTransform& xf, bool active, s32 w1,
|
||||
CBallCamera::EBallCameraBehaviour behaviour, s32 r4, float f1,
|
||||
float f2, float f3, const zeus::CVector3f& r6, const zeus::CVector3f& r7,
|
||||
const zeus::CVector3f& r8, float f4, float f5, float f6, float f7,
|
||||
float f8, float f9, float f10, float f11, float f12, float f13)
|
||||
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(EMaterialTypes::Unknown),
|
||||
CActorParameters::None(), kInvalidUniqueId)
|
||||
CActorParameters::None(), kInvalidUniqueId), xe8_w1(w1),
|
||||
xec_hint(r4, behaviour, f1, f2, f3, r6, r7, r8, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13),
|
||||
x168_origXf(xf)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -20,4 +24,114 @@ void CScriptCameraHint::Accept(IVisitor& visitor)
|
||||
visitor.Visit(this);
|
||||
}
|
||||
|
||||
void CScriptCameraHint::InitializeInArea(CStateManager& mgr)
|
||||
{
|
||||
x164_delegatedCamera = kInvalidUniqueId;
|
||||
for (CEntity* e : mgr.GetAllObjectList())
|
||||
{
|
||||
if (TCastToPtr<CEntity> ent = e)
|
||||
{
|
||||
for (const SConnection& conn : ent->GetConnectionList())
|
||||
{
|
||||
if (mgr.GetIdForScript(conn.x8_objId) != GetUniqueId())
|
||||
continue;
|
||||
if (conn.x4_msg != EScriptObjectMessage::Increment &&
|
||||
conn.x4_msg != EScriptObjectMessage::Decrement)
|
||||
continue;
|
||||
|
||||
for (auto it = ent->GetConnectionList().begin() ; it != ent->GetConnectionList().cend() ; ++it)
|
||||
{
|
||||
const SConnection& conn2 = *it;
|
||||
if (conn2.x4_msg != EScriptObjectMessage::Increment &&
|
||||
conn2.x4_msg != EScriptObjectMessage::Decrement)
|
||||
continue;
|
||||
TUniqueId id = mgr.GetIdForScript(conn2.x8_objId);
|
||||
if (TCastToPtr<CPathCamera>(mgr.ObjectById(id)) ||
|
||||
TCastToPtr<CScriptSpindleCamera>(mgr.ObjectById((id))))
|
||||
{
|
||||
ent->ConnectionList().erase(it);
|
||||
if (x164_delegatedCamera != id)
|
||||
x164_delegatedCamera = id;
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CScriptCameraHint::AddHelper(TUniqueId id)
|
||||
{
|
||||
auto search = std::find_if(x150_helpers.begin(), x150_helpers.end(),
|
||||
[id](TUniqueId tid) { return tid == id; });
|
||||
if (search == x150_helpers.end())
|
||||
x150_helpers.push_back(id);
|
||||
}
|
||||
|
||||
void CScriptCameraHint::RemoveHelper(TUniqueId id)
|
||||
{
|
||||
auto search = std::find_if(x150_helpers.begin(), x150_helpers.end(),
|
||||
[id](TUniqueId tid) { return tid == id; });
|
||||
if (search != x150_helpers.end())
|
||||
x150_helpers.erase(search);
|
||||
}
|
||||
|
||||
void CScriptCameraHint::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId sender, CStateManager& mgr)
|
||||
{
|
||||
switch (msg)
|
||||
{
|
||||
case EScriptObjectMessage::Deleted:
|
||||
case EScriptObjectMessage::Deactivate:
|
||||
mgr.GetCameraManager()->DeleteCameraHint(GetUniqueId(), mgr);
|
||||
break;
|
||||
case EScriptObjectMessage::InitializedInArea:
|
||||
InitializeInArea(mgr);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
if (GetActive())
|
||||
{
|
||||
switch (msg)
|
||||
{
|
||||
case EScriptObjectMessage::Increment:
|
||||
AddHelper(sender);
|
||||
mgr.GetCameraManager()->AddActiveCameraHint(GetUniqueId(), mgr);
|
||||
x166_inactive = false;
|
||||
break;
|
||||
case EScriptObjectMessage::Decrement:
|
||||
RemoveHelper(sender);
|
||||
mgr.GetCameraManager()->AddInactiveCameraHint(GetUniqueId(), mgr);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (msg == EScriptObjectMessage::Follow)
|
||||
{
|
||||
if (!GetActive())
|
||||
{
|
||||
if (TCastToConstPtr<CActor> act = mgr.GetObjectById(sender))
|
||||
{
|
||||
zeus::CVector3f followerToThisFlat = x168_origXf.origin - act->GetTranslation();
|
||||
followerToThisFlat.z = 0.f;
|
||||
if (followerToThisFlat.canBeNormalized())
|
||||
followerToThisFlat.normalize();
|
||||
else
|
||||
followerToThisFlat = act->GetTransform().basis[1];
|
||||
zeus::CVector3f target = act->GetTranslation() + followerToThisFlat;
|
||||
target.z = x168_origXf.origin.z + followerToThisFlat.z;
|
||||
SetTransform(zeus::lookAt(act->GetTranslation(), target));
|
||||
}
|
||||
}
|
||||
AddHelper(sender);
|
||||
mgr.GetCameraManager()->AddActiveCameraHint(GetUniqueId(), mgr);
|
||||
}
|
||||
|
||||
CActor::AcceptScriptMsg(msg, sender, mgr);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user