summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandtree.java
blob: 5eddbe4c27cfcf745d5fdd56db31afb935a97480 (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
package net.ess3.commands;

import static net.ess3.I18n._;
import net.ess3.api.IUser;
import net.ess3.utils.LocationUtil;
import org.bukkit.Location;
import org.bukkit.TreeType;


public class Commandtree extends EssentialsCommand
{
	@Override
	public void run(final IUser user, final String commandLabel, final String[] args) throws Exception
	{
		TreeType tree;
		if (args.length < 1)
		{
			throw new NotEnoughArgumentsException();
		}
		else if (args[0].equalsIgnoreCase("birch"))
		{
			tree = TreeType.BIRCH;
		}
		else if (args[0].equalsIgnoreCase("redwood"))
		{
			tree = TreeType.REDWOOD;
		}
		else if (args[0].equalsIgnoreCase("tree"))
		{
			tree = TreeType.TREE;
		}
		else if (args[0].equalsIgnoreCase("redmushroom"))
		{
			tree = TreeType.RED_MUSHROOM;
		}
		else if (args[0].equalsIgnoreCase("brownmushroom"))
		{
			tree = TreeType.BROWN_MUSHROOM;
		}
		else if (args[0].equalsIgnoreCase("jungle"))
		{
			tree = TreeType.SMALL_JUNGLE;
		}
		else if (args[0].equalsIgnoreCase("junglebush"))
		{
			tree = TreeType.JUNGLE_BUSH;
		}
		else if (args[0].equalsIgnoreCase("swamp"))
		{
			tree = TreeType.SWAMP;
		}
		else
		{
			throw new NotEnoughArgumentsException();
		}

		final Location loc = LocationUtil.getTarget(user.getPlayer());
		final Location safeLocation = LocationUtil.getSafeDestination(loc);
		final boolean success = user.getPlayer().getWorld().generateTree(safeLocation, tree);
		if (success)
		{
			user.sendMessage(_("§6Tree spawned."));
		}
		else
		{
			user.sendMessage(_("§4Tree generation failure. Try again on grass or dirt."));
		}
	}
}