metaforce/Runtime/World/CScriptCoverPoint.hpp

55 lines
1.9 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-04-24 22:46:28 -07:00
#include <optional>
#include <string_view>
#include "Runtime/GCNTypes.hpp"
#include "Runtime/Character/CharacterCommon.hpp"
#include "Runtime/World/CActor.hpp"
#include <zeus/CAABox.hpp>
2016-04-24 22:46:28 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
class CScriptCoverPoint : public CActor {
bool xe8_26_landHere : 1;
bool xe8_27_wallHang : 1;
bool xe8_28_stay : 1;
bool xe8_29_ : 1;
bool xe8_30_attackDirection : 1;
2018-12-07 21:30:43 -08:00
float xec_cosHorizontalAngle;
float xf0_sinVerticalAngle;
float xf4_coverTime;
bool xf8_24_crouch : 1;
bool xf8_25_inUse : 1 = false;
2018-12-07 21:30:43 -08:00
TUniqueId xfa_occupant = kInvalidUniqueId;
TUniqueId xfc_retreating = kInvalidUniqueId;
std::optional<zeus::CAABox> x100_touchBounds;
2018-12-07 21:30:43 -08:00
float x11c_timeLeft = 0.f;
2016-04-24 22:46:28 -07:00
public:
2021-05-26 07:00:57 -07:00
DEFINE_ENTITY
2018-12-07 21:30:43 -08:00
CScriptCoverPoint(TUniqueId uid, std::string_view name, const CEntityInfo& info, zeus::CTransform xf, bool active,
u32 flags, bool crouch, float horizontalAngle, float verticalAngle, float coverTime);
2016-04-24 22:46:28 -07:00
void Accept(IVisitor& visitor) override;
void Think(float, CStateManager&) override;
void AddToRenderer(const zeus::CFrustum&, CStateManager&) override {}
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
void Render(CStateManager&) override {}
std::optional<zeus::CAABox> GetTouchBounds() const override;
2018-12-07 21:30:43 -08:00
void SetInUse(bool inUse);
bool GetInUse(TUniqueId uid) const;
bool ShouldLandHere() const { return xe8_26_landHere; }
bool ShouldWallHang() const { return xe8_27_wallHang; }
bool ShouldStay() const { return xe8_28_stay; }
bool ShouldCrouch() const { return xf8_24_crouch; }
bool Blown(const zeus::CVector3f& pos) const;
float GetSinSqVerticalAngle() const;
float GetCosHorizontalAngle() const { return xec_cosHorizontalAngle; }
pas::ECoverDirection GetAttackDirection() const {
return xe8_30_attackDirection ? pas::ECoverDirection::Right : pas::ECoverDirection::Left;
}
2018-12-07 21:30:43 -08:00
void Reserve(TUniqueId id) { xfa_occupant = id; }
2016-04-24 22:46:28 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce