mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
246 lines
11 KiB
Diff
246 lines
11 KiB
Diff
--- a/net/minecraft/server/DedicatedServer.java
|
|
+++ b/net/minecraft/server/DedicatedServer.java
|
|
@@ -25,6 +25,17 @@
|
|
import org.apache.logging.log4j.LogManager;
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
+// CraftBukkit start
|
|
+import java.io.PrintStream;
|
|
+import org.apache.logging.log4j.Level;
|
|
+
|
|
+import org.bukkit.command.CommandSender;
|
|
+import org.bukkit.craftbukkit.LoggerOutputStream;
|
|
+import org.bukkit.event.server.ServerCommandEvent;
|
|
+import org.bukkit.craftbukkit.util.Waitable;
|
|
+import org.bukkit.event.server.RemoteServerCommandEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class DedicatedServer extends MinecraftServer implements IMinecraftServer {
|
|
|
|
private static final Logger LOGGER = LogManager.getLogger();
|
|
@@ -38,8 +49,10 @@
|
|
@Nullable
|
|
private ServerGUI q;
|
|
|
|
- public DedicatedServer(File file, DedicatedServerSettings dedicatedserversettings, DataFixer datafixer, YggdrasilAuthenticationService yggdrasilauthenticationservice, MinecraftSessionService minecraftsessionservice, GameProfileRepository gameprofilerepository, UserCache usercache, WorldLoadListenerFactory worldloadlistenerfactory, String s) {
|
|
- super(file, Proxy.NO_PROXY, datafixer, new CommandDispatcher(true), yggdrasilauthenticationservice, minecraftsessionservice, gameprofilerepository, usercache, worldloadlistenerfactory, s);
|
|
+ // CraftBukkit start - Signature changed
|
|
+ public DedicatedServer(joptsimple.OptionSet options, DedicatedServerSettings dedicatedserversettings, DataFixer datafixer, YggdrasilAuthenticationService yggdrasilauthenticationservice, MinecraftSessionService minecraftsessionservice, GameProfileRepository gameprofilerepository, UserCache usercache, WorldLoadListenerFactory worldloadlistenerfactory, String s) {
|
|
+ super(options, Proxy.NO_PROXY, datafixer, new CommandDispatcher().init(true), yggdrasilauthenticationservice, minecraftsessionservice, gameprofilerepository, usercache, worldloadlistenerfactory, s);
|
|
+ // CraftBukkit end
|
|
this.propertyManager = dedicatedserversettings;
|
|
this.remoteControlCommandListener = new RemoteControlCommandListener(this);
|
|
Thread thread = new Thread("Server Infinisleeper") {
|
|
@@ -65,13 +78,27 @@
|
|
public boolean init() throws IOException {
|
|
Thread thread = new Thread("Server console handler") {
|
|
public void run() {
|
|
- BufferedReader bufferedreader = new BufferedReader(new InputStreamReader(System.in, StandardCharsets.UTF_8));
|
|
+ // CraftBukkit start
|
|
+ if (!org.bukkit.craftbukkit.Main.useConsole) {
|
|
+ return;
|
|
+ }
|
|
+ jline.console.ConsoleReader bufferedreader = reader;
|
|
+ // CraftBukkit end
|
|
|
|
String s;
|
|
|
|
try {
|
|
- while (!DedicatedServer.this.isStopped() && DedicatedServer.this.isRunning() && (s = bufferedreader.readLine()) != null) {
|
|
- DedicatedServer.this.issueCommand(s, DedicatedServer.this.getServerCommandListener());
|
|
+ // CraftBukkit start - JLine disabling compatibility
|
|
+ while (!DedicatedServer.this.isStopped() && DedicatedServer.this.isRunning()) {
|
|
+ if (org.bukkit.craftbukkit.Main.useJline) {
|
|
+ s = bufferedreader.readLine(">", null);
|
|
+ } else {
|
|
+ s = bufferedreader.readLine();
|
|
+ }
|
|
+ if (s != null && s.trim().length() > 0) { // Trim to filter lines which are just spaces
|
|
+ DedicatedServer.this.issueCommand(s, DedicatedServer.this.getServerCommandListener());
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
} catch (IOException ioexception) {
|
|
DedicatedServer.LOGGER.error("Exception handling console input", ioexception);
|
|
@@ -80,6 +107,27 @@
|
|
}
|
|
};
|
|
|
|
+ // CraftBukkit start - TODO: handle command-line logging arguments
|
|
+ java.util.logging.Logger global = java.util.logging.Logger.getLogger("");
|
|
+ global.setUseParentHandlers(false);
|
|
+ for (java.util.logging.Handler handler : global.getHandlers()) {
|
|
+ global.removeHandler(handler);
|
|
+ }
|
|
+ global.addHandler(new org.bukkit.craftbukkit.util.ForwardLogHandler());
|
|
+
|
|
+ final org.apache.logging.log4j.core.Logger logger = ((org.apache.logging.log4j.core.Logger) LogManager.getRootLogger());
|
|
+ for (org.apache.logging.log4j.core.Appender appender : logger.getAppenders().values()) {
|
|
+ if (appender instanceof org.apache.logging.log4j.core.appender.ConsoleAppender) {
|
|
+ logger.removeAppender(appender);
|
|
+ }
|
|
+ }
|
|
+
|
|
+ new org.bukkit.craftbukkit.util.TerminalConsoleWriterThread(System.out, this.reader).start();
|
|
+
|
|
+ System.setOut(new PrintStream(new LoggerOutputStream(logger, Level.INFO), true));
|
|
+ System.setErr(new PrintStream(new LoggerOutputStream(logger, Level.WARN), true));
|
|
+ // CraftBukkit end
|
|
+
|
|
thread.setDaemon(true);
|
|
thread.setUncaughtExceptionHandler(new DefaultUncaughtExceptionHandler(DedicatedServer.LOGGER));
|
|
thread.start();
|
|
@@ -133,6 +181,12 @@
|
|
return false;
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ this.a((PlayerList) (new DedicatedPlayerList(this)));
|
|
+ server.loadPlugins();
|
|
+ server.enablePlugins(org.bukkit.plugin.PluginLoadOrder.STARTUP);
|
|
+ // CraftBukkit end
|
|
+
|
|
if (!this.getOnlineMode()) {
|
|
DedicatedServer.LOGGER.warn("**** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!");
|
|
DedicatedServer.LOGGER.warn("The server will make no attempt to authenticate usernames. Beware.");
|
|
@@ -147,7 +201,7 @@
|
|
if (!NameReferencingFileConverter.e(this)) {
|
|
return false;
|
|
} else {
|
|
- this.a((PlayerList) (new DedicatedPlayerList(this)));
|
|
+ this.convertable = new Convertable(server.getWorldContainer().toPath(), server.getWorldContainer().toPath().resolve("../backups"), this.dataConverterManager); // CraftBukkit - moved from MinecraftServer constructor
|
|
long i = SystemUtils.getMonotonicNanos();
|
|
String s = dedicatedserverproperties.levelSeed;
|
|
String s1 = dedicatedserverproperties.generatorSettings;
|
|
@@ -177,7 +231,13 @@
|
|
if (worldtype == WorldType.FLAT) {
|
|
jsonobject.addProperty("flat_world_options", s1);
|
|
} else if (!s1.isEmpty()) {
|
|
- jsonobject = ChatDeserializer.a(s1);
|
|
+ // CraftBukkit start
|
|
+ try {
|
|
+ jsonobject = ChatDeserializer.a(s1);
|
|
+ } catch (Exception ex) {
|
|
+ DedicatedServer.LOGGER.warn("Invalid generator-settings, ignoring", ex);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
this.a(this.getWorld(), this.getWorld(), j, worldtype, jsonobject);
|
|
@@ -199,6 +259,7 @@
|
|
DedicatedServer.LOGGER.info("Starting remote control listener");
|
|
this.remoteControlListener = new RemoteControlListener(this);
|
|
this.remoteControlListener.a();
|
|
+ this.remoteConsole = new org.bukkit.craftbukkit.command.CraftRemoteConsoleCommandSender(this.remoteControlCommandListener); // CraftBukkit
|
|
}
|
|
|
|
if (this.getMaxTickTime() > 0L) {
|
|
@@ -301,6 +362,7 @@
|
|
this.l.b();
|
|
}
|
|
|
|
+ System.exit(0); // CraftBukkit
|
|
}
|
|
|
|
@Override
|
|
@@ -334,7 +396,15 @@
|
|
while (!this.serverCommandQueue.isEmpty()) {
|
|
ServerCommand servercommand = (ServerCommand) this.serverCommandQueue.remove(0);
|
|
|
|
- this.getCommandDispatcher().a(servercommand.source, servercommand.command);
|
|
+ // CraftBukkit start - ServerCommand for preprocessing
|
|
+ ServerCommandEvent event = new ServerCommandEvent(console, servercommand.command);
|
|
+ server.getPluginManager().callEvent(event);
|
|
+ if (event.isCancelled()) continue;
|
|
+ servercommand = new ServerCommand(event.getCommand(), servercommand.source);
|
|
+
|
|
+ // this.getCommandDispatcher().a(servercommand.source, servercommand.command); // Called in dispatchServerCommand
|
|
+ server.dispatchServerCommand(console, servercommand);
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
}
|
|
@@ -529,14 +599,61 @@
|
|
|
|
@Override
|
|
public String getPlugins() {
|
|
- return "";
|
|
+ // CraftBukkit start - Whole method
|
|
+ StringBuilder result = new StringBuilder();
|
|
+ org.bukkit.plugin.Plugin[] plugins = server.getPluginManager().getPlugins();
|
|
+
|
|
+ result.append(server.getName());
|
|
+ result.append(" on Bukkit ");
|
|
+ result.append(server.getBukkitVersion());
|
|
+
|
|
+ if (plugins.length > 0 && server.getQueryPlugins()) {
|
|
+ result.append(": ");
|
|
+
|
|
+ for (int i = 0; i < plugins.length; i++) {
|
|
+ if (i > 0) {
|
|
+ result.append("; ");
|
|
+ }
|
|
+
|
|
+ result.append(plugins[i].getDescription().getName());
|
|
+ result.append(" ");
|
|
+ result.append(plugins[i].getDescription().getVersion().replaceAll(";", ","));
|
|
+ }
|
|
+ }
|
|
+
|
|
+ return result.toString();
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
@Override
|
|
public String executeRemoteCommand(String s) {
|
|
- this.remoteControlCommandListener.clearMessages();
|
|
- this.getCommandDispatcher().a(this.remoteControlCommandListener.f(), s);
|
|
- return this.remoteControlCommandListener.getMessages();
|
|
+ // CraftBukkit start - fire RemoteServerCommandEvent
|
|
+ Waitable<String> waitable = new Waitable<String>() {
|
|
+ @Override
|
|
+ protected String evaluate() {
|
|
+ remoteControlCommandListener.clearMessages();
|
|
+ // Event changes start
|
|
+ RemoteServerCommandEvent event = new RemoteServerCommandEvent(remoteConsole, s);
|
|
+ server.getPluginManager().callEvent(event);
|
|
+ if (event.isCancelled()) {
|
|
+ return "";
|
|
+ }
|
|
+ // Event change end
|
|
+ ServerCommand serverCommand = new ServerCommand(event.getCommand(), remoteControlCommandListener.f());
|
|
+ server.dispatchServerCommand(remoteConsole, serverCommand);
|
|
+ return remoteControlCommandListener.getMessages();
|
|
+ }
|
|
+ };
|
|
+ processQueue.add(waitable);
|
|
+ try {
|
|
+ return waitable.get();
|
|
+ } catch (java.util.concurrent.ExecutionException e) {
|
|
+ throw new RuntimeException("Exception processing rcon command " + s, e.getCause());
|
|
+ } catch (InterruptedException e) {
|
|
+ Thread.currentThread().interrupt(); // Maintain interrupted state
|
|
+ throw new RuntimeException("Interrupted processing rcon command " + s, e);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
public void setHasWhitelist(boolean flag) {
|
|
@@ -555,4 +672,16 @@
|
|
public boolean b(GameProfile gameprofile) {
|
|
return false;
|
|
}
|
|
+
|
|
+ // CraftBukkit start
|
|
+ @Override
|
|
+ public boolean isDebugging() {
|
|
+ return this.getDedicatedServerProperties().debug;
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public CommandSender getBukkitSender(CommandListenerWrapper wrapper) {
|
|
+ return console;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|