2016-03-02 19:28:01 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.command;
|
2012-09-19 02:21:25 +00:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2019-01-29 04:57:41 +00:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Collections;
|
2012-09-19 02:21:25 +00:00
|
|
|
import java.util.List;
|
2016-03-06 15:56:15 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
2015-10-19 17:43:46 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
2019-07-31 16:19:23 +00:00
|
|
|
import org.apache.commons.lang.StringUtils;
|
2012-09-19 02:21:25 +00:00
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
2012-09-20 01:43:12 +00:00
|
|
|
import org.bukkit.potion.PotionEffect;
|
|
|
|
import org.bukkit.potion.PotionEffectType;
|
2012-09-19 02:21:25 +00:00
|
|
|
|
2016-03-06 15:56:15 +00:00
|
|
|
@CommandPermissions(level = Rank.OP, source = SourceType.BOTH)
|
2013-04-10 02:05:24 +00:00
|
|
|
@CommandParameters(
|
2020-03-30 23:43:57 +00:00
|
|
|
description = "Manipulate your potion effects. Duration is measured in server ticks (~20 ticks per second).",
|
2020-05-29 10:14:21 +00:00
|
|
|
usage = "/<command> <list | clear [target name] | add <type> <duration> <amplifier> [target name]>",
|
|
|
|
aliases="effect")
|
2015-10-19 17:43:46 +00:00
|
|
|
public class Command_potion extends FreedomCommand
|
2012-09-19 02:21:25 +00:00
|
|
|
{
|
2015-11-22 18:26:47 +00:00
|
|
|
|
2012-09-19 02:21:25 +00:00
|
|
|
@Override
|
2015-11-22 18:26:47 +00:00
|
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
2012-09-19 02:21:25 +00:00
|
|
|
{
|
2012-09-20 01:43:12 +00:00
|
|
|
if (args.length == 1 || args.length == 2)
|
2012-09-19 02:21:25 +00:00
|
|
|
{
|
2012-09-20 01:43:12 +00:00
|
|
|
if (args[0].equalsIgnoreCase("list"))
|
|
|
|
{
|
2016-03-02 19:28:01 +00:00
|
|
|
List<String> potionEffectTypeNames = new ArrayList<>();
|
2012-09-20 01:43:12 +00:00
|
|
|
for (PotionEffectType potion_effect_type : PotionEffectType.values())
|
|
|
|
{
|
|
|
|
if (potion_effect_type != null)
|
|
|
|
{
|
|
|
|
potionEffectTypeNames.add(potion_effect_type.getName());
|
|
|
|
}
|
|
|
|
}
|
2016-03-02 19:28:01 +00:00
|
|
|
msg("Potion effect types: " + StringUtils.join(potionEffectTypeNames, ", "), ChatColor.AQUA);
|
2012-09-20 01:43:12 +00:00
|
|
|
}
|
2013-01-07 15:33:54 +00:00
|
|
|
else if (args[0].equalsIgnoreCase("clearall"))
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!(plugin.al.isAdmin(sender) || senderIsConsole))
|
2013-01-07 15:33:54 +00:00
|
|
|
{
|
2015-11-15 23:32:04 +00:00
|
|
|
noPerms();
|
2013-01-07 15:33:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.adminAction(sender.getName(), "Cleared all potion effects from all players", true);
|
2013-01-07 15:33:54 +00:00
|
|
|
for (Player target : server.getOnlinePlayers())
|
|
|
|
{
|
|
|
|
for (PotionEffect potion_effect : target.getActivePotionEffects())
|
|
|
|
{
|
|
|
|
target.removePotionEffect(potion_effect.getType());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-20 01:43:12 +00:00
|
|
|
else if (args[0].equalsIgnoreCase("clear"))
|
|
|
|
{
|
2015-11-22 18:26:47 +00:00
|
|
|
Player target = playerSender;
|
2012-09-19 02:21:25 +00:00
|
|
|
|
2012-09-20 01:43:12 +00:00
|
|
|
if (args.length == 2)
|
|
|
|
{
|
2020-04-23 11:18:03 +00:00
|
|
|
target = getPlayer(args[1], true);
|
2014-04-26 11:55:24 +00:00
|
|
|
|
2020-04-23 11:18:03 +00:00
|
|
|
if (target == null)
|
2012-09-20 01:43:12 +00:00
|
|
|
{
|
2016-03-02 19:28:01 +00:00
|
|
|
msg(FreedomCommand.PLAYER_NOT_FOUND, ChatColor.RED);
|
2012-09-20 01:43:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-22 18:26:47 +00:00
|
|
|
if (!target.equals(playerSender))
|
2012-09-23 23:00:45 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!plugin.al.isAdmin(sender))
|
2012-09-23 23:00:45 +00:00
|
|
|
{
|
2019-01-29 04:57:41 +00:00
|
|
|
msg(ChatColor.RED + "Only admins can clear potion effects from other players.");
|
2012-09-23 23:00:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (senderIsConsole)
|
2012-09-20 01:43:12 +00:00
|
|
|
{
|
2016-03-02 19:28:01 +00:00
|
|
|
msg("You must specify a target player when using this command from the console.");
|
2012-09-20 01:43:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-20 03:17:10 +00:00
|
|
|
for (PotionEffect potion_effect : target.getActivePotionEffects())
|
2012-09-20 01:43:12 +00:00
|
|
|
{
|
|
|
|
target.removePotionEffect(potion_effect.getType());
|
|
|
|
}
|
|
|
|
|
2016-03-02 19:28:01 +00:00
|
|
|
msg("Cleared all active potion effects " + (!target.equals(playerSender) ? "from player " + target.getName() + "." : "from yourself."), ChatColor.AQUA);
|
2012-09-20 01:43:12 +00:00
|
|
|
}
|
|
|
|
else
|
2012-09-19 02:21:25 +00:00
|
|
|
{
|
2012-09-20 01:43:12 +00:00
|
|
|
return false;
|
2012-09-19 02:21:25 +00:00
|
|
|
}
|
|
|
|
}
|
2012-09-20 01:43:12 +00:00
|
|
|
else if (args.length == 4 || args.length == 5)
|
|
|
|
{
|
|
|
|
if (args[0].equalsIgnoreCase("add"))
|
|
|
|
{
|
2015-11-22 18:26:47 +00:00
|
|
|
Player target = playerSender;
|
2012-09-20 01:43:12 +00:00
|
|
|
|
|
|
|
if (args.length == 5)
|
|
|
|
{
|
2014-04-26 11:55:24 +00:00
|
|
|
target = getPlayer(args[4]);
|
|
|
|
|
2020-04-14 06:40:22 +00:00
|
|
|
if (target == null || plugin.al.vanished.contains(target) && !plugin.al.isAdmin(sender))
|
2012-09-20 01:43:12 +00:00
|
|
|
{
|
2016-03-02 19:28:01 +00:00
|
|
|
msg(FreedomCommand.PLAYER_NOT_FOUND, ChatColor.RED);
|
2012-09-20 01:43:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2012-09-19 02:21:25 +00:00
|
|
|
|
2015-11-22 18:26:47 +00:00
|
|
|
if (!target.equals(playerSender))
|
2012-09-23 23:00:45 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!plugin.al.isAdmin(sender))
|
2012-09-23 23:00:45 +00:00
|
|
|
{
|
2019-01-29 04:57:41 +00:00
|
|
|
sender.sendMessage(ChatColor.RED + "Only admins can apply potion effects to other players.");
|
2012-09-23 23:00:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (senderIsConsole)
|
2012-09-20 01:43:12 +00:00
|
|
|
{
|
2012-09-23 23:00:45 +00:00
|
|
|
sender.sendMessage("You must specify a target player when using this command from the console.");
|
2012-09-20 01:43:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
PotionEffectType potion_effect_type = PotionEffectType.getByName(args[1]);
|
|
|
|
if (potion_effect_type == null)
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.AQUA + "Invalid potion effect type.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int duration;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
duration = Integer.parseInt(args[2]);
|
2014-07-26 15:47:23 +00:00
|
|
|
duration = Math.min(duration, 100000);
|
2012-09-20 01:43:12 +00:00
|
|
|
}
|
2013-08-14 13:28:19 +00:00
|
|
|
catch (NumberFormatException ex)
|
2012-09-20 01:43:12 +00:00
|
|
|
{
|
2016-03-02 19:28:01 +00:00
|
|
|
msg("Invalid potion duration.", ChatColor.RED);
|
2012-09-20 01:43:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int amplifier;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
amplifier = Integer.parseInt(args[3]);
|
2014-07-26 15:47:23 +00:00
|
|
|
amplifier = Math.min(amplifier, 100000);
|
2012-09-20 01:43:12 +00:00
|
|
|
}
|
2013-08-14 13:28:19 +00:00
|
|
|
catch (NumberFormatException ex)
|
2012-09-20 01:43:12 +00:00
|
|
|
{
|
2016-03-02 19:28:01 +00:00
|
|
|
msg("Invalid potion amplifier.", ChatColor.RED);
|
2012-09-20 01:43:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
PotionEffect new_effect = potion_effect_type.createEffect(duration, amplifier);
|
|
|
|
target.addPotionEffect(new_effect, true);
|
2016-03-02 19:28:01 +00:00
|
|
|
msg(
|
2013-01-07 14:56:53 +00:00
|
|
|
"Added potion effect: " + new_effect.getType().getName()
|
2018-07-31 06:41:56 +00:00
|
|
|
+ ", Duration: " + new_effect.getDuration()
|
|
|
|
+ ", Amplifier: " + new_effect.getAmplifier()
|
|
|
|
+ (!target.equals(playerSender) ? " to player " + target.getName() + "." : " to yourself."), ChatColor.AQUA);
|
2012-09-20 01:43:12 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-19 02:21:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
2019-01-29 04:57:41 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<String> getTabCompleteOptions(CommandSender sender, Command command, String alias, String[] args)
|
|
|
|
{
|
|
|
|
if (args.length == 1)
|
|
|
|
{
|
|
|
|
List<String> arguments = new ArrayList<>();
|
|
|
|
arguments.addAll(Arrays.asList("list", "clear", "add"));
|
|
|
|
if (plugin.al.isAdmin(sender))
|
|
|
|
{
|
|
|
|
arguments.add("clearall");
|
|
|
|
}
|
|
|
|
return arguments;
|
|
|
|
}
|
|
|
|
else if (args.length == 2)
|
|
|
|
{
|
|
|
|
if (args[0].equals("clear"))
|
|
|
|
{
|
|
|
|
if (plugin.al.isAdmin(sender))
|
|
|
|
{
|
|
|
|
return FUtil.getPlayerList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (args[0].equals("add"))
|
|
|
|
{
|
|
|
|
return getAllPotionTypes();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (args.length == 3)
|
|
|
|
{
|
|
|
|
if (args[0].equals("add"))
|
|
|
|
{
|
|
|
|
return Arrays.asList("<duration>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (args.length == 4)
|
|
|
|
{
|
|
|
|
if (args[0].equals("add"))
|
|
|
|
{
|
|
|
|
return Arrays.asList("<amplifier>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (args.length == 5 && plugin.al.isAdmin(sender))
|
|
|
|
{
|
|
|
|
if (args[0].equals("add"))
|
|
|
|
{
|
|
|
|
return FUtil.getPlayerList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Collections.emptyList();
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<String> getAllPotionTypes()
|
|
|
|
{
|
|
|
|
List<String> types = new ArrayList<>();
|
|
|
|
for (PotionEffectType potionEffectType : PotionEffectType.values())
|
|
|
|
{
|
|
|
|
if (potionEffectType != null)
|
|
|
|
{
|
|
|
|
types.add(potionEffectType.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return types;
|
|
|
|
}
|
|
|
|
|
2012-09-19 02:21:25 +00:00
|
|
|
}
|