2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
// ThrownEnderPearlEntity.h
|
|
|
|
|
|
|
|
// Declares the cThrownEnderPeralEntity class representing an ender pearl being thrown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:08:39 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ProjectileEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:58:06 -04:00
|
|
|
// tolua_begin
|
|
|
|
|
2014-04-26 20:08:39 -04:00
|
|
|
class cThrownEnderPearlEntity :
|
2014-04-27 20:03:06 -04:00
|
|
|
public cProjectileEntity
|
2014-04-26 20:08:39 -04:00
|
|
|
{
|
2019-09-29 08:59:24 -04:00
|
|
|
// tolua_end
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2019-09-29 08:59:24 -04:00
|
|
|
using super = cProjectileEntity;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2019-09-29 08:59:24 -04:00
|
|
|
public: // tolua_export
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-07-22 18:36:13 -04:00
|
|
|
CLASS_PROTODEF(cThrownEnderPearlEntity)
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2019-09-29 08:59:24 -04:00
|
|
|
cThrownEnderPearlEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-26 20:08:39 -04:00
|
|
|
protected:
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-04-26 20:08:39 -04:00
|
|
|
// cProjectileEntity overrides:
|
2017-09-07 04:25:34 -04:00
|
|
|
virtual void OnHitSolidBlock(Vector3d a_HitPos, eBlockFace a_HitFace) override;
|
|
|
|
virtual void OnHitEntity(cEntity & a_EntityHit, Vector3d a_HitPos) override;
|
2015-01-11 16:12:26 -05:00
|
|
|
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-06-22 15:44:01 -04:00
|
|
|
/** Teleports the creator where the ender pearl lands */
|
2017-09-07 04:25:34 -04:00
|
|
|
void TeleportCreator(Vector3d a_HitPos);
|
2014-06-22 15:44:01 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/** Time in ticks to wait for the hit animation to begin before destroying */
|
|
|
|
int m_DestroyTimer;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
} ; // tolua_export
|
2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|