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

109 lines
2.7 KiB
Java
Raw Normal View History

package com.earth2me.essentials.commands;
import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import java.util.Locale;
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(_("itemCannotBeSold"));
}
2011-11-18 19:30:05 +00:00
user.sendMessage(iStack.getDurability() != 0
? _("worthMeta",
iStack.getType().toString().toLowerCase(Locale.ENGLISH).replace("_", ""),
iStack.getDurability(),
Util.displayCurrency(worth * amount, ess),
amount,
Util.displayCurrency(worth, ess))
: _("worth",
iStack.getType().toString().toLowerCase(Locale.ENGLISH).replace("_", ""),
Util.displayCurrency(worth * amount, ess),
amount,
Util.displayCurrency(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(_("itemCannotBeSold"));
}
2011-11-18 19:30:05 +00:00
sender.sendMessage(iStack.getDurability() != 0
? _("worthMeta",
iStack.getType().toString().toLowerCase(Locale.ENGLISH).replace("_", ""),
iStack.getDurability(),
Util.displayCurrency(worth * amount, ess),
amount,
Util.displayCurrency(worth, ess))
: _("worth",
iStack.getType().toString().toLowerCase(Locale.ENGLISH).replace("_", ""),
Util.displayCurrency(worth * amount, ess),
amount,
Util.displayCurrency(worth, ess)));
}
}