TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/Commandworth.java

108 lines
2.7 KiB
Java
Raw Normal View History

package com.earth2me.essentials.commands;
2011-11-18 17:42:26 +00:00
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
2011-11-18 17:42:26 +00:00
import org.bukkit.Server;
import org.bukkit.command.CommandSender;
import org.bukkit.inventory.ItemStack;
public class Commandworth extends EssentialsCommand
{
public Commandworth()
{
super("worth");
}
2011-11-18 19:30:05 +00:00
//TODO: Remove duplication
@Override
2011-11-18 19:30:05 +00:00
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
{
2011-11-18 19:30:05 +00:00
ItemStack iStack = user.getInventory().getItemInHand();
int amount = iStack.getAmount();
if (args.length > 0)
{
2011-11-18 19:30:05 +00:00
iStack = ess.getItemDb().get(args[0]);
}
try
{
if (args.length > 1)
{
amount = Integer.parseInt(args[1]);
}
}
catch (NumberFormatException ex)
{
2011-11-18 19:30:05 +00:00
amount = iStack.getType().getMaxStackSize();
}
2011-11-18 19:30:05 +00:00
iStack.setAmount(amount);
final double worth = ess.getWorth().getPrice(iStack);
if (Double.isNaN(worth))
{
throw new Exception(Util.i18n("itemCannotBeSold"));
}
2011-11-18 19:30:05 +00:00
user.sendMessage(iStack.getDurability() != 0
? Util.format("worthMeta",
2011-11-18 19:30:05 +00:00
iStack.getType().toString().toLowerCase().replace("_", ""),
iStack.getDurability(),
Util.formatCurrency(worth * amount, ess),
amount,
Util.formatCurrency(worth, ess))
: Util.format("worth",
2011-11-18 19:30:05 +00:00
iStack.getType().toString().toLowerCase().replace("_", ""),
Util.formatCurrency(worth * amount, ess),
amount,
Util.formatCurrency(worth, ess)));
}
2011-10-19 12:47:32 +00:00
@Override
2011-11-18 19:30:05 +00:00
protected void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception
2011-10-19 12:47:32 +00:00
{
if (args.length < 1)
{
throw new NotEnoughArgumentsException();
}
2011-10-19 12:47:32 +00:00
2011-11-18 19:30:05 +00:00
ItemStack iStack = ess.getItemDb().get(args[0]);
int amount = iStack.getAmount();
try
{
if (args.length > 1)
{
amount = Integer.parseInt(args[1]);
}
}
catch (NumberFormatException ex)
{
2011-11-18 19:30:05 +00:00
amount = iStack.getType().getMaxStackSize();
}
2011-11-18 19:30:05 +00:00
iStack.setAmount(amount);
final double worth = ess.getWorth().getPrice(iStack);
if (Double.isNaN(worth))
{
throw new Exception(Util.i18n("itemCannotBeSold"));
}
2011-11-18 19:30:05 +00:00
sender.sendMessage(iStack.getDurability() != 0
2011-10-19 12:47:32 +00:00
? Util.format("worthMeta",
2011-11-18 19:30:05 +00:00
iStack.getType().toString().toLowerCase().replace("_", ""),
iStack.getDurability(),
2011-10-19 12:47:32 +00:00
Util.formatCurrency(worth * amount, ess),
amount,
Util.formatCurrency(worth, ess))
: Util.format("worth",
2011-11-18 19:30:05 +00:00
iStack.getType().toString().toLowerCase().replace("_", ""),
2011-10-19 12:47:32 +00:00
Util.formatCurrency(worth * amount, ess),
amount,
Util.formatCurrency(worth, ess)));
}
}