2022-03-20 12:35:43 +00:00
|
|
|
package me.StevenLawson.TotalFreedomMod.commands;
|
2011-10-19 00:37:00 +00:00
|
|
|
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2022-03-20 12:35:43 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.Comparator;
|
|
|
|
import java.util.List;
|
|
|
|
|
2013-03-19 22:05:20 +00:00
|
|
|
@CommandPermissions(level = AdminLevel.ALL, source = SourceType.ONLY_IN_GAME)
|
2022-03-20 12:35:43 +00:00
|
|
|
public class Command_radar extends FreedomCommand {
|
2011-10-19 00:37:00 +00:00
|
|
|
@Override
|
2022-03-20 12:35:43 +00:00
|
|
|
public boolean run(CommandSender sender, org.bukkit.entity.Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) {
|
2011-10-19 16:04:44 +00:00
|
|
|
Location sender_pos = sender_p.getLocation();
|
2011-10-19 00:37:00 +00:00
|
|
|
|
|
|
|
List<TFM_RadarData> radar_data = new ArrayList<TFM_RadarData>();
|
|
|
|
|
2022-03-20 12:35:43 +00:00
|
|
|
for (Player player : sender_pos.getWorld().getPlayers()) {
|
|
|
|
if (!player.equals(sender_p)) {
|
2011-10-28 00:37:30 +00:00
|
|
|
try
|
|
|
|
{
|
2013-08-14 14:01:42 +00:00
|
|
|
radar_data.add(new TFM_RadarData(player, sender_pos.distance(player.getLocation()), player.getLocation()));
|
2011-10-28 00:37:30 +00:00
|
|
|
}
|
2013-08-14 13:28:19 +00:00
|
|
|
catch (IllegalArgumentException ex)
|
2011-10-28 00:37:30 +00:00
|
|
|
{
|
|
|
|
}
|
2011-10-19 00:37:00 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-19 22:05:20 +00:00
|
|
|
|
2011-10-19 16:04:44 +00:00
|
|
|
if (radar_data.isEmpty())
|
|
|
|
{
|
2022-03-21 16:02:24 +00:00
|
|
|
playerMsg(sender, "You are the only player in this world. (" + ChatColor.GREEN + "Forever alone..." + ChatColor.YELLOW + ")", ChatColor.YELLOW); //lol
|
2011-10-19 16:04:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
2011-10-19 00:37:00 +00:00
|
|
|
|
|
|
|
Collections.sort(radar_data, new TFM_RadarData());
|
|
|
|
|
2022-03-21 16:02:24 +00:00
|
|
|
playerMsg(sender, "People nearby in " + sender_pos.getWorld().getName() + ":", ChatColor.YELLOW);
|
2011-10-19 00:37:00 +00:00
|
|
|
|
|
|
|
int countmax = 5;
|
|
|
|
if (args.length == 1)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2011-10-19 02:52:32 +00:00
|
|
|
countmax = Math.max(1, Math.min(64, Integer.parseInt(args[0])));
|
2011-10-19 00:37:00 +00:00
|
|
|
}
|
|
|
|
catch (NumberFormatException nfex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2013-03-19 22:05:20 +00:00
|
|
|
|
2011-10-19 00:37:00 +00:00
|
|
|
for (TFM_RadarData i : radar_data)
|
|
|
|
{
|
2022-03-21 16:02:24 +00:00
|
|
|
playerMsg(sender, String.format("%s - %d",
|
2011-10-19 00:37:00 +00:00
|
|
|
i.player.getName(),
|
2013-03-19 22:05:20 +00:00
|
|
|
Math.round(i.distance)), ChatColor.YELLOW);
|
|
|
|
|
2011-10-19 16:04:44 +00:00
|
|
|
if (--countmax <= 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2011-10-19 00:37:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2013-08-03 20:08:16 +00:00
|
|
|
|
|
|
|
private class TFM_RadarData implements Comparator<TFM_RadarData>
|
|
|
|
{
|
|
|
|
public Player player;
|
|
|
|
public double distance;
|
|
|
|
public Location location;
|
|
|
|
|
|
|
|
public TFM_RadarData(Player player, double distance, Location location)
|
|
|
|
{
|
|
|
|
this.player = player;
|
|
|
|
this.distance = distance;
|
|
|
|
this.location = location;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TFM_RadarData()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(TFM_RadarData t1, TFM_RadarData t2)
|
|
|
|
{
|
|
|
|
if (t1.distance > t2.distance)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (t1.distance < t2.distance)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-19 00:37:00 +00:00
|
|
|
}
|