summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemArmor.h
blob: 08cddb1ad11a0ba381b29188a1c5aa141604a844 (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

#pragma once

#include "ItemHandler.h"
#include "../World.h"





class cItemArmorHandler :
	public cItemHandler
{
public:
	cItemArmorHandler(int a_ItemType) :
		cItemHandler(a_ItemType)
	{
	}

	/** Move the armor to the armor slot of the player's inventory */
	virtual bool OnItemUse(cWorld * a_World, cPlayer * a_Player, const cItem & a_Item, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_Dir) override
	{
		int SlotNum;
		if (ItemCategory::IsHelmet(a_Item.m_ItemType))
		{
			SlotNum = 0;
		}
		else if (ItemCategory::IsChestPlate(a_Item.m_ItemType))
		{
			SlotNum = 1;
		}
		else if (ItemCategory::IsLeggings(a_Item.m_ItemType))
		{
			SlotNum = 2;
		}
		else if (ItemCategory::IsBoots(a_Item.m_ItemType))
		{
			SlotNum = 3;
		}
		else
		{
			LOGWARNING("Used unknown armor: %i", a_Item.m_ItemType);
			return false;
		}
		
		if (!a_Player->GetInventory().GetArmorSlot(SlotNum).IsEmpty())
		{
			return false;
		}
		
		a_Player->GetInventory().SetArmorSlot(SlotNum, a_Item.CopyOne());
		
		cItem Item(a_Item);
		Item.m_ItemCount--;
		if (Item.m_ItemCount <= 0)
		{
			Item.Empty();
		}
		a_Player->GetInventory().SetHotbarSlot(a_Player->GetInventory().GetEquippedSlotNum(), Item);
		return true;
	}

} ;