Paper/src/main/java/org/bukkit/craftbukkit/CraftServer.java

487 Zeilen
17 KiB
Java

2010-12-21 17:52:15 +01:00
package org.bukkit.craftbukkit;
2011-03-31 03:35:08 +02: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;
2011-04-21 16:43:09 +02:00
import net.minecraft.server.IWorldAccess;
import org.bukkit.command.*;
import org.bukkit.entity.Player;
import org.bukkit.event.world.WorldLoadEvent;
import org.bukkit.inventory.FurnaceRecipe;
import org.bukkit.inventory.Recipe;
import org.bukkit.inventory.ShapedRecipe;
import org.bukkit.inventory.ShapelessRecipe;
2010-12-24 18:24:21 +01:00
import java.io.File;
import java.util.ArrayList;
import java.util.LinkedHashMap;
2010-12-22 16:22:23 +01:00
import java.util.List;
import java.util.Map;
2011-03-31 22:40:00 +02:00
import java.util.Random;
2010-12-24 18:24:21 +01:00
import java.util.logging.Level;
import java.util.logging.Logger;
import java.lang.InterruptedException;
import jline.ConsoleReader;
2011-02-23 03:37:56 +01:00
import net.minecraft.server.ChunkCoordinates;
import net.minecraft.server.ConvertProgressUpdater;
import net.minecraft.server.Convertable;
2011-01-29 22:50:29 +01:00
import net.minecraft.server.EntityPlayer;
2010-12-27 03:13:03 +01:00
import net.minecraft.server.MinecraftServer;
2011-01-20 04:53:43 +01:00
import net.minecraft.server.PropertyManager;
2010-12-27 03:13:03 +01:00
import net.minecraft.server.ServerConfigurationManager;
2011-02-23 03:37:56 +01:00
import net.minecraft.server.ServerNBTManager;
import net.minecraft.server.WorldLoaderServer;
import net.minecraft.server.WorldManager;
import net.minecraft.server.WorldServer;
import net.minecraft.server.ServerCommand;
import net.minecraft.server.ICommandListener;
2010-12-22 16:22:23 +01:00
import org.bukkit.*;
import org.bukkit.plugin.Plugin;
2010-12-24 18:24:21 +01:00
import org.bukkit.plugin.PluginManager;
2011-05-02 20:31:02 +02:00
import org.bukkit.plugin.ServicesManager;
2010-12-25 16:42:17 +01:00
import org.bukkit.plugin.SimplePluginManager;
2011-05-02 20:31:02 +02:00
import org.bukkit.plugin.SimpleServicesManager;
2010-12-24 18:24:21 +01:00
import org.bukkit.plugin.java.JavaPluginLoader;
2011-02-03 00:53:04 +01:00
import org.bukkit.scheduler.BukkitScheduler;
import org.bukkit.craftbukkit.inventory.CraftFurnaceRecipe;
import org.bukkit.craftbukkit.inventory.CraftRecipe;
import org.bukkit.craftbukkit.inventory.CraftShapedRecipe;
import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
import org.bukkit.scheduler.BukkitWorker;
import org.bukkit.scheduler.BukkitTask;
2011-02-03 00:53:04 +01:00
import org.bukkit.craftbukkit.scheduler.CraftScheduler;
2011-03-31 03:35:08 +02:00
import org.bukkit.util.config.Configuration;
2010-12-21 17:52:15 +01:00
2011-01-20 04:53:43 +01:00
public final class CraftServer implements Server {
2010-12-24 18:24:21 +01:00
private final String serverName = "Craftbukkit";
2011-02-01 22:55:30 +01:00
private final String serverVersion;
2011-04-20 22:47:26 +02:00
private final String protocolVersion = "1.5_02";
2010-12-25 16:42:17 +01:00
private final PluginManager pluginManager = new SimplePluginManager(this);
2011-05-02 20:31:02 +02:00
private final ServicesManager servicesManager = new SimpleServicesManager();
2011-02-03 00:53:04 +01:00
private final BukkitScheduler scheduler = new CraftScheduler(this);
2011-01-20 04:53:43 +01:00
private final CommandMap commandMap = new SimpleCommandMap(this);
2010-12-22 16:22:23 +01:00
protected final MinecraftServer console;
2010-12-26 03:20:29 +01:00
protected final ServerConfigurationManager server;
private final Map<String, World> worlds = new LinkedHashMap<String, World>();
2011-03-31 03:35:08 +02:00
private final Configuration configuration;
2010-12-22 16:22:23 +01:00
public CraftServer(MinecraftServer console, ServerConfigurationManager server) {
this.console = console;
this.server = server;
2011-02-01 22:55:30 +01:00
this.serverVersion = CraftServer.class.getPackage().getImplementationVersion();
2010-12-24 18:24:21 +01:00
2011-03-30 15:55:42 +02:00
Bukkit.setServer(this);
Logger.getLogger("Minecraft").log(Level.INFO, "This server is running " + getName() + " version " + getVersion());
2011-03-31 03:35:08 +02:00
configuration = new Configuration((File)console.options.valueOf("bukkit-settings"));
configuration.load();
loadConfigDefaults();
configuration.save();
}
private void loadConfigDefaults() {
configuration.getString("database.url", "jdbc:sqlite:{DIR}{NAME}.db");
2011-03-31 03:35:08 +02:00
configuration.getString("database.username", "bukkit");
configuration.getString("database.password", "walrus");
configuration.getString("database.driver", "org.sqlite.JDBC");
configuration.getString("database.isolation", "SERIALIZABLE");
}
2011-01-17 21:50:37 +01:00
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()) {
try {
2011-01-11 23:11:10 +01:00
Plugin[] plugins = pluginManager.loadPlugins(pluginFolder);
for (Plugin plugin : plugins) {
try {
plugin.onLoad();
2011-03-31 23:33:06 +02:00
} catch (Throwable ex) {
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " initializing " + plugin.getDescription().getFullName() + " (Is it up to date?)", ex);
}
}
for (Plugin plugin : plugins) {
loadPlugin(plugin);
}
} catch (Throwable ex) {
2011-01-05 23:56:31 +01:00
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " (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-01-27 22:15:41 +01:00
public void disablePlugins() {
pluginManager.disablePlugins();
}
private void loadPlugin(Plugin plugin) {
List<Command> pluginCommands = PluginCommandYamlParser.parse(plugin);
2011-02-27 15:55:29 +01:00
if (!pluginCommands.isEmpty()) {
commandMap.registerAll(plugin.getDescription().getName(), pluginCommands);
}
2011-02-27 15:55:29 +01:00
try {
pluginManager.enablePlugin(plugin);
} catch (Throwable ex) {
Logger.getLogger(CraftServer.class.getName()).log(Level.SEVERE, ex.getMessage() + " loading " + plugin.getDescription().getFullName() + " (Is it up to date?)", ex);
}
}
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
}
public String getVersion() {
return serverVersion + " (MC: " + protocolVersion + ")";
2010-12-22 16:22:23 +01:00
}
public Player[] getOnlinePlayers() {
List<EntityPlayer> online = server.players;
2010-12-22 16:22:23 +01:00
Player[] players = new Player[online.size()];
for (int i = 0; i < players.length; i++) {
players[i] = online.get(i).netServerHandler.getPlayer();
2010-12-22 16:22:23 +01:00
}
return players;
2010-12-21 17:52:15 +01:00
}
2011-01-03 01:16:00 +01:00
public Player getPlayer(final String name) {
Player[] players = getOnlinePlayers();
2011-01-17 21:50:37 +01:00
Player found = null;
String lowerName = name.toLowerCase();
int delta = Integer.MAX_VALUE;
2011-01-03 01:16:00 +01:00
for (Player player : players) {
2011-01-17 21:50:37 +01:00
if (player.getName().toLowerCase().startsWith(lowerName)) {
int curDelta = player.getName().length() - lowerName.length();
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
2011-01-15 22:40:15 +01:00
public int broadcastMessage(String message) {
Player[] players = getOnlinePlayers();
for (Player player : players) {
player.sendMessage(message);
}
return players.length;
}
2011-01-03 01:16:00 +01:00
2011-01-29 22:50:29 +01:00
public Player getPlayer(final EntityPlayer entity) {
return entity.netServerHandler.getPlayer();
2010-12-26 03:20:29 +01:00
}
2011-01-17 21:50:37 +01:00
public List<Player> matchPlayer(String partialName) {
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;
}
if (iterPlayerName.toLowerCase().indexOf(partialName.toLowerCase()) != -1) {
2011-01-10 09:30:34 +01:00
// Partial match
matchedPlayers.add(iterPlayer);
}
}
return matchedPlayers;
}
2010-12-26 03:20:29 +01:00
2011-02-04 07:12:33 +01:00
public int getMaxPlayers() {
return server.maxPlayers;
2011-02-04 07:12:33 +01:00
}
2011-02-06 13:30:50 +01:00
// NOTE: These are dependent on the corrisponding call in MinecraftServer
// so if that changes this will need to as well
public int getPort() {
return this.getConfigInt("server-port", 25565);
}
public String getIp() {
return this.getConfigString("server-ip", "");
}
public String getServerName() {
return this.getConfigString("server-name", "Unknown Server");
}
public String getServerId() {
return this.getConfigString("server-id", "unnamed");
}
// NOTE: Temporary calls through to server.properies until its replaced
private String getConfigString(String variable, String defaultValue) {
return this.console.propertyManager.getString(variable, defaultValue);
}
private int getConfigInt(String variable, int defaultValue) {
return this.console.propertyManager.getInt(variable, defaultValue);
}
// End Temporary calls
2010-12-24 18:24:21 +01:00
public PluginManager getPluginManager() {
return pluginManager;
}
2010-12-27 03:13:03 +01:00
2011-02-03 00:53:04 +01:00
public BukkitScheduler getScheduler() {
return scheduler;
}
2011-05-02 20:31:02 +02:00
public ServicesManager getServicesManager() {
return servicesManager;
}
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
public ServerConfigurationManager getHandle() {
return server;
}
// NOTE: Should only be called from MinecraftServer.b()
public boolean dispatchCommand(CommandSender sender, ServerCommand serverCommand) {
if ( commandMap.dispatch(sender, serverCommand.command) ) {
return true;
}
return console.consoleCommandHandler.handle(serverCommand);
}
public boolean dispatchCommand(CommandSender sender, String commandLine) {
// CraftBukkit native commands
if (commandMap.dispatch(sender, commandLine)) {
return true;
}
if ( ! sender.isOp() ) {
return false;
}
// See if the server can process this command
return console.consoleCommandHandler.handle(new ServerCommand(commandLine, new CommandListener(sender)));
}
2011-01-20 04:53:43 +01:00
public void reload() {
PropertyManager config = new PropertyManager(console.options);
console.propertyManager = config;
boolean animals = config.getBoolean("spawn-monsters", console.spawnAnimals);
boolean monsters = config.getBoolean("spawn-monsters", console.worlds.get(0).spawnMonsters > 0);
2011-01-20 04:53:43 +01:00
console.onlineMode = config.getBoolean("online-mode", console.onlineMode);
console.spawnAnimals = config.getBoolean("spawn-animals", console.spawnAnimals);
console.pvpMode = config.getBoolean("pvp", console.pvpMode);
2011-04-21 21:40:22 +02:00
console.o = config.getBoolean("allow-flight", console.o);
2011-01-20 04:53:43 +01:00
for (WorldServer world : console.worlds) {
world.spawnMonsters = monsters ? 1 : 0;
world.setSpawnFlags(monsters, animals);
}
2011-01-28 15:18:49 +01:00
pluginManager.clearPlugins();
commandMap.clearCommands();
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-01-20 04:53:43 +01:00
}
@Override
public String toString() {
return "CraftServer{" + "serverName=" + serverName + ",serverVersion=" + serverVersion + ",protocolVersion=" + protocolVersion + '}';
}
public World createWorld(String name, World.Environment environment) {
2011-03-31 22:40:00 +02:00
return createWorld(name, environment, (new Random()).nextLong());
}
public World createWorld(String name, World.Environment environment, long seed) {
File folder = new File(name);
World world = getWorld(name);
if (world != null) {
return world;
}
if ((folder.exists()) && (!folder.isDirectory())) {
throw new IllegalArgumentException("File exists with the name '" + name + "' and isn't a folder");
}
Convertable converter = new WorldLoaderServer(folder);
if (converter.isConvertable(name)) {
getLogger().info("Converting world '" + name + "'");
converter.convert(name, new ConvertProgressUpdater(console));
}
2011-03-31 22:40:00 +02:00
WorldServer internal = new WorldServer(console, new ServerNBTManager(new File("."), name, true), name, environment == World.Environment.NETHER ? -1 : 0, seed);
2011-04-21 16:43:09 +02:00
internal.addIWorldAccess((IWorldAccess)new WorldManager(console, internal));
internal.spawnMonsters = 1;
internal.setSpawnFlags(true, true);
console.serverConfigurationManager.setPlayerFileData(internal);
console.worlds.add(internal);
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;
}
ChunkCoordinates chunkcoordinates = internal.getSpawn();
internal.chunkProviderServer.getChunkAt(chunkcoordinates.x + j >> 4, chunkcoordinates.z + k >> 4);
while (internal.doLighting()) {
;
}
}
}
pluginManager.callEvent(new WorldLoadEvent(internal.getWorld()));
return internal.getWorld();
}
public MinecraftServer getServer() {
return console;
}
public World getWorld(String name) {
return worlds.get(name.toLowerCase());
}
protected void addWorld(World world) {
worlds.put(world.getName().toLowerCase(), world);
}
public Logger getLogger() {
return MinecraftServer.log;
}
public ConsoleReader getReader() {
return console.reader;
}
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;
} else {
return null;
}
}
public void savePlayers() {
server.savePlayers();
}
2011-03-31 03:35:08 +02:00
public void configureDbConfig(ServerConfig config) {
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);
}
// Inner class to capture the output of default server commands
class CommandListener implements ICommandListener {
private final CommandSender commandSender;
private final String prefix;
CommandListener(CommandSender commandSender) {
this.commandSender = commandSender;
String[] parts = commandSender.getClass().getName().split( "\\." );
this.prefix = parts[parts.length-1];
}
public void sendMessage(String msg) {
this.commandSender.sendMessage(msg);
}
public String getName() {
return this.prefix;
}
}
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();
return true;
}
2010-12-21 17:52:15 +01:00
}