PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Setup.java

255 lines
14 KiB
Java
Raw Normal View History

2014-11-08 20:27:09 +01:00
////////////////////////////////////////////////////////////////////////////////////////////////////
// PlotSquared - A plot manager and world generator for the Bukkit API /
// Copyright (c) 2014 IntellectualSites/IntellectualCrafters /
// /
// This program is free software; you can redistribute it and/or modify /
// it under the terms of the GNU General Public License as published by /
// the Free Software Foundation; either version 3 of the License, or /
// (at your option) any later version. /
// /
// This program is distributed in the hope that it will be useful, /
// but WITHOUT ANY WARRANTY; without even the implied warranty of /
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the /
// GNU General Public License for more details. /
// /
// You should have received a copy of the GNU General Public License /
// along with this program; if not, write to the Free Software Foundation, /
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA /
// /
// You can contact us via: support@intellectualsites.com /
////////////////////////////////////////////////////////////////////////////////////////////////////
package com.intellectualcrafters.plot.commands;
2015-07-30 16:25:16 +02:00
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map.Entry;
2015-08-09 11:58:29 +02:00
import com.intellectualcrafters.plot.PS;
2015-01-13 17:38:15 +01:00
import com.intellectualcrafters.plot.config.C;
import com.intellectualcrafters.plot.config.ConfigurationNode;
2015-02-10 10:50:27 +01:00
import com.intellectualcrafters.plot.config.Settings;
import com.intellectualcrafters.plot.generator.PlotGenerator;
2015-02-21 12:38:44 +01:00
import com.intellectualcrafters.plot.object.PlotPlayer;
2015-02-22 14:12:32 +01:00
import com.intellectualcrafters.plot.object.SetupObject;
2015-02-22 13:40:36 +01:00
import com.intellectualcrafters.plot.util.BlockManager;
2015-02-21 12:38:44 +01:00
import com.intellectualcrafters.plot.util.MainUtil;
import com.intellectualcrafters.plot.util.SetupUtils;
2015-07-30 19:24:01 +02:00
import com.intellectualcrafters.plot.util.StringMan;
2015-07-27 19:50:04 +02:00
import com.plotsquared.general.commands.CommandDeclaration;
@CommandDeclaration(
2015-09-11 12:09:22 +02:00
command = "setup",
permission = "plots.admin.command.setup",
description = "Setup wizard for plot worlds",
usage = "/plot setup",
aliases = { "create" },
category = CommandCategory.ACTIONS)
2015-09-13 06:04:31 +02:00
public class Setup extends SubCommand {
public void displayGenerators(final PlotPlayer plr) {
2015-09-11 12:09:22 +02:00
final StringBuffer message = new StringBuffer();
2015-04-30 06:46:24 +02:00
message.append("&6What generator do you want?");
2015-09-13 06:04:31 +02:00
for (final Entry<String, PlotGenerator<?>> entry : SetupUtils.generators.entrySet()) {
if (entry.getKey().equals("PlotSquared")) {
2015-05-15 18:23:59 +02:00
message.append("\n&8 - &2" + entry.getKey() + " (Default Generator)");
2015-09-13 06:04:31 +02:00
} else if (entry.getValue().isFull()) {
2015-05-01 14:42:10 +02:00
message.append("\n&8 - &7" + entry.getKey() + " (Plot Generator)");
2015-09-13 06:04:31 +02:00
} else {
2015-05-01 14:42:10 +02:00
message.append("\n&8 - &7" + entry.getKey() + " (Unknown structure)");
2015-04-21 14:48:18 +02:00
}
}
2015-04-30 06:46:24 +02:00
MainUtil.sendMessage(plr, message.toString());
2015-04-21 14:48:18 +02:00
}
2015-09-13 06:04:31 +02:00
2014-11-05 04:42:08 +01:00
@Override
2015-09-13 06:04:31 +02:00
public boolean onCommand(final PlotPlayer plr, final String[] args) {
2015-02-10 07:14:55 +01:00
// going through setup
2015-09-11 12:09:22 +02:00
final String name = plr.getName();
2015-09-13 06:04:31 +02:00
if (!SetupUtils.setupMap.containsKey(name)) {
2015-02-20 07:34:19 +01:00
final SetupObject object = new SetupObject();
2015-02-22 14:12:32 +01:00
SetupUtils.setupMap.put(name, object);
SetupUtils.manager.updateGenerators();
2015-02-10 07:14:55 +01:00
sendMessage(plr, C.SETUP_INIT);
2015-04-21 14:48:18 +02:00
displayGenerators(plr);
2015-02-10 07:14:55 +01:00
return false;
2014-11-05 04:42:08 +01:00
}
2015-09-13 06:04:31 +02:00
if (args.length == 1) {
if (args[0].equalsIgnoreCase("cancel")) {
2015-05-14 19:27:37 +02:00
SetupUtils.setupMap.remove(name);
2015-02-21 12:24:46 +01:00
MainUtil.sendMessage(plr, "&aCancelled setup");
2015-02-10 07:14:55 +01:00
return false;
}
2015-09-13 06:04:31 +02:00
if (args[0].equalsIgnoreCase("back")) {
2015-05-14 19:27:37 +02:00
final SetupObject object = SetupUtils.setupMap.get(name);
2015-09-13 06:04:31 +02:00
if (object.setup_index > 0) {
2015-02-10 07:14:55 +01:00
object.setup_index--;
2015-05-15 18:23:59 +02:00
final ConfigurationNode node = object.step[object.setup_index];
sendMessage(plr, C.SETUP_STEP, object.setup_index + 1 + "", node.getDescription(), node.getType().getType(), node.getDefaultValue() + "");
2015-02-10 07:14:55 +01:00
return false;
2015-09-13 06:04:31 +02:00
} else if (object.current > 0) {
2015-02-10 07:14:55 +01:00
object.current--;
2014-11-05 04:42:08 +01:00
}
2015-02-10 07:14:55 +01:00
}
}
2015-02-22 14:12:32 +01:00
final SetupObject object = SetupUtils.setupMap.get(name);
2015-02-20 07:34:19 +01:00
final int index = object.current;
2015-09-13 06:04:31 +02:00
switch (index) {
case 0: { // choose generator
if ((args.length != 1) || !SetupUtils.generators.containsKey(args[0])) {
2015-02-20 07:34:19 +01:00
final String prefix = "\n&8 - &7";
2015-07-30 16:25:16 +02:00
MainUtil.sendMessage(plr, "&cYou must choose a generator!" + prefix + StringMan.join(SetupUtils.generators.keySet(), prefix).replaceAll("PlotSquared", "&2PlotSquared"));
2015-02-10 07:14:55 +01:00
sendMessage(plr, C.SETUP_INIT);
return false;
}
2015-04-21 14:48:18 +02:00
object.setupGenerator = args[0];
2015-02-10 07:14:55 +01:00
object.current++;
2015-02-20 07:34:19 +01:00
final String partial = Settings.ENABLE_CLUSTERS ? "\n&8 - &7PARTIAL&8 - &7Vanilla with clusters of plots" : "";
2015-02-21 12:24:46 +01:00
MainUtil.sendMessage(plr, "&6What world type do you want?" + "\n&8 - &2DEFAULT&8 - &7Standard plot generation" + "\n&8 - &7AUGMENTED&8 - &7Plot generation with terrain" + partial);
2015-02-10 07:14:55 +01:00
break;
}
2015-09-13 06:04:31 +02:00
case 1: { // choose world type
2015-09-11 12:09:22 +02:00
final List<String> allTypes = Arrays.asList(new String[] { "default", "augmented", "partial" });
final List<String> allDesc = Arrays.asList(new String[] { "Standard plot generation", "Plot generation with vanilla terrain", "Vanilla with clusters of plots" });
final ArrayList<String> types = new ArrayList<>();
2015-09-13 06:04:31 +02:00
if (SetupUtils.generators.get(object.setupGenerator).isFull()) {
2015-04-21 14:48:18 +02:00
types.add("default");
}
types.add("augmented");
2015-09-13 06:04:31 +02:00
if (Settings.ENABLE_CLUSTERS) {
2015-04-21 14:48:18 +02:00
types.add("partial");
2015-02-10 10:50:27 +01:00
}
2015-09-13 06:04:31 +02:00
if ((args.length != 1) || !types.contains(args[0].toLowerCase())) {
2015-04-21 16:03:27 +02:00
MainUtil.sendMessage(plr, "&cYou must choose a world type!");
2015-09-13 06:04:31 +02:00
for (final String type : types) {
2015-09-11 12:09:22 +02:00
final int i = allTypes.indexOf(type);
2015-09-13 06:04:31 +02:00
if (type.equals("default")) {
2015-04-21 16:03:27 +02:00
MainUtil.sendMessage(plr, "&8 - &2" + type + " &8-&7 " + allDesc.get(i));
2015-09-13 06:04:31 +02:00
} else {
2015-04-21 16:03:27 +02:00
MainUtil.sendMessage(plr, "&8 - &7" + type + " &8-&7 " + allDesc.get(i));
}
}
2015-02-10 07:14:55 +01:00
return false;
}
2015-04-21 14:48:18 +02:00
object.type = allTypes.indexOf(args[0].toLowerCase());
2015-09-11 12:09:22 +02:00
final PlotGenerator<?> gen = SetupUtils.generators.get(object.setupGenerator);
2015-09-13 06:04:31 +02:00
if (object.type == 0) {
2015-02-10 07:14:55 +01:00
object.current++;
2015-09-13 06:04:31 +02:00
if (object.step == null) {
2015-04-21 16:03:27 +02:00
object.plotManager = object.setupGenerator;
object.step = SetupUtils.generators.get(object.plotManager).getNewPlotWorld(null).getSettingNodes();
SetupUtils.generators.get(object.plotManager).processSetup(object);
2014-11-05 04:42:08 +01:00
}
2015-09-13 06:04:31 +02:00
if (object.step.length == 0) {
object.current = 4;
MainUtil.sendMessage(plr, "&6What do you want your world to be called?");
object.setup_index = 0;
return true;
}
2015-02-20 07:34:19 +01:00
final ConfigurationNode step = object.step[object.setup_index];
2015-02-10 07:14:55 +01:00
sendMessage(plr, C.SETUP_STEP, object.setup_index + 1 + "", step.getDescription(), step.getType().getType(), step.getDefaultValue() + "");
2015-09-13 06:04:31 +02:00
} else {
if (gen.isFull()) {
2015-04-21 16:03:27 +02:00
object.plotManager = object.setupGenerator;
object.setupGenerator = null;
object.step = SetupUtils.generators.get(object.plotManager).getNewPlotWorld(null).getSettingNodes();
SetupUtils.generators.get(object.plotManager).processSetup(object);
2015-09-13 06:04:31 +02:00
} else {
2015-04-21 16:03:27 +02:00
object.plotManager = "PlotSquared";
2015-07-27 08:00:20 +02:00
MainUtil.sendMessage(plr, "&c[WARNING] The specified generator does not identify as BukkitPlotGenerator");
2015-04-21 16:03:27 +02:00
MainUtil.sendMessage(plr, "&7 - You may need to manually configure the other plugin");
object.step = SetupUtils.generators.get(object.plotManager).getNewPlotWorld(null).getSettingNodes();
2015-04-21 16:03:27 +02:00
}
2015-09-11 12:09:22 +02:00
MainUtil.sendMessage(plr, "&6What terrain would you like in plots?"
+ "\n&8 - &2NONE&8 - &7No terrain at all"
+ "\n&8 - &7ORE&8 - &7Just some ore veins and trees"
+ "\n&8 - &7ROAD&8 - &7Terrain seperated by roads"
+ "\n&8 - &7ALL&8 - &7Entirely vanilla generation");
2014-12-20 05:44:24 +01:00
}
2015-02-10 07:14:55 +01:00
object.current++;
break;
2014-11-05 04:42:08 +01:00
}
2015-09-13 06:04:31 +02:00
case 2: { // Choose terrain
2015-04-21 16:03:27 +02:00
final List<String> terrain = Arrays.asList(new String[] { "none", "ore", "road", "all" });
2015-09-13 06:04:31 +02:00
if ((args.length != 1) || !terrain.contains(args[0].toLowerCase())) {
2015-09-11 12:09:22 +02:00
MainUtil.sendMessage(plr, "&cYou must choose the terrain!"
+ "\n&8 - &2NONE&8 - &7No terrain at all"
+ "\n&8 - &7ORE&8 - &7Just some ore veins and trees"
+ "\n&8 - &7ROAD&8 - &7Terrain seperated by roads"
+ "\n&8 - &7ALL&8 - &7Entirely vanilla generation");
2015-02-10 07:14:55 +01:00
return false;
}
object.terrain = terrain.indexOf(args[0].toLowerCase());
object.current++;
2015-09-13 06:04:31 +02:00
if (object.step == null) {
object.step = SetupUtils.generators.get(object.plotManager).getNewPlotWorld(null).getSettingNodes();
2015-02-10 07:14:55 +01:00
}
2015-02-20 07:34:19 +01:00
final ConfigurationNode step = object.step[object.setup_index];
2015-02-10 07:14:55 +01:00
sendMessage(plr, C.SETUP_STEP, object.setup_index + 1 + "", step.getDescription(), step.getType().getType(), step.getDefaultValue() + "");
break;
}
2015-09-13 06:04:31 +02:00
case 3: { // world setup
if (object.setup_index == object.step.length) {
2015-02-21 12:24:46 +01:00
MainUtil.sendMessage(plr, "&6What do you want your world to be called?");
2015-02-10 07:14:55 +01:00
object.setup_index = 0;
object.current++;
2014-11-05 04:42:08 +01:00
return true;
}
2015-02-10 07:14:55 +01:00
ConfigurationNode step = object.step[object.setup_index];
2015-09-13 06:04:31 +02:00
if (args.length < 1) {
2015-02-10 07:14:55 +01:00
sendMessage(plr, C.SETUP_STEP, object.setup_index + 1 + "", step.getDescription(), step.getType().getType(), step.getDefaultValue() + "");
return false;
2014-11-05 04:42:08 +01:00
}
final boolean valid = step.isValid(args[0]);
2015-09-13 06:04:31 +02:00
if (valid) {
2014-11-05 04:42:08 +01:00
sendMessage(plr, C.SETUP_VALID_ARG, step.getConstant(), args[0]);
step.setValue(args[0]);
2015-02-10 07:14:55 +01:00
object.setup_index++;
2015-09-13 06:04:31 +02:00
if (object.setup_index == object.step.length) {
2015-07-27 15:10:14 +02:00
onCommand(plr, args);
2015-02-10 07:14:55 +01:00
return false;
2014-11-05 04:42:08 +01:00
}
2015-02-10 07:14:55 +01:00
step = object.step[object.setup_index];
sendMessage(plr, C.SETUP_STEP, object.setup_index + 1 + "", step.getDescription(), step.getType().getType(), step.getDefaultValue() + "");
return false;
2015-09-13 06:04:31 +02:00
} else {
2014-11-05 04:42:08 +01:00
sendMessage(plr, C.SETUP_INVALID_ARG, args[0], step.getConstant());
2015-02-10 07:14:55 +01:00
sendMessage(plr, C.SETUP_STEP, object.setup_index + 1 + "", step.getDescription(), step.getType().getType(), step.getDefaultValue() + "");
return false;
2014-11-05 04:42:08 +01:00
}
}
2015-09-13 06:04:31 +02:00
case 4: {
if (args.length != 1) {
2015-02-21 12:24:46 +01:00
MainUtil.sendMessage(plr, "&cYou need to choose a world name!");
2015-02-10 07:14:55 +01:00
return false;
2014-11-05 04:42:08 +01:00
}
2015-09-13 06:04:31 +02:00
if (BlockManager.manager.isWorld(args[0])) {
if (PS.get().isPlotWorld(args[0])) {
2015-08-09 11:58:29 +02:00
MainUtil.sendMessage(plr, "&cThat world name is already taken!");
return false;
}
2015-09-11 12:09:22 +02:00
MainUtil.sendMessage(plr,
"&cThe world you specified already exists. After restarting, new terrain will use PlotSquared, however you may need to reset the world for it to generate correctly!");
2015-02-10 07:14:55 +01:00
}
object.world = args[0];
2015-05-14 19:27:37 +02:00
SetupUtils.setupMap.remove(name);
2015-04-21 14:48:18 +02:00
final String world;
2015-09-13 06:04:31 +02:00
if (object.setupManager == null) {
2015-04-21 14:48:18 +02:00
world = SetupUtils.manager.setupWorld(object);
2015-09-13 06:04:31 +02:00
} else {
2015-04-21 16:03:27 +02:00
world = object.setupManager.setupWorld(object);
2015-04-21 14:48:18 +02:00
}
2015-09-13 06:04:31 +02:00
try {
2015-07-27 17:14:38 +02:00
plr.teleport(BlockManager.manager.getSpawn(world));
2015-09-13 06:04:31 +02:00
} catch (final Exception e) {
2015-02-10 07:14:55 +01:00
plr.sendMessage("&cAn error occured. See console for more information");
e.printStackTrace();
}
sendMessage(plr, C.SETUP_FINISHED, object.world);
2015-05-14 19:27:37 +02:00
SetupUtils.setupMap.remove(name);
2014-11-05 04:42:08 +01:00
}
}
2015-02-10 07:14:55 +01:00
return false;
2014-11-05 04:42:08 +01:00
}
}