mirror of https://github.com/PrimeDecomp/prime.git
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
#ifndef _CGAMEPROJECTILE_HPP
|
|
#define _CGAMEPROJECTILE_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "MetroidPrime/Weapons/CProjectileWeapon.hpp"
|
|
#include "MetroidPrime/Weapons/CWeapon.hpp"
|
|
|
|
#include "Kyoto/TToken.hpp"
|
|
|
|
#include "rstl/optional_object.hpp"
|
|
#include "rstl/vector.hpp"
|
|
|
|
class CGenDescription;
|
|
class CProjectileTouchResult;
|
|
|
|
class CGameProjectile : public CWeapon {
|
|
public:
|
|
// TODO ctor
|
|
|
|
// CEntity
|
|
~CGameProjectile() override;
|
|
void Accept(IVisitor& visitor) override;
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr) override;
|
|
|
|
// CActor
|
|
void Render(const CStateManager&) const override;
|
|
rstl::optional_object< CAABox > GetTouchBounds() const override;
|
|
void FluidFXThink(EFluidState, CScriptWater&, CStateManager&) override;
|
|
|
|
// CGameProjectile
|
|
virtual void ResolveCollisionWithActor(const CRayCastResult& res, CActor& act,
|
|
CStateManager& mgr);
|
|
|
|
TUniqueId GetHomingTargetId() const { return x2c0_homingTargetId; }
|
|
|
|
private:
|
|
rstl::optional_object< TLockedToken< CGenDescription > > x158_visorParticle;
|
|
u16 x168_visorSfx;
|
|
CProjectileWeapon x170_projectile;
|
|
CVector3f x298_previousPos;
|
|
float x2a4_projExtent;
|
|
float x2a8_homingDt;
|
|
double x2b0_targetHomingTime;
|
|
double x2b8_curHomingTime;
|
|
TUniqueId x2c0_homingTargetId;
|
|
TUniqueId x2c2_lastResolvedObj;
|
|
TUniqueId x2c4_hitProjectileOwner;
|
|
TUniqueId x2c6_pendingDamagee;
|
|
TUniqueId x2c8_projectileLight;
|
|
CAssetId x2cc_wpscId;
|
|
rstl::vector< CProjectileTouchResult > x2d0_touchResults;
|
|
float x2e0_minHomingDist;
|
|
bool x2e4_24_active : 1;
|
|
bool x2e4_25_startedUnderwater : 1;
|
|
bool x2e4_26_waterUpdate : 1;
|
|
bool x2e4_27_inWater : 1;
|
|
bool x2e4_28_sendProjectileCollideMsg : 1;
|
|
};
|
|
CHECK_SIZEOF(CGameProjectile, 0x2e8)
|
|
|
|
#endif
|