2014-02-17 18:00:03 -05:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-03-14 21:45:25 -04:00
|
|
|
#include "HangingEntity.h"
|
2014-02-17 18:00:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// tolua_begin
|
|
|
|
class cItemFrame :
|
2014-03-14 21:45:25 -04:00
|
|
|
public cHangingEntity
|
2014-02-17 18:00:03 -05:00
|
|
|
{
|
2014-03-14 21:45:25 -04:00
|
|
|
typedef cHangingEntity super;
|
2014-02-17 18:00:03 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2014-10-21 16:02:30 -04:00
|
|
|
// tolua_end
|
|
|
|
|
2014-07-22 18:36:13 -04:00
|
|
|
CLASS_PROTODEF(cItemFrame)
|
2014-02-17 18:00:03 -05:00
|
|
|
|
2014-02-18 16:33:33 -05:00
|
|
|
cItemFrame(eBlockFace a_BlockFace, double a_X, double a_Y, double a_Z);
|
2014-02-17 18:00:03 -05:00
|
|
|
|
2014-10-21 16:02:30 -04:00
|
|
|
// tolua_begin
|
|
|
|
|
2014-03-14 21:45:25 -04:00
|
|
|
/** Returns the item in the frame */
|
2015-03-22 14:46:08 -04:00
|
|
|
const cItem & GetItem(void) const { return m_Item; }
|
2014-03-14 21:45:25 -04:00
|
|
|
|
|
|
|
/** Set the item in the frame */
|
2014-10-21 16:02:30 -04:00
|
|
|
void SetItem(cItem & a_Item) { m_Item = a_Item; }
|
2014-03-14 21:45:25 -04:00
|
|
|
|
|
|
|
/** Returns the rotation from the item in the frame */
|
2014-10-21 16:02:30 -04:00
|
|
|
Byte GetItemRotation(void) const { return m_ItemRotation; }
|
2014-03-14 21:45:25 -04:00
|
|
|
|
|
|
|
/** Set the rotation from the item in the frame */
|
2014-10-21 16:32:17 -04:00
|
|
|
void SetItemRotation(Byte a_ItemRotation) { m_ItemRotation = a_ItemRotation; }
|
2014-10-21 16:02:30 -04:00
|
|
|
|
|
|
|
// tolua_end
|
2014-02-17 18:00:03 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
virtual void OnRightClicked(cPlayer & a_Player) override;
|
2014-07-04 05:55:09 -04:00
|
|
|
virtual void KilledBy(TakeDamageInfo & a_TDI) override;
|
2014-02-17 18:00:03 -05:00
|
|
|
virtual void GetDrops(cItems & a_Items, cEntity * a_Killer) override;
|
2015-03-13 19:05:06 -04:00
|
|
|
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
|
2014-02-17 18:00:03 -05:00
|
|
|
|
|
|
|
cItem m_Item;
|
2014-10-21 16:02:30 -04:00
|
|
|
Byte m_ItemRotation;
|
2014-02-17 18:00:03 -05:00
|
|
|
|
|
|
|
}; // tolua_export
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|