package org.spigotmc; 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; import java.util.logging.Level; import kcauldronx.BMetrics; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.command.Command; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.configuration.file.YamlConfiguration; import com.google.common.base.Throwables; import gnu.trove.map.hash.TObjectIntHashMap; import net.minecraft.server.MinecraftServer; public class SpigotConfig { private static final File CONFIG_FILE = new File(MinecraftServer.serverConfigDir, "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/\n"; /*========================================================================*/ static YamlConfiguration config; static int version; static Map commands; /*========================================================================*/ private static Metrics metrics; private static BMetrics bstats; public static void init() { config = YamlConfiguration.loadConfiguration( CONFIG_FILE ); config.options().header( HEADER ); config.options().copyDefaults( true ); commands = new HashMap(); version = getInt( "config-version", 7 ); set( "config-version", 7 ); readConfig( SpigotConfig.class, null ); } public static void registerCommands() { for ( Map.Entry entry : commands.entrySet() ) { net.minecraft.server.MinecraftServer.getServer().server.getCommandMap().register( entry.getKey(), "Spigot", entry.getValue() ); } if ( metrics == null ) { try { metrics = new Metrics(); metrics.start(); } catch ( IOException ex ) { Bukkit.getServer().getLogger().log( Level.SEVERE, "Could not start metrics service", ex ); } } if ( bstats == null ) { bstats = new BMetrics(); } } 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 ) { 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 ); } } 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 int getInt(String path, int def) { config.addDefault( path, def ); return config.getInt( path, config.getInt( path ) ); } private static List getList(String path, T def) { config.addDefault( path, def ); return (List) 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 ) ); } public static boolean logCommands; private static void logCommands() { logCommands = getBoolean( "commands.log", true ); } public static boolean tabComplete; private static void tabComplete() { tabComplete = getBoolean( "commands.tab-complete", true ); } public static String whitelistMessage; public static String unknownCommandMessage; public static String serverFullMessage; public static String outdatedClientMessage = "Outdated client! Please use {}"; public static String outdatedServerMessage = "Outdated server! I\'m still on {}"; private static String transform(String s) { return ChatColor.translateAlternateColorCodes( '&', s ).replaceAll( "\\n", "\n" ); } private static void messages() { if (version < 4) { set( "messages.outdated-client", outdatedClientMessage ); set( "messages.outdated-server", outdatedServerMessage ); } whitelistMessage = transform( getString( "messages.whitelist", "You are not whitelisted on this server!" ) ); unknownCommandMessage = transform( getString( "messages.unknown-command", "Unknown command. Type \"/help\" for help." ) ); serverFullMessage = transform( getString( "messages.server-full", "The server is full!" ) ); outdatedClientMessage = transform( getString( "messages.outdated-client", outdatedClientMessage ) ); outdatedServerMessage = transform( getString( "messages.outdated-server", outdatedServerMessage ) ); } public static int timeoutTime = 90; // Cauldron - raise to 90 public static boolean restartOnCrash = true; public static String restartScript = "./start.sh"; public static String restartMessage; private static void watchdog() { timeoutTime = getInt( "settings.timeout-time", timeoutTime ); restartOnCrash = getBoolean( "settings.restart-on-crash", restartOnCrash ); restartScript = getString( "settings.restart-script", restartScript ); restartMessage = transform( getString( "messages.restart", "Server is restarting" ) ); commands.put( "restart", new RestartCommand( "restart" ) ); WatchdogThread.doStart( timeoutTime, restartOnCrash ); } public static boolean bungee; private static void bungee() { if ( version < 4 ) { set( "settings.bungeecord", false ); System.out.println( "Oudated config, disabling BungeeCord support!" ); } bungee = getBoolean( "settings.bungeecord", false ); } private static void nettyThreads() { if (version < 7) set("settings.netty-threads", -1); int count = getInt( "settings.netty-threads", -1 ); count = count == -1 ? Runtime.getRuntime().availableProcessors() : count; System.setProperty( "io.netty.eventLoopThreads", Integer.toString( count ) ); Bukkit.getLogger().log( Level.INFO, "Using {0} threads for Netty based IO", count ); } /* Cauldron - temp disable private static void replaceCommands() { if ( config.contains( "replace-commands" ) ) { set( "commands.replace-commands", config.getStringList( "replace-commands" ) ); config.set( "replace-commands", null ); } for ( String command : (List) getList( "commands.replace-commands", Arrays.asList( "setblock", "summon", "testforblock", "tellraw" ) ) ) { SimpleCommandMap.removeFallback( command ); VanillaCommandWrapper.allowedCommands.add( command ); } }*/ public static boolean lateBind; private static void lateBind() { lateBind = getBoolean( "settings.late-bind", false ); } public static boolean disableStatSaving; public static TObjectIntHashMap forcedStats = new TObjectIntHashMap(); private static void stats() { disableStatSaving = getBoolean( "stats.disable-saving", false ); if ( !config.contains( "stats.forced-stats" ) ) { config.createSection( "stats.forced-stats" ); } ConfigurationSection section = config.getConfigurationSection( "stats.forced-stats" ); for ( String name : section.getKeys( true ) ) { if ( section.isInt( name ) ) { forcedStats.put( name, section.getInt( name ) ); } } if ( disableStatSaving && section.getInt( "achievement.openInventory", 0 ) < 1 ) { Bukkit.getLogger().warning( "*** WARNING *** stats.disable-saving is true but stats.forced-stats.achievement.openInventory" + " isn't set to 1. Disabling stat saving without forcing the achievement may cause it to get stuck on the player's " + "screen." ); } } private static void tpsCommand() { commands.put( "tps", new TicksPerSecondCommand( "tps" ) ); } public static int playerSample; private static void playerSample() { playerSample = getInt( "settings.sample-count", 12 ); System.out.println( "Server Ping Player Sample Count: " + playerSample ); } public static int playerShuffle; private static void playerShuffle() { playerShuffle = getInt( "settings.player-shuffle", 0 ); } public static int fullMatchRate; private static void fullMatchRate() { fullMatchRate = getInt( "settings.fullMatchRate", 10); } }