ZNPCsPlus/plugin/src/main/java/lol/pyr/znpcsplus/commands/MoveCommand.java

47 lines
2.0 KiB
Java
Raw Normal View History

2023-05-09 10:47:43 +00:00
package lol.pyr.znpcsplus.commands;
import lol.pyr.director.adventure.command.CommandContext;
import lol.pyr.director.adventure.command.CommandHandler;
import lol.pyr.director.common.command.CommandExecutionException;
import lol.pyr.znpcsplus.ZNpcsPlus;
import lol.pyr.znpcsplus.npc.NpcEntryImpl;
import lol.pyr.znpcsplus.npc.NpcRegistryImpl;
import lol.pyr.znpcsplus.util.ZLocation;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.format.NamedTextColor;
import org.bukkit.entity.Player;
import java.util.List;
import java.util.stream.Collectors;
public class MoveCommand implements CommandHandler {
@Override
public void run(CommandContext commandContext) throws CommandExecutionException {
if (!(commandContext.getSender() instanceof Player)) {
commandContext.getSender().sendMessage("Only players can use this command!");
return;
}
Player player = (Player) commandContext.getSender();
if (commandContext.argSize() == 0) {
ZNpcsPlus.ADVENTURE.player(player).sendMessage(Component.text("Usage: /npc <npc_id>", NamedTextColor.RED));
return;
}
NpcEntryImpl npcEntry = NpcRegistryImpl.get().get(commandContext.popString());
if (npcEntry == null) {
ZNpcsPlus.ADVENTURE.player(player).sendMessage(Component.text("NPC not found!", NamedTextColor.RED));
return;
}
npcEntry.getNpc().setLocation(new ZLocation(player.getLocation()));
npcEntry.getNpc().respawn();
ZNpcsPlus.ADVENTURE.player(player).sendMessage(Component.text("NPC moved!", NamedTextColor.GREEN));
}
@Override
public List<String> suggest(CommandContext context) throws CommandExecutionException {
if (context.argSize() == 1) {
return context.suggestCollection(NpcRegistryImpl.get().ids().stream().filter(s -> !s.startsWith(ZNpcsPlus.DEBUG_NPC_PREFIX)).collect(Collectors.toList()));
}
return CommandHandler.super.suggest(context);
}
}