summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/EnchantingTableEntity.cpp
blob: 81c42caafc8a547c9035e059151454a052fd759f (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

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "EnchantingTableEntity.h"
#include "../ClientHandle.h"





cEnchantingTableEntity::cEnchantingTableEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World, AString a_CustomName) :
	Super(a_BlockType, a_BlockMeta, a_Pos, a_World),
	m_CustomName(std::move(a_CustomName))
{
	ASSERT(a_BlockType == E_BLOCK_ENCHANTMENT_TABLE);
}





cItems cEnchantingTableEntity::ConvertToPickups() const
{
	cItem Item(E_BLOCK_ENCHANTMENT_TABLE);
	Item.m_CustomName = m_CustomName;
	return Item;
}





void cEnchantingTableEntity::CopyFrom(const cBlockEntity & a_Src)
{
	Super::CopyFrom(a_Src);

	auto & Src = static_cast<const cEnchantingTableEntity &>(a_Src);
	m_CustomName = Src.m_CustomName;
}





bool cEnchantingTableEntity::UsedBy(cPlayer * a_Player)
{
	UNUSED(a_Player);
	return true;
}





void cEnchantingTableEntity::SendTo(cClientHandle & a_Client)
{
	a_Client.SendUpdateBlockEntity(*this);
}