PurpleIRC-spigot/src/main/java/com/cnaude/purpleirc/PurpleTabCompleter.java
2016-05-03 18:25:00 -07:00

109 lines
3.8 KiB
Java

/*
* Copyright (C) 2014 cnaude
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.cnaude.purpleirc;
import java.util.ArrayList;
import java.util.List;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.command.TabCompleter;
import org.bukkit.entity.Player;
import org.pircbotx.Channel;
import org.pircbotx.User;
/**
*
* @author Chris Naude
*/
public class PurpleTabCompleter implements TabCompleter {
private final PurpleIRC plugin;
/**
*
* @param plugin the PurpleIRC plugin
*/
public PurpleTabCompleter(final PurpleIRC plugin) {
this.plugin = plugin;
}
@Override
public List<String> onTabComplete(CommandSender cs, Command cmnd, String string, String[] strings) {
List<String> list = new ArrayList<>();
if (strings.length == 1) {
for (String c : plugin.commandHandlers.sortedCommands) {
if (cs.hasPermission("irc." + c)) {
if (c.startsWith(strings[0])) {
list.add(c);
}
}
}
}
if (strings.length == 2) {
for (PurpleBot ircBot : plugin.ircBots.values()) {
for (Channel channel : ircBot.getChannels()) {
String channelName = channel.getName();
for (User user : channel.getUsers()) {
String nick = user.getNick();
if (nick.startsWith(strings[1])) {
if (list.contains(nick)) {
continue;
}
if (ircBot.tabIgnoreNicks.containsKey(channelName)) {
if (ircBot.tabIgnoreNicks.get(channelName).contains(nick)) {
continue;
}
}
list.add(user.getNick());
}
}
}
if (ircBot.botLinkingEnabled) {
plugin.logDebug("T2");
for (String remoteBot : ircBot.remotePlayers.keySet()) {
plugin.logDebug("T3: " + remoteBot);
for (String playerName : ircBot.remotePlayers.get(remoteBot)) {
plugin.logDebug("T4: " + playerName);
list.add(playerName);
}
}
} else {
plugin.logDebug("T1");
}
}
for (Player player : plugin.getServer().getOnlinePlayers()) {
if (plugin.vanishHook != null) {
if (plugin.vanishHook.isVanished(player)) {
continue;
}
}
if (player.getDisplayName().startsWith(strings[1])) {
if (!list.contains(player.getDisplayName())) {
list.add(player.getDisplayName());
}
}
}
}
return list;
}
}