13
0
geforkt von Mirrors/Paper
Paper/src/main/java/org/bukkit/craftbukkit/CraftServer.java

1657 Zeilen
58 KiB
Java

2010-12-21 17:52:15 +01:00
package org.bukkit.craftbukkit;
2013-11-04 14:07:38 +01:00
import java.awt.image.BufferedImage;
2010-12-24 18:24:21 +01:00
import java.io.File;
2011-07-17 18:19:41 +02:00
import java.io.FileInputStream;
2012-01-30 21:51:53 +01:00
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
2011-09-03 02:59:28 +02:00
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
2010-12-22 16:22:23 +01:00
import java.util.List;
import java.util.Map;
2011-07-17 18:19:41 +02:00
import java.util.Set;
import java.util.UUID;
2010-12-24 18:24:21 +01:00
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Pattern;
2012-01-30 21:51:53 +01:00
2013-11-04 14:07:38 +01:00
import javax.imageio.ImageIO;
import net.minecraft.server.*;
2012-01-30 21:51:53 +01:00
import org.bukkit.BanList;
2012-01-30 21:51:53 +01:00
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.GameMode;
import org.bukkit.OfflinePlayer;
import org.bukkit.Server;
import org.bukkit.UnsafeValues;
import org.bukkit.Warning.WarningState;
2012-01-30 21:51:53 +01:00
import org.bukkit.World;
import org.bukkit.World.Environment;
import org.bukkit.WorldCreator;
2016-02-29 22:32:46 +01:00
import org.bukkit.boss.BarColor;
import org.bukkit.boss.BarFlag;
import org.bukkit.boss.BarStyle;
import org.bukkit.boss.BossBar;
2012-01-30 21:51:53 +01:00
import org.bukkit.command.Command;
import org.bukkit.command.CommandException;
2012-01-30 21:51:53 +01:00
import org.bukkit.command.CommandSender;
import org.bukkit.command.ConsoleCommandSender;
import org.bukkit.command.PluginCommand;
import org.bukkit.command.SimpleCommandMap;
2011-10-10 22:10:48 +02:00
import org.bukkit.configuration.ConfigurationSection;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.configuration.serialization.ConfigurationSerialization;
import org.bukkit.conversations.Conversable;
2016-02-29 22:32:46 +01:00
import org.bukkit.craftbukkit.boss.CraftBossBar;
import org.bukkit.craftbukkit.command.VanillaCommandWrapper;
import org.bukkit.craftbukkit.entity.CraftPlayer;
import org.bukkit.craftbukkit.generator.CraftChunkData;
import org.bukkit.craftbukkit.help.SimpleHelpMap;
import org.bukkit.craftbukkit.inventory.CraftFurnaceRecipe;
import org.bukkit.craftbukkit.inventory.CraftInventoryCustom;
import org.bukkit.craftbukkit.inventory.CraftItemFactory;
import org.bukkit.craftbukkit.inventory.CraftRecipe;
import org.bukkit.craftbukkit.inventory.CraftShapedRecipe;
import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
import org.bukkit.craftbukkit.inventory.RecipeIterator;
import org.bukkit.craftbukkit.map.CraftMapView;
import org.bukkit.craftbukkit.metadata.EntityMetadataStore;
import org.bukkit.craftbukkit.metadata.PlayerMetadataStore;
import org.bukkit.craftbukkit.metadata.WorldMetadataStore;
import org.bukkit.craftbukkit.potion.CraftPotionBrewer;
2011-02-03 00:53:04 +01:00
import org.bukkit.craftbukkit.scheduler.CraftScheduler;
import org.bukkit.craftbukkit.scoreboard.CraftScoreboardManager;
2013-11-04 14:07:38 +01:00
import org.bukkit.craftbukkit.util.CraftIconCache;
import org.bukkit.craftbukkit.util.CraftMagicNumbers;
2011-12-04 18:57:00 +01:00
import org.bukkit.craftbukkit.util.DatFileFilter;
2011-10-31 05:02:54 +01:00
import org.bukkit.craftbukkit.util.Versioning;
import org.bukkit.craftbukkit.util.permissions.CraftDefaultPermissions;
2012-01-30 21:51:53 +01:00
import org.bukkit.entity.Player;
import org.bukkit.event.inventory.InventoryType;
import org.bukkit.event.player.PlayerChatTabCompleteEvent;
import org.bukkit.event.world.WorldInitEvent;
2012-01-30 21:51:53 +01:00
import org.bukkit.event.world.WorldLoadEvent;
import org.bukkit.event.world.WorldUnloadEvent;
import org.bukkit.generator.ChunkGenerator;
import org.bukkit.help.HelpMap;
2012-01-30 21:51:53 +01:00
import org.bukkit.inventory.FurnaceRecipe;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.Inventory;
import org.bukkit.inventory.InventoryHolder;
2012-01-30 21:51:53 +01:00
import org.bukkit.inventory.Recipe;
import org.bukkit.inventory.ShapedRecipe;
import org.bukkit.inventory.ShapelessRecipe;
import org.bukkit.permissions.Permissible;
2011-07-17 18:19:41 +02:00
import org.bukkit.permissions.Permission;
2012-01-30 21:51:53 +01:00
import org.bukkit.plugin.Plugin;
2011-06-22 18:46:12 +02:00
import org.bukkit.plugin.PluginLoadOrder;
2012-01-30 21:51:53 +01:00
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.ServicesManager;
import org.bukkit.plugin.SimplePluginManager;
import org.bukkit.plugin.SimpleServicesManager;
import org.bukkit.plugin.java.JavaPluginLoader;
import org.bukkit.plugin.messaging.Messenger;
import org.bukkit.potion.Potion;
import org.bukkit.potion.PotionEffectType;
import org.bukkit.plugin.messaging.StandardMessenger;
2012-01-30 21:51:53 +01:00
import org.bukkit.scheduler.BukkitWorker;
import org.bukkit.util.StringUtil;
2012-01-30 21:51:53 +01:00
import org.bukkit.util.permissions.DefaultPermissions;
2011-07-17 18:19:41 +02:00
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.SafeConstructor;
import org.yaml.snakeyaml.error.MarkedYAMLException;
import org.apache.commons.lang.Validate;
2012-01-30 21:51:53 +01:00
import com.avaje.ebean.config.DataSourceConfig;
import com.avaje.ebean.config.ServerConfig;
import com.avaje.ebean.config.dbplatform.SQLitePlatform;
import com.avaje.ebeaninternal.server.lib.sql.TransactionIsolation;
import com.google.common.base.Charsets;
import com.google.common.base.Function;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
2012-01-30 21:51:53 +01:00
import com.google.common.collect.MapMaker;
import com.mojang.authlib.GameProfile;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufOutputStream;
import io.netty.buffer.Unpooled;
import io.netty.handler.codec.base64.Base64;
import jline.console.ConsoleReader;
2012-01-30 21:51:53 +01:00
2011-01-20 04:53:43 +01:00
public final class CraftServer implements Server {
private static final Player[] EMPTY_PLAYER_ARRAY = new Player[0];
2012-01-28 00:23:16 +01:00
private final String serverName = "CraftBukkit";
2011-02-01 22:55:30 +01:00
private final String serverVersion;
2011-10-31 05:02:54 +01:00
private final String bukkitVersion = Versioning.getBukkitVersion();
private final Logger logger = Logger.getLogger("Minecraft");
2011-05-02 20:31:02 +02:00
private final ServicesManager servicesManager = new SimpleServicesManager();
2012-07-29 09:33:13 +02:00
private final CraftScheduler scheduler = new CraftScheduler();
2011-06-17 05:09:43 +02:00
private final SimpleCommandMap commandMap = new SimpleCommandMap(this);
private final SimpleHelpMap helpMap = new SimpleHelpMap(this);
private final StandardMessenger messenger = new StandardMessenger();
2011-06-26 03:46:04 +02:00
private final PluginManager pluginManager = new SimplePluginManager(this, commandMap);
2010-12-22 16:22:23 +01:00
protected final MinecraftServer console;
2012-12-20 05:03:52 +01:00
protected final DedicatedPlayerList playerList;
private final Map<String, World> worlds = new LinkedHashMap<String, World>();
2011-10-10 22:10:48 +02:00
private YamlConfiguration configuration;
private YamlConfiguration commandsConfiguration;
2011-07-17 18:19:41 +02:00
private final Yaml yaml = new Yaml(new SafeConstructor());
private final Map<UUID, OfflinePlayer> offlinePlayers = new MapMaker().softValues().makeMap();
private final EntityMetadataStore entityMetadata = new EntityMetadataStore();
private final PlayerMetadataStore playerMetadata = new PlayerMetadataStore();
private final WorldMetadataStore worldMetadata = new WorldMetadataStore();
private int monsterSpawn = -1;
private int animalSpawn = -1;
private int waterAnimalSpawn = -1;
private int ambientSpawn = -1;
public int chunkGCPeriod = -1;
public int chunkGCLoadThresh = 0;
2012-07-29 09:33:13 +02:00
private File container;
private WarningState warningState = WarningState.DEFAULT;
2012-12-20 05:03:52 +01:00
private final BooleanWrapper online = new BooleanWrapper();
public CraftScoreboardManager scoreboardManager;
public boolean playerCommandState;
private boolean printSaveWarning;
2013-11-04 14:07:38 +01:00
private CraftIconCache icon;
private boolean overrideAllCommandBlockCommands = false;
private final Pattern validUserPattern = Pattern.compile("^[a-zA-Z0-9_]{2,16}$");
private final UUID invalidUserUUID = UUID.nameUUIDFromBytes("InvalidUsername".getBytes(Charsets.UTF_8));
private final List<CraftPlayer> playerView;
public int reloadCount;
2012-12-20 05:03:52 +01:00
private final class BooleanWrapper {
private boolean value = true;
}
2010-12-22 16:22:23 +01:00
2011-10-10 22:10:48 +02:00
static {
ConfigurationSerialization.registerClass(CraftOfflinePlayer.class);
CraftItemFactory.instance();
2011-10-10 22:10:48 +02:00
}
2012-12-20 05:03:52 +01:00
public CraftServer(MinecraftServer console, PlayerList playerList) {
this.console = console;
2012-12-20 05:03:52 +01:00
this.playerList = (DedicatedPlayerList) playerList;
this.playerView = Collections.unmodifiableList(Lists.transform(playerList.players, new Function<EntityPlayer, CraftPlayer>() {
@Override
public CraftPlayer apply(EntityPlayer player) {
return player.getBukkitEntity();
}
}));
2011-02-01 22:55:30 +01:00
this.serverVersion = CraftServer.class.getPackage().getImplementationVersion();
2012-12-20 05:03:52 +01:00
online.value = console.getPropertyManager().getBoolean("online-mode", true);
2010-12-24 18:24:21 +01:00
2011-03-30 15:55:42 +02:00
Bukkit.setServer(this);
2011-11-20 09:01:14 +01:00
// Register all the Enchantments and PotionTypes now so we can stop new registration immediately after
2016-02-29 22:32:46 +01:00
Enchantments.DAMAGE_ALL.getClass();
2011-11-27 01:39:25 +01:00
org.bukkit.enchantments.Enchantment.stopAcceptingRegistrations();
Potion.setPotionBrewer(new CraftPotionBrewer());
2016-02-29 22:32:46 +01:00
MobEffects.BLINDNESS.getClass();
PotionEffectType.stopAcceptingRegistrations();
2011-11-27 01:39:25 +01:00
// Ugly hack :(
if (!Main.useConsole) {
getLogger().info("Console input is disabled due to --noconsole command argument");
}
2011-03-30 15:55:42 +02:00
2011-10-10 22:10:48 +02:00
configuration = YamlConfiguration.loadConfiguration(getConfigFile());
configuration.options().copyDefaults(true);
configuration.setDefaults(YamlConfiguration.loadConfiguration(new InputStreamReader(getClass().getClassLoader().getResourceAsStream("configurations/bukkit.yml"), Charsets.UTF_8)));
ConfigurationSection legacyAlias = null;
if (!configuration.isString("aliases")) {
legacyAlias = configuration.getConfigurationSection("aliases");
configuration.set("aliases", "now-in-commands.yml");
}
2011-10-10 22:10:48 +02:00
saveConfig();
if (getCommandsConfigFile().isFile()) {
legacyAlias = null;
}
commandsConfiguration = YamlConfiguration.loadConfiguration(getCommandsConfigFile());
commandsConfiguration.options().copyDefaults(true);
commandsConfiguration.setDefaults(YamlConfiguration.loadConfiguration(new InputStreamReader(getClass().getClassLoader().getResourceAsStream("configurations/commands.yml"), Charsets.UTF_8)));
saveCommandsConfig();
// Migrate aliases from old file and add previously implicit $1- to pass all arguments
if (legacyAlias != null) {
ConfigurationSection aliases = commandsConfiguration.createSection("aliases");
for (String key : legacyAlias.getKeys(false)) {
ArrayList<String> commands = new ArrayList<String>();
if (legacyAlias.isList(key)) {
for (String command : legacyAlias.getStringList(key)) {
commands.add(command + " $1-");
}
} else {
commands.add(legacyAlias.getString(key) + " $1-");
}
aliases.set(key, commands);
}
}
saveCommandsConfig();
overrideAllCommandBlockCommands = commandsConfiguration.getStringList("command-block-overrides").contains("*");
((SimplePluginManager) pluginManager).useTimings(configuration.getBoolean("settings.plugin-profiling"));
monsterSpawn = configuration.getInt("spawn-limits.monsters");
animalSpawn = configuration.getInt("spawn-limits.animals");
waterAnimalSpawn = configuration.getInt("spawn-limits.water-animals");
ambientSpawn = configuration.getInt("spawn-limits.ambient");
console.autosavePeriod = configuration.getInt("ticks-per.autosave");
warningState = WarningState.value(configuration.getString("settings.deprecated-verbose"));
chunkGCPeriod = configuration.getInt("chunk-gc.period-in-ticks");
chunkGCLoadThresh = configuration.getInt("chunk-gc.load-threshold");
2013-11-04 14:07:38 +01:00
loadIcon();
2011-11-20 09:01:14 +01:00
2011-06-22 18:46:12 +02:00
loadPlugins();
enablePlugins(PluginLoadOrder.STARTUP);
2011-03-31 03:35:08 +02:00
}
2011-11-20 09:01:14 +01:00
public boolean getCommandBlockOverride(String command) {
return overrideAllCommandBlockCommands || commandsConfiguration.getStringList("command-block-overrides").contains(command);
}
2011-10-10 22:10:48 +02:00
private File getConfigFile() {
2012-01-14 23:02:10 +01:00
return (File) console.options.valueOf("bukkit-settings");
2011-10-10 22:10:48 +02:00
}
2011-11-20 09:01:14 +01:00
private File getCommandsConfigFile() {
return (File) console.options.valueOf("commands-settings");
}
2011-10-10 22:10:48 +02:00
private void saveConfig() {
try {
configuration.save(getConfigFile());
} catch (IOException ex) {
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, "Could not save " + getConfigFile(), ex);
2011-06-17 05:09:43 +02:00
}
}
2011-01-17 21:50:37 +01:00
private void saveCommandsConfig() {
try {
commandsConfiguration.save(getCommandsConfigFile());
} catch (IOException ex) {
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, "Could not save " + getCommandsConfigFile(), ex);
}
}
public void loadPlugins() {
2011-03-07 19:58:19 +01:00
pluginManager.registerInterface(JavaPluginLoader.class);
File pluginFolder = (File) console.options.valueOf("plugins");
if (pluginFolder.exists()) {
2011-06-22 18:46:12 +02:00
Plugin[] plugins = pluginManager.loadPlugins(pluginFolder);
for (Plugin plugin : plugins) {
try {
2012-02-15 20:56:36 +01:00
String message = String.format("Loading %s", plugin.getDescription().getFullName());
plugin.getLogger().info(message);
2011-06-22 18:46:12 +02:00
plugin.onLoad();
} catch (Throwable ex) {
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " initializing " + plugin.getDescription().getFullName() + " (Is it up to date?)", ex);
}
}
} else {
pluginFolder.mkdir();
2010-12-24 18:24:21 +01:00
}
2010-12-21 17:52:15 +01:00
}
2011-06-22 18:46:12 +02:00
public void enablePlugins(PluginLoadOrder type) {
if (type == PluginLoadOrder.STARTUP) {
helpMap.clear();
helpMap.initializeGeneralTopics();
}
2011-06-22 18:46:12 +02:00
Plugin[] plugins = pluginManager.getPlugins();
2011-06-22 18:46:12 +02:00
for (Plugin plugin : plugins) {
if ((!plugin.isEnabled()) && (plugin.getDescription().getLoad() == type)) {
loadPlugin(plugin);
}
}
if (type == PluginLoadOrder.POSTWORLD) {
commandMap.setFallbackCommands();
setVanillaCommands();
commandMap.registerServerAliases();
2011-07-17 18:19:41 +02:00
loadCustomPermissions();
DefaultPermissions.registerCorePermissions();
CraftDefaultPermissions.registerCorePermissions();
helpMap.initializeCommands();
}
2011-06-22 18:46:12 +02:00
}
2011-01-27 22:15:41 +01:00
public void disablePlugins() {
pluginManager.disablePlugins();
}
private void setVanillaCommands() {
2016-02-29 22:32:46 +01:00
Map<String, ICommand> commands = new CommandDispatcher(console).getCommands();
for (ICommand cmd : commands.values()) {
commandMap.register("minecraft", new VanillaCommandWrapper((CommandAbstract) cmd, LocaleI18n.get(cmd.getUsage(null))));
}
}
private void loadPlugin(Plugin plugin) {
2011-02-27 15:55:29 +01:00
try {
pluginManager.enablePlugin(plugin);
2011-07-17 18:19:41 +02:00
List<Permission> perms = plugin.getDescription().getPermissions();
for (Permission perm : perms) {
try {
pluginManager.addPermission(perm);
} catch (IllegalArgumentException ex) {
getLogger().log(Level.WARNING, "Plugin " + plugin.getDescription().getFullName() + " tried to register permission '" + perm.getName() + "' but it's already registered", ex);
}
}
2011-02-27 15:55:29 +01:00
} catch (Throwable ex) {
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " loading " + plugin.getDescription().getFullName() + " (Is it up to date?)", ex);
}
}
@Override
2010-12-21 17:52:15 +01:00
public String getName() {
2010-12-22 16:22:23 +01:00
return serverName;
2010-12-21 17:52:15 +01:00
}
@Override
2010-12-21 17:52:15 +01:00
public String getVersion() {
2011-11-20 09:01:14 +01:00
return serverVersion + " (MC: " + console.getVersion() + ")";
2010-12-22 16:22:23 +01:00
}
2011-11-20 09:01:14 +01:00
@Override
2011-10-31 05:02:54 +01:00
public String getBukkitVersion() {
return bukkitVersion;
}
2010-12-22 16:22:23 +01:00
@Override
@Deprecated
@SuppressWarnings("unchecked")
public Player[] _INVALID_getOnlinePlayers() {
return getOnlinePlayers().toArray(EMPTY_PLAYER_ARRAY);
}
2010-12-22 16:22:23 +01:00
@Override
public List<CraftPlayer> getOnlinePlayers() {
return this.playerView;
2010-12-21 17:52:15 +01:00
}
@Override
@Deprecated
2011-01-03 01:16:00 +01:00
public Player getPlayer(final String name) {
Validate.notNull(name, "Name cannot be null");
Player found = getPlayerExact(name);
// Try for an exact match first.
if (found != null) {
return found;
}
2011-01-17 21:50:37 +01:00
String lowerName = name.toLowerCase();
int delta = Integer.MAX_VALUE;
for (Player player : getOnlinePlayers()) {
2011-01-17 21:50:37 +01:00
if (player.getName().toLowerCase().startsWith(lowerName)) {
int curDelta = Math.abs(player.getName().length() - lowerName.length());
2011-01-17 21:50:37 +01:00
if (curDelta < delta) {
found = player;
delta = curDelta;
}
if (curDelta == 0) break;
2011-01-03 01:16:00 +01:00
}
}
2011-01-17 21:50:37 +01:00
return found;
2011-01-03 01:16:00 +01:00
}
2011-01-17 21:50:37 +01:00
@Override
@Deprecated
public Player getPlayerExact(String name) {
Validate.notNull(name, "Name cannot be null");
EntityPlayer player = playerList.getPlayer(name);
return (player != null) ? player.getBukkitEntity() : null;
}
@Override
public Player getPlayer(UUID id) {
EntityPlayer player = playerList.a(id);
if (player != null) {
return player.getBukkitEntity();
}
return null;
}
@Override
2011-01-15 22:40:15 +01:00
public int broadcastMessage(String message) {
2011-09-02 23:24:28 +02:00
return broadcast(message, BROADCAST_CHANNEL_USERS);
2011-01-15 22:40:15 +01:00
}
2011-01-03 01:16:00 +01:00
2011-01-29 22:50:29 +01:00
public Player getPlayer(final EntityPlayer entity) {
return entity.getBukkitEntity();
2010-12-26 03:20:29 +01:00
}
2011-01-17 21:50:37 +01:00
@Override
@Deprecated
public List<Player> matchPlayer(String partialName) {
Validate.notNull(partialName, "PartialName cannot be null");
List<Player> matchedPlayers = new ArrayList<Player>();
2011-01-17 21:50:37 +01:00
for (Player iterPlayer : this.getOnlinePlayers()) {
String iterPlayerName = iterPlayer.getName();
if (partialName.equalsIgnoreCase(iterPlayerName)) {
// Exact match
2011-01-10 09:30:34 +01:00
matchedPlayers.clear();
matchedPlayers.add(iterPlayer);
break;
}
2012-09-10 06:19:28 +02:00
if (iterPlayerName.toLowerCase().contains(partialName.toLowerCase())) {
2011-01-10 09:30:34 +01:00
// Partial match
matchedPlayers.add(iterPlayer);
}
}
return matchedPlayers;
}
2010-12-26 03:20:29 +01:00
@Override
2011-02-04 07:12:33 +01:00
public int getMaxPlayers() {
2012-12-20 05:03:52 +01:00
return playerList.getMaxPlayers();
2011-02-04 07:12:33 +01:00
}
2011-02-06 13:30:50 +01:00
2016-02-29 22:32:46 +01:00
// NOTE: These are dependent on the corresponding call in MinecraftServer
// so if that changes this will need to as well
@Override
public int getPort() {
return this.getConfigInt("server-port", 25565);
}
@Override
public int getViewDistance() {
return this.getConfigInt("view-distance", 10);
}
@Override
public String getIp() {
return this.getConfigString("server-ip", "");
}
@Override
public String getServerName() {
return this.getConfigString("server-name", "Unknown Server");
}
@Override
public String getServerId() {
return this.getConfigString("server-id", "unnamed");
}
@Override
public String getWorldType() {
return this.getConfigString("level-type", "DEFAULT");
}
@Override
public boolean getGenerateStructures() {
return this.getConfigBoolean("generate-structures", true);
}
@Override
public boolean getAllowEnd() {
return this.configuration.getBoolean("settings.allow-end");
}
@Override
public boolean getAllowNether() {
return this.getConfigBoolean("allow-nether", true);
}
public boolean getWarnOnOverload() {
return this.configuration.getBoolean("settings.warn-on-overload");
}
public boolean getQueryPlugins() {
return this.configuration.getBoolean("settings.query-plugins");
}
@Override
public boolean hasWhitelist() {
return this.getConfigBoolean("white-list", false);
}
// NOTE: Temporary calls through to server.properies until its replaced
private String getConfigString(String variable, String defaultValue) {
2012-07-29 09:33:13 +02:00
return this.console.getPropertyManager().getString(variable, defaultValue);
}
private int getConfigInt(String variable, int defaultValue) {
2012-07-29 09:33:13 +02:00
return this.console.getPropertyManager().getInt(variable, defaultValue);
}
private boolean getConfigBoolean(String variable, boolean defaultValue) {
2012-07-29 09:33:13 +02:00
return this.console.getPropertyManager().getBoolean(variable, defaultValue);
}
// End Temporary calls
@Override
public String getUpdateFolder() {
return this.configuration.getString("settings.update-folder", "update");
}
@Override
public File getUpdateFolderFile() {
return new File((File) console.options.valueOf("plugins"), this.configuration.getString("settings.update-folder", "update"));
}
@Override
public long getConnectionThrottle() {
return this.configuration.getInt("settings.connection-throttle");
}
@Override
public int getTicksPerAnimalSpawns() {
return this.configuration.getInt("ticks-per.animal-spawns");
}
@Override
public int getTicksPerMonsterSpawns() {
return this.configuration.getInt("ticks-per.monster-spawns");
}
@Override
2010-12-24 18:24:21 +01:00
public PluginManager getPluginManager() {
return pluginManager;
}
2010-12-27 03:13:03 +01:00
@Override
2012-07-29 09:33:13 +02:00
public CraftScheduler getScheduler() {
2011-02-03 00:53:04 +01:00
return scheduler;
}
@Override
2011-05-02 20:31:02 +02:00
public ServicesManager getServicesManager() {
return servicesManager;
}
@Override
public List<World> getWorlds() {
return new ArrayList<World>(worlds.values());
2010-12-27 03:13:03 +01:00
}
2010-12-30 05:30:12 +01:00
2012-12-20 05:03:52 +01:00
public DedicatedPlayerList getHandle() {
return playerList;
2010-12-30 05:30:12 +01:00
}
2012-07-29 09:33:13 +02:00
// NOTE: Should only be called from DedicatedServer.ah()
public boolean dispatchServerCommand(CommandSender sender, ServerCommand serverCommand) {
if (sender instanceof Conversable) {
Conversable conversable = (Conversable)sender;
if (conversable.isConversing()) {
conversable.acceptConversationInput(serverCommand.command);
return true;
}
}
try {
this.playerCommandState = true;
return dispatchCommand(sender, serverCommand.command);
} catch (Exception ex) {
getLogger().log(Level.WARNING, "Unexpected exception while parsing console command \"" + serverCommand.command + '"', ex);
return false;
} finally {
this.playerCommandState = false;
}
}
@Override
public boolean dispatchCommand(CommandSender sender, String commandLine) {
Validate.notNull(sender, "Sender cannot be null");
Validate.notNull(commandLine, "CommandLine cannot be null");
if (commandMap.dispatch(sender, commandLine)) {
return true;
}
if (sender instanceof Player) {
sender.sendMessage("Unknown command. Type \"/help\" for help.");
} else {
sender.sendMessage("Unknown command. Type \"help\" for help.");
}
return false;
}
2011-01-20 04:53:43 +01:00
@Override
2011-01-20 04:53:43 +01:00
public void reload() {
reloadCount++;
2011-10-10 22:10:48 +02:00
configuration = YamlConfiguration.loadConfiguration(getConfigFile());
commandsConfiguration = YamlConfiguration.loadConfiguration(getCommandsConfigFile());
2013-11-04 14:07:38 +01:00
PropertyManager config = new PropertyManager(console.options);
2011-01-20 04:53:43 +01:00
2012-07-29 09:33:13 +02:00
((DedicatedServer) console).propertyManager = config;
2012-07-29 09:33:13 +02:00
boolean animals = config.getBoolean("spawn-animals", console.getSpawnAnimals());
boolean monsters = config.getBoolean("spawn-monsters", console.worlds.get(0).getDifficulty() != EnumDifficulty.PEACEFUL);
EnumDifficulty difficulty = EnumDifficulty.getById(config.getInt("difficulty", console.worlds.get(0).getDifficulty().ordinal()));
2011-01-20 04:53:43 +01:00
2012-12-20 05:03:52 +01:00
online.value = config.getBoolean("online-mode", console.getOnlineMode());
2012-07-29 09:33:13 +02:00
console.setSpawnAnimals(config.getBoolean("spawn-animals", console.getSpawnAnimals()));
console.setPVP(config.getBoolean("pvp", console.getPVP()));
2012-07-29 09:33:13 +02:00
console.setAllowFlight(config.getBoolean("allow-flight", console.getAllowFlight()));
console.setMotd(config.getString("motd", console.getMotd()));
monsterSpawn = configuration.getInt("spawn-limits.monsters");
animalSpawn = configuration.getInt("spawn-limits.animals");
waterAnimalSpawn = configuration.getInt("spawn-limits.water-animals");
ambientSpawn = configuration.getInt("spawn-limits.ambient");
warningState = WarningState.value(configuration.getString("settings.deprecated-verbose"));
printSaveWarning = false;
console.autosavePeriod = configuration.getInt("ticks-per.autosave");
chunkGCPeriod = configuration.getInt("chunk-gc.period-in-ticks");
chunkGCLoadThresh = configuration.getInt("chunk-gc.load-threshold");
2013-11-04 14:07:38 +01:00
loadIcon();
2011-01-20 04:53:43 +01:00
try {
playerList.getIPBans().load();
} catch (IOException ex) {
logger.log(Level.WARNING, "Failed to load banned-ips.json, " + ex.getMessage());
}
try {
playerList.getProfileBans().load();
} catch (IOException ex) {
logger.log(Level.WARNING, "Failed to load banned-players.json, " + ex.getMessage());
}
for (WorldServer world : console.worlds) {
world.worldData.setDifficulty(difficulty);
world.setSpawnFlags(monsters, animals);
if (this.getTicksPerAnimalSpawns() < 0) {
world.ticksPerAnimalSpawns = 400;
} else {
world.ticksPerAnimalSpawns = this.getTicksPerAnimalSpawns();
}
if (this.getTicksPerMonsterSpawns() < 0) {
world.ticksPerMonsterSpawns = 1;
} else {
world.ticksPerMonsterSpawns = this.getTicksPerMonsterSpawns();
}
}
2011-01-28 15:18:49 +01:00
pluginManager.clearPlugins();
commandMap.clearCommands();
resetRecipes();
overrideAllCommandBlockCommands = commandsConfiguration.getStringList("command-block-overrides").contains("*");
int pollCount = 0;
// Wait for at most 2.5 seconds for plugins to close their threads
while (pollCount < 50 && getScheduler().getActiveWorkers().size() > 0) {
try {
Thread.sleep(50);
} catch (InterruptedException e) {}
pollCount++;
}
List<BukkitWorker> overdueWorkers = getScheduler().getActiveWorkers();
for (BukkitWorker worker : overdueWorkers) {
Plugin plugin = worker.getOwner();
String author = "<NoAuthorGiven>";
if (plugin.getDescription().getAuthors().size() > 0) {
author = plugin.getDescription().getAuthors().get(0);
}
getLogger().log(Level.SEVERE, String.format(
"Nag author: '%s' of '%s' about the following: %s",
author,
plugin.getDescription().getName(),
"This plugin is not properly shutting down its async tasks when it is being reloaded. This may cause conflicts with the newly loaded version of the plugin"
));
}
2011-01-28 15:18:49 +01:00
loadPlugins();
2011-06-22 18:46:12 +02:00
enablePlugins(PluginLoadOrder.STARTUP);
enablePlugins(PluginLoadOrder.POSTWORLD);
2011-01-20 04:53:43 +01:00
}
2013-11-04 14:07:38 +01:00
private void loadIcon() {
icon = new CraftIconCache(null);
try {
final File file = new File(new File("."), "server-icon.png");
if (file.isFile()) {
icon = loadServerIcon0(file);
}
} catch (Exception ex) {
getLogger().log(Level.WARNING, "Couldn't load server icon", ex);
}
}
2012-01-30 21:51:53 +01:00
@SuppressWarnings({ "unchecked", "finally" })
2011-07-17 18:19:41 +02:00
private void loadCustomPermissions() {
File file = new File(configuration.getString("settings.permissions-file"));
FileInputStream stream;
try {
stream = new FileInputStream(file);
} catch (FileNotFoundException ex) {
try {
file.createNewFile();
} finally {
return;
}
}
Map<String, Map<String, Object>> perms;
try {
2012-01-14 23:02:10 +01:00
perms = (Map<String, Map<String, Object>>) yaml.load(stream);
2011-07-17 18:19:41 +02:00
} catch (MarkedYAMLException ex) {
getLogger().log(Level.WARNING, "Server permissions file " + file + " is not valid YAML: " + ex.toString());
return;
} catch (Throwable ex) {
getLogger().log(Level.WARNING, "Server permissions file " + file + " is not valid YAML.", ex);
return;
} finally {
try {
stream.close();
} catch (IOException ex) {}
2011-07-17 18:19:41 +02:00
}
if (perms == null) {
getLogger().log(Level.INFO, "Server permissions file " + file + " is empty, ignoring it");
return;
}
List<Permission> permsList = Permission.loadPermissions(perms, "Permission node '%s' in " + file + " is invalid", Permission.DEFAULT_PERMISSION);
2011-07-17 18:19:41 +02:00
for (Permission perm : permsList) {
2011-07-17 18:19:41 +02:00
try {
pluginManager.addPermission(perm);
} catch (IllegalArgumentException ex) {
getLogger().log(Level.SEVERE, "Permission in " + file + " was already defined", ex);
2011-07-17 18:19:41 +02:00
}
}
}
@Override
public String toString() {
2011-11-20 09:01:14 +01:00
return "CraftServer{" + "serverName=" + serverName + ",serverVersion=" + serverVersion + ",minecraftVersion=" + console.getVersion() + '}';
}
public World createWorld(String name, World.Environment environment) {
2011-09-25 02:05:10 +02:00
return WorldCreator.name(name).environment(environment).createWorld();
2011-03-31 22:40:00 +02:00
}
public World createWorld(String name, World.Environment environment, long seed) {
2011-09-25 02:05:10 +02:00
return WorldCreator.name(name).environment(environment).seed(seed).createWorld();
}
public World createWorld(String name, Environment environment, ChunkGenerator generator) {
2011-09-25 02:05:10 +02:00
return WorldCreator.name(name).environment(environment).generator(generator).createWorld();
}
public World createWorld(String name, Environment environment, long seed, ChunkGenerator generator) {
2011-09-25 02:05:10 +02:00
return WorldCreator.name(name).environment(environment).seed(seed).generator(generator).createWorld();
}
@Override
2011-09-25 02:05:10 +02:00
public World createWorld(WorldCreator creator) {
Validate.notNull(creator, "Creator may not be null");
2011-09-25 02:05:10 +02:00
String name = creator.name();
ChunkGenerator generator = creator.generator();
File folder = new File(getWorldContainer(), name);
World world = getWorld(name);
2012-02-29 22:31:04 +01:00
WorldType type = WorldType.getType(creator.type().getName());
boolean generateStructures = creator.generateStructures();
if (world != null) {
return world;
}
if ((folder.exists()) && (!folder.isDirectory())) {
throw new IllegalArgumentException("File exists with the name '" + name + "' and isn't a folder");
}
if (generator == null) {
generator = getGenerator(name);
}
2016-02-29 22:32:46 +01:00
Convertable converter = new WorldLoaderServer(getWorldContainer(), getHandle().getServer().getDataConverterManager());
if (converter.isConvertable(name)) {
getLogger().info("Converting world '" + name + "'");
2015-02-26 23:41:06 +01:00
converter.convert(name, new IProgressUpdate() {
private long b = System.currentTimeMillis();
public void a(String s) {}
public void a(int i) {
if (System.currentTimeMillis() - this.b >= 1000L) {
this.b = System.currentTimeMillis();
MinecraftServer.LOGGER.info("Converting... " + i + "%");
}
}
public void c(String s) {}
});
}
int dimension = CraftWorld.CUSTOM_DIMENSION_OFFSET + console.worlds.size();
boolean used = false;
do {
for (WorldServer server : console.worlds) {
used = server.dimension == dimension;
if (used) {
dimension++;
break;
}
}
} while(used);
2011-11-20 09:01:14 +01:00
boolean hardcore = false;
2016-02-29 22:32:46 +01:00
IDataManager sdm = new ServerNBTManager(getWorldContainer(), name, true, getHandle().getServer().getDataConverterManager());
WorldData worlddata = sdm.getWorldData();
if (worlddata == null) {
2015-02-26 23:41:06 +01:00
WorldSettings worldSettings = new WorldSettings(creator.seed(), WorldSettings.EnumGamemode.getById(getDefaultGameMode().getValue()), generateStructures, hardcore, type);
worldSettings.setGeneratorSettings(creator.generatorSettings());
worlddata = new WorldData(worldSettings, name);
}
worlddata.checkName(name); // CraftBukkit - Migration did not rewrite the level.dat; This forces 1.8 to take the last loaded world as respawn (in this case the end)
WorldServer internal = (WorldServer) new WorldServer(console, sdm, worlddata, dimension, console.methodProfiler, creator.environment(), generator).b();
2011-07-13 09:29:43 +02:00
if (!(worlds.containsKey(name.toLowerCase()))) {
2011-07-13 09:29:43 +02:00
return null;
}
internal.scoreboard = getScoreboardManager().getMainScoreboard().getHandle();
internal.tracker = new EntityTracker(internal);
2013-03-25 05:22:32 +01:00
internal.addIWorldAccess(new WorldManager(console, internal));
internal.worldData.setDifficulty(EnumDifficulty.EASY);
internal.setSpawnFlags(true, true);
console.worlds.add(internal);
if (generator != null) {
internal.getWorld().getPopulators().addAll(generator.getDefaultPopulators(internal.getWorld()));
}
pluginManager.callEvent(new WorldInitEvent(internal.getWorld()));
2012-01-14 23:02:10 +01:00
System.out.print("Preparing start region for level " + (console.worlds.size() - 1) + " (Seed: " + internal.getSeed() + ")");
if (internal.getWorld().getKeepSpawnInMemory()) {
short short1 = 196;
long i = System.currentTimeMillis();
for (int j = -short1; j <= short1; j += 16) {
for (int k = -short1; k <= short1; k += 16) {
long l = System.currentTimeMillis();
if (l < i) {
i = l;
}
if (l > i + 1000L) {
int i1 = (short1 * 2 + 1) * (short1 * 2 + 1);
int j1 = (j + short1) * (short1 * 2 + 1) + k + 1;
System.out.println("Preparing spawn area for " + name + ", " + (j1 * 100 / i1) + "%");
i = l;
}
BlockPosition chunkcoordinates = internal.getSpawn();
2016-02-29 22:32:46 +01:00
internal.getChunkProviderServer().getChunkAt(chunkcoordinates.getX() + j >> 4, chunkcoordinates.getZ() + k >> 4);
}
}
}
pluginManager.callEvent(new WorldLoadEvent(internal.getWorld()));
return internal.getWorld();
}
@Override
public boolean unloadWorld(String name, boolean save) {
return unloadWorld(getWorld(name), save);
}
@Override
public boolean unloadWorld(World world, boolean save) {
if (world == null) {
return false;
}
WorldServer handle = ((CraftWorld) world).getHandle();
if (!(console.worlds.contains(handle))) {
return false;
}
if (!(handle.dimension > 1)) {
return false;
}
if (handle.players.size() > 0) {
return false;
}
WorldUnloadEvent e = new WorldUnloadEvent(handle.getWorld());
pluginManager.callEvent(e);
if (e.isCancelled()) {
return false;
}
if (save) {
2012-07-29 09:33:13 +02:00
try {
2013-03-25 05:22:32 +01:00
handle.save(true, null);
2012-07-29 09:33:13 +02:00
handle.saveLevel();
} catch (ExceptionWorldConflict ex) {
getLogger().log(Level.SEVERE, null, ex);
}
}
worlds.remove(world.getName().toLowerCase());
console.worlds.remove(console.worlds.indexOf(handle));
return true;
}
public MinecraftServer getServer() {
return console;
}
@Override
public World getWorld(String name) {
Validate.notNull(name, "Name cannot be null");
return worlds.get(name.toLowerCase());
}
@Override
public World getWorld(UUID uid) {
for (World world : worlds.values()) {
2011-07-13 06:06:07 +02:00
if (world.getUID().equals(uid)) {
2011-07-05 05:48:27 +02:00
return world;
}
}
return null;
}
public void addWorld(World world) {
// Check if a World already exists with the UID.
if (getWorld(world.getUID()) != null) {
System.out.println("World " + world.getName() + " is a duplicate of another world and has been prevented from loading. Please delete the uid.dat file from " + world.getName() + "'s world directory if you want to be able to load the duplicate world.");
return;
}
worlds.put(world.getName().toLowerCase(), world);
}
@Override
public Logger getLogger() {
2013-11-04 14:07:38 +01:00
return logger;
}
public ConsoleReader getReader() {
return console.reader;
}
2011-02-28 01:31:25 +01:00
@Override
2011-02-28 01:31:25 +01:00
public PluginCommand getPluginCommand(String name) {
Command command = commandMap.getCommand(name);
if (command instanceof PluginCommand) {
return (PluginCommand) command;
2011-02-28 01:31:25 +01:00
} else {
return null;
}
}
@Override
public void savePlayers() {
checkSaveState();
2012-12-20 05:03:52 +01:00
playerList.savePlayers();
}
@Override
2011-03-31 03:35:08 +02:00
public void configureDbConfig(ServerConfig config) {
Validate.notNull(config, "Config cannot be null");
2011-03-31 03:35:08 +02:00
DataSourceConfig ds = new DataSourceConfig();
ds.setDriver(configuration.getString("database.driver"));
ds.setUrl(configuration.getString("database.url"));
ds.setUsername(configuration.getString("database.username"));
ds.setPassword(configuration.getString("database.password"));
ds.setIsolationLevel(TransactionIsolation.getLevel(configuration.getString("database.isolation")));
if (ds.getDriver().contains("sqlite")) {
config.setDatabasePlatform(new SQLitePlatform());
config.getDatabasePlatform().getDbDdlSyntax().setIdentity("");
}
config.setDataSourceConfig(ds);
}
@Override
public boolean addRecipe(Recipe recipe) {
CraftRecipe toAdd;
if (recipe instanceof CraftRecipe) {
toAdd = (CraftRecipe) recipe;
} else {
if (recipe instanceof ShapedRecipe) {
toAdd = CraftShapedRecipe.fromBukkitRecipe((ShapedRecipe) recipe);
} else if (recipe instanceof ShapelessRecipe) {
toAdd = CraftShapelessRecipe.fromBukkitRecipe((ShapelessRecipe) recipe);
} else if (recipe instanceof FurnaceRecipe) {
toAdd = CraftFurnaceRecipe.fromBukkitRecipe((FurnaceRecipe) recipe);
} else {
return false;
}
}
toAdd.addToCraftingManager();
CraftingManager.getInstance().sort();
return true;
}
2011-06-17 05:09:43 +02:00
@Override
public List<Recipe> getRecipesFor(ItemStack result) {
Validate.notNull(result, "Result cannot be null");
List<Recipe> results = new ArrayList<Recipe>();
Iterator<Recipe> iter = recipeIterator();
while (iter.hasNext()) {
Recipe recipe = iter.next();
ItemStack stack = recipe.getResult();
if (stack.getType() != result.getType()) {
continue;
}
if (result.getDurability() == -1 || result.getDurability() == stack.getDurability()) {
results.add(recipe);
}
}
return results;
}
@Override
public Iterator<Recipe> recipeIterator() {
return new RecipeIterator();
}
@Override
public void clearRecipes() {
2012-07-29 09:33:13 +02:00
CraftingManager.getInstance().recipes.clear();
RecipesFurnace.getInstance().recipes.clear();
RecipesFurnace.getInstance().customRecipes.clear();
2016-02-29 22:32:46 +01:00
RecipesFurnace.getInstance().customExperience.clear();
}
@Override
public void resetRecipes() {
2012-07-29 09:33:13 +02:00
CraftingManager.getInstance().recipes = new CraftingManager().recipes;
RecipesFurnace.getInstance().recipes = new RecipesFurnace().recipes;
RecipesFurnace.getInstance().customRecipes.clear();
2016-02-29 22:32:46 +01:00
RecipesFurnace.getInstance().customExperience.clear();
}
@Override
2011-06-22 20:10:29 +02:00
public Map<String, String[]> getCommandAliases() {
ConfigurationSection section = commandsConfiguration.getConfigurationSection("aliases");
Map<String, String[]> result = new LinkedHashMap<String, String[]>();
2011-06-17 05:09:43 +02:00
2011-10-10 22:10:48 +02:00
if (section != null) {
for (String key : section.getKeys(false)) {
2013-03-25 05:22:32 +01:00
List<String> commands;
2011-06-22 20:10:29 +02:00
2011-10-10 22:10:48 +02:00
if (section.isList(key)) {
commands = section.getStringList(key);
2011-06-22 20:10:29 +02:00
} else {
2013-03-25 05:22:32 +01:00
commands = ImmutableList.of(section.getString(key));
2011-06-22 20:10:29 +02:00
}
2012-09-10 06:19:28 +02:00
result.put(key, commands.toArray(new String[commands.size()]));
2011-06-17 05:09:43 +02:00
}
}
return result;
}
public void removeBukkitSpawnRadius() {
configuration.set("settings.spawn-radius", null);
saveConfig();
}
public int getBukkitSpawnRadius() {
return configuration.getInt("settings.spawn-radius", -1);
}
@Override
public String getShutdownMessage() {
return configuration.getString("settings.shutdown-message");
}
@Override
public int getSpawnRadius() {
return ((DedicatedServer) console).propertyManager.getInt("spawn-protection", 16);
}
@Override
public void setSpawnRadius(int value) {
2011-10-10 22:10:48 +02:00
configuration.set("settings.spawn-radius", value);
saveConfig();
}
@Override
public boolean getOnlineMode() {
2012-12-20 05:03:52 +01:00
return online.value;
}
@Override
public boolean getAllowFlight() {
2012-07-29 09:33:13 +02:00
return console.getAllowFlight();
}
@Override
public boolean isHardcore() {
return console.isHardcore();
}
@Override
public boolean useExactLoginLocation() {
return configuration.getBoolean("settings.use-exact-login-location");
}
public ChunkGenerator getGenerator(String world) {
2011-10-10 22:10:48 +02:00
ConfigurationSection section = configuration.getConfigurationSection("worlds");
ChunkGenerator result = null;
2011-10-10 22:10:48 +02:00
if (section != null) {
section = section.getConfigurationSection(world);
2011-10-10 22:10:48 +02:00
if (section != null) {
String name = section.getString("generator");
2011-06-23 21:41:07 +02:00
if ((name != null) && (!name.equals(""))) {
String[] split = name.split(":", 2);
String id = (split.length > 1) ? split[1] : null;
Plugin plugin = pluginManager.getPlugin(split[0]);
if (plugin == null) {
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + split[0] + "' does not exist");
} else if (!plugin.isEnabled()) {
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + plugin.getDescription().getFullName() + "' is not enabled yet (is it load:STARTUP?)");
} else {
try {
result = plugin.getDefaultWorldGenerator(world, id);
if (result == null) {
getLogger().severe("Could not set generator for default world '" + world + "': Plugin '" + plugin.getDescription().getFullName() + "' lacks a default world generator");
}
} catch (Throwable t) {
plugin.getLogger().log(Level.SEVERE, "Could not set generator for default world '" + world + "': Plugin '" + plugin.getDescription().getFullName(), t);
}
}
}
}
}
return result;
}
@Override
@Deprecated
public CraftMapView getMap(short id) {
2013-11-04 14:07:38 +01:00
PersistentCollection collection = console.worlds.get(0).worldMaps;
2012-01-12 16:27:39 +01:00
WorldMap worldmap = (WorldMap) collection.get(WorldMap.class, "map_" + id);
if (worldmap == null) {
return null;
}
return worldmap.mapView;
}
@Override
public CraftMapView createMap(World world) {
Validate.notNull(world, "World cannot be null");
2013-11-04 14:07:38 +01:00
net.minecraft.server.ItemStack stack = new net.minecraft.server.ItemStack(Items.MAP, 1, -1);
WorldMap worldmap = Items.FILLED_MAP.getSavedMap(stack, ((CraftWorld) world).getHandle());
return worldmap.mapView;
}
@Override
2011-09-02 21:18:35 +02:00
public void shutdown() {
console.safeShutdown();
2011-09-02 21:18:35 +02:00
}
2011-09-02 23:24:28 +02:00
@Override
2011-09-02 23:24:28 +02:00
public int broadcast(String message, String permission) {
int count = 0;
Set<Permissible> permissibles = getPluginManager().getPermissionSubscriptions(permission);
for (Permissible permissible : permissibles) {
if (permissible instanceof CommandSender && permissible.hasPermission(permission)) {
2012-01-14 23:02:10 +01:00
CommandSender user = (CommandSender) permissible;
2011-09-02 23:24:28 +02:00
user.sendMessage(message);
count++;
}
}
return count;
}
2011-09-03 01:41:48 +02:00
@Override
@Deprecated
2011-09-03 01:41:48 +02:00
public OfflinePlayer getOfflinePlayer(String name) {
Validate.notNull(name, "Name cannot be null");
// If the name given cannot ever be a valid username give a dummy return, for scoreboard plugins
if (!validUserPattern.matcher(name).matches()) {
return new CraftOfflinePlayer(this, new GameProfile(invalidUserUUID, name));
}
OfflinePlayer result = getPlayerExact(name);
if (result == null) {
// This is potentially blocking :(
2016-02-29 22:32:46 +01:00
GameProfile profile = console.getUserCache().getProfile(name);
if (profile == null) {
// Make an OfflinePlayer using an offline mode UUID since the name has no profile
result = getOfflinePlayer(new GameProfile(UUID.nameUUIDFromBytes(("OfflinePlayer:" + name).getBytes(Charsets.UTF_8)), name));
} else {
// Use the GameProfile even when we get a UUID so we ensure we still have a name
result = getOfflinePlayer(profile);
}
} else {
offlinePlayers.remove(result.getUniqueId());
2014-04-11 03:04:38 +02:00
}
2011-09-03 01:41:48 +02:00
return result;
2014-04-11 03:04:38 +02:00
}
@Override
public OfflinePlayer getOfflinePlayer(UUID id) {
2014-04-11 03:04:38 +02:00
Validate.notNull(id, "UUID cannot be null");
2014-04-11 03:04:38 +02:00
OfflinePlayer result = getPlayer(id);
if (result == null) {
result = offlinePlayers.get(id);
if (result == null) {
result = new CraftOfflinePlayer(this, new GameProfile(id, null));
offlinePlayers.put(id, result);
}
} else {
2014-04-11 03:04:38 +02:00
offlinePlayers.remove(id);
2011-09-03 01:41:48 +02:00
}
return result;
}
2011-09-03 02:59:28 +02:00
2014-04-11 03:04:38 +02:00
public OfflinePlayer getOfflinePlayer(GameProfile profile) {
OfflinePlayer player = new CraftOfflinePlayer(this, profile);
offlinePlayers.put(profile.getId(), player);
return player;
}
@Override
2012-01-30 21:51:53 +01:00
@SuppressWarnings("unchecked")
2011-09-03 02:59:28 +02:00
public Set<String> getIPBans() {
2014-04-11 03:04:38 +02:00
return new HashSet<String>(Arrays.asList(playerList.getIPBans().getEntries()));
2011-09-03 02:59:28 +02:00
}
@Override
2011-09-03 02:59:28 +02:00
public void banIP(String address) {
Validate.notNull(address, "Address cannot be null.");
this.getBanList(org.bukkit.BanList.Type.IP).addBan(address, null, null, null);
2011-09-03 02:59:28 +02:00
}
@Override
2011-09-03 02:59:28 +02:00
public void unbanIP(String address) {
Validate.notNull(address, "Address cannot be null.");
this.getBanList(org.bukkit.BanList.Type.IP).pardon(address);
2011-09-03 02:59:28 +02:00
}
2011-09-03 03:13:07 +02:00
@Override
2011-09-03 03:13:07 +02:00
public Set<OfflinePlayer> getBannedPlayers() {
Set<OfflinePlayer> result = new HashSet<OfflinePlayer>();
for (JsonListEntry entry : playerList.getProfileBans().getValues()) {
2014-06-26 20:05:08 +02:00
result.add(getOfflinePlayer((GameProfile) entry.getKey()));
}
2011-09-03 03:13:07 +02:00
return result;
}
@Override
2014-04-11 03:04:38 +02:00
public BanList getBanList(BanList.Type type) {
Validate.notNull(type, "Type cannot be null");
switch(type){
case IP:
2014-04-11 03:04:38 +02:00
return new CraftIpBanList(playerList.getIPBans());
case NAME:
2014-04-11 03:04:38 +02:00
default:
return new CraftProfileBanList(playerList.getProfileBans());
}
}
@Override
public void setWhitelist(boolean value) {
2014-04-11 03:04:38 +02:00
playerList.setHasWhitelist(value);
2014-06-26 20:05:08 +02:00
console.getPropertyManager().setProperty("white-list", value);
}
@Override
public Set<OfflinePlayer> getWhitelistedPlayers() {
Set<OfflinePlayer> result = new LinkedHashSet<OfflinePlayer>();
for (JsonListEntry entry : playerList.getWhitelist().getValues()) {
2014-06-26 20:05:08 +02:00
result.add(getOfflinePlayer((GameProfile) entry.getKey()));
}
return result;
}
@Override
2011-09-25 04:28:00 +02:00
public Set<OfflinePlayer> getOperators() {
Set<OfflinePlayer> result = new HashSet<OfflinePlayer>();
for (JsonListEntry entry : playerList.getOPs().getValues()) {
2014-06-26 20:05:08 +02:00
result.add(getOfflinePlayer((GameProfile) entry.getKey()));
2011-09-25 04:28:00 +02:00
}
return result;
}
@Override
public void reloadWhitelist() {
2012-12-20 05:03:52 +01:00
playerList.reloadWhitelist();
}
@Override
public GameMode getDefaultGameMode() {
2014-06-26 20:05:08 +02:00
return GameMode.getByValue(console.worlds.get(0).getWorldData().getGameType().getId());
}
@Override
public void setDefaultGameMode(GameMode mode) {
Validate.notNull(mode, "Mode cannot be null");
2011-09-15 03:22:20 +02:00
for (World world : getWorlds()) {
2015-02-26 23:41:06 +01:00
((CraftWorld) world).getHandle().worldData.setGameType(WorldSettings.EnumGamemode.getById(mode.getValue()));
2011-09-15 03:22:20 +02:00
}
}
@Override
public ConsoleCommandSender getConsoleSender() {
return console.console;
}
public EntityMetadataStore getEntityMetadata() {
return entityMetadata;
}
public PlayerMetadataStore getPlayerMetadata() {
return playerMetadata;
}
public WorldMetadataStore getWorldMetadata() {
return worldMetadata;
}
@Override
public File getWorldContainer() {
2012-07-29 09:33:13 +02:00
if (this.getServer().universe != null) {
return this.getServer().universe;
}
if (container == null) {
container = new File(configuration.getString("settings.world-container", "."));
}
return container;
}
2011-12-04 18:57:00 +01:00
@Override
2011-12-04 18:57:00 +01:00
public OfflinePlayer[] getOfflinePlayers() {
WorldNBTStorage storage = (WorldNBTStorage) console.worlds.get(0).getDataManager();
2011-12-04 18:57:00 +01:00
String[] files = storage.getPlayerDir().list(new DatFileFilter());
Set<OfflinePlayer> players = new HashSet<OfflinePlayer>();
2011-12-04 18:57:00 +01:00
2012-09-10 06:19:28 +02:00
for (String file : files) {
2014-04-11 03:04:38 +02:00
try {
players.add(getOfflinePlayer(UUID.fromString(file.substring(0, file.length() - 4))));
2014-04-11 03:04:38 +02:00
} catch (IllegalArgumentException ex) {
// Who knows what is in this directory, just ignore invalid files
}
2011-12-04 18:57:00 +01:00
}
2014-04-11 03:04:38 +02:00
players.addAll(getOnlinePlayers());
2011-12-04 18:57:00 +01:00
return players.toArray(new OfflinePlayer[players.size()]);
2011-12-04 18:57:00 +01:00
}
@Override
public Messenger getMessenger() {
return messenger;
}
@Override
public void sendPluginMessage(Plugin source, String channel, byte[] message) {
StandardMessenger.validatePluginMessage(getMessenger(), source, channel, message);
for (Player player : getOnlinePlayers()) {
player.sendPluginMessage(source, channel, message);
}
}
@Override
public Set<String> getListeningPluginChannels() {
Set<String> result = new HashSet<String>();
for (Player player : getOnlinePlayers()) {
result.addAll(player.getListeningPluginChannels());
}
return result;
}
@Override
public Inventory createInventory(InventoryHolder owner, InventoryType type) {
// TODO: Create the appropriate type, rather than Custom?
return new CraftInventoryCustom(owner, type);
}
@Override
public Inventory createInventory(InventoryHolder owner, InventoryType type, String title) {
return new CraftInventoryCustom(owner, type, title);
}
@Override
public Inventory createInventory(InventoryHolder owner, int size) throws IllegalArgumentException {
Validate.isTrue(size % 9 == 0, "Chests must have a size that is a multiple of 9!");
return new CraftInventoryCustom(owner, size);
}
@Override
public Inventory createInventory(InventoryHolder owner, int size, String title) throws IllegalArgumentException {
Validate.isTrue(size % 9 == 0, "Chests must have a size that is a multiple of 9!");
return new CraftInventoryCustom(owner, size, title);
}
@Override
public HelpMap getHelpMap() {
return helpMap;
}
public SimpleCommandMap getCommandMap() {
return commandMap;
}
@Override
public int getMonsterSpawnLimit() {
return monsterSpawn;
}
@Override
public int getAnimalSpawnLimit() {
return animalSpawn;
}
@Override
public int getWaterAnimalSpawnLimit() {
return waterAnimalSpawn;
}
@Override
public int getAmbientSpawnLimit() {
return ambientSpawn;
}
@Override
public boolean isPrimaryThread() {
return Thread.currentThread().equals(console.primaryThread);
}
@Override
public String getMotd() {
2012-07-29 09:33:13 +02:00
return console.getMotd();
}
@Override
public WarningState getWarningState() {
return warningState;
}
public List<String> tabComplete(net.minecraft.server.ICommandListener sender, String message) {
if (!(sender instanceof EntityPlayer)) {
return ImmutableList.of();
}
Player player = ((EntityPlayer) sender).getBukkitEntity();
if (message.startsWith("/")) {
return tabCompleteCommand(player, message);
} else {
return tabCompleteChat(player, message);
}
}
public List<String> tabCompleteCommand(Player player, String message) {
List<String> completions = null;
try {
completions = getCommandMap().tabComplete(player, message.substring(1));
} catch (CommandException ex) {
player.sendMessage(ChatColor.RED + "An internal error occurred while attempting to tab-complete this command");
getLogger().log(Level.SEVERE, "Exception when " + player.getName() + " attempted to tab complete " + message, ex);
}
return completions == null ? ImmutableList.<String>of() : completions;
}
public List<String> tabCompleteChat(Player player, String message) {
List<String> completions = new ArrayList<String>();
PlayerChatTabCompleteEvent event = new PlayerChatTabCompleteEvent(player, message, completions);
String token = event.getLastToken();
for (Player p : getOnlinePlayers()) {
if (player.canSee(p) && StringUtil.startsWithIgnoreCase(p.getName(), token)) {
completions.add(p.getName());
}
}
pluginManager.callEvent(event);
Iterator<?> it = completions.iterator();
while (it.hasNext()) {
Object current = it.next();
if (!(current instanceof String)) {
// Sanity
it.remove();
}
}
Collections.sort(completions, String.CASE_INSENSITIVE_ORDER);
return completions;
}
@Override
public CraftItemFactory getItemFactory() {
return CraftItemFactory.instance();
}
@Override
public CraftScoreboardManager getScoreboardManager() {
return scoreboardManager;
}
public void checkSaveState() {
if (this.playerCommandState || this.printSaveWarning || this.console.autosavePeriod <= 0) {
return;
}
this.printSaveWarning = true;
getLogger().log(Level.WARNING, "A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.", warningState == WarningState.ON ? new Throwable() : null);
}
2013-11-04 14:07:38 +01:00
@Override
public CraftIconCache getServerIcon() {
return icon;
}
@Override
public CraftIconCache loadServerIcon(File file) throws Exception {
Validate.notNull(file, "File cannot be null");
if (!file.isFile()) {
throw new IllegalArgumentException(file + " is not a file");
}
return loadServerIcon0(file);
}
static CraftIconCache loadServerIcon0(File file) throws Exception {
return loadServerIcon0(ImageIO.read(file));
}
@Override
public CraftIconCache loadServerIcon(BufferedImage image) throws Exception {
Validate.notNull(image, "Image cannot be null");
return loadServerIcon0(image);
}
static CraftIconCache loadServerIcon0(BufferedImage image) throws Exception {
ByteBuf bytebuf = Unpooled.buffer();
Validate.isTrue(image.getWidth() == 64, "Must be 64 pixels wide");
Validate.isTrue(image.getHeight() == 64, "Must be 64 pixels high");
ImageIO.write(image, "PNG", new ByteBufOutputStream(bytebuf));
ByteBuf bytebuf1 = Base64.encode(bytebuf);
return new CraftIconCache("data:image/png;base64," + bytebuf1.toString(Charsets.UTF_8));
}
@Override
public void setIdleTimeout(int threshold) {
2014-03-21 05:26:30 +01:00
console.setIdleTimeout(threshold);
}
@Override
public int getIdleTimeout() {
2014-03-21 05:26:30 +01:00
return console.getIdleTimeout();
}
@Override
public ChunkGenerator.ChunkData createChunkData(World world) {
return new CraftChunkData(world);
}
2016-02-29 22:32:46 +01:00
@Override
public BossBar createBossBar(String title, BarColor color, BarStyle style, BarFlag... flags) {
return new CraftBossBar(title, color, style, flags);
}
@Deprecated
@Override
public UnsafeValues getUnsafe() {
return CraftMagicNumbers.INSTANCE;
}
2010-12-21 17:52:15 +01:00
}