TF-EssentialsX/Essentials/src/main/java/com/earth2me/essentials/commands/Commandtree.java

66 lines
2.1 KiB
Java
Raw Normal View History

package com.earth2me.essentials.commands;
2011-11-18 17:42:26 +00:00
import com.earth2me.essentials.User;
2013-06-08 21:31:19 +00:00
import com.earth2me.essentials.utils.LocationUtil;
import com.google.common.collect.Lists;
import org.bukkit.Location;
import org.bukkit.Server;
import org.bukkit.TreeType;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
2015-04-15 04:06:16 +00:00
import static com.earth2me.essentials.I18n.tl;
public class Commandtree extends EssentialsCommand {
public Commandtree() {
super("tree");
}
2015-04-15 04:06:16 +00:00
@Override
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
TreeType tree = null;
if (args.length < 1) {
throw new NotEnoughArgumentsException();
} else {
2020-10-03 17:46:05 +00:00
for (final TreeType type : TreeType.values()) {
if (type.name().replace("_", "").equalsIgnoreCase(args[0])) {
tree = type;
break;
}
}
2015-06-03 14:08:28 +00:00
if (args[0].equalsIgnoreCase("jungle")) {
tree = TreeType.SMALL_JUNGLE;
}
if (tree == null) {
2015-04-15 04:06:16 +00:00
throw new NotEnoughArgumentsException();
}
}
final Location loc = LocationUtil.getTarget(user.getBase()).add(0, 1, 0);
if (loc.getBlock().getType().isSolid()) {
throw new Exception(tl("treeFailure"));
}
if (user.getWorld().generateTree(loc, tree)) {
2015-04-15 04:06:16 +00:00
user.sendMessage(tl("treeSpawned"));
return;
2015-04-15 04:06:16 +00:00
}
user.sendMessage(tl("treeFailure"));
2015-04-15 04:06:16 +00:00
}
@Override
2020-10-03 17:46:05 +00:00
protected List<String> getTabCompleteOptions(final Server server, final User user, final String commandLabel, final String[] args) {
if (args.length == 1) {
2020-10-03 17:46:05 +00:00
final List<String> options = Lists.newArrayList();
for (final TreeType type : TreeType.values()) {
options.add(type.name().toLowerCase(Locale.ENGLISH).replace("_", ""));
}
return options;
} else {
return Collections.emptyList();
}
}
}