2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "Entity.h"
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "../Item.h"
|
2012-12-27 21:45:20 -05:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cPlayer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-24 03:58:26 -04:00
|
|
|
// tolua_begin
|
|
|
|
class cPickup :
|
|
|
|
public cEntity
|
|
|
|
{
|
|
|
|
typedef cEntity super;
|
2014-10-11 22:39:55 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
public:
|
2014-02-03 17:51:26 -05:00
|
|
|
// tolua_end
|
|
|
|
|
2014-07-22 18:36:13 -04:00
|
|
|
CLASS_PROTODEF(cPickup)
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-02-03 17:51:26 -05:00
|
|
|
cPickup(double a_PosX, double a_PosY, double a_PosZ, const cItem & a_Item, bool IsPlayerCreated, float a_SpeedX = 0.f, float a_SpeedY = 0.f, float a_SpeedZ = 0.f);
|
2014-03-14 19:43:38 -04:00
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
cItem & GetItem(void) {return m_Item; } // tolua_export
|
2012-12-27 21:45:20 -05:00
|
|
|
const cItem & GetItem(void) const {return m_Item; }
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-08-24 03:58:26 -04:00
|
|
|
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
|
2014-03-14 19:43:38 -04:00
|
|
|
|
2014-07-17 17:15:53 -04:00
|
|
|
bool CollectedBy(cPlayer * a_Dest); // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
|
2014-03-14 19:43:38 -04:00
|
|
|
|
|
|
|
/** Returns the number of ticks that this entity has existed */
|
2014-10-11 22:39:55 -04:00
|
|
|
int GetAge(void) const { return static_cast<int>(m_Timer / 50); } // tolua_export
|
2014-03-14 19:43:38 -04:00
|
|
|
|
|
|
|
/** Set the number of ticks that this entity has existed */
|
2014-10-11 22:39:55 -04:00
|
|
|
void SetAge(int a_Age) { m_Timer = static_cast<float>(a_Age * 50); } // tolua_export
|
2014-03-14 19:43:38 -04:00
|
|
|
|
|
|
|
/** Returns true if the pickup has already been collected */
|
2013-08-19 05:58:20 -04:00
|
|
|
bool IsCollected(void) const { return m_bCollected; } // tolua_export
|
2013-10-23 19:30:20 -04:00
|
|
|
|
2014-03-14 19:43:38 -04:00
|
|
|
/** Returns true if created by player (i.e. vomiting), used for determining picking-up delay time */
|
2014-07-17 16:15:34 -04:00
|
|
|
bool IsPlayerCreated(void) const { return m_bIsPlayerCreated; } // tolua_export
|
2014-03-14 19:43:38 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
private:
|
|
|
|
|
2014-03-14 19:43:38 -04:00
|
|
|
/** The number of ticks that the entity has existed / timer between collect and destroy; in msec */
|
2012-06-14 09:06:06 -04:00
|
|
|
float m_Timer;
|
|
|
|
|
2012-12-27 21:45:20 -05:00
|
|
|
cItem m_Item;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
bool m_bCollected;
|
2013-10-23 19:30:20 -04:00
|
|
|
|
|
|
|
bool m_bIsPlayerCreated;
|
2013-01-11 23:46:01 -05:00
|
|
|
}; // tolua_export
|