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

#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;
	}

	virtual bool CanRepairWithRawMaterial(short a_ItemType) override
	{
		switch (m_ItemType)
		{
			case E_ITEM_CHAIN_BOOTS:
			case E_ITEM_CHAIN_CHESTPLATE:
			case E_ITEM_CHAIN_HELMET:
			case E_ITEM_CHAIN_LEGGINGS:
			{
				return (a_ItemType == E_ITEM_IRON);
			}
			case E_ITEM_DIAMOND_BOOTS:
			case E_ITEM_DIAMOND_CHESTPLATE:
			case E_ITEM_DIAMOND_HELMET:
			case E_ITEM_DIAMOND_LEGGINGS:
			{
				return (a_ItemType == E_ITEM_DIAMOND);
			}
			case E_ITEM_IRON_BOOTS:
			case E_ITEM_IRON_CHESTPLATE:
			case E_ITEM_IRON_HELMET:
			case E_ITEM_IRON_LEGGINGS:
			{
				return (a_ItemType == E_ITEM_IRON);
			}
			case E_ITEM_GOLD_BOOTS:
			case E_ITEM_GOLD_CHESTPLATE:
			case E_ITEM_GOLD_HELMET:
			case E_ITEM_GOLD_LEGGINGS:
			{
				return (a_ItemType == E_ITEM_GOLD);
			}
			case E_ITEM_LEATHER_BOOTS:
			case E_ITEM_LEATHER_CAP:
			case E_ITEM_LEATHER_PANTS:
			case E_ITEM_LEATHER_TUNIC:
			{
				return (a_ItemType == E_ITEM_LEATHER);
			}
		}
		return false;
	}

} ;