mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
:D Tab completion
This commit is contained in:
parent
fd81546bab
commit
5b62523003
@ -137,7 +137,8 @@ public enum C {
|
|||||||
/*
|
/*
|
||||||
* Commands
|
* Commands
|
||||||
*/
|
*/
|
||||||
NOT_VALID_SUBCOMMAND("&cThat is not a valid subcommand."),
|
NOT_VALID_SUBCOMMAND("&cThat is not a valid subcommand"),
|
||||||
|
DID_YOU_MEAN("&cDid you mean: &6%s"),
|
||||||
NO_COMMANDS("&cI'm sorry, but you're not permitted to use any subcommands."),
|
NO_COMMANDS("&cI'm sorry, but you're not permitted to use any subcommands."),
|
||||||
SUBCOMMAND_SET_OPTIONS_HEADER("&cPossible Values: "),
|
SUBCOMMAND_SET_OPTIONS_HEADER("&cPossible Values: "),
|
||||||
/*
|
/*
|
||||||
|
@ -670,7 +670,8 @@ public class PlotMain extends JavaPlugin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getCommand("plots").setExecutor(new MainCommand());
|
MainCommand command = new MainCommand();
|
||||||
|
getCommand("plots").setExecutor(command);
|
||||||
getCommand("plots").setAliases(new ArrayList<String>() {
|
getCommand("plots").setAliases(new ArrayList<String>() {
|
||||||
{
|
{
|
||||||
add("p");
|
add("p");
|
||||||
@ -679,7 +680,7 @@ public class PlotMain extends JavaPlugin {
|
|||||||
add("plot");
|
add("plot");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
getCommand("plots").setTabCompleter(command);
|
||||||
getServer().getPluginManager().registerEvents(new PlayerEvents(), this);
|
getServer().getPluginManager().registerEvents(new PlayerEvents(), this);
|
||||||
PlotPlusListener.startRunnable(this);
|
PlotPlusListener.startRunnable(this);
|
||||||
getServer().getPluginManager().registerEvents(new PlotPlusListener(), this);
|
getServer().getPluginManager().registerEvents(new PlotPlusListener(), this);
|
||||||
@ -961,6 +962,7 @@ public class PlotMain extends JavaPlugin {
|
|||||||
Location location;
|
Location location;
|
||||||
long ticked = 0l;
|
long ticked = 0l;
|
||||||
long error = 0l;
|
long error = 0l;
|
||||||
|
|
||||||
{
|
{
|
||||||
sendConsoleSenderMessage(C.PREFIX.s() + "KillAllEntities started.");
|
sendConsoleSenderMessage(C.PREFIX.s() + "KillAllEntities started.");
|
||||||
}
|
}
|
||||||
@ -1048,11 +1050,9 @@ public class PlotMain extends JavaPlugin {
|
|||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} catch (Throwable e) {
|
||||||
catch (Throwable e) {
|
|
||||||
++this.error;
|
++this.error;
|
||||||
}
|
} finally {
|
||||||
finally {
|
|
||||||
++this.ticked;
|
++this.ticked;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,21 +11,24 @@ package com.intellectualcrafters.plot.commands;
|
|||||||
import com.intellectualcrafters.plot.C;
|
import com.intellectualcrafters.plot.C;
|
||||||
import com.intellectualcrafters.plot.PlayerFunctions;
|
import com.intellectualcrafters.plot.PlayerFunctions;
|
||||||
import com.intellectualcrafters.plot.PlotMain;
|
import com.intellectualcrafters.plot.PlotMain;
|
||||||
|
import com.intellectualcrafters.plot.StringComparsion;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
import org.bukkit.command.CommandExecutor;
|
import org.bukkit.command.CommandExecutor;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.command.TabCompleter;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PlotMain command class
|
* PlotMain command class
|
||||||
*
|
*
|
||||||
* @author Citymonstret
|
* @author Citymonstret
|
||||||
*/
|
*/
|
||||||
public class MainCommand implements CommandExecutor {
|
public class MainCommand implements CommandExecutor, TabCompleter {
|
||||||
|
|
||||||
private static SubCommand[] _subCommands = new SubCommand[] { new Claim(), new Paste(), new Copy(), new Clipboard(), new Auto(), new Home(), new Visit(),
|
private static SubCommand[] _subCommands = new SubCommand[] { new Claim(), new Paste(), new Copy(), new Clipboard(), new Auto(), new Home(), new Visit(),
|
||||||
new TP(), new Set(), new Clear(), new Delete(), new SetOwner(), new Denied(), new Helpers(), new Trusted(),
|
new TP(), new Set(), new Clear(), new Delete(), new SetOwner(), new Denied(), new Helpers(), new Trusted(),
|
||||||
@ -114,6 +117,12 @@ public class MainCommand implements CommandExecutor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
PlayerFunctions.sendMessage(player, C.NOT_VALID_SUBCOMMAND);
|
PlayerFunctions.sendMessage(player, C.NOT_VALID_SUBCOMMAND);
|
||||||
|
|
||||||
|
String[] commands = new String[subCommands.size()];
|
||||||
|
for(int x = 0; x < subCommands.size(); x++)
|
||||||
|
commands[x] = subCommands.get(x).cmd;
|
||||||
|
|
||||||
|
PlayerFunctions.sendMessage(player, C.DID_YOU_MEAN, new StringComparsion(args[0], commands).getBestMatch());
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -145,4 +154,26 @@ public class MainCommand implements CommandExecutor {
|
|||||||
return ChatColor.translateAlternateColorCodes('&', s);
|
return ChatColor.translateAlternateColorCodes('&', s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> onTabComplete(CommandSender commandSender, Command command, String s, String[] strings) {
|
||||||
|
if(!(commandSender instanceof Player)) return null;
|
||||||
|
Player player = (Player) commandSender;
|
||||||
|
ArrayList<SubCommand> subo = subCommands;
|
||||||
|
while(true) {
|
||||||
|
String sub = new StringComparsion(strings[0], subo.toArray()).getBestMatch();
|
||||||
|
if(subo.isEmpty())
|
||||||
|
break;
|
||||||
|
for (SubCommand subCommand : subo) {
|
||||||
|
if (subCommand.cmd.equals(sub)) {
|
||||||
|
if(subCommand.permission.hasPermission(player))
|
||||||
|
return Arrays.asList(sub);
|
||||||
|
else {
|
||||||
|
subo.remove(subCommand);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user