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
|
|
|
|
2017-07-12 06:13:27 -04: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, int a_LifetimeTicks = 6000, bool a_CanCombine = true);
|
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-10-15 13:01:55 -04:00
|
|
|
bool CollectedBy(cPlayer & a_Dest); // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2015-01-11 16:12:26 -05:00
|
|
|
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
|
2014-03-14 19:43:38 -04:00
|
|
|
|
2017-07-28 12:59:21 -04:00
|
|
|
virtual bool DoesPreventBlockPlacement(void) const override { return false; }
|
|
|
|
|
2017-07-12 06:13:27 -04:00
|
|
|
/** Returns whether this pickup is allowed to combine with other similar pickups */
|
|
|
|
bool CanCombine(void) const { return m_bCanCombine; } // tolua_export
|
|
|
|
|
|
|
|
/** Sets whether this pickup is allowed to combine with other similar pickups */
|
|
|
|
void SetCanCombine(bool a_CanCombine) { m_bCanCombine = a_CanCombine; } // tolua_export
|
|
|
|
|
2014-03-14 19:43:38 -04:00
|
|
|
/** Returns the number of ticks that this entity has existed */
|
2015-01-16 08:49:22 -05:00
|
|
|
int GetAge(void) const { return std::chrono::duration_cast<cTickTime>(m_Timer).count(); } // tolua_export
|
2014-03-14 19:43:38 -04:00
|
|
|
|
|
|
|
/** Set the number of ticks that this entity has existed */
|
2015-01-16 08:49:22 -05:00
|
|
|
void SetAge(int a_Age) { m_Timer = cTickTime(a_Age); } // tolua_export
|
2014-03-14 19:43:38 -04:00
|
|
|
|
2017-07-12 06:13:27 -04:00
|
|
|
/** Returns the number of ticks that this pickup should live for */
|
|
|
|
int GetLifetime(void) const { return std::chrono::duration_cast<cTickTime>(m_Lifetime).count(); } // tolua_export
|
|
|
|
|
|
|
|
/** Set the number of ticks that this pickup should live for */
|
|
|
|
void SetLifetime(int a_Lifetime) { m_Lifetime = cTickTime(a_Lifetime); } // 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 */
|
2015-01-16 08:49:22 -05:00
|
|
|
std::chrono::milliseconds m_Timer;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
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;
|
2017-07-12 06:13:27 -04:00
|
|
|
|
|
|
|
bool m_bCanCombine;
|
|
|
|
|
|
|
|
std::chrono::milliseconds m_Lifetime;
|
2013-01-11 23:46:01 -05:00
|
|
|
}; // tolua_export
|