TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/Commandtpall.java
md_5 465041b98b Optimize player / user iteration.
* Add a method for backwards compatability with unmapped code.
* Convert all getOnlinePlayers() calls to use this method, part of the IEssentials interface
* Add a new method getOnlineUsers() Ljava/lang/Iterable;
* Convert appropriate calls to use this method
* Update Bukkit to #1945
* Update CraftBukkit to #3103
2014-07-19 20:07:50 +01:00

63 lines
1.5 KiB
Java

package com.earth2me.essentials.commands;
import com.earth2me.essentials.CommandSource;
import static com.earth2me.essentials.I18n.tl;
import com.earth2me.essentials.User;
import org.bukkit.Location;
import org.bukkit.Server;
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
public class Commandtpall extends EssentialsCommand
{
public Commandtpall()
{
super("tpall");
}
@Override
public void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
{
if (args.length < 1)
{
if (sender.isPlayer())
{
teleportAllPlayers(server, sender, ess.getUser(sender.getPlayer()));
return;
}
throw new NotEnoughArgumentsException();
}
final User target = getPlayer(server, sender, args, 0);
teleportAllPlayers(server, sender, target);
}
private void teleportAllPlayers(Server server, CommandSource sender, User target)
{
sender.sendMessage(tl("teleportAll"));
final Location loc = target.getLocation();
for (User player : ess.getOnlineUsers())
{
if (target == player)
{
continue;
}
if (sender.equals(target.getBase())
&& target.getWorld() != player.getWorld() && ess.getSettings().isWorldTeleportPermissions()
&& !target.isAuthorized("essentials.worlds." + target.getWorld().getName()))
{
continue;
}
try
{
player.getTeleport().now(loc, false, TeleportCause.COMMAND);
}
catch (Exception ex)
{
ess.showError(sender, ex, getName());
}
}
}
}