2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-11-20 17:33:21 +00:00
|
|
|
|
2019-09-23 19:00:23 +00:00
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
#include "Runtime/RetroTypes.hpp"
|
|
|
|
#include "Runtime/Collision/CCollidableSphere.hpp"
|
|
|
|
#include "Runtime/Collision/CCollisionSurface.hpp"
|
|
|
|
#include "Runtime/World/CPatterned.hpp"
|
|
|
|
|
|
|
|
#include <zeus/CVector3f.hpp>
|
2017-11-20 17:33:21 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2018-12-08 05:30:43 +00:00
|
|
|
class CWallWalker : public CPatterned {
|
2018-11-12 04:21:36 +00:00
|
|
|
public:
|
2021-05-26 14:00:57 +00:00
|
|
|
DEFINE_ENTITY
|
2018-12-08 05:30:43 +00:00
|
|
|
enum class EWalkerType { Parasite = 0, Oculus = 1, Geemer = 2, IceZoomer = 3, Seedling = 4 };
|
|
|
|
|
2018-09-16 23:22:35 +00:00
|
|
|
protected:
|
2020-04-26 07:22:00 +00:00
|
|
|
CCollisionSurface x568_alignNormal{zeus::CVector3f(), zeus::skForward, zeus::skRight, UINT32_MAX};
|
2018-12-08 05:30:43 +00:00
|
|
|
CCollidableSphere x590_colSphere;
|
|
|
|
float x5b0_collisionCloseMargin;
|
|
|
|
float x5b4_alignAngVel;
|
|
|
|
float x5b8_tumbleAngle = 0.f;
|
|
|
|
float x5bc_patrolPauseRemTime = 0.f;
|
|
|
|
float x5c0_advanceWpRadius;
|
|
|
|
float x5c4_playerObstructionMinDist;
|
|
|
|
float x5c8_bendingHackWeight = 0.f;
|
|
|
|
s32 x5cc_bendingHackAnim;
|
|
|
|
EWalkerType x5d0_walkerType;
|
|
|
|
s16 x5d4_thinkCounter = 0;
|
2020-04-20 04:57:50 +00:00
|
|
|
bool x5d6_24_alignToFloor : 1 = false;
|
|
|
|
bool x5d6_25_hasAlignSurface : 1 = false;
|
|
|
|
bool x5d6_26_playerObstructed : 1 = false;
|
2018-12-08 05:30:43 +00:00
|
|
|
bool x5d6_27_disableMove : 1;
|
2020-04-20 04:57:50 +00:00
|
|
|
bool x5d6_28_addBendingWeight : 1 = true;
|
|
|
|
bool x5d6_29_applyBendingHack : 1 = false;
|
2018-12-08 05:30:43 +00:00
|
|
|
static zeus::CVector3f ProjectVectorToPlane(const zeus::CVector3f& pt, const zeus::CVector3f& plane) {
|
|
|
|
return pt - plane * pt.dot(plane);
|
|
|
|
}
|
|
|
|
static zeus::CVector3f ProjectPointToPlane(const zeus::CVector3f& p0, const zeus::CVector3f& p1,
|
|
|
|
const zeus::CVector3f& plane) {
|
|
|
|
return p0 - (p0 - p1).dot(plane) * plane;
|
|
|
|
}
|
|
|
|
void OrientToSurfaceNormal(const zeus::CVector3f& normal, float clampAngle);
|
|
|
|
static bool PointOnSurface(const CCollisionSurface& surf, const zeus::CVector3f& point);
|
|
|
|
void AlignToFloor(CStateManager&, float, const zeus::CVector3f&, float);
|
|
|
|
void GotoNextWaypoint(CStateManager& mgr);
|
|
|
|
|
2017-11-20 17:33:21 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CWallWalker(ECharacter chr, TUniqueId uid, std::string_view name, EFlavorType flavType, const CEntityInfo& eInfo,
|
|
|
|
const zeus::CTransform& xf, CModelData&& mData, const CPatternedInfo& pInfo, EMovementType mType,
|
|
|
|
EColliderType colType, EBodyType bType, const CActorParameters& aParms, float collisionCloseMargin,
|
|
|
|
float alignAngVel, EKnockBackVariant kbVariant, float advanceWpRadius, EWalkerType wType,
|
|
|
|
float playerObstructionMinDist, bool disableMove);
|
2018-09-16 23:22:35 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
void PreThink(float, CStateManager&) override;
|
|
|
|
void Think(float, CStateManager&) override;
|
2020-04-09 17:28:20 +00:00
|
|
|
void Render(CStateManager&) override;
|
2019-08-09 12:45:18 +00:00
|
|
|
const CCollisionPrimitive* GetCollisionPrimitive() const override { return &x590_colSphere; }
|
2018-12-08 05:30:43 +00:00
|
|
|
void UpdateWPDestination(CStateManager&);
|
2017-11-20 17:33:21 +00:00
|
|
|
};
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|