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
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
/// Constructor used for normal operation
|
|
|
|
cDispenserEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);
|
|
|
|
|
|
|
|
static const char * GetClassStatic(void) { return "cDispenserEntity"; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
// cDropSpenser overrides:
|
|
|
|
virtual void DropSpenseFromSlot(cChunk & a_Chunk, int a_SlotNum) override;
|
2014-05-26 02:44:16 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
/// If such a bucket can fit, adds it to m_Contents and returns true
|
|
|
|
bool ScoopUpLiquid(int a_SlotNum, short a_BucketItemType);
|
2014-05-26 02:44:16 -04:00
|
|
|
|
2014-05-26 08:47:04 -04:00
|
|
|
// Spawns a projectile of the given kind in front of the dispenser
|
2014-05-28 03:10:09 -04:00
|
|
|
void SpawnProjectileFromDispenser(cChunk & a_Chunk, int & DispX, int & DispY, int & DispZ, cProjectileEntity::eKind kind);
|
2014-05-26 08:47:04 -04:00
|
|
|
|
2014-05-26 02:44:16 -04:00
|
|
|
// Returns how to aim the projectile
|
|
|
|
Vector3d GetProjectileLookVector(cChunk & a_Chunk);
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
/// If the a_BlockInFront is liquidable and the empty bucket can fit, does the m_Contents processing and returns true
|
|
|
|
bool EmptyLiquidBucket(BLOCKTYPE a_BlockInFront, int a_SlotNum);
|
|
|
|
} ; // tolua_export
|
2014-05-26 08:47:04 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|