summaryrefslogtreecommitdiffstats
path: root/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java
blob: 2317e774c4717f514878e0e622078ab0e8a3a856 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.earth2me.essentials.spawn;

import com.earth2me.essentials.CommandSource;
import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.Console;
import com.earth2me.essentials.Trade;
import com.earth2me.essentials.User;
import com.earth2me.essentials.commands.EssentialsCommand;
import com.earth2me.essentials.commands.NoChargeException;
import com.earth2me.essentials.commands.NotEnoughArgumentsException;
import org.bukkit.Location;
import org.bukkit.Server;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;


public class Commandspawn extends EssentialsCommand
{
	public Commandspawn()
	{
		super("spawn");
	}

	@Override
	public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
	{
		final Trade charge = new Trade(this.getName(), ess);
		charge.isAffordableFor(user);
		if (args.length > 0 && user.isAuthorized("essentials.spawn.others"))
		{
			final User otherUser = getPlayer(server, user, args, 0);
			respawn(user, otherUser, charge);
			if (!otherUser.equals(user))
			{
				otherUser.sendMessage(_("teleportAtoB", user.getDisplayName(), "spawn"));
				user.sendMessage(_("teleporting"));
			}
		}
		else
		{
			respawn(user, user, charge);
		}
		throw new NoChargeException();
	}

	@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);
		respawn(null, user, null);
		user.sendMessage(_("teleportAtoB", Console.NAME, "spawn"));
		sender.sendMessage(_("teleporting"));
	}

	private void respawn(final User teleportOwner, final User teleportee, final Trade charge) throws Exception
	{
		final SpawnStorage spawns = (SpawnStorage)this.module;
		final Location spawn = spawns.getSpawn(teleportee.getGroup());
		if (teleportOwner == null)
		{
			teleportee.getTeleport().now(spawn, false, TeleportCause.COMMAND);
		}
		else
		{
			teleportOwner.getTeleport().teleportPlayer(teleportee, spawn, charge, TeleportCause.COMMAND);
		}
	}
}