2011-03-19 22:39:51 +00:00
|
|
|
package com.earth2me.essentials.commands;
|
|
|
|
|
2013-10-16 19:59:39 +00:00
|
|
|
import com.earth2me.essentials.CommandSource;
|
2011-03-19 22:39:51 +00:00
|
|
|
import com.earth2me.essentials.User;
|
2013-06-08 21:31:19 +00:00
|
|
|
import com.earth2me.essentials.utils.NumberUtil;
|
2017-06-11 00:17:43 +00:00
|
|
|
import com.google.common.collect.Lists;
|
2015-04-15 04:06:16 +00:00
|
|
|
import org.bukkit.Server;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
|
2013-05-05 03:13:17 +00:00
|
|
|
import java.math.BigDecimal;
|
2017-06-11 00:17:43 +00:00
|
|
|
import java.util.Collections;
|
2013-07-14 00:03:08 +00:00
|
|
|
import java.util.List;
|
2011-11-21 01:55:26 +00:00
|
|
|
import java.util.Locale;
|
2015-04-15 04:06:16 +00:00
|
|
|
|
|
|
|
import static com.earth2me.essentials.I18n.tl;
|
2011-03-19 22:39:51 +00:00
|
|
|
|
|
|
|
|
2015-04-15 04:06:16 +00:00
|
|
|
public class Commandworth extends EssentialsCommand {
|
|
|
|
public Commandworth() {
|
|
|
|
super("worth");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
|
2017-01-18 03:45:29 +00:00
|
|
|
List<ItemStack> is = ess.getItemDb().getMatching(user, args);
|
2015-04-15 04:06:16 +00:00
|
|
|
int count = 0;
|
|
|
|
boolean isBulk = is.size() > 1;
|
2020-08-11 18:09:22 +00:00
|
|
|
BigDecimal totalWorth = BigDecimal.ZERO;
|
2015-04-15 04:06:16 +00:00
|
|
|
for (ItemStack stack : is) {
|
|
|
|
try {
|
|
|
|
if (stack.getAmount() > 0) {
|
|
|
|
totalWorth = totalWorth.add(itemWorth(user.getSource(), user, stack, args));
|
|
|
|
stack = stack.clone();
|
|
|
|
count++;
|
|
|
|
for (ItemStack zeroStack : is) {
|
|
|
|
if (zeroStack.isSimilar(stack)) {
|
|
|
|
zeroStack.setAmount(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
if (!isBulk) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (count > 1) {
|
2020-09-08 19:36:05 +00:00
|
|
|
String totalWorthStr = NumberUtil.displayCurrency(totalWorth, ess);
|
2015-04-15 04:06:16 +00:00
|
|
|
if (args.length > 0 && args[0].equalsIgnoreCase("blocks")) {
|
2020-09-08 19:36:05 +00:00
|
|
|
user.sendMessage(tl("totalSellableBlocks", totalWorthStr, totalWorthStr));
|
2020-08-11 18:09:22 +00:00
|
|
|
return;
|
2015-04-15 04:06:16 +00:00
|
|
|
}
|
2020-09-08 19:36:05 +00:00
|
|
|
user.sendMessage(tl("totalSellableAll", totalWorthStr, totalWorthStr));
|
2015-04-15 04:06:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception {
|
2020-08-11 18:09:22 +00:00
|
|
|
if (args.length == 0) {
|
2015-04-15 04:06:16 +00:00
|
|
|
throw new NotEnoughArgumentsException();
|
|
|
|
}
|
2020-08-11 18:09:22 +00:00
|
|
|
itemWorth(sender, null, ess.getItemDb().get(args[0]), args);
|
2015-04-15 04:06:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private BigDecimal itemWorth(CommandSource sender, User user, ItemStack is, String[] args) throws Exception {
|
|
|
|
int amount = 1;
|
|
|
|
if (user == null) {
|
|
|
|
if (args.length > 1) {
|
|
|
|
try {
|
|
|
|
amount = Integer.parseInt(args[1].replaceAll("[^0-9]", ""));
|
|
|
|
} catch (NumberFormatException ex) {
|
|
|
|
throw new NotEnoughArgumentsException(ex);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
amount = ess.getWorth().getAmount(ess, user, is, args, true);
|
|
|
|
}
|
|
|
|
|
2017-12-13 06:06:25 +00:00
|
|
|
BigDecimal worth = ess.getWorth().getPrice(ess, is);
|
2015-04-15 04:06:16 +00:00
|
|
|
if (worth == null) {
|
|
|
|
throw new Exception(tl("itemCannotBeSold"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (amount < 0) {
|
|
|
|
amount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
BigDecimal result = worth.multiply(BigDecimal.valueOf(amount));
|
|
|
|
sender.sendMessage(is.getDurability() != 0 ? tl("worthMeta", is.getType().toString().toLowerCase(Locale.ENGLISH).replace("_", ""), is.getDurability(), NumberUtil.displayCurrency(result, ess), amount, NumberUtil.displayCurrency(worth, ess)) : tl("worth", is.getType().toString().toLowerCase(Locale.ENGLISH).replace("_", ""), NumberUtil.displayCurrency(result, ess), amount, NumberUtil.displayCurrency(worth, ess)));
|
|
|
|
return result;
|
|
|
|
}
|
2017-06-11 00:17:43 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected List<String> getTabCompleteOptions(Server server, User user, String commandLabel, String[] args) {
|
|
|
|
if (args.length == 1) {
|
|
|
|
return getMatchingItems(args[0]);
|
|
|
|
} else if (args.length == 2) {
|
|
|
|
return Lists.newArrayList("1", "64");
|
|
|
|
} else {
|
|
|
|
return Collections.emptyList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected List<String> getTabCompleteOptions(Server server, CommandSource sender, String commandLabel, String[] args) {
|
|
|
|
if (args.length == 1) {
|
|
|
|
return getItems();
|
|
|
|
} else if (args.length == 2) {
|
|
|
|
return Lists.newArrayList("1", "64");
|
|
|
|
} else {
|
|
|
|
return Collections.emptyList();
|
|
|
|
}
|
|
|
|
}
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|