/* * Copyright (C) 2013-2016 Gonçalo Baltazar <me@goncalomb.com> * * This file is part of NBTEditor. * * NBTEditor is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NBTEditor is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NBTEditor. If not, see <http://www.gnu.org/licenses/>. */ package com.goncalomb.bukkit.mylib.command; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.text.MessageFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.bukkit.Bukkit; import org.bukkit.command.BlockCommandSender; import org.bukkit.command.CommandSender; import org.bukkit.command.ConsoleCommandSender; import org.bukkit.command.RemoteConsoleCommandSender; import org.bukkit.command.SimpleCommandMap; import org.bukkit.entity.Player; import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.PlayerInventory; import org.bukkit.plugin.Plugin; import org.bukkit.util.StringUtil; import com.goncalomb.bukkit.mylib.utils.Utils; import com.goncalomb.bukkit.mylib.utils.UtilsMc; public abstract class MyCommand extends MySubCommand { public static final class CommandUtils { public static List<String> playerTabComplete(CommandSender sender, String prefix) { Player senderPlayer = null; if (sender instanceof Player) { senderPlayer = (Player) sender; } ArrayList<String> players = new ArrayList<String>(); for (Player player : Bukkit.getOnlinePlayers()) { String name = player.getName(); if ((senderPlayer == null || senderPlayer.canSee(player)) && StringUtil.startsWithIgnoreCase(name, prefix)) { players.add(name); } } Collections.sort(players, String.CASE_INSENSITIVE_ORDER); return players; } public static Player findPlayer(String name) throws MyCommandException { Player player = Bukkit.getPlayer(name); if (player == null) { throw new MyCommandException(MessageFormat.format("§cPlayer §e{0} §cnot found!", name)); } return player; } public static PlayerInventory checkFullInventory(Player player) throws MyCommandException { PlayerInventory inv = player.getInventory(); if (inv.firstEmpty() == -1) { throw new MyCommandException("§cInventory full!"); } return inv; } public static void giveItem(Player player, ItemStack item) throws MyCommandException { if (player.getInventory().addItem(item).size() > 0) { throw new MyCommandException("§cInventory full!"); } } public static int parseInt(String str) throws MyCommandException { int i = Utils.parseInt(str, -1); if (i == -1) { throw new MyCommandException(MessageFormat.format("§cInvalid integer §e{0}§c.", str)); } return i; } public static int parseInt(String str, int max, int min) throws MyCommandException { int i = Utils.parseInt(str, max, min, -1); if (i == -1) { throw new MyCommandException(MessageFormat.format("§cInvalid integer §e{0}§c. Use value between §e{1} §cand §e{2}§c.", str, min, max)); } return i; } public static int parseTimeDuration(String str) throws MyCommandException { int i = Utils.parseTimeDuration(str); if (i == -1) { throw new MyCommandException("§cInvalid duration. Use the format 0000d00h00m00s."); } return i; } public static int parseTickDuration(String str) throws MyCommandException { int i = UtilsMc.parseTickDuration(str); if (i == -1) { throw new MyCommandException("§cInvalid duration. Use value in ticks or 0000d00h00m00s."); } return i; } private CommandUtils() { } } public enum CommandType { DEFAULT(""), // All PLAYER_ONLY("§cThis command can only be used by players."), // Player NO_PLAYER("§cThis command cannot be used by players."), // Console, Remote, Block CONSOLE_ONLY("§cThis command can only be used on the console."), // Console, Remote BLOCK_ONLY("§cThis command can only be used on a command block."); // Block public final String INVALID_MESSAGE; private CommandType(String invalidMessage) { INVALID_MESSAGE = invalidMessage; } public boolean isValidSender(CommandSender sender) { switch (this) { case PLAYER_ONLY: return (sender instanceof Player); case NO_PLAYER: return (sender instanceof ConsoleCommandSender || sender instanceof RemoteConsoleCommandSender || sender instanceof BlockCommandSender); case CONSOLE_ONLY: return (sender instanceof ConsoleCommandSender || sender instanceof RemoteConsoleCommandSender); case BLOCK_ONLY: return (sender instanceof BlockCommandSender); case DEFAULT: return true; } return false; } } @Retention(RetentionPolicy.RUNTIME) public @interface Command { String args(); CommandType type() default CommandType.DEFAULT; String usage() default ""; int minargs() default 0; int maxargs() default 0; } @Retention(RetentionPolicy.RUNTIME) public @interface TabComplete { String args(); } private InternalCommand _internalCommand; private Plugin _owner; public MyCommand(String name, String ...aliases) { _internalCommand = new InternalCommand(this, name); _internalCommand.setAliases(Arrays.asList(aliases)); } void setup(SimpleCommandMap commandMap, Plugin owner) { // Set the owner and permissions. _owner = owner; _internalCommand.setDescription("No description."); setupPermissions(getName(), UtilsMc.getRootPermission(owner)); // Register the command with Bukkit. commandMap.register(owner.getName(), _internalCommand); } public final String getName() { return _internalCommand.getName(); } public final Plugin getOwner() { return _owner; } }