2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CWEAPON
|
|
|
|
#define _CWEAPON
|
2022-10-04 00:00:46 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "MetroidPrime/CActor.hpp"
|
|
|
|
#include "MetroidPrime/CDamageInfo.hpp"
|
|
|
|
#include "MetroidPrime/Weapons/WeaponTypes.hpp"
|
|
|
|
|
|
|
|
class CWeapon : public CActor {
|
|
|
|
public:
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
// CEntity
|
|
|
|
~CWeapon() override;
|
2022-10-09 05:37:23 +00:00
|
|
|
void Think(float dt, CStateManager& mgr) override;
|
2022-10-04 00:00:46 +00:00
|
|
|
|
|
|
|
// CActor
|
|
|
|
void Render(const CStateManager&) const override;
|
|
|
|
EWeaponCollisionResponseTypes GetCollisionResponseType(const CVector3f&, const CVector3f&,
|
|
|
|
const CWeaponMode&,
|
|
|
|
int /*EProjectileAttrib?*/) const override;
|
|
|
|
void FluidFXThink(EFluidState, CScriptWater&, CStateManager&) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
EProjectileAttrib xe8_projectileAttribs;
|
|
|
|
TUniqueId xec_ownerId;
|
|
|
|
EWeaponType xf0_weaponType;
|
|
|
|
CMaterialFilter xf8_filter;
|
|
|
|
CDamageInfo x110_origDamageInfo;
|
|
|
|
CDamageInfo x12c_curDamageInfo;
|
|
|
|
float x148_curTime;
|
|
|
|
float x14c_damageFalloffSpeed;
|
|
|
|
float x150_damageDuration;
|
|
|
|
float x154_interferenceDuration;
|
|
|
|
};
|
|
|
|
CHECK_SIZEOF(CWeapon, 0x158)
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CWEAPON
|