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

74 lines
2.8 KiB
Java
Raw Normal View History

2013-02-04 21:47:26 +00:00
package com.earth2me.essentials.commands;
import com.earth2me.essentials.MetaItemStack;
import com.earth2me.essentials.Potions;
import com.earth2me.essentials.User;
2013-06-08 21:31:19 +00:00
import com.earth2me.essentials.utils.StringUtil;
2013-02-04 21:47:26 +00:00
import org.bukkit.Material;
import org.bukkit.Server;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.PotionMeta;
2013-02-08 23:13:36 +00:00
import org.bukkit.potion.PotionEffect;
2013-02-04 21:47:26 +00:00
import org.bukkit.potion.PotionEffectType;
2015-04-15 04:06:16 +00:00
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import static com.earth2me.essentials.I18n.tl;
2013-02-04 21:47:26 +00:00
2015-04-15 04:06:16 +00:00
public class Commandpotion extends EssentialsCommand {
public Commandpotion() {
super("potion");
}
2013-02-04 21:47:26 +00:00
2015-04-15 04:06:16 +00:00
@Override
protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
final ItemStack stack = user.getItemInHand();
2013-02-04 21:47:26 +00:00
2015-04-15 04:06:16 +00:00
if (args.length == 0) {
2015-06-03 20:11:56 +00:00
final Set<String> potionslist = new TreeSet<>();
2015-04-15 04:06:16 +00:00
for (Map.Entry<String, PotionEffectType> entry : Potions.entrySet()) {
final String potionName = entry.getValue().getName().toLowerCase(Locale.ENGLISH);
if (potionslist.contains(potionName) || (user.isAuthorized("essentials.potion." + potionName))) {
potionslist.add(entry.getKey());
}
}
throw new NotEnoughArgumentsException(tl("potions", StringUtil.joinList(potionslist.toArray())));
}
2013-02-04 21:47:26 +00:00
2015-04-15 04:06:16 +00:00
if (stack.getType() == Material.POTION) {
PotionMeta pmeta = (PotionMeta) stack.getItemMeta();
if (args.length > 0) {
if (args[0].equalsIgnoreCase("clear")) {
pmeta.clearCustomEffects();
stack.setItemMeta(pmeta);
} else if (args[0].equalsIgnoreCase("apply") && user.isAuthorized("essentials.potion.apply")) {
for (PotionEffect effect : pmeta.getCustomEffects()) {
effect.apply(user.getBase());
}
} else if (args.length < 3) {
throw new NotEnoughArgumentsException();
} else {
final MetaItemStack mStack = new MetaItemStack(stack);
for (String arg : args) {
mStack.addPotionMeta(user.getSource(), true, arg, ess);
}
if (mStack.completePotion()) {
pmeta = (PotionMeta) mStack.getItemStack().getItemMeta();
stack.setItemMeta(pmeta);
} else {
user.sendMessage(tl("invalidPotion"));
throw new NotEnoughArgumentsException();
}
}
}
2013-02-04 21:47:26 +00:00
2015-04-15 04:06:16 +00:00
} else {
throw new Exception(tl("holdPotion"));
}
}
2013-02-04 21:47:26 +00:00
}