summaryrefslogtreecommitdiffstats
path: root/src/Entities/ItemFrame.cpp
blob: 90d3bb049bb96a8d436c6a4aee8ac7edc1c9a977 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119

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

#include "ItemFrame.h"
#include "Player.h"
#include "../ClientHandle.h"
#include "Chunk.h"





cItemFrame::cItemFrame(eBlockFace a_BlockFace, Vector3d a_Pos):
	Super(etItemFrame, a_BlockFace, a_Pos),
	m_Item(E_BLOCK_AIR),
	m_ItemRotation(0)
{
}





bool cItemFrame::DoTakeDamage(TakeDamageInfo & a_TDI)
{
	// Take environmental or non-player damage normally:
	if (m_Item.IsEmpty() || (a_TDI.Attacker == nullptr) || !a_TDI.Attacker->IsPlayer())
	{
		return Super::DoTakeDamage(a_TDI);
	}

	// Only pop out a pickup if attacked by a non-creative player:
	if (!static_cast<cPlayer *>(a_TDI.Attacker)->IsGameModeCreative())
	{
		// Where the pickup spawns, offset by half cPickup height to centre in the block.
		const auto SpawnPosition = GetPosition().addedY(-0.125);

		// The direction the pickup travels to simulate a pop-out effect.
		const auto FlyOutSpeed = AddFaceDirection(Vector3i(), ProtocolFaceToBlockFace(m_Facing)) * 2;

		// Spawn the frame's held item:
		GetWorld()->SpawnItemPickup(SpawnPosition, m_Item, FlyOutSpeed);
	}

	// In any case we have a held item and were hit by a player, so clear it:
	m_Item.Empty();
	m_ItemRotation = 0;
	a_TDI.FinalDamage = 0;
	SetInvulnerableTicks(0);
	GetWorld()->BroadcastEntityMetadata(*this);
	return false;
}





void cItemFrame::GetDrops(cItems & a_Items, cEntity * a_Killer)
{
	if (!m_Item.IsEmpty())
	{
		a_Items.push_back(m_Item);
	}

	a_Items.emplace_back(E_ITEM_ITEM_FRAME);
}





void cItemFrame::OnRightClicked(cPlayer & a_Player)
{
	Super::OnRightClicked(a_Player);

	if (!m_Item.IsEmpty())
	{
		// Item not empty, rotate, clipping values to zero to seven inclusive
		m_ItemRotation++;
		if (m_ItemRotation >= 8)
		{
			m_ItemRotation = 0;
		}
	}
	else if (!a_Player.GetEquippedItem().IsEmpty())
	{
		// Item empty, and player held item not empty - add this item to self
		m_Item = a_Player.GetEquippedItem();
		m_Item.m_ItemCount = 1;

		if (!a_Player.IsGameModeCreative())
		{
			a_Player.GetInventory().RemoveOneEquippedItem();
		}
	}

	GetWorld()->BroadcastEntityMetadata(*this);  // Update clients
	GetParentChunk()->MarkDirty();               // Mark chunk dirty to save rotation or item
}





void cItemFrame::SpawnOn(cClientHandle & a_ClientHandle)
{
	Super::SpawnOn(a_ClientHandle);
	a_ClientHandle.SendSpawnEntity(*this);
	a_ClientHandle.SendEntityMetadata(*this);

	if (m_Item.m_ItemType == E_ITEM_MAP)
	{
		cMap * Map = GetWorld()->GetMapManager().GetMapData(static_cast<unsigned>(m_Item.m_ItemDamage));
		if (Map != nullptr)
		{
			a_ClientHandle.SendMapData(*Map, 0, 0);
		}
	}
}