2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "DropSpenserEntity.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// tolua_begin
|
|
|
|
class cDispenserEntity :
|
|
|
|
public cDropSpenserEntity
|
|
|
|
{
|
|
|
|
typedef cDropSpenserEntity super;
|
2014-05-26 02:44:16 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
public:
|
|
|
|
|
|
|
|
// tolua_end
|
2014-05-26 02:44:16 -04:00
|
|
|
|
2014-11-27 16:42:08 -05:00
|
|
|
BLOCKENTITY_PROTODEF(cDispenserEntity)
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-06-11 13:46:24 -04:00
|
|
|
/** Constructor used for normal operation */
|
2013-07-29 07:13:03 -04:00
|
|
|
cDispenserEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);
|
|
|
|
|
2014-06-11 13:46:24 -04:00
|
|
|
// tolua_begin
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2015-03-21 10:18:17 -04:00
|
|
|
/** Spawns a projectile of the given kind in front of the dispenser with the specified speed.
|
2016-07-06 06:39:56 -04:00
|
|
|
Returns the UniqueID of the spawned projectile, or cEntity::INVALID_ID on failure. */
|
2016-05-29 04:30:47 -04:00
|
|
|
UInt32 SpawnProjectileFromDispenser(int a_BlockX, int a_BlockY, int a_BlockZ, cProjectileEntity::eKind a_Kind, const Vector3d & a_Speed, const cItem * a_Item = nullptr);
|
2014-06-03 03:26:14 -04:00
|
|
|
|
2016-07-06 06:39:56 -04:00
|
|
|
/** Returns a unit vector in the cardinal direction of where the dispenser with the specified meta would be facing. */
|
|
|
|
static Vector3d GetShootVector(NIBBLETYPE a_BlockMeta);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-06-11 13:46:24 -04:00
|
|
|
// tolua_end
|
2014-06-03 03:26:14 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
private:
|
|
|
|
// cDropSpenser overrides:
|
|
|
|
virtual void DropSpenseFromSlot(cChunk & a_Chunk, int a_SlotNum) override;
|
2014-05-26 02:44:16 -04:00
|
|
|
|
2014-06-11 13:46:24 -04:00
|
|
|
/** If such a bucket can fit, adds it to m_Contents and returns true */
|
2013-07-29 07:13:03 -04:00
|
|
|
bool ScoopUpLiquid(int a_SlotNum, short a_BucketItemType);
|
2014-05-26 02:44:16 -04:00
|
|
|
|
2014-06-11 13:46:24 -04:00
|
|
|
/** If the a_BlockInFront can be washed away by liquid and the empty bucket can fit,
|
|
|
|
does the m_Contents processing and returns true. Returns false otherwise. */
|
2013-07-29 07:13:03 -04:00
|
|
|
bool EmptyLiquidBucket(BLOCKTYPE a_BlockInFront, int a_SlotNum);
|
|
|
|
} ; // tolua_export
|
2014-06-04 06:35:45 -04:00
|
|
|
|
|
|
|
|
|
|
|
|