2018-09-24 11:41:32 +02:00
|
|
|
From 800d7c783d6ed1be96b675b15a31a04c0cf3bb6e Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Mon, 29 Feb 2016 21:02:09 -0600
|
|
|
|
Subject: [PATCH] Paper config files
|
|
|
|
|
|
|
|
|
2017-03-25 04:18:58 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperCommand.java b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
|
|
|
new file mode 100644
|
2018-09-24 11:41:32 +02:00
|
|
|
index 000000000..961966e16
|
2017-03-25 04:18:58 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
2018-07-15 03:53:17 +02:00
|
|
|
@@ -0,0 +1,237 @@
|
2017-03-25 04:18:58 +01:00
|
|
|
+package com.destroystokyo.paper;
|
|
|
|
+
|
2018-07-15 03:53:17 +02:00
|
|
|
+import com.google.common.base.Functions;
|
|
|
|
+import com.google.common.collect.Iterables;
|
|
|
|
+import com.google.common.collect.Lists;
|
2017-10-15 23:43:16 +02:00
|
|
|
+import com.google.common.collect.Maps;
|
|
|
|
+import net.minecraft.server.*;
|
|
|
|
+import org.apache.commons.lang3.tuple.MutablePair;
|
|
|
|
+import org.apache.commons.lang3.tuple.Pair;
|
|
|
|
+import org.bukkit.Bukkit;
|
2017-03-25 04:18:58 +01:00
|
|
|
+import org.bukkit.ChatColor;
|
2017-10-15 23:43:16 +02:00
|
|
|
+import org.bukkit.Location;
|
|
|
|
+import org.bukkit.World;
|
2017-03-25 04:18:58 +01:00
|
|
|
+import org.bukkit.command.Command;
|
|
|
|
+import org.bukkit.command.CommandSender;
|
2017-07-16 01:59:18 +02:00
|
|
|
+import org.bukkit.craftbukkit.CraftServer;
|
2017-10-15 23:43:16 +02:00
|
|
|
+import org.bukkit.craftbukkit.CraftWorld;
|
|
|
|
+import org.bukkit.entity.Player;
|
2017-03-25 04:18:58 +01:00
|
|
|
+
|
|
|
|
+import java.io.File;
|
2017-07-16 01:59:18 +02:00
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
+import java.time.format.DateTimeFormatter;
|
2017-10-15 23:43:16 +02:00
|
|
|
+import java.util.*;
|
|
|
|
+import java.util.stream.Collectors;
|
2017-03-25 04:18:58 +01:00
|
|
|
+
|
|
|
|
+public class PaperCommand extends Command {
|
|
|
|
+
|
|
|
|
+ public PaperCommand(String name) {
|
|
|
|
+ super(name);
|
|
|
|
+ this.description = "Paper related commands";
|
2017-10-15 23:43:16 +02:00
|
|
|
+ this.usageMessage = "/paper [heap | entity | reload | version]";
|
2017-03-25 04:18:58 +01:00
|
|
|
+ this.setPermission("bukkit.command.paper");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
2017-10-15 23:43:16 +02:00
|
|
|
+ public List<String> tabComplete(CommandSender sender, String alias, String[] args, Location location) throws IllegalArgumentException {
|
|
|
|
+ if (args.length <= 1)
|
2018-07-15 03:53:17 +02:00
|
|
|
+ return getListMatchingLast(args, "heap", "entity", "reload", "version");
|
2017-10-15 23:43:16 +02:00
|
|
|
+
|
|
|
|
+ switch (args[0].toLowerCase(Locale.ENGLISH))
|
|
|
|
+ {
|
|
|
|
+ case "entity":
|
|
|
|
+ if (args.length == 2)
|
2018-07-15 03:53:17 +02:00
|
|
|
+ return getListMatchingLast(args, "help", "list");
|
2017-10-15 23:43:16 +02:00
|
|
|
+ if (args.length == 3)
|
2018-07-15 03:53:17 +02:00
|
|
|
+ return getListMatchingLast(args, EntityTypes.getEntityNameList().stream().map(MinecraftKey::toString).sorted().toArray(String[]::new));
|
2017-10-15 23:43:16 +02:00
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ return Collections.emptyList();
|
|
|
|
+ }
|
|
|
|
+
|
2018-07-15 03:53:17 +02:00
|
|
|
+ // Code from Mojang - copyright them
|
|
|
|
+ public static List<String> getListMatchingLast(String[] args, String... matches) {
|
|
|
|
+ return getListMatchingLast(args, (Collection) Arrays.asList(matches));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static boolean matches(String s, String s1) {
|
|
|
|
+ return s1.regionMatches(true, 0, s, 0, s.length());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static List<String> getListMatchingLast(String[] strings, Collection<?> collection) {
|
|
|
|
+ String last = strings[strings.length - 1];
|
|
|
|
+ ArrayList<String> results = Lists.newArrayList();
|
|
|
|
+
|
|
|
|
+ if (!collection.isEmpty()) {
|
|
|
|
+ Iterator iterator = Iterables.transform(collection, Functions.toStringFunction()).iterator();
|
|
|
|
+
|
|
|
|
+ while (iterator.hasNext()) {
|
|
|
|
+ String s1 = (String) iterator.next();
|
|
|
|
+
|
|
|
|
+ if (matches(last, s1)) {
|
|
|
|
+ results.add(s1);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (results.isEmpty()) {
|
|
|
|
+ iterator = collection.iterator();
|
|
|
|
+
|
|
|
|
+ while (iterator.hasNext()) {
|
|
|
|
+ Object object = iterator.next();
|
|
|
|
+
|
|
|
|
+ if (object instanceof MinecraftKey && matches(last, ((MinecraftKey) object).getKey())) {
|
|
|
|
+ results.add(String.valueOf(object));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return results;
|
|
|
|
+ }
|
|
|
|
+ // end copy stuff
|
|
|
|
+
|
2017-10-15 23:43:16 +02:00
|
|
|
+ @Override
|
2017-03-25 04:18:58 +01:00
|
|
|
+ public boolean execute(CommandSender sender, String commandLabel, String[] args) {
|
|
|
|
+ if (!testPermission(sender)) return true;
|
|
|
|
+
|
2017-10-15 23:43:16 +02:00
|
|
|
+ if (args.length == 0) {
|
2017-03-25 04:18:58 +01:00
|
|
|
+ sender.sendMessage(ChatColor.RED + "Usage: " + usageMessage);
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
2017-10-15 23:43:16 +02:00
|
|
|
+ switch (args[0].toLowerCase(Locale.ENGLISH)) {
|
2017-07-16 01:59:18 +02:00
|
|
|
+ case "heap":
|
|
|
|
+ dumpHeap(sender);
|
|
|
|
+ break;
|
2017-10-15 23:43:16 +02:00
|
|
|
+ case "entity":
|
|
|
|
+ listEntities(sender, args);
|
|
|
|
+ break;
|
2017-07-16 01:59:18 +02:00
|
|
|
+ case "reload":
|
|
|
|
+ doReload(sender);
|
|
|
|
+ break;
|
|
|
|
+ case "ver":
|
|
|
|
+ case "version":
|
|
|
|
+ org.bukkit.Bukkit.getServer().getCommandMap().getCommand("version").execute(sender, commandLabel, new String[0]);
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "Usage: " + usageMessage);
|
|
|
|
+ return false;
|
|
|
|
+ }
|
2017-03-25 04:18:58 +01:00
|
|
|
+
|
2017-07-16 01:59:18 +02:00
|
|
|
+ return true;
|
|
|
|
+ }
|
2017-03-25 04:18:58 +01:00
|
|
|
+
|
2017-10-15 23:43:16 +02:00
|
|
|
+ /*
|
|
|
|
+ * Ported from MinecraftForge - author: LexManos <LexManos@gmail.com> - License: LGPLv2.1
|
|
|
|
+ */
|
|
|
|
+ private void listEntities(CommandSender sender, String[] args) {
|
|
|
|
+ if (args.length < 2 || args[1].toLowerCase(Locale.ENGLISH).equals("help")) {
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "Use /paper entity [list] help for more information on a specific command.");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ switch (args[1].toLowerCase(Locale.ENGLISH)) {
|
|
|
|
+ case "list":
|
|
|
|
+ String filter = "*";
|
|
|
|
+ if (args.length > 2) {
|
|
|
|
+ if (args[2].toLowerCase(Locale.ENGLISH).equals("help")) {
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "Use /paper entity list [filter] [worldName] to get entity info that matches the optional filter.");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ filter = args[2];
|
|
|
|
+ }
|
|
|
|
+ final String cleanfilter = filter.replace("?", ".?").replace("*", ".*?");
|
|
|
|
+ Set<MinecraftKey> names = EntityTypes.getEntityNameList().stream()
|
|
|
|
+ .filter(n -> n.toString().matches(cleanfilter))
|
|
|
|
+ .collect(Collectors.toSet());
|
|
|
|
+
|
|
|
|
+ if (names.isEmpty()) {
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "Invalid filter, does not match any entities. Use /paper entity list for a proper list");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ String worldName;
|
|
|
|
+ if (args.length > 3) {
|
|
|
|
+ worldName = args[3];
|
|
|
|
+ } else if (sender instanceof Player) {
|
|
|
|
+ worldName = ((Player) sender).getWorld().getName();
|
|
|
|
+ } else {
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "Please specify the name of a world");
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "To do so without a filter, specify '*' as the filter");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Map<MinecraftKey, MutablePair<Integer, Map<ChunkCoordIntPair, Integer>>> list = Maps.newHashMap();
|
|
|
|
+ World bukkitWorld = Bukkit.getWorld(worldName);
|
|
|
|
+ if (bukkitWorld == null) {
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "Could not load world for " + worldName + ". Please select a valid world.");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ WorldServer world = ((CraftWorld) Bukkit.getWorld(worldName)).getHandle();
|
|
|
|
+
|
|
|
|
+ List<Entity> entities = world.entityList;
|
|
|
|
+ entities.forEach(e -> {
|
2018-07-15 03:53:17 +02:00
|
|
|
+ MinecraftKey key = new MinecraftKey(""); // TODO: update in next patch
|
2017-10-15 23:43:16 +02:00
|
|
|
+
|
|
|
|
+ MutablePair<Integer, Map<ChunkCoordIntPair, Integer>> info = list.computeIfAbsent(key, k -> MutablePair.of(0, Maps.newHashMap()));
|
|
|
|
+ ChunkCoordIntPair chunk = new ChunkCoordIntPair(e.getChunkX(), e.getChunkZ());
|
|
|
|
+ info.left++;
|
|
|
|
+ info.right.put(chunk, info.right.getOrDefault(chunk, 0) + 1);
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (names.size() == 1) {
|
|
|
|
+ MinecraftKey name = names.iterator().next();
|
|
|
|
+ Pair<Integer, Map<ChunkCoordIntPair, Integer>> info = list.get(name);
|
|
|
|
+ if (info == null) {
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "No entities found.");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ sender.sendMessage("Entity: " + name + " Total: " + info.getLeft());
|
|
|
|
+ info.getRight().entrySet().stream()
|
|
|
|
+ .sorted((a, b) -> !a.getValue().equals(b.getValue()) ? b.getValue() - a.getValue() : a.getKey().toString().compareTo(b.getKey().toString()))
|
|
|
|
+ .limit(10).forEach(e -> sender.sendMessage(" " + e.getValue() + ": " + e.getKey().x + ", " + e.getKey().z));
|
|
|
|
+ } else {
|
|
|
|
+ List<Pair<MinecraftKey, Integer>> info = list.entrySet().stream()
|
|
|
|
+ .filter(e -> names.contains(e.getKey()))
|
|
|
|
+ .map(e -> Pair.of(e.getKey(), e.getValue().left))
|
|
|
|
+ .sorted((a, b) -> !a.getRight().equals(b.getRight()) ? b.getRight() - a.getRight() : a.getKey().toString().compareTo(b.getKey().toString()))
|
|
|
|
+ .collect(Collectors.toList());
|
|
|
|
+
|
|
|
|
+ if (info == null || info.size() == 0) {
|
|
|
|
+ sender.sendMessage(ChatColor.RED + "No entities found.");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ int count = info.stream().mapToInt(Pair::getRight).sum();
|
|
|
|
+ sender.sendMessage("Total: " + count);
|
|
|
|
+ info.forEach(e -> sender.sendMessage(" " + e.getValue() + ": " + e.getKey()));
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
2017-07-16 01:59:18 +02:00
|
|
|
+ private void dumpHeap(CommandSender sender) {
|
|
|
|
+ File file = new File(new File(new File("."), "dumps"),
|
2017-07-27 03:28:56 +02:00
|
|
|
+ "heap-dump-" + DateTimeFormatter.ofPattern("yyyy-MM-dd_HH.mm.ss").format(LocalDateTime.now()) + "-server.hprof");
|
2017-07-16 01:59:18 +02:00
|
|
|
+ Command.broadcastCommandMessage(sender, ChatColor.YELLOW + "Writing JVM heap data to " + file);
|
2017-07-27 03:28:56 +02:00
|
|
|
+ if (CraftServer.dumpHeap(file)) {
|
|
|
|
+ Command.broadcastCommandMessage(sender, ChatColor.GREEN + "Heap dump complete");
|
|
|
|
+ } else {
|
|
|
|
+ Command.broadcastCommandMessage(sender, ChatColor.RED + "Failed to write heap dump, see sever log for details");
|
|
|
|
+ }
|
2017-07-16 01:59:18 +02:00
|
|
|
+ }
|
2017-03-25 04:18:58 +01:00
|
|
|
+
|
2017-07-16 01:59:18 +02:00
|
|
|
+ private void doReload(CommandSender sender) {
|
|
|
|
+ Command.broadcastCommandMessage(sender, ChatColor.RED + "Please note that this command is not supported and may cause issues.");
|
|
|
|
+ Command.broadcastCommandMessage(sender, ChatColor.RED + "If you encounter any issues please use the /stop command to restart your server.");
|
|
|
|
+
|
|
|
|
+ MinecraftServer console = MinecraftServer.getServer();
|
|
|
|
+ com.destroystokyo.paper.PaperConfig.init((File) console.options.valueOf("paper-settings"));
|
2018-08-26 20:11:49 +02:00
|
|
|
+ for (WorldServer world : console.getWorlds()) {
|
2017-07-16 01:59:18 +02:00
|
|
|
+ world.paperConfig.init();
|
2017-03-25 04:18:58 +01:00
|
|
|
+ }
|
2017-07-16 01:59:18 +02:00
|
|
|
+ console.server.reloadCount++;
|
2017-03-25 04:18:58 +01:00
|
|
|
+
|
2017-07-16 01:59:18 +02:00
|
|
|
+ Command.broadcastCommandMessage(sender, ChatColor.GREEN + "Paper config reload complete.");
|
2017-03-25 04:18:58 +01:00
|
|
|
+ }
|
|
|
|
+}
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperConfig.java b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
|
|
new file mode 100644
|
2018-09-24 11:41:32 +02:00
|
|
|
index 000000000..104abab84
|
2016-03-01 00:09:49 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2018-07-24 02:24:44 +02:00
|
|
|
@@ -0,0 +1,177 @@
|
2016-03-01 00:09:49 +01:00
|
|
|
+package com.destroystokyo.paper;
|
|
|
|
+
|
|
|
|
+import com.google.common.base.Throwables;
|
|
|
|
+
|
|
|
|
+import java.io.File;
|
|
|
|
+import java.io.IOException;
|
|
|
|
+import java.lang.reflect.InvocationTargetException;
|
|
|
|
+import java.lang.reflect.Method;
|
|
|
|
+import java.lang.reflect.Modifier;
|
|
|
|
+import java.util.HashMap;
|
|
|
|
+import java.util.List;
|
|
|
|
+import java.util.Map;
|
2016-05-02 05:54:08 +02:00
|
|
|
+import java.util.concurrent.TimeUnit;
|
2016-03-01 00:09:49 +01:00
|
|
|
+import java.util.logging.Level;
|
2016-05-02 05:54:08 +02:00
|
|
|
+import java.util.regex.Pattern;
|
2016-03-01 00:09:49 +01:00
|
|
|
+
|
|
|
|
+import net.minecraft.server.MinecraftServer;
|
|
|
|
+import org.bukkit.Bukkit;
|
|
|
|
+import org.bukkit.command.Command;
|
|
|
|
+import org.bukkit.configuration.InvalidConfigurationException;
|
|
|
|
+import org.bukkit.configuration.file.YamlConfiguration;
|
|
|
|
+
|
|
|
|
+public class PaperConfig {
|
|
|
|
+
|
|
|
|
+ private static File CONFIG_FILE;
|
|
|
|
+ private static final String HEADER = "This is the main configuration file for Paper.\n"
|
|
|
|
+ + "As you can see, there's tons to configure. Some options may impact gameplay, so use\n"
|
|
|
|
+ + "with caution, and make sure you know what each option does before configuring.\n"
|
|
|
|
+ + "\n"
|
2016-09-04 08:26:05 +02:00
|
|
|
+ + "If you need help with the configuration or have any questions related to Paper,\n"
|
|
|
|
+ + "join us in our IRC channel.\n"
|
2016-03-01 00:09:49 +01:00
|
|
|
+ + "\n"
|
2016-09-04 08:26:05 +02:00
|
|
|
+ + "IRC: #paper @ irc.spi.gt ( http://irc.spi.gt/iris/?channels=paper )\n"
|
2016-03-01 00:09:49 +01:00
|
|
|
+ + "Wiki: https://paper.readthedocs.org/ \n"
|
|
|
|
+ + "Paper Forums: https://aquifermc.org/ \n";
|
|
|
|
+ /*========================================================================*/
|
|
|
|
+ public static YamlConfiguration config;
|
|
|
|
+ static int version;
|
|
|
|
+ static Map<String, Command> commands;
|
2017-03-25 04:18:58 +01:00
|
|
|
+ private static boolean verbose;
|
|
|
|
+ /*========================================================================*/
|
2016-03-01 00:09:49 +01:00
|
|
|
+
|
|
|
|
+ public static void init(File configFile) {
|
|
|
|
+ CONFIG_FILE = configFile;
|
|
|
|
+ config = new YamlConfiguration();
|
|
|
|
+ try {
|
|
|
|
+ config.load(CONFIG_FILE);
|
|
|
|
+ } catch (IOException ex) {
|
|
|
|
+ } catch (InvalidConfigurationException ex) {
|
|
|
|
+ Bukkit.getLogger().log(Level.SEVERE, "Could not load paper.yml, please correct your syntax errors", ex);
|
|
|
|
+ throw Throwables.propagate(ex);
|
|
|
|
+ }
|
|
|
|
+ config.options().header(HEADER);
|
|
|
|
+ config.options().copyDefaults(true);
|
2017-03-25 04:18:58 +01:00
|
|
|
+ verbose = getBoolean("verbose", false);
|
2016-03-01 00:09:49 +01:00
|
|
|
+
|
|
|
|
+ commands = new HashMap<String, Command>();
|
2017-03-25 04:18:58 +01:00
|
|
|
+ commands.put("paper", new PaperCommand("paper"));
|
2016-03-01 00:09:49 +01:00
|
|
|
+
|
2018-07-31 15:50:40 +02:00
|
|
|
+ version = getInt("config-version", 14);
|
|
|
|
+ set("config-version", 14);
|
2016-03-01 00:09:49 +01:00
|
|
|
+ readConfig(PaperConfig.class, null);
|
|
|
|
+ }
|
|
|
|
+
|
2018-07-24 02:24:44 +02:00
|
|
|
+ protected static void logError(String s) {
|
|
|
|
+ Bukkit.getLogger().severe(s);
|
|
|
|
+ }
|
|
|
|
+
|
2017-03-25 04:18:58 +01:00
|
|
|
+ protected static void log(String s) {
|
|
|
|
+ if (verbose) {
|
|
|
|
+ Bukkit.getLogger().info(s);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
2016-03-01 00:09:49 +01:00
|
|
|
+ public static void registerCommands() {
|
|
|
|
+ for (Map.Entry<String, Command> entry : commands.entrySet()) {
|
|
|
|
+ MinecraftServer.getServer().server.getCommandMap().register(entry.getKey(), "Paper", entry.getValue());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ static void readConfig(Class<?> clazz, Object instance) {
|
|
|
|
+ for (Method method : clazz.getDeclaredMethods()) {
|
|
|
|
+ if (Modifier.isPrivate(method.getModifiers())) {
|
|
|
|
+ if (method.getParameterTypes().length == 0 && method.getReturnType() == Void.TYPE) {
|
|
|
|
+ try {
|
|
|
|
+ method.setAccessible(true);
|
|
|
|
+ method.invoke(instance);
|
|
|
|
+ } catch (InvocationTargetException ex) {
|
|
|
|
+ throw Throwables.propagate(ex.getCause());
|
|
|
|
+ } catch (Exception ex) {
|
|
|
|
+ Bukkit.getLogger().log(Level.SEVERE, "Error invoking " + method, ex);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ config.save(CONFIG_FILE);
|
|
|
|
+ } catch (IOException ex) {
|
|
|
|
+ Bukkit.getLogger().log(Level.SEVERE, "Could not save " + CONFIG_FILE, ex);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
2016-05-02 05:54:08 +02:00
|
|
|
+ private static final Pattern SPACE = Pattern.compile(" ");
|
|
|
|
+ private static final Pattern NOT_NUMERIC = Pattern.compile("[^-\\d.]");
|
|
|
|
+ public static int getSeconds(String str) {
|
|
|
|
+ str = SPACE.matcher(str).replaceAll("");
|
|
|
|
+ final char unit = str.charAt(str.length() - 1);
|
|
|
|
+ str = NOT_NUMERIC.matcher(str).replaceAll("");
|
|
|
|
+ double num;
|
|
|
|
+ try {
|
|
|
|
+ num = Double.parseDouble(str);
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ num = 0D;
|
|
|
|
+ }
|
|
|
|
+ switch (unit) {
|
|
|
|
+ case 'd': num *= (double) 60*60*24; break;
|
|
|
|
+ case 'h': num *= (double) 60*60; break;
|
|
|
|
+ case 'm': num *= (double) 60; break;
|
|
|
|
+ default: case 's': break;
|
|
|
|
+ }
|
|
|
|
+ return (int) num;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ protected static String timeSummary(int seconds) {
|
|
|
|
+ String time = "";
|
|
|
|
+
|
|
|
|
+ if (seconds > 60 * 60 * 24) {
|
|
|
|
+ time += TimeUnit.SECONDS.toDays(seconds) + "d";
|
|
|
|
+ seconds %= 60 * 60 * 24;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (seconds > 60 * 60) {
|
|
|
|
+ time += TimeUnit.SECONDS.toHours(seconds) + "h";
|
|
|
|
+ seconds %= 60 * 60;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (seconds > 0) {
|
|
|
|
+ time += TimeUnit.SECONDS.toMinutes(seconds) + "m";
|
|
|
|
+ }
|
|
|
|
+ return time;
|
|
|
|
+ }
|
|
|
|
+
|
2016-03-01 00:09:49 +01:00
|
|
|
+ private static void set(String path, Object val) {
|
|
|
|
+ config.set(path, val);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static boolean getBoolean(String path, boolean def) {
|
|
|
|
+ config.addDefault(path, def);
|
|
|
|
+ return config.getBoolean(path, config.getBoolean(path));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static double getDouble(String path, double def) {
|
|
|
|
+ config.addDefault(path, def);
|
|
|
|
+ return config.getDouble(path, config.getDouble(path));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static float getFloat(String path, float def) {
|
|
|
|
+ // TODO: Figure out why getFloat() always returns the default value.
|
|
|
|
+ return (float) getDouble(path, (double) def);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static int getInt(String path, int def) {
|
|
|
|
+ config.addDefault(path, def);
|
|
|
|
+ return config.getInt(path, config.getInt(path));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static <T> List getList(String path, T def) {
|
|
|
|
+ config.addDefault(path, def);
|
|
|
|
+ return (List<T>) config.getList(path, config.getList(path));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static String getString(String path, String def) {
|
|
|
|
+ config.addDefault(path, def);
|
|
|
|
+ return config.getString(path, config.getString(path));
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
new file mode 100644
|
2018-09-24 11:41:32 +02:00
|
|
|
index 000000000..a73865739
|
2016-03-01 00:09:49 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-07-24 02:24:44 +02:00
|
|
|
@@ -0,0 +1,67 @@
|
2016-03-01 00:09:49 +01:00
|
|
|
+package com.destroystokyo.paper;
|
|
|
|
+
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+import org.bukkit.Bukkit;
|
|
|
|
+import org.bukkit.configuration.file.YamlConfiguration;
|
2016-03-18 22:41:26 +01:00
|
|
|
+import org.spigotmc.SpigotWorldConfig;
|
2016-03-01 00:09:49 +01:00
|
|
|
+
|
2017-03-25 04:18:58 +01:00
|
|
|
+import static com.destroystokyo.paper.PaperConfig.log;
|
2018-07-24 02:24:44 +02:00
|
|
|
+import static com.destroystokyo.paper.PaperConfig.logError;
|
2017-03-25 04:18:58 +01:00
|
|
|
+
|
2016-03-01 00:09:49 +01:00
|
|
|
+public class PaperWorldConfig {
|
|
|
|
+
|
|
|
|
+ private final String worldName;
|
2016-03-18 22:41:26 +01:00
|
|
|
+ private final SpigotWorldConfig spigotConfig;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ private final YamlConfiguration config;
|
|
|
|
+ private boolean verbose;
|
|
|
|
+
|
2016-03-18 22:41:26 +01:00
|
|
|
+ public PaperWorldConfig(String worldName, SpigotWorldConfig spigotConfig) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ this.worldName = worldName;
|
2016-03-18 22:41:26 +01:00
|
|
|
+ this.spigotConfig = spigotConfig;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ this.config = PaperConfig.config;
|
|
|
|
+ init();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void init() {
|
|
|
|
+ log("-------- World Settings For [" + worldName + "] --------");
|
|
|
|
+ PaperConfig.readConfig(PaperWorldConfig.class, this);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void set(String path, Object val) {
|
|
|
|
+ config.set("world-settings.default." + path, val);
|
2016-05-17 04:07:12 +02:00
|
|
|
+ if (config.get("world-settings." + worldName + "." + path) != null) {
|
|
|
|
+ config.set("world-settings." + worldName + "." + path, val);
|
|
|
|
+ }
|
2016-03-01 00:09:49 +01:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private boolean getBoolean(String path, boolean def) {
|
|
|
|
+ config.addDefault("world-settings.default." + path, def);
|
|
|
|
+ return config.getBoolean("world-settings." + worldName + "." + path, config.getBoolean("world-settings.default." + path));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private double getDouble(String path, double def) {
|
|
|
|
+ config.addDefault("world-settings.default." + path, def);
|
|
|
|
+ return config.getDouble("world-settings." + worldName + "." + path, config.getDouble("world-settings.default." + path));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private int getInt(String path, int def) {
|
|
|
|
+ config.addDefault("world-settings.default." + path, def);
|
|
|
|
+ return config.getInt("world-settings." + worldName + "." + path, config.getInt("world-settings.default." + path));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private float getFloat(String path, float def) {
|
|
|
|
+ // TODO: Figure out why getFloat() always returns the default value.
|
|
|
|
+ return (float) getDouble(path, (double) def);
|
|
|
|
+ }
|
|
|
|
+
|
2018-08-26 20:11:49 +02:00
|
|
|
+ private <T> List<T> getList(String path, List<T> def) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ config.addDefault("world-settings.default." + path, def);
|
|
|
|
+ return (List<T>) config.getList("world-settings." + worldName + "." + path, config.getList("world-settings.default." + path));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private String getString(String path, String def) {
|
|
|
|
+ config.addDefault("world-settings.default." + path, def);
|
|
|
|
+ return config.getString("world-settings." + worldName + "." + path, config.getString("world-settings.default." + path));
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/DedicatedServer.java b/src/main/java/net/minecraft/server/DedicatedServer.java
|
2018-09-24 11:41:32 +02:00
|
|
|
index 8b3988fc0..d8535fdd9 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/DedicatedServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/DedicatedServer.java
|
2018-07-15 03:53:17 +02:00
|
|
|
@@ -192,6 +192,10 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
|
2016-03-01 00:09:49 +01:00
|
|
|
org.spigotmc.SpigotConfig.init((File) options.valueOf("spigot-settings"));
|
|
|
|
org.spigotmc.SpigotConfig.registerCommands();
|
|
|
|
// Spigot end
|
|
|
|
+ // Paper start
|
|
|
|
+ com.destroystokyo.paper.PaperConfig.init((File) options.valueOf("paper-settings"));
|
|
|
|
+ com.destroystokyo.paper.PaperConfig.registerCommands();
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
DedicatedServer.LOGGER.info("Generating keypair");
|
|
|
|
this.a(MinecraftEncryption.b());
|
2017-10-15 23:43:16 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2018-09-24 11:41:32 +02:00
|
|
|
index 709b28d78..4ba748ae2 100644
|
2017-10-15 23:43:16 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2018-07-31 03:19:41 +02:00
|
|
|
@@ -135,9 +135,9 @@ public abstract class Entity implements INamableTileEntity, ICommandListener {
|
2018-07-15 03:53:17 +02:00
|
|
|
private static final DataWatcherObject<Boolean> aG = DataWatcher.a(Entity.class, DataWatcherRegistry.i);
|
|
|
|
private static final DataWatcherObject<Boolean> aH = DataWatcher.a(Entity.class, DataWatcherRegistry.i);
|
|
|
|
public boolean inChunk;
|
|
|
|
- public int ae;
|
|
|
|
- public int af;
|
|
|
|
- public int ag;
|
|
|
|
+ public int ae; public int getChunkX() { return ae; } // Paper - OBFHELPER
|
|
|
|
+ public int af; public int getChunkY() { return af; } // Paper - OBFHELPER
|
|
|
|
+ public int ag; public int getChunkZ() { return ag; } // Paper - OBFHELPER
|
|
|
|
public boolean ak;
|
2017-10-15 23:43:16 +02:00
|
|
|
public boolean impulse;
|
|
|
|
public int portalCooldown;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityTypes.java b/src/main/java/net/minecraft/server/EntityTypes.java
|
2018-09-24 11:41:32 +02:00
|
|
|
index c6434ec37..17bfa356f 100644
|
2017-10-15 23:43:16 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityTypes.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityTypes.java
|
2018-07-15 03:53:17 +02:00
|
|
|
@@ -2,6 +2,8 @@ package net.minecraft.server;
|
2017-10-15 23:43:16 +02:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
import com.mojang.datafixers.DataFixUtils;
|
|
|
|
import com.mojang.datafixers.types.Type;
|
|
|
|
+
|
|
|
|
+import java.util.Set;
|
|
|
|
import java.util.UUID;
|
|
|
|
import java.util.function.Function;
|
2018-08-26 20:11:49 +02:00
|
|
|
import java.util.stream.Stream;
|
|
|
|
@@ -333,4 +335,10 @@ public class EntityTypes<T extends Entity> {
|
2018-07-15 03:53:17 +02:00
|
|
|
return new EntityTypes(this.a, this.b, this.c, this.d, type);
|
|
|
|
}
|
2017-10-15 23:43:16 +02:00
|
|
|
}
|
2018-07-15 03:53:17 +02:00
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ public static Set<MinecraftKey> getEntityNameList() {
|
|
|
|
+ return REGISTRY.keySet();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2018-09-24 11:41:32 +02:00
|
|
|
index ed77641e4..f381e23be 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -134,6 +134,8 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2016-03-01 00:09:49 +01:00
|
|
|
private int tickPosition;
|
|
|
|
public final org.spigotmc.SpigotWorldConfig spigotConfig; // Spigot
|
|
|
|
|
|
|
|
+ public final com.destroystokyo.paper.PaperWorldConfig paperConfig; // Paper
|
|
|
|
+
|
|
|
|
public final SpigotTimings.WorldTimingsHandler timings; // Spigot
|
|
|
|
private boolean guardEntityList; // Spigot
|
|
|
|
public static boolean haveWeSilencedAPhysicsCrash;
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -156,6 +158,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2018-08-26 20:11:49 +02:00
|
|
|
protected World(IDataManager idatamanager, @Nullable PersistentCollection persistentcollection, WorldData worlddata, WorldProvider worldprovider, MethodProfiler methodprofiler, boolean flag, ChunkGenerator gen, org.bukkit.World.Environment env) {
|
2016-03-01 00:09:49 +01:00
|
|
|
this.spigotConfig = new org.spigotmc.SpigotWorldConfig( worlddata.getName() ); // Spigot
|
2016-03-18 22:41:26 +01:00
|
|
|
+ this.paperConfig = new com.destroystokyo.paper.PaperWorldConfig(worlddata.getName(), this.spigotConfig); // Paper
|
2016-03-01 00:09:49 +01:00
|
|
|
this.generator = gen;
|
|
|
|
this.world = new CraftWorld((WorldServer) this, gen, env);
|
|
|
|
this.ticksPerAnimalSpawns = this.getServer().getTicksPerAnimalSpawns(); // CraftBukkit
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2018-09-24 11:41:32 +02:00
|
|
|
index e28ce05fb..e659f3f33 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2018-09-24 11:41:32 +02:00
|
|
|
@@ -750,6 +750,7 @@ public final class CraftServer implements Server {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
org.spigotmc.SpigotConfig.init((File) console.options.valueOf("spigot-settings")); // Spigot
|
|
|
|
+ com.destroystokyo.paper.PaperConfig.init((File) console.options.valueOf("paper-settings")); // Paper
|
2018-08-26 20:11:49 +02:00
|
|
|
for (WorldServer world : console.getWorlds()) {
|
2016-03-01 00:09:49 +01:00
|
|
|
world.worldData.setDifficulty(difficulty);
|
|
|
|
world.setSpawnFlags(monsters, animals);
|
2018-09-24 11:41:32 +02:00
|
|
|
@@ -765,6 +766,7 @@ public final class CraftServer implements Server {
|
2016-03-01 00:09:49 +01:00
|
|
|
world.ticksPerMonsterSpawns = this.getTicksPerMonsterSpawns();
|
|
|
|
}
|
|
|
|
world.spigotConfig.init(); // Spigot
|
|
|
|
+ world.paperConfig.init(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
pluginManager.clearPlugins();
|
2018-09-24 11:41:32 +02:00
|
|
|
@@ -772,6 +774,7 @@ public final class CraftServer implements Server {
|
2016-03-01 00:09:49 +01:00
|
|
|
resetRecipes();
|
2017-05-14 20:05:01 +02:00
|
|
|
reloadData();
|
2016-03-01 00:09:49 +01:00
|
|
|
org.spigotmc.SpigotConfig.registerCommands(); // Spigot
|
|
|
|
+ com.destroystokyo.paper.PaperConfig.registerCommands(); // Paper
|
|
|
|
overrideAllCommandBlockCommands = commandsConfiguration.getStringList("command-block-overrides").contains("*");
|
2018-07-15 03:53:17 +02:00
|
|
|
ignoreVanillaPermissions = commandsConfiguration.getBoolean("ignore-vanilla-permissions");
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2018-09-24 11:41:32 +02:00
|
|
|
@@ -1923,4 +1926,26 @@ public final class CraftServer implements Server {
|
2017-07-16 01:59:18 +02:00
|
|
|
{
|
|
|
|
return spigot;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ @SuppressWarnings({"rawtypes", "unchecked"})
|
2017-07-27 03:28:56 +02:00
|
|
|
+ public static boolean dumpHeap(File file) {
|
2017-07-16 01:59:18 +02:00
|
|
|
+ try {
|
|
|
|
+ if (file.getParentFile() != null) {
|
|
|
|
+ file.getParentFile().mkdirs();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Class clazz = Class.forName("com.sun.management.HotSpotDiagnosticMXBean");
|
|
|
|
+ javax.management.MBeanServer server = java.lang.management.ManagementFactory.getPlatformMBeanServer();
|
|
|
|
+ Object hotspotMBean = java.lang.management.ManagementFactory.newPlatformMXBeanProxy(server, "com.sun.management:type=HotSpotDiagnostic", clazz);
|
|
|
|
+ java.lang.reflect.Method m = clazz.getMethod("dumpHeap", String.class, boolean.class);
|
|
|
|
+ m.invoke(hotspotMBean, file.getPath(), true);
|
2017-07-27 03:28:56 +02:00
|
|
|
+ return true;
|
2017-07-16 01:59:18 +02:00
|
|
|
+ } catch (Throwable t) {
|
|
|
|
+ Bukkit.getLogger().severe("Could not write heap to " + file);
|
2017-07-27 03:28:56 +02:00
|
|
|
+ t.printStackTrace();
|
|
|
|
+ return false;
|
2017-07-16 01:59:18 +02:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/Main.java b/src/main/java/org/bukkit/craftbukkit/Main.java
|
2018-09-24 11:41:32 +02:00
|
|
|
index 4a998593b..e354245f7 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/Main.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/Main.java
|
2018-07-22 07:27:46 +02:00
|
|
|
@@ -128,6 +128,14 @@ public class Main {
|
2016-03-01 00:09:49 +01:00
|
|
|
.defaultsTo(new File("spigot.yml"))
|
|
|
|
.describedAs("Yml file");
|
|
|
|
// Spigot End
|
|
|
|
+
|
|
|
|
+ // Paper Start
|
|
|
|
+ acceptsAll(asList("paper", "paper-settings"), "File for paper settings")
|
|
|
|
+ .withRequiredArg()
|
|
|
|
+ .ofType(File.class)
|
|
|
|
+ .defaultsTo(new File("paper.yml"))
|
|
|
|
+ .describedAs("Yml file");
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-23 00:24:14 +01:00
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
2018-09-24 11:41:32 +02:00
|
|
|
index 95f7a9587..87bc8e2d9 100644
|
2017-01-23 00:24:14 +01:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
@@ -39,31 +39,31 @@ public class SpigotWorldConfig
|
|
|
|
config.set( "world-settings.default." + path, val );
|
|
|
|
}
|
|
|
|
|
|
|
|
- private boolean getBoolean(String path, boolean def)
|
|
|
|
+ public boolean getBoolean(String path, boolean def)
|
|
|
|
{
|
|
|
|
config.addDefault( "world-settings.default." + path, def );
|
|
|
|
return config.getBoolean( "world-settings." + worldName + "." + path, config.getBoolean( "world-settings.default." + path ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
- private double getDouble(String path, double def)
|
|
|
|
+ public double getDouble(String path, double def)
|
|
|
|
{
|
|
|
|
config.addDefault( "world-settings.default." + path, def );
|
|
|
|
return config.getDouble( "world-settings." + worldName + "." + path, config.getDouble( "world-settings.default." + path ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
- private int getInt(String path, int def)
|
|
|
|
+ public int getInt(String path, int def)
|
|
|
|
{
|
|
|
|
config.addDefault( "world-settings.default." + path, def );
|
|
|
|
return config.getInt( "world-settings." + worldName + "." + path, config.getInt( "world-settings.default." + path ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
- private <T> List getList(String path, T def)
|
|
|
|
+ public <T> List getList(String path, T def)
|
|
|
|
{
|
|
|
|
config.addDefault( "world-settings.default." + path, def );
|
|
|
|
return (List<T>) config.getList( "world-settings." + worldName + "." + path, config.getList( "world-settings.default." + path ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
- private String getString(String path, String def)
|
|
|
|
+ public String getString(String path, String def)
|
|
|
|
{
|
|
|
|
config.addDefault( "world-settings.default." + path, def );
|
|
|
|
return config.getString( "world-settings." + worldName + "." + path, config.getString( "world-settings.default." + path ) );
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2018-09-24 11:41:32 +02:00
|
|
|
2.19.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|