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

264 Zeilen
8.2 KiB
Java

2010-12-21 17:52:15 +01:00
package org.bukkit.craftbukkit;
import org.bukkit.command.*;
import org.bukkit.entity.Player;
2010-12-24 18:24:21 +01:00
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
2010-12-22 16:22:23 +01:00
import java.util.List;
import java.util.Map;
2010-12-24 18:24:21 +01:00
import java.util.logging.Level;
import java.util.logging.Logger;
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;
import net.minecraft.server.WorldManager;
import net.minecraft.server.WorldServer;
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;
2010-12-25 16:42:17 +01:00
import org.bukkit.plugin.SimplePluginManager;
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.scheduler.CraftScheduler;
2011-02-08 13:50:36 +01:00
import org.bukkit.event.Event.Type;
import org.bukkit.event.world.WorldEvent;
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;
private final String protocolVersion = "1.2_01";
2010-12-25 16:42:17 +01:00
private final PluginManager pluginManager = new SimplePluginManager(this);
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 HashMap<String, World>();
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
pluginManager.RegisterInterface(JavaPluginLoader.class);
Logger.getLogger("Minecraft").log(Level.INFO, "This server is running " + getName() + " version " + getVersion());
}
2011-01-17 21:50:37 +01:00
public void loadPlugins() {
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) {
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);
if (!pluginCommands.isEmpty()) {
commandMap.registerAll(plugin.getDescription().getName(), pluginCommands);
}
pluginManager.enablePlugin(plugin);
}
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() {
2011-01-29 22:50:29 +01:00
List<EntityPlayer> online = server.b;
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).a.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;
}
2011-01-17 22:55:48 +01:00
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.a.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.getMaxPlayers();
}
2011-02-06 13:30:50 +01:00
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;
}
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;
}
public boolean dispatchCommand(CommandSender sender, String commandLine) {
return commandMap.dispatch(sender, commandLine);
}
2011-01-20 04:53:43 +01:00
public void reload() {
PropertyManager config = new PropertyManager(console.options);
console.d = config;
2011-01-20 04:53:43 +01:00
boolean animals = config.a("spawn-monsters", console.m);
boolean monsters = config.a("spawn-monsters", console.worlds.get(0).k > 0);
2011-01-20 04:53:43 +01:00
console.l = config.a("online-mode", console.l);
console.m = config.a("spawn-animals", console.m);
console.n = config.a("pvp", console.n);
for (WorldServer world : console.worlds) {
world.k = monsters ? 1 : 0;
world.a(monsters, animals);
}
2011-01-28 15:18:49 +01:00
pluginManager.clearPlugins();
commandMap.clearCommands();
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) {
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");
}
WorldServer internal = new WorldServer(console, new File("."), name, environment == World.Environment.NETHER ? -1 : 0);
internal.a(new WorldManager(console, internal));
internal.k = 1;
internal.a(true, true);
console.f.a(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;
}
internal.A.d(internal.spawnX + j >> 4, internal.spawnZ + k >> 4);
while (internal.d()) {
;
}
}
}
return new CraftWorld(internal);
}
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);
2011-02-08 13:50:36 +01:00
pluginManager.callEvent(new WorldEvent(Type.WORLD_LOADED, world));
}
2010-12-21 17:52:15 +01:00
}