summaryrefslogtreecommitdiffstats
path: root/src/UI/EnderChestWindow.h
blob: d63689f544189230779f722933f57816d34b12e1 (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
70
71
72
73
74
75
76
77
78

// EnderChestWindow.h

// Representing the UI window for the enderchest block





#pragma once

#include "Window.h"
#include "../BlockEntities/EnderChestEntity.h"





class cEnderChestWindow :
	public cWindow
{
	typedef cWindow super;

public:
	cEnderChestWindow(cEnderChestEntity * a_EnderChest) :
		cWindow(wtChest, "Ender Chest"),
		m_World(a_EnderChest->GetWorld()),
		m_BlockX(a_EnderChest->GetPosX()),
		m_BlockY(a_EnderChest->GetPosY()),
		m_BlockZ(a_EnderChest->GetPosZ())
	{
		m_SlotAreas.push_back(new cSlotAreaEnderChest(a_EnderChest, *this));
		m_SlotAreas.push_back(new cSlotAreaInventory(*this));
		m_SlotAreas.push_back(new cSlotAreaHotBar(*this));

		// Play the opening sound:
		m_World->BroadcastSoundEffect("random.chestopen", (double)m_BlockX, (double)m_BlockY, (double)m_BlockZ, 1, 1);

		// Send out the chest-open packet:
		m_World->BroadcastBlockAction(m_BlockX, m_BlockY, m_BlockZ, 1, 1, E_BLOCK_ENDER_CHEST);
	}

	~cEnderChestWindow()
	{
		// Send out the chest-close packet:
		m_World->BroadcastBlockAction(m_BlockX, m_BlockY, m_BlockZ, 1, 0, E_BLOCK_ENDER_CHEST);

		// Play the closing sound
		m_World->BroadcastSoundEffect("random.chestclosed", (double)m_BlockX, (double)m_BlockY, (double)m_BlockZ, 1, 1);
	}

	virtual void DistributeStack(cItem & a_ItemStack, int a_Slot, cPlayer & a_Player, cSlotArea * a_ClickedArea, bool a_ShouldApply) override
	{
		cSlotAreas AreasInOrder;

		if (a_ClickedArea == m_SlotAreas[0])
		{
			// Chest Area
			AreasInOrder.push_back(m_SlotAreas[2]);  /* Hotbar    */
			AreasInOrder.push_back(m_SlotAreas[1]);  /* Inventory */
			super::DistributeStackToAreas(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, true);
		}
		else
		{
			// Hotbar or Inventory
			AreasInOrder.push_back(m_SlotAreas[0]);  /* Chest */
			super::DistributeStackToAreas(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, false);
		}
	}

protected:
	cWorld * m_World;
	int m_BlockX, m_BlockY, m_BlockZ;  // Position of the enderchest, for the window-close packet
};