summaryrefslogblamecommitdiffstats
path: root/src/BlockEntities/DispenserEntity.h
blob: 5ba87b7161b502b52e008791b4dcb2acd557c9d5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                         
 

       
                    
 

                                               
                                                    

                                                                                     



                                                                                                                                               
 



                                                                                                
 


                                                                                  
 
                                                                               
                                                                  
 

                                                                                            

                                                                        


 

#pragma once

#include "DropSpenserEntity.h"





// tolua_begin
class cDispenserEntity :
	public cDropSpenserEntity
{
	typedef cDropSpenserEntity super;

public:

	// tolua_end

	BLOCKENTITY_PROTODEF(cDispenserEntity);
	
	/** Constructor used for normal operation */
	cDispenserEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);

	// tolua_begin
	
	/** Spawns a projectile of the given kind in front of the dispenser with the specified speed. */
	void SpawnProjectileFromDispenser(int a_BlockX, int a_BlockY, int a_BlockZ, cProjectileEntity::eKind a_Kind, const Vector3d & a_Speed);

	/** Returns a unit vector in the cardinal direction of where the dispenser is facing. */
	Vector3d GetShootVector(NIBBLETYPE a_Meta);
	
	// tolua_end

private:
	// cDropSpenser overrides:
	virtual void DropSpenseFromSlot(cChunk & a_Chunk, int a_SlotNum) override;

	/** If such a bucket can fit, adds it to m_Contents and returns true */
	bool ScoopUpLiquid(int a_SlotNum, short a_BucketItemType);

	/** 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. */
	bool EmptyLiquidBucket(BLOCKTYPE a_BlockInFront, int a_SlotNum);
} ;  // tolua_export