summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/BlockEntityWithItems.h
blob: fec288b14a69141cfa8124c6b7eff99f7f063983 (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

// BlockEntityWithItems.h

// Declares the cBlockEntityWithItems class representing a common ancestor for all block entities that have an ItemGrid





#pragma once

#include "BlockEntity.h"
#include "../ItemGrid.h"
#include "../UI/WindowOwner.h"
#include "../World.h"





// tolua_begin
class cBlockEntityWithItems : public cBlockEntity,
							  // tolua_end
							  public cItemGrid::cListener,
							  // tolua_begin
							  public cBlockEntityWindowOwner
{
	// tolua_end

	using Super = cBlockEntity;

  public:  // tolua_export
	cBlockEntityWithItems(
		BLOCKTYPE a_BlockType,  // Type of the block that the entity represents
		NIBBLETYPE a_BlockMeta,  // Meta of the block that the entity represents
		Vector3i a_Pos,  // Abs position of the block entity
		int a_ItemGridWidth,
		int a_ItemGridHeight,  // Dimensions of the ItemGrid
		cWorld * a_World  // Optional world to assign to the entity
	);

	// cBlockEntity overrides:
	virtual cItems ConvertToPickups() const override;
	virtual void CopyFrom(const cBlockEntity & a_Src) override;

	// tolua_begin

	const cItem & GetSlot(int a_SlotNum) const { return m_Contents.GetSlot(a_SlotNum); }
	const cItem & GetSlot(int a_X, int a_Y) const { return m_Contents.GetSlot(a_X, a_Y); }

	void SetSlot(int a_SlotNum, const cItem & a_Item) { m_Contents.SetSlot(a_SlotNum, a_Item); }
	void SetSlot(int a_X, int a_Y, const cItem & a_Item) { m_Contents.SetSlot(a_X, a_Y, a_Item); }

	/** Returns the ItemGrid used for storing the contents */
	cItemGrid & GetContents(void) { return m_Contents; }

	// tolua_end

	/** Const version of the GetContents() function for C++ type-safety */
	const cItemGrid & GetContents(void) const { return m_Contents; }

  protected:
	cItemGrid m_Contents;

	// cItemGrid::cListener overrides:
	virtual void OnSlotChanged(cItemGrid * a_Grid, int a_SlotNum) override;
};  // tolua_export