Paper/CraftBukkit-Patches/0004-Spigot-Configuration.patch

193 lines
7.8 KiB
Diff
Raw Normal View History

2013-06-20 07:31:40 +00:00
From fba3fb120161a1618a8991784bd0822087af733d Mon Sep 17 00:00:00 2001
2013-05-14 02:08:11 +00:00
From: md_5 <md_5@live.com.au>
2013-06-20 07:31:40 +00:00
Date: Thu, 20 Jun 2013 17:28:01 +1000
2013-05-14 02:08:11 +00:00
Subject: [PATCH] Spigot Configuration
diff --git a/src/main/java/net/minecraft/server/DedicatedServer.java b/src/main/java/net/minecraft/server/DedicatedServer.java
2013-06-20 07:31:40 +00:00
index 7261dc9..6668b7e 100644
2013-05-14 02:08:11 +00:00
--- a/src/main/java/net/minecraft/server/DedicatedServer.java
+++ b/src/main/java/net/minecraft/server/DedicatedServer.java
2013-06-20 07:31:40 +00:00
@@ -47,6 +47,7 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
System.setOut(new PrintStream(new LoggerOutputStream(this.getLogger().getLogger(), Level.INFO), true));
System.setErr(new PrintStream(new LoggerOutputStream(this.getLogger().getLogger(), Level.SEVERE), true));
// CraftBukkit end
+ org.spigotmc.SpigotConfig.init(); // Spigot
2013-05-14 02:08:11 +00:00
2013-06-20 07:31:40 +00:00
this.getLogger().info("Starting minecraft server version 1.5.2");
if (Runtime.getRuntime().maxMemory() / 1024L / 1024L < 512L) {
2013-06-15 12:01:15 +00:00
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
2013-06-20 07:31:40 +00:00
index 3a4ddea..de052bd 100644
2013-06-15 12:01:15 +00:00
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
2013-06-20 07:31:40 +00:00
@@ -99,6 +99,7 @@ public abstract class World implements IBlockAccess {
int lastXAccessed = Integer.MIN_VALUE;
int lastZAccessed = Integer.MIN_VALUE;
final Object chunkLock = new Object();
+ public final org.spigotmc.SpigotWorldConfig spigotConfig; // Spigot
public CraftWorld getWorld() {
return this.world;
@@ -110,6 +111,7 @@ public abstract class World implements IBlockAccess {
2013-06-15 12:01:15 +00:00
// Changed signature
public World(IDataManager idatamanager, String s, WorldSettings worldsettings, WorldProvider worldprovider, MethodProfiler methodprofiler, IConsoleLogManager iconsolelogmanager, ChunkGenerator gen, org.bukkit.World.Environment env) {
2013-06-20 07:31:40 +00:00
+ this.spigotConfig = new org.spigotmc.SpigotWorldConfig( s ); // Spigot
2013-06-15 12:01:15 +00:00
this.generator = gen;
2013-06-20 07:31:40 +00:00
this.world = new CraftWorld((WorldServer) this, gen, env);
2013-06-15 12:01:15 +00:00
this.ticksPerAnimalSpawns = this.getServer().getTicksPerAnimalSpawns(); // CraftBukkit
2013-06-20 07:31:40 +00:00
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
new file mode 100644
index 0000000..7bb7712
--- /dev/null
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
@@ -0,0 +1,91 @@
+package org.spigotmc;
+
+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.logging.Level;
+import org.bukkit.Bukkit;
+import org.bukkit.configuration.file.YamlConfiguration;
+
+public class SpigotConfig
+{
+
+ private static final File CONFIG_FILE = new File( "spigot.yml" );
+ private static final String HEADER = "This is the main configuration file for Spigot.\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"
+ + "For a reference for any variable inside this file, check out the Spigot wiki at\n"
+ + "http://www.spigotmc.org/wiki/spigot-configuration/\n"
+ + "\n"
+ + "If you need help with the configuration or have any questions related to Spigot,\n"
+ + "join us at the IRC or drop by our forums and leave a post.\n"
+ + "\n"
+ + "IRC: #spigot @ irc.esper.net ( http://webchat.esper.net/?channel=spigot )\n"
+ + "Forums: http://www.spigotmc.org/forum/";
+ /*========================================================================*/
+ static YamlConfiguration config;
+ static int version;
+ /*========================================================================*/
+
+ public static void init()
+ {
+ config = YamlConfiguration.loadConfiguration( CONFIG_FILE );
+ config.options().header( HEADER );
+ config.options().copyDefaults( true );
+
+ version = getInt( config, "config-version", 1 );
+ readConfig( SpigotConfig.class );
2013-06-15 12:01:15 +00:00
+ }
+
2013-06-20 07:31:40 +00:00
+ static void readConfig(Class<?> clazz)
+ {
+ for ( Method method : SpigotConfig.class.getDeclaredMethods() )
+ {
+ if ( Modifier.isPrivate( method.getModifiers() ) && Modifier.isStatic( method.getModifiers() ) )
+ {
+ if ( method.getParameterTypes().length == 1 && method.getParameterTypes()[0] == YamlConfiguration.class )
+ {
+ try
+ {
+ method.invoke( null, config );
+ } catch ( InvocationTargetException ex )
+ {
+ Throwables.propagate( ex.getCause() );
+ } catch ( ReflectiveOperationException ex )
+ {
+ Bukkit.getLogger().log( Level.SEVERE, "Error invoking " + method, ex );
+ }
+ }
+ }
+ }
2013-06-11 02:56:24 +00:00
+
2013-06-20 07:31:40 +00:00
+ try
+ {
+ config.save( CONFIG_FILE );
+ } catch ( IOException ex )
+ {
+ Bukkit.getLogger().log( Level.SEVERE, "Could not save " + CONFIG_FILE, ex );
+ }
+ }
2013-06-11 02:56:24 +00:00
+
2013-06-20 07:31:40 +00:00
+ private static boolean getBoolean(YamlConfiguration config, String path, boolean def)
+ {
+ config.addDefault( path, def );
+ return config.getBoolean( path, config.getBoolean( path ) );
+ }
+
+ private static int getInt(YamlConfiguration config, String path, int def)
+ {
+ config.addDefault( path, def );
+ return config.getInt( path, config.getInt( path ) );
+ }
+
+ private static String getString(YamlConfiguration config, String path, String def)
+ {
+ config.addDefault( path, def );
+ return config.getString( path, config.getString( path ) );
+ }
+}
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
new file mode 100644
index 0000000..9818836
--- /dev/null
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
@@ -0,0 +1,48 @@
+package org.spigotmc;
2013-06-11 02:56:24 +00:00
+
2013-06-20 07:31:40 +00:00
+import org.bukkit.Bukkit;
+import org.bukkit.configuration.file.YamlConfiguration;
+
+public class SpigotWorldConfig
+{
+
+ private final String worldName;
+ private final boolean verbose;
+
+ public SpigotWorldConfig(String worldName)
+ {
+ this.worldName = worldName;
+ this.verbose = getBoolean( SpigotConfig.config, "verbose", true );
+
+ log( "-------------- Spigot ----------------" );
+ log( "-------- World Settings For [" + worldName + "] --------" );
+ log( "-------------------------------------------------" );
+ SpigotConfig.readConfig( SpigotWorldConfig.class );
+ }
+
+ private void log(String s)
+ {
+ if ( verbose )
2013-06-11 02:56:24 +00:00
+ {
2013-06-20 07:31:40 +00:00
+ Bukkit.getLogger().info( s );
2013-06-11 02:56:24 +00:00
+ }
2013-06-20 07:31:40 +00:00
+ }
+
+ private boolean getBoolean(YamlConfiguration config, 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 int getInt(YamlConfiguration config, 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 String getString(YamlConfiguration config, String path, String def)
+ {
+ config.addDefault( "world-settings.default." + path, def );
+ return config.getString( "world-settings." + worldName + "." + path, config.getString( "world-settings.default." + path ) );
+ }
+}
2013-05-14 02:08:11 +00:00
--
1.8.1.2
2013-05-14 02:08:11 +00:00