summaryrefslogtreecommitdiffstats
path: root/source/Entities/Pickup.h
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2013-11-24 15:19:41 +0100
committerAlexander Harkness <bearbin@gmail.com>2013-11-24 15:19:41 +0100
commit675b4aa878f16291ce33fced48a2bc7425f635ae (patch)
tree409914df27a98f65adf866da669429c4de141b6f /source/Entities/Pickup.h
parentLineBlockTracer: Using the coord-based block faces. (diff)
downloadcuberite-675b4aa878f16291ce33fced48a2bc7425f635ae.tar
cuberite-675b4aa878f16291ce33fced48a2bc7425f635ae.tar.gz
cuberite-675b4aa878f16291ce33fced48a2bc7425f635ae.tar.bz2
cuberite-675b4aa878f16291ce33fced48a2bc7425f635ae.tar.lz
cuberite-675b4aa878f16291ce33fced48a2bc7425f635ae.tar.xz
cuberite-675b4aa878f16291ce33fced48a2bc7425f635ae.tar.zst
cuberite-675b4aa878f16291ce33fced48a2bc7425f635ae.zip
Diffstat (limited to 'source/Entities/Pickup.h')
-rw-r--r--source/Entities/Pickup.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/source/Entities/Pickup.h b/source/Entities/Pickup.h
deleted file mode 100644
index d39eda298..000000000
--- a/source/Entities/Pickup.h
+++ /dev/null
@@ -1,64 +0,0 @@
-
-#pragma once
-
-#include "Entity.h"
-#include "../Item.h"
-
-
-
-
-
-class cPlayer;
-
-
-
-
-
-// tolua_begin
-class cPickup :
- public cEntity
-{
- // tolua_end
- typedef cEntity super;
-
-public:
- CLASS_PROTODEF(cPickup);
-
- 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); // tolua_export
-
- cItem & GetItem(void) {return m_Item; } // tolua_export
- const cItem & GetItem(void) const {return m_Item; }
-
- virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
-
- bool CollectedBy(cPlayer * a_Dest); // tolua_export
-
- virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
-
- /// Returns the number of ticks that this entity has existed
- int GetAge(void) const { return (int)(m_Timer / 50); } // tolua_export
-
- /// Returns true if the pickup has already been collected
- bool IsCollected(void) const { return m_bCollected; } // tolua_export
-
- /// Returns true if created by player (i.e. vomiting), used for determining picking-up delay time
- bool IsPlayerCreated(void) const { return m_bIsPlayerCreated; } // tolua_export
-
-private:
- Vector3d m_ResultingSpeed; //Can be used to modify the resulting speed for the current tick ;)
-
- Vector3d m_WaterSpeed;
-
- /// The number of ticks that the entity has existed / timer between collect and destroy; in msec
- float m_Timer;
-
- cItem m_Item;
-
- bool m_bCollected;
-
- bool m_bIsPlayerCreated;
-}; // tolua_export
-
-
-
-