summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/DispenserEntity.h
blob: c123f76cb39ea017e179b6fef69a5e36012ea0de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69

#pragma once

#include "DropSpenserEntity.h"





// tolua_begin
class cDispenserEntity :
	public cDropSpenserEntity
{
	// tolua_end

	using Super = cDropSpenserEntity;

public:  // tolua_export

	BLOCKENTITY_PROTODEF(cDispenserEntity)

	/** Constructor used for normal operation */
	cDispenserEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World);

	// tolua_begin

	/** Spawns a projectile of the given kind in front of the dispenser with the specified speed.
	a_Item is the item from the internal storage from which the projectile originated.
	Returns the UniqueID of the spawned projectile, or cEntity::INVALID_ID on failure. */
	UInt32 SpawnProjectileFromDispenser(
		Vector3i a_BlockPos,
		cProjectileEntity::eKind a_Kind,
		const Vector3d & a_Speed,
		const cItem * a_Item = nullptr
	);

	/** OBSOLETE, use the Vector3i-based overload instead.
	Spawns a projectile of the given kind in front of the dispenser with the specified speed.
	a_Item is the item from the internal storage from which the projectile originated.
	Returns the UniqueID of the spawned projectile, or cEntity::INVALID_ID on failure. */
	UInt32 SpawnProjectileFromDispenser(
		int a_BlockX, int a_BlockY, int a_BlockZ,
		cProjectileEntity::eKind a_Kind,
		const Vector3d & a_Speed,
		const cItem * a_Item = nullptr
	)
	{
		return SpawnProjectileFromDispenser({a_BlockX, a_BlockY, a_BlockZ}, a_Kind, a_Speed, a_Item);
	}

	/** 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);

	// 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_ResultingBucketItemType);

	/** 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