2016-12-22 19:57:21 +00:00
|
|
|
#ifndef __URDE_CBEAMPROJECTILE_HPP__
|
|
|
|
#define __URDE_CBEAMPROJECTILE_HPP__
|
|
|
|
|
|
|
|
#include "Weapon/CGameProjectile.hpp"
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
class CBeamProjectile : public CGameProjectile
|
|
|
|
{
|
|
|
|
public:
|
2017-11-13 06:19:18 +00:00
|
|
|
CBeamProjectile(const TToken<CWeaponDescription>& wDesc, std::string_view name, EWeaponType wType,
|
2017-09-05 03:00:19 +00:00
|
|
|
const zeus::CTransform& xf, int flags, float f1, float f2, EMaterialTypes matType,
|
|
|
|
const CDamageInfo& dInfo, TUniqueId uid, TAreaId aid, TUniqueId owner,
|
|
|
|
EProjectileAttrib attribs, bool b1);
|
2016-12-22 19:57:21 +00:00
|
|
|
|
2017-05-18 10:58:15 +00:00
|
|
|
void Accept(IVisitor &visitor);
|
2016-12-22 19:57:21 +00:00
|
|
|
float GetMaxRadius() const;
|
|
|
|
zeus::CVector3f GetSurfaceNormal() const;
|
|
|
|
void GetDamageType() const;
|
|
|
|
void GetCurrentPos() const;
|
|
|
|
void PointCache();
|
|
|
|
void GetPointCache() const;
|
|
|
|
void CauseDamage(bool);
|
|
|
|
zeus::CVector3f GetBeamOrigin() const;
|
|
|
|
void GetInvMaxLength() const;
|
|
|
|
void GetCurrentLength();
|
|
|
|
void GetMaxLength();
|
|
|
|
s32 GetIntMaxLength();
|
|
|
|
|
|
|
|
void Think(float, CStateManager&);
|
|
|
|
rstl::optional_object<zeus::CAABox> GetTouchBounds() const;
|
|
|
|
void Touch(CActor&, CStateManager&);
|
|
|
|
virtual void ResetBeam(CStateManager&, bool);
|
|
|
|
virtual void UpdateFX(const zeus::CTransform&, float, CStateManager&);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CBEAMPROJECTILE_HPP__
|