summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java
blob: f76d28e03c23d5d3b625065961b0d8ed3584a873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;


public class Commandgetpos extends EssentialsCommand
{
	public Commandgetpos()
	{
		super("getpos");
	}

	@Override
	public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
	{
		if (args.length > 0 && user.isAuthorized("essentials.getpos.others"))
		{
			final User otherUser = getPlayer(server, user, args, 0);
			outputPosition(user.getSource(), otherUser.getLocation(), user.getLocation());
			return;
		}
		outputPosition(user.getSource(), user.getLocation(), null);
	}

	@Override
	protected void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
	{
		if (args.length < 1)
		{
			throw new NotEnoughArgumentsException();
		}
		final User user = getPlayer(server, args, 0, true, false);
		outputPosition(sender, user.getLocation(), null);
	}

	private void outputPosition(final CommandSource sender, final Location coords, final Location distance)
	{
		sender.sendMessage(tl("currentWorld", coords.getWorld().getName()));
		sender.sendMessage(tl("posX", coords.getBlockX()));
		sender.sendMessage(tl("posY", coords.getBlockY()));
		sender.sendMessage(tl("posZ", coords.getBlockZ()));
		sender.sendMessage(tl("posYaw", (coords.getYaw() + 180 + 360) % 360));
		sender.sendMessage(tl("posPitch", coords.getPitch()));
		if (distance != null && coords.getWorld().equals(distance.getWorld()))
		{
			sender.sendMessage(tl("distance", coords.distance(distance)));
		}
	}
}