summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java
blob: f0b503d2df112ecdb351583b24a30e04719a5322 (plain)
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package com.earth2me.essentials.commands;

import com.earth2me.essentials.*;
import static com.earth2me.essentials.I18n.tl;
import com.earth2me.essentials.utils.StringUtil;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import net.ess3.api.IUser;
import org.bukkit.Material;
import org.bukkit.Server;
import org.bukkit.inventory.ItemStack;


public class Commandrepair extends EssentialsCommand
{
	public Commandrepair()
	{
		super("repair");
	}

	@Override
	public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
	{
		if (args.length < 1 || args[0].equalsIgnoreCase("hand") || !user.isAuthorized("essentials.repair.all"))
		{
			repairHand(user);
		}
		else if (args[0].equalsIgnoreCase("all"))
		{
			final Trade charge = new Trade("repair-all", ess);
			charge.isAffordableFor(user);
			repairAll(user);
			charge.charge(user);
		}
		else
		{
			throw new NotEnoughArgumentsException();
		}
	}

	public void repairHand(User user) throws Exception
	{
		final ItemStack item = user.getBase().getItemInHand();
		if (item == null || item.getType().isBlock() || item.getDurability() == 0)
		{
			throw new Exception(tl("repairInvalidType"));
		}

		if (!item.getEnchantments().isEmpty()
			&& !ess.getSettings().getRepairEnchanted()
			&& !user.isAuthorized("essentials.repair.enchanted"))
		{
			throw new Exception(tl("repairEnchanted"));
		}

		final String itemName = item.getType().toString().toLowerCase(Locale.ENGLISH);
		final Trade charge = new Trade("repair-" + itemName.replace('_', '-'), new Trade("repair-" + item.getTypeId(), new Trade("repair-item", ess), ess), ess);

		charge.isAffordableFor(user);

		repairItem(item);

		charge.charge(user);
		user.getBase().updateInventory();
		user.sendMessage(tl("repair", itemName.replace('_', ' ')));
	}

	public void repairAll(User user) throws Exception
	{
		final List<String> repaired = new ArrayList<String>();
		repairItems(user.getBase().getInventory().getContents(), user, repaired);

		if (user.isAuthorized("essentials.repair.armor"))
		{
			repairItems(user.getBase().getInventory().getArmorContents(), user, repaired);
		}
		
		user.getBase().updateInventory();
		if (repaired.isEmpty())
		{
			throw new Exception(tl("repairNone"));
		}
		else
		{
			user.sendMessage(tl("repair", StringUtil.joinList(repaired)));
		}
	}

	private void repairItem(final ItemStack item) throws Exception
	{
		final Material material = Material.getMaterial(item.getTypeId());
		if (material.isBlock() || material.getMaxDurability() < 1)
		{
			throw new Exception(tl("repairInvalidType"));
		}

		if (item.getDurability() == 0)
		{
			throw new Exception(tl("repairAlreadyFixed"));
		}

		item.setDurability((short)0);
	}

	private void repairItems(final ItemStack[] items, final IUser user, final List<String> repaired)
	{
		for (ItemStack item : items)
		{
			if (item == null || item.getType().isBlock() || item.getDurability() == 0)
			{
				continue;
			}
			final String itemName = item.getType().toString().toLowerCase(Locale.ENGLISH);
			final Trade charge = new Trade("repair-" + itemName.replace('_', '-'), new Trade("repair-" + item.getTypeId(), new Trade("repair-item", ess), ess), ess);
			try
			{
				charge.isAffordableFor(user);
			}
			catch (ChargeException ex)
			{
				user.sendMessage(ex.getMessage());
				continue;
			}
			if (!item.getEnchantments().isEmpty()
				&& !ess.getSettings().getRepairEnchanted()
				&& !user.isAuthorized("essentials.repair.enchanted"))
			{
				continue;
			}

			try
			{
				repairItem(item);
			}
			catch (Exception e)
			{
				continue;
			}
			try
			{
				charge.charge(user);
			}
			catch (ChargeException ex)
			{
				user.sendMessage(ex.getMessage());
			}
			repaired.add(itemName.replace('_', ' '));
		}
	}
}