Update CraftBukkit to Minecraft 1.7.8

Dieser Commit ist enthalten in:
Travis Watkins 2014-04-10 20:04:38 -05:00
Ursprung 0df7555cec
Commit 8f771c7378
50 geänderte Dateien mit 1875 neuen und 716 gelöschten Zeilen

Datei anzeigen

@ -4,7 +4,7 @@
<groupId>org.bukkit</groupId> <groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId> <artifactId>craftbukkit</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.7.5-R0.1-SNAPSHOT</version> <version>1.7.8-R0.1-SNAPSHOT</version>
<name>CraftBukkit</name> <name>CraftBukkit</name>
<url>http://www.bukkit.org</url> <url>http://www.bukkit.org</url>
@ -12,8 +12,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<api.version>unknown</api.version> <api.version>unknown</api.version>
<junit.version>4.11</junit.version> <junit.version>4.11</junit.version>
<minecraft.version>1.7.5</minecraft.version> <minecraft.version>1.7.8</minecraft.version>
<minecraft_version>1_7_R2</minecraft_version> <minecraft_version>1_7_R3</minecraft_version>
<buildtag.prefix>git-Bukkit-</buildtag.prefix> <buildtag.prefix>git-Bukkit-</buildtag.prefix>
<buildtag.suffix></buildtag.suffix> <buildtag.suffix></buildtag.suffix>
</properties> </properties>

Datei anzeigen

@ -84,9 +84,12 @@ public class BlockSkull extends BlockContainer {
ItemStack itemstack = new ItemStack(Items.SKULL, 1, this.getDropData(world, i, j, k)); ItemStack itemstack = new ItemStack(Items.SKULL, 1, this.getDropData(world, i, j, k));
TileEntitySkull tileentityskull = (TileEntitySkull) world.getTileEntity(i, j, k); TileEntitySkull tileentityskull = (TileEntitySkull) world.getTileEntity(i, j, k);
if (tileentityskull.getSkullType() == 3 && tileentityskull.getExtraType() != null && tileentityskull.getExtraType().length() > 0) { if (tileentityskull.getSkullType() == 3 && tileentityskull.getGameProfile() != null) {
itemstack.setTag(new NBTTagCompound()); itemstack.setTag(new NBTTagCompound());
itemstack.getTag().setString("SkullOwner", tileentityskull.getExtraType()); NBTTagCompound nbttagcompound = new NBTTagCompound();
GameProfileSerializer.a(nbttagcompound, tileentityskull.getGameProfile());
itemstack.getTag().set("SkullOwner", nbttagcompound);
} }
this.a(world, i, j, k, itemstack); this.a(world, i, j, k, itemstack);
@ -112,9 +115,12 @@ public class BlockSkull extends BlockContainer {
ItemStack itemstack = new ItemStack(Items.SKULL, 1, this.getDropData(world, i, j, k)); ItemStack itemstack = new ItemStack(Items.SKULL, 1, this.getDropData(world, i, j, k));
TileEntitySkull tileentityskull = (TileEntitySkull) world.getTileEntity(i, j, k); TileEntitySkull tileentityskull = (TileEntitySkull) world.getTileEntity(i, j, k);
if (tileentityskull.getSkullType() == 3 && tileentityskull.getExtraType() != null && tileentityskull.getExtraType().length() > 0) { if (tileentityskull.getSkullType() == 3 && tileentityskull.getGameProfile() != null) {
itemstack.setTag(new NBTTagCompound()); itemstack.setTag(new NBTTagCompound());
itemstack.getTag().setString("SkullOwner", tileentityskull.getExtraType()); NBTTagCompound nbttagcompound = new NBTTagCompound();
GameProfileSerializer.a(nbttagcompound, tileentityskull.getGameProfile());
itemstack.getTag().set("SkullOwner", nbttagcompound);
} }
this.a(world, i, j, k, itemstack); this.a(world, i, j, k, itemstack);

Datei anzeigen

@ -8,6 +8,7 @@ import java.util.List;
import java.util.Set; import java.util.Set;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
import net.minecraft.util.com.google.common.collect.Lists;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;
@ -317,12 +318,15 @@ public class ChunkProviderServer implements IChunkProvider {
ChunkUnloadEvent event = new ChunkUnloadEvent(chunk.bukkitChunk); ChunkUnloadEvent event = new ChunkUnloadEvent(chunk.bukkitChunk);
server.getPluginManager().callEvent(event); server.getPluginManager().callEvent(event);
if (!event.isCancelled()) { if (!event.isCancelled()) {
if (chunk != null) {
chunk.removeEntities(); chunk.removeEntities();
this.saveChunk(chunk); this.saveChunk(chunk);
this.saveChunkNOP(chunk); this.saveChunkNOP(chunk);
this.chunks.remove(chunkcoordinates); // CraftBukkit
}
// this.unloadQueue.remove(olong); // this.unloadQueue.remove(olong);
// this.chunks.remove(olong.longValue()); // this.chunks.remove(olong.longValue());
this.chunks.remove(chunkcoordinates); // CraftBukkit
} }
} }
// CraftBukkit end // CraftBukkit end

Datei anzeigen

@ -1,6 +1,5 @@
package net.minecraft.server; package net.minecraft.server;
import java.io.DataInput;
import java.io.DataInputStream; import java.io.DataInputStream;
import java.io.DataOutput; import java.io.DataOutput;
import java.io.DataOutputStream; import java.io.DataOutputStream;
@ -81,7 +80,7 @@ public class ChunkRegionLoader implements IChunkLoader, IAsyncChunkSaver {
return null; return null;
} }
nbttagcompound = NBTCompressedStreamTools.a((DataInput) datainputstream); nbttagcompound = NBTCompressedStreamTools.a(datainputstream);
} }
return this.a(world, i, j, nbttagcompound); return this.a(world, i, j, nbttagcompound);

Datei anzeigen

@ -23,14 +23,14 @@ import org.bukkit.event.server.ServerCommandEvent;
public class DedicatedServer extends MinecraftServer implements IMinecraftServer { public class DedicatedServer extends MinecraftServer implements IMinecraftServer {
private static final Logger h = LogManager.getLogger(); private static final Logger i = LogManager.getLogger();
private final List i = Collections.synchronizedList(new ArrayList()); private final List j = Collections.synchronizedList(new ArrayList());
private RemoteStatusListener j; private RemoteStatusListener k;
private RemoteControlListener k; private RemoteControlListener l;
public PropertyManager propertyManager; // CraftBukkit - private -> public public PropertyManager propertyManager; // CraftBukkit - private -> public
private boolean generateStructures; private boolean generateStructures;
private EnumGamemode n; private EnumGamemode o;
private boolean o; private boolean p;
// CraftBukkit start - Signature changed // CraftBukkit start - Signature changed
public DedicatedServer(joptsimple.OptionSet options) { public DedicatedServer(joptsimple.OptionSet options) {
@ -67,14 +67,14 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
System.setErr(new PrintStream(new LoggerOutputStream(logger, Level.WARN), true)); System.setErr(new PrintStream(new LoggerOutputStream(logger, Level.WARN), true));
// CraftBukkit end // CraftBukkit end
h.info("Starting minecraft server version 1.7.5"); i.info("Starting minecraft server version 1.7.8");
if (Runtime.getRuntime().maxMemory() / 1024L / 1024L < 512L) { if (Runtime.getRuntime().maxMemory() / 1024L / 1024L < 512L) {
h.warn("To start the server with more ram, launch it as \"java -Xmx1024M -Xms1024M -jar minecraft_server.jar\""); i.warn("To start the server with more ram, launch it as \"java -Xmx1024M -Xms1024M -jar minecraft_server.jar\"");
} }
h.info("Loading properties"); i.info("Loading properties");
this.propertyManager = new PropertyManager(this.options); // CraftBukkit - CLI argument support this.propertyManager = new PropertyManager(this.options); // CraftBukkit - CLI argument support
if (this.M()) { if (this.N()) {
this.c("127.0.0.1"); this.c("127.0.0.1");
} else { } else {
this.setOnlineMode(this.propertyManager.getBoolean("online-mode", true)); this.setOnlineMode(this.propertyManager.getBoolean("online-mode", true));
@ -96,47 +96,54 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
} }
this.generateStructures = this.propertyManager.getBoolean("generate-structures", true); this.generateStructures = this.propertyManager.getBoolean("generate-structures", true);
int i = this.propertyManager.getInt("gamemode", EnumGamemode.SURVIVAL.a()); int gamemode = this.propertyManager.getInt("gamemode", EnumGamemode.SURVIVAL.a()); // CraftBukkit - Unique name to avoid stomping on logger
this.n = WorldSettings.a(i); this.o = WorldSettings.a(gamemode); // CraftBukkit - Use new name
h.info("Default game type: " + this.n); i.info("Default game type: " + this.o);
InetAddress inetaddress = null; InetAddress inetaddress = null;
if (this.getServerIp().length() > 0) { if (this.getServerIp().length() > 0) {
inetaddress = InetAddress.getByName(this.getServerIp()); inetaddress = InetAddress.getByName(this.getServerIp());
} }
if (this.K() < 0) { if (this.L() < 0) {
this.setPort(this.propertyManager.getInt("server-port", 25565)); this.setPort(this.propertyManager.getInt("server-port", 25565));
} }
h.info("Generating keypair"); i.info("Generating keypair");
this.a(MinecraftEncryption.b()); this.a(MinecraftEncryption.b());
h.info("Starting Minecraft server on " + (this.getServerIp().length() == 0 ? "*" : this.getServerIp()) + ":" + this.K()); i.info("Starting Minecraft server on " + (this.getServerIp().length() == 0 ? "*" : this.getServerIp()) + ":" + this.L());
try { try {
this.ah().a(inetaddress, this.K()); this.ai().a(inetaddress, this.L());
} catch (Throwable ioexception) { // CraftBukkit - IOException -> Throwable } catch (Throwable ioexception) { // CraftBukkit - IOException -> Throwable
h.warn("**** FAILED TO BIND TO PORT!"); i.warn("**** FAILED TO BIND TO PORT!");
h.warn("The exception was: {}", new Object[] { ioexception.toString()}); i.warn("The exception was: {}", new Object[] { ioexception.toString()});
h.warn("Perhaps a server is already running on that port?"); i.warn("Perhaps a server is already running on that port?");
return false; return false;
} }
this.a((PlayerList) (new DedicatedPlayerList(this))); // CraftBukkit this.a((PlayerList) (new DedicatedPlayerList(this))); // CraftBukkit
if (!this.getOnlineMode()) { if (!this.getOnlineMode()) {
h.warn("**** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!"); i.warn("**** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!");
h.warn("The server will make no attempt to authenticate usernames. Beware."); i.warn("The server will make no attempt to authenticate usernames. Beware.");
h.warn("While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose."); i.warn("While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.");
h.warn("To change this, set \"online-mode\" to \"true\" in the server.properties file."); i.warn("To change this, set \"online-mode\" to \"true\" in the server.properties file.");
} }
if (this.aE()) {
this.getUserCache().c();
}
if (!NameReferencingFileConverter.a(this.propertyManager)) {
return false;
} else {
// this.a((PlayerList) (new DedicatedPlayerList(this))); // CraftBukkit - moved up // this.a((PlayerList) (new DedicatedPlayerList(this))); // CraftBukkit - moved up
this.convertable = new WorldLoaderServer(server.getWorldContainer()); // CraftBukkit - moved from MinecraftServer constructor this.convertable = new WorldLoaderServer(server.getWorldContainer()); // CraftBukkit - moved from MinecraftServer constructor
long j = System.nanoTime(); long j = System.nanoTime();
if (this.N() == null) { if (this.O() == null) {
this.k(this.propertyManager.getString("level-name", "world")); this.k(this.propertyManager.getString("level-name", "world"));
} }
@ -163,7 +170,7 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
worldtype = WorldType.NORMAL; worldtype = WorldType.NORMAL;
} }
this.as(); this.at();
this.getEnableCommandBlock(); this.getEnableCommandBlock();
this.l(); this.l();
this.getSnooperEnabled(); this.getSnooperEnabled();
@ -171,37 +178,40 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
this.c((this.getMaxBuildHeight() + 8) / 16 * 16); this.c((this.getMaxBuildHeight() + 8) / 16 * 16);
this.c(MathHelper.a(this.getMaxBuildHeight(), 64, 256)); this.c(MathHelper.a(this.getMaxBuildHeight(), 64, 256));
this.propertyManager.a("max-build-height", Integer.valueOf(this.getMaxBuildHeight())); this.propertyManager.a("max-build-height", Integer.valueOf(this.getMaxBuildHeight()));
h.info("Preparing level \"" + this.M() + "\""); i.info("Preparing level \"" + this.O() + "\"");
this.a(this.N(), this.N(), k, worldtype, s2); this.a(this.O(), this.O(), k, worldtype, s2);
long i1 = System.nanoTime() - j; long i1 = System.nanoTime() - j;
String s3 = String.format("%.3fs", new Object[] { Double.valueOf((double) i1 / 1.0E9D)}); String s3 = String.format("%.3fs", new Object[] { Double.valueOf((double) i1 / 1.0E9D)});
h.info("Done (" + s3 + ")! For help, type \"help\" or \"?\""); i.info("Done (" + s3 + ")! For help, type \"help\" or \"?\"");
if (this.propertyManager.getBoolean("enable-query", false)) { if (this.propertyManager.getBoolean("enable-query", false)) {
h.info("Starting GS4 status listener"); i.info("Starting GS4 status listener");
this.j = new RemoteStatusListener(this); this.k = new RemoteStatusListener(this);
this.j.a(); this.k.a();
} }
if (this.propertyManager.getBoolean("enable-rcon", false)) { if (this.propertyManager.getBoolean("enable-rcon", false)) {
h.info("Starting remote control listener"); i.info("Starting remote control listener");
this.k = new RemoteControlListener(this); this.l = new RemoteControlListener(this);
this.k.a(); this.l.a();
this.remoteConsole = new org.bukkit.craftbukkit.command.CraftRemoteConsoleCommandSender(); // CraftBukkit this.remoteConsole = new org.bukkit.craftbukkit.command.CraftRemoteConsoleCommandSender(); // CraftBukkit
} }
// CraftBukkit start // CraftBukkit start
if (this.server.getBukkitSpawnRadius() > -1) { if (this.server.getBukkitSpawnRadius() > -1) {
h.info("'settings.spawn-radius' in bukkit.yml has been moved to 'spawn-protection' in server.properties. I will move your config for you."); i.info("'settings.spawn-radius' in bukkit.yml has been moved to 'spawn-protection' in server.properties. I will move your config for you.");
this.propertyManager.properties.remove("spawn-protection"); this.propertyManager.properties.remove("spawn-protection");
this.propertyManager.getInt("spawn-protection", this.server.getBukkitSpawnRadius()); this.propertyManager.getInt("spawn-protection", this.server.getBukkitSpawnRadius());
this.server.removeBukkitSpawnRadius(); this.server.removeBukkitSpawnRadius();
this.propertyManager.savePropertiesFile(); this.propertyManager.savePropertiesFile();
} }
// CraftBukkit end
return true; return true;
} }
}
// CraftBukkit start
public PropertyManager getPropertyManager() { public PropertyManager getPropertyManager() {
return this.propertyManager; return this.propertyManager;
} }
@ -212,7 +222,7 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
} }
public EnumGamemode getGamemode() { public EnumGamemode getGamemode() {
return this.n; return this.o;
} }
public EnumDifficulty getDifficulty() { public EnumDifficulty getDifficulty() {
@ -225,7 +235,7 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
protected void a(CrashReport crashreport) { protected void a(CrashReport crashreport) {
while (this.isRunning()) { while (this.isRunning()) {
this.ax(); this.aB();
try { try {
Thread.sleep(10L); Thread.sleep(10L);
@ -246,9 +256,9 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
System.exit(0); System.exit(0);
} }
public void v() { // CraftBukkit - protected -> public public void v() { // CraftBukkit - protected -> public (decompile error?)
super.v(); super.v();
this.ax(); this.aB();
} }
public boolean getAllowNether() { public boolean getAllowNether() {
@ -260,8 +270,8 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
} }
public void a(MojangStatisticsGenerator mojangstatisticsgenerator) { public void a(MojangStatisticsGenerator mojangstatisticsgenerator) {
mojangstatisticsgenerator.a("whitelist_enabled", Boolean.valueOf(this.ay().getHasWhitelist())); mojangstatisticsgenerator.a("whitelist_enabled", Boolean.valueOf(this.aC().getHasWhitelist()));
mojangstatisticsgenerator.a("whitelist_count", Integer.valueOf(this.ay().getWhitelisted().size())); mojangstatisticsgenerator.a("whitelist_count", Integer.valueOf(this.aC().getWhitelisted().length));
super.a(mojangstatisticsgenerator); super.a(mojangstatisticsgenerator);
} }
@ -270,12 +280,12 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
} }
public void issueCommand(String s, ICommandListener icommandlistener) { public void issueCommand(String s, ICommandListener icommandlistener) {
this.i.add(new ServerCommand(s, icommandlistener)); this.j.add(new ServerCommand(s, icommandlistener));
} }
public void ax() { public void aB() {
while (!this.i.isEmpty()) { while (!this.j.isEmpty()) {
ServerCommand servercommand = (ServerCommand) this.i.remove(0); ServerCommand servercommand = (ServerCommand) this.j.remove(0);
// CraftBukkit start - ServerCommand for preprocessing // CraftBukkit start - ServerCommand for preprocessing
ServerCommandEvent event = new ServerCommandEvent(this.console, servercommand.command); ServerCommandEvent event = new ServerCommandEvent(this.console, servercommand.command);
@ -288,11 +298,11 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
} }
} }
public boolean W() { public boolean X() {
return true; return true;
} }
public DedicatedPlayerList ay() { public DedicatedPlayerList aC() {
return (DedicatedPlayerList) super.getPlayerList(); return (DedicatedPlayerList) super.getPlayerList();
} }
@ -322,13 +332,13 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
return file1 != null ? file1.getAbsolutePath() : "No settings file"; return file1 != null ? file1.getAbsolutePath() : "No settings file";
} }
public void az() { public void aD() {
ServerGUI.a(this); ServerGUI.a(this);
this.o = true; this.p = true;
} }
public boolean aj() { public boolean ak() {
return this.o; return this.p;
} }
public String a(EnumGamemode enumgamemode, boolean flag) { public String a(EnumGamemode enumgamemode, boolean flag) {
@ -346,9 +356,9 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
public boolean a(World world, int i, int j, int k, EntityHuman entityhuman) { public boolean a(World world, int i, int j, int k, EntityHuman entityhuman) {
if (world.worldProvider.dimension != 0) { if (world.worldProvider.dimension != 0) {
return false; return false;
} else if (this.ay().getOPs().isEmpty()) { } else if (this.aC().getOPs().d()) {
return false; return false;
} else if (this.ay().isOp(entityhuman.getName())) { } else if (this.aC().isOp(entityhuman.getProfile())) {
return false; return false;
} else if (this.getSpawnProtection() <= 0) { } else if (this.getSpawnProtection() <= 0) {
return false; return false;
@ -376,14 +386,89 @@ public class DedicatedServer extends MinecraftServer implements IMinecraftServer
return this.propertyManager.getBoolean("broadcast-rcon-to-ops", true); return this.propertyManager.getBoolean("broadcast-rcon-to-ops", true);
} }
public boolean as() { public boolean at() {
return this.propertyManager.getBoolean("announce-player-achievements", true); return this.propertyManager.getBoolean("announce-player-achievements", true);
} }
public PlayerList getPlayerList() {
return this.ay(); protected boolean aE() {
boolean flag = false;
int i;
for (i = 0; !flag && i <= 2; ++i) {
if (i > 0) {
// CraftBukkit - Fix decompiler stomping on field
DedicatedServer.i.warn("Encountered a problem while converting the user banlist, retrying in a few seconds");
this.aG();
} }
static Logger aA() { flag = NameReferencingFileConverter.a((MinecraftServer) this);
return h; }
boolean flag1 = false;
for (i = 0; !flag1 && i <= 2; ++i) {
if (i > 0) {
// CraftBukkit - Fix decompiler stomping on field
DedicatedServer.i.warn("Encountered a problem while converting the ip banlist, retrying in a few seconds");
this.aG();
}
flag1 = NameReferencingFileConverter.b((MinecraftServer) this);
}
boolean flag2 = false;
for (i = 0; !flag2 && i <= 2; ++i) {
if (i > 0) {
// CraftBukkit - Fix decompiler stomping on field
DedicatedServer.i.warn("Encountered a problem while converting the op list, retrying in a few seconds");
this.aG();
}
flag2 = NameReferencingFileConverter.c((MinecraftServer) this);
}
boolean flag3 = false;
for (i = 0; !flag3 && i <= 2; ++i) {
if (i > 0) {
// CraftBukkit - Fix decompiler stomping on field
DedicatedServer.i.warn("Encountered a problem while converting the whitelist, retrying in a few seconds");
this.aG();
}
flag3 = NameReferencingFileConverter.d((MinecraftServer) this);
}
boolean flag4 = false;
for (i = 0; !flag4 && i <= 2; ++i) {
if (i > 0) {
// CraftBukkit - Fix decompiler stomping on field
DedicatedServer.i.warn("Encountered a problem while converting the player save files, retrying in a few seconds");
this.aG();
}
flag4 = NameReferencingFileConverter.a(this, this.propertyManager);
}
return flag || flag1 || flag2 || flag3 || flag4;
}
private void aG() {
try {
Thread.sleep(5000L);
} catch (InterruptedException interruptedexception) {
;
}
}
public PlayerList getPlayerList() {
return this.aC();
}
static Logger aF() {
return i;
} }
} }

Datei anzeigen

@ -280,7 +280,7 @@ public class EntityArrow extends Entity implements IProjectile {
this.d = movingobjectposition.b; this.d = movingobjectposition.b;
this.e = movingobjectposition.c; this.e = movingobjectposition.c;
this.f = movingobjectposition.d; this.f = movingobjectposition.d;
this.g = this.world.getType(d, e, f); // CraftBukkit - Get correct block for storage this.g = this.world.getType(this.d, this.e, this.f);
this.h = this.world.getData(this.d, this.e, this.f); this.h = this.world.getData(this.d, this.e, this.f);
this.motX = (double) ((float) (movingobjectposition.pos.a - this.locX)); this.motX = (double) ((float) (movingobjectposition.pos.a - this.locX));
this.motY = (double) ((float) (movingobjectposition.pos.b - this.locY)); this.motY = (double) ((float) (movingobjectposition.pos.b - this.locY));

Datei anzeigen

@ -59,7 +59,7 @@ public class EntityChicken extends EntityAnimal {
} }
this.bp += this.bt * 2.0F; this.bp += this.bt * 2.0F;
if (!this.isBaby() && !this.world.isStatic && --this.bu <= 0) { if (!this.world.isStatic && !this.isBaby() && !this.bZ() && --this.bu <= 0) {
this.makeSound("mob.chicken.plop", 1.0F, (this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F); this.makeSound("mob.chicken.plop", 1.0F, (this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F);
this.a(Items.EGG, 1); this.a(Items.EGG, 1);
this.bu = this.random.nextInt(6000) + 6000; this.bu = this.random.nextInt(6000) + 6000;

Datei anzeigen

@ -137,11 +137,11 @@ public class EntityHorse extends EntityAnimal implements IInventoryListener {
return this.cb(); return this.cb();
} }
public String getOwnerName() { public String getOwnerUUID() {
return this.datawatcher.getString(21); return this.datawatcher.getString(21);
} }
public void setOwnerName(String s) { public void setOwnerUUID(String s) {
this.datawatcher.watch(21, s); this.datawatcher.watch(21, s);
} }
@ -875,7 +875,7 @@ public class EntityHorse extends EntityAnimal implements IInventoryListener {
} }
public boolean h(EntityHuman entityhuman) { public boolean h(EntityHuman entityhuman) {
this.setOwnerName(entityhuman.getName()); this.setOwnerUUID(entityhuman.getUniqueID().toString());
this.setTame(true); this.setTame(true);
return true; return true;
} }
@ -958,7 +958,7 @@ public class EntityHorse extends EntityAnimal implements IInventoryListener {
nbttagcompound.setInt("Variant", this.getVariant()); nbttagcompound.setInt("Variant", this.getVariant());
nbttagcompound.setInt("Temper", this.getTemper()); nbttagcompound.setInt("Temper", this.getTemper());
nbttagcompound.setBoolean("Tame", this.isTame()); nbttagcompound.setBoolean("Tame", this.isTame());
nbttagcompound.setString("OwnerName", this.getOwnerName()); nbttagcompound.setString("OwnerUUID", this.getOwnerUUID());
nbttagcompound.setInt("Bukkit.MaxDomestication", this.maxDomestication); // CraftBukkit nbttagcompound.setInt("Bukkit.MaxDomestication", this.maxDomestication); // CraftBukkit
if (this.hasChest()) { if (this.hasChest()) {
NBTTagList nbttaglist = new NBTTagList(); NBTTagList nbttaglist = new NBTTagList();
@ -997,8 +997,8 @@ public class EntityHorse extends EntityAnimal implements IInventoryListener {
this.setVariant(nbttagcompound.getInt("Variant")); this.setVariant(nbttagcompound.getInt("Variant"));
this.setTemper(nbttagcompound.getInt("Temper")); this.setTemper(nbttagcompound.getInt("Temper"));
this.setTame(nbttagcompound.getBoolean("Tame")); this.setTame(nbttagcompound.getBoolean("Tame"));
if (nbttagcompound.hasKeyOfType("OwnerName", 8)) { if (nbttagcompound.hasKeyOfType("OwnerUUID", 8)) {
this.setOwnerName(nbttagcompound.getString("OwnerName")); this.setOwnerUUID(nbttagcompound.getString("OwnerUUID"));
} }
// CraftBukkit start // CraftBukkit start
if (nbttagcompound.hasKey("Bukkit.MaxDomestication")) { if (nbttagcompound.hasKey("Bukkit.MaxDomestication")) {

Datei anzeigen

@ -1563,7 +1563,7 @@ public abstract class EntityHuman extends EntityLiving implements ICommandListen
} }
public static UUID a(GameProfile gameprofile) { public static UUID a(GameProfile gameprofile) {
UUID uuid = UtilUUID.b(gameprofile.getId()); UUID uuid = gameprofile.getId();
if (uuid == null) { if (uuid == null) {
uuid = UUID.nameUUIDFromBytes(("OfflinePlayer:" + gameprofile.getName()).getBytes(Charsets.UTF_8)); uuid = UUID.nameUUIDFromBytes(("OfflinePlayer:" + gameprofile.getName()).getBytes(Charsets.UTF_8));

Datei anzeigen

@ -804,7 +804,7 @@ public abstract class EntityInsentient extends EntityLiving {
return true; return true;
} }
if (entityhuman.getName().equalsIgnoreCase(((EntityTameableAnimal) this).getOwnerName())) { if (((EntityTameableAnimal) this).e(entityhuman)) {
// CraftBukkit start - fire PlayerLeashEntityEvent // CraftBukkit start - fire PlayerLeashEntityEvent
if (CraftEventFactory.callPlayerLeashEntityEvent(this, entityhuman, entityhuman).isCancelled()) { if (CraftEventFactory.callPlayerLeashEntityEvent(this, entityhuman, entityhuman).isCancelled()) {
((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutAttachEntity(1, this, this.getLeashHolder())); ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutAttachEntity(1, this, this.getLeashHolder()));

Datei anzeigen

@ -114,7 +114,7 @@ public class EntityOcelot extends EntityTameableAnimal {
ItemStack itemstack = entityhuman.inventory.getItemInHand(); ItemStack itemstack = entityhuman.inventory.getItemInHand();
if (this.isTamed()) { if (this.isTamed()) {
if (entityhuman.getName().equalsIgnoreCase(this.getOwnerName()) && !this.world.isStatic && !this.c(itemstack)) { if (this.e(entityhuman) && !this.world.isStatic && !this.c(itemstack)) {
this.bp.setSitting(!this.isSitting()); this.bp.setSitting(!this.isSitting());
} }
} else if (this.bq.f() && itemstack != null && itemstack.getItem() == Items.RAW_FISH && entityhuman.f(this) < 9.0D) { } else if (this.bq.f() && itemstack != null && itemstack.getItem() == Items.RAW_FISH && entityhuman.f(this) < 9.0D) {
@ -131,7 +131,7 @@ public class EntityOcelot extends EntityTameableAnimal {
if (this.random.nextInt(3) == 0 && !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityTameEvent(this, entityhuman).isCancelled()) { if (this.random.nextInt(3) == 0 && !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityTameEvent(this, entityhuman).isCancelled()) {
this.setTamed(true); this.setTamed(true);
this.setCatType(1 + this.world.random.nextInt(3)); this.setCatType(1 + this.world.random.nextInt(3));
this.setOwnerName(entityhuman.getName()); this.setOwnerUUID(entityhuman.getUniqueID().toString());
this.i(true); this.i(true);
this.bp.setSitting(true); this.bp.setSitting(true);
this.world.broadcastEntityEffect(this, (byte) 7); this.world.broadcastEntityEffect(this, (byte) 7);
@ -151,7 +151,7 @@ public class EntityOcelot extends EntityTameableAnimal {
EntityOcelot entityocelot = new EntityOcelot(this.world); EntityOcelot entityocelot = new EntityOcelot(this.world);
if (this.isTamed()) { if (this.isTamed()) {
entityocelot.setOwnerName(this.getOwnerName()); entityocelot.setOwnerUUID(this.getOwnerUUID());
entityocelot.setTamed(true); entityocelot.setTamed(true);
entityocelot.setCatType(this.getCatType()); entityocelot.setCatType(this.getCatType());
} }

Datei anzeigen

@ -82,7 +82,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
} }
this.server = minecraftserver; this.server = minecraftserver;
this.bO = minecraftserver.getPlayerList().i(this.getName()); this.bO = minecraftserver.getPlayerList().a((EntityHuman) this);
this.W = 0.0F; this.W = 0.0F;
this.height = 0.0F; this.height = 0.0F;
this.setPositionRotation((double) i + 0.5D, (double) k, (double) j + 0.5D, 0.0F, 0.0F); this.setPositionRotation((double) i + 0.5D, (double) k, (double) j + 0.5D, 0.0F, 0.0F);
@ -235,7 +235,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
} }
} }
if (this.bX > 0L && this.server.getIdleTimeout() > 0 && MinecraftServer.aq() - this.bX > (long) (this.server.getIdleTimeout() * 1000 * 60)) { if (this.bX > 0L && this.server.getIdleTimeout() > 0 && MinecraftServer.ar() - this.bX > (long) (this.server.getIdleTimeout() * 1000 * 60)) {
this.playerConnection.disconnect("You have been idle for too long!"); this.playerConnection.disconnect("You have been idle for too long!");
} }
} }
@ -428,7 +428,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
return false; return false;
} else { } else {
// CraftBukkit - this.server.getPvP() -> this.world.pvpMode // CraftBukkit - this.server.getPvP() -> this.world.pvpMode
boolean flag = this.server.W() && this.world.pvpMode && "fall".equals(damagesource.translationIndex); boolean flag = this.server.X() && this.world.pvpMode && "fall".equals(damagesource.translationIndex);
if (!flag && this.invulnerableTicks > 0 && damagesource != DamageSource.OUT_OF_WORLD) { if (!flag && this.invulnerableTicks > 0 && damagesource != DamageSource.OUT_OF_WORLD) {
return false; return false;
@ -923,7 +923,19 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
} }
public boolean a(int i, String s) { public boolean a(int i, String s) {
return "seed".equals(s) && !this.server.W() ? true : (!"tell".equals(s) && !"help".equals(s) && !"me".equals(s) ? (this.server.getPlayerList().isOp(this.getName()) ? this.server.l() >= i : false) : true); if ("seed".equals(s) && !this.server.X()) {
return true;
} else if (!"tell".equals(s) && !"help".equals(s) && !"me".equals(s)) {
if (this.server.getPlayerList().isOp(this.getProfile())) {
OpListEntry oplistentry = (OpListEntry) this.server.getPlayerList().getOPs().get(this.getProfile());
return oplistentry != null ? oplistentry.a() >= i : this.server.l() >= i;
} else {
return false;
}
} else {
return true;
}
} }
public String s() { public String s() {
@ -944,7 +956,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
this.bV = packetplayinsettings.e(); this.bV = packetplayinsettings.e();
this.bW = packetplayinsettings.f(); this.bW = packetplayinsettings.f();
if (this.server.M() && this.server.L().equals(this.getName())) { if (this.server.N() && this.server.M().equals(this.getName())) {
this.server.a(packetplayinsettings.g()); this.server.a(packetplayinsettings.g());
} }
@ -964,7 +976,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
} }
public void v() { public void v() {
this.bX = MinecraftServer.aq(); this.bX = MinecraftServer.ar();
} }
public ServerStatisticManager getStatisticManager() { public ServerStatisticManager getStatisticManager() {

Datei anzeigen

@ -19,7 +19,7 @@ public class EntityTracker {
public EntityTracker(WorldServer worldserver) { public EntityTracker(WorldServer worldserver) {
this.world = worldserver; this.world = worldserver;
this.e = worldserver.getMinecraftServer().getPlayerList().a(); this.e = worldserver.getMinecraftServer().getPlayerList().d();
} }
public void track(Entity entity) { public void track(Entity entity) {

Datei anzeigen

@ -231,7 +231,7 @@ public class EntityWolf extends EntityTameableAnimal {
} }
} }
if (entityhuman.getName().equalsIgnoreCase(this.getOwnerName()) && !this.world.isStatic && !this.c(itemstack)) { if (this.e(entityhuman) && !this.world.isStatic && !this.c(itemstack)) {
this.bp.setSitting(!this.isSitting()); this.bp.setSitting(!this.isSitting());
this.bc = false; this.bc = false;
this.setPathEntity((PathEntity) null); this.setPathEntity((PathEntity) null);
@ -255,7 +255,7 @@ public class EntityWolf extends EntityTameableAnimal {
this.setGoalTarget((EntityLiving) null); this.setGoalTarget((EntityLiving) null);
this.bp.setSitting(true); this.bp.setSitting(true);
this.setHealth(this.getMaxHealth()); // CraftBukkit - 20.0 -> getMaxHealth() this.setHealth(this.getMaxHealth()); // CraftBukkit - 20.0 -> getMaxHealth()
this.setOwnerName(entityhuman.getName()); this.setOwnerUUID(entityhuman.getUniqueID().toString());
this.i(true); this.i(true);
this.world.broadcastEntityEffect(this, (byte) 7); this.world.broadcastEntityEffect(this, (byte) 7);
} else { } else {
@ -302,10 +302,10 @@ public class EntityWolf extends EntityTameableAnimal {
public EntityWolf b(EntityAgeable entityageable) { public EntityWolf b(EntityAgeable entityageable) {
EntityWolf entitywolf = new EntityWolf(this.world); EntityWolf entitywolf = new EntityWolf(this.world);
String s = this.getOwnerName(); String s = this.getOwnerUUID();
if (s != null && s.trim().length() > 0) { if (s != null && s.trim().length() > 0) {
entitywolf.setOwnerName(s); entitywolf.setOwnerUUID(s);
entitywolf.setTamed(true); entitywolf.setTamed(true);
} }

Datei anzeigen

@ -327,7 +327,7 @@ public class EntityZombie extends EntityMonster {
public void a(EntityLiving entityliving) { public void a(EntityLiving entityliving) {
super.a(entityliving); super.a(entityliving);
if ((this.world.difficulty == EnumDifficulty.NORMAL || this.world.difficulty == EnumDifficulty.HARD) && entityliving instanceof EntityVillager) { if ((this.world.difficulty == EnumDifficulty.NORMAL || this.world.difficulty == EnumDifficulty.HARD) && entityliving instanceof EntityVillager) {
if (this.random.nextBoolean()) { if (this.world.difficulty != EnumDifficulty.HARD && this.random.nextBoolean()) {
return; return;
} }

Datei anzeigen

@ -0,0 +1,79 @@
package net.minecraft.server;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import net.minecraft.util.com.google.gson.JsonObject;
public abstract class ExpirableListEntry extends JsonListEntry {
public static final SimpleDateFormat a = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z");
protected final Date b;
protected final String c;
protected final Date d;
protected final String e;
public ExpirableListEntry(Object object, Date date, String s, Date date1, String s1) {
super(object);
this.b = date == null ? new Date() : date;
this.c = s == null ? "(Unknown)" : s;
this.d = date1;
this.e = s1 == null ? "Banned by an operator." : s1;
}
protected ExpirableListEntry(Object object, JsonObject jsonobject) {
super(object, jsonobject);
Date date;
try {
date = jsonobject.has("created") ? a.parse(jsonobject.get("created").getAsString()) : new Date();
} catch (ParseException parseexception) {
date = new Date();
}
this.b = date;
this.c = jsonobject.has("source") ? jsonobject.get("source").getAsString() : "(Unknown)";
Date date1;
try {
date1 = jsonobject.has("expires") ? a.parse(jsonobject.get("expires").getAsString()) : null;
} catch (ParseException parseexception1) {
date1 = null;
}
this.d = date1;
this.e = jsonobject.has("reason") ? jsonobject.get("reason").getAsString() : "Banned by an operator.";
}
public Date getExpires() {
return this.d;
}
public String getReason() {
return this.e;
}
boolean e() {
return this.d == null ? false : this.d.before(new Date());
}
protected void a(JsonObject jsonobject) {
jsonobject.addProperty("created", a.format(this.b));
jsonobject.addProperty("source", this.c);
jsonobject.addProperty("expires", this.d == null ? "forever" : a.format(this.d));
jsonobject.addProperty("reason", this.e);
}
// CraftBukkit start
public String getSource() {
return this.c;
}
public Date getCreated() {
return this.b;
}
// CraftBukkit end
}

Datei anzeigen

@ -0,0 +1,22 @@
package net.minecraft.server;
// CraftBukkit - Imported because it's package private
class FileConversionException extends RuntimeException {
private FileConversionException(String s, Throwable throwable) {
super(s, throwable);
}
private FileConversionException(String s) {
super(s);
}
FileConversionException(String s, PredicateEmptyList predicateemptylist) {
this(s);
}
FileConversionException(String s, Throwable throwable, PredicateEmptyList predicateemptylist) {
this(s, throwable);
}
}

Datei anzeigen

@ -63,12 +63,12 @@ public class HandshakeListener implements PacketHandshakingInListener {
} }
// CraftBukkit end // CraftBukkit end
if (packethandshakinginsetprotocol.d() > 4) { if (packethandshakinginsetprotocol.d() > 5) {
chatcomponenttext = new ChatComponentText("Outdated server! I\'m still on 1.7.5"); chatcomponenttext = new ChatComponentText("Outdated server! I\'m still on 1.7.8");
this.b.handle(new PacketLoginOutDisconnect(chatcomponenttext), new GenericFutureListener[0]); this.b.handle(new PacketLoginOutDisconnect(chatcomponenttext), new GenericFutureListener[0]);
this.b.close(chatcomponenttext); this.b.close(chatcomponenttext);
} else if (packethandshakinginsetprotocol.d() < 4) { } else if (packethandshakinginsetprotocol.d() < 5) {
chatcomponenttext = new ChatComponentText("Outdated client! Please use 1.7.5"); chatcomponenttext = new ChatComponentText("Outdated client! Please use 1.7.8");
this.b.handle(new PacketLoginOutDisconnect(chatcomponenttext), new GenericFutureListener[0]); this.b.handle(new PacketLoginOutDisconnect(chatcomponenttext), new GenericFutureListener[0]);
this.b.close(chatcomponenttext); this.b.close(chatcomponenttext);
} else { } else {

Datei anzeigen

@ -1,5 +1,9 @@
package net.minecraft.server; package net.minecraft.server;
import java.util.UUID;
import net.minecraft.util.com.mojang.authlib.GameProfile;
public class ItemSkull extends Item { public class ItemSkull extends Item {
private static final String[] b = new String[] { "skeleton", "wither", "zombie", "char", "creeper"}; private static final String[] b = new String[] { "skeleton", "wither", "zombie", "char", "creeper"};
@ -38,11 +42,7 @@ public class ItemSkull extends Item {
++i; ++i;
} }
if (!entityhuman.a(i, j, k, l, itemstack)) { if (!world.isStatic) {
return false;
} else if (!Blocks.SKULL.canPlace(world, i, j, k)) {
return false;
} else {
// CraftBukkit start - Handle in ItemBlock // CraftBukkit start - Handle in ItemBlock
// world.setTypeAndData(i, j, k, Blocks.SKULL, l, 2); // world.setTypeAndData(i, j, k, Blocks.SKULL, l, 2);
if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j, k, Blocks.SKULL, l, clickedX, clickedY, clickedZ)) { if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j, k, Blocks.SKULL, l, clickedX, clickedY, clickedZ)) {
@ -59,20 +59,32 @@ public class ItemSkull extends Item {
TileEntity tileentity = world.getTileEntity(i, j, k); TileEntity tileentity = world.getTileEntity(i, j, k);
if (tileentity != null && tileentity instanceof TileEntitySkull) { if (tileentity != null && tileentity instanceof TileEntitySkull) {
String s = ""; if (itemstack.getData() == 3) {
GameProfile gameprofile = null;
if (itemstack.hasTag() && itemstack.getTag().hasKeyOfType("SkullOwner", 8)) { if (itemstack.hasTag()) {
s = itemstack.getTag().getString("SkullOwner"); NBTTagCompound nbttagcompound = itemstack.getTag();
if (nbttagcompound.hasKeyOfType("SkullOwner", 10)) {
gameprofile = GameProfileSerializer.a(nbttagcompound.getCompound("SkullOwner"));
} else if (nbttagcompound.hasKeyOfType("SkullOwner", 8) && nbttagcompound.getString("SkullOwner").length() > 0) {
gameprofile = new GameProfile((UUID) null, nbttagcompound.getString("SkullOwner"));
}
}
((TileEntitySkull) tileentity).setGameProfile(gameprofile);
} else {
((TileEntitySkull) tileentity).setSkullType(itemstack.getData());
} }
((TileEntitySkull) tileentity).setSkullType(itemstack.getData(), s);
((TileEntitySkull) tileentity).setRotation(i1); ((TileEntitySkull) tileentity).setRotation(i1);
((BlockSkull) Blocks.SKULL).a(world, i, j, k, (TileEntitySkull) tileentity); ((BlockSkull) Blocks.SKULL).a(world, i, j, k, (TileEntitySkull) tileentity);
} }
--itemstack.count; --itemstack.count;
return true;
} }
return true;
} }
} }
@ -91,6 +103,16 @@ public class ItemSkull extends Item {
} }
public String n(ItemStack itemstack) { public String n(ItemStack itemstack) {
return itemstack.getData() == 3 && itemstack.hasTag() && itemstack.getTag().hasKeyOfType("SkullOwner", 8) ? LocaleI18n.get("item.skull.player.name", new Object[] { itemstack.getTag().getString("SkullOwner")}) : super.n(itemstack); if (itemstack.getData() == 3 && itemstack.hasTag()) {
if (itemstack.getTag().hasKeyOfType("SkullOwner", 10)) {
return LocaleI18n.get("item.skull.player.name", new Object[] { GameProfileSerializer.a(itemstack.getTag().getCompound("SkullOwner")).getName()});
}
if (itemstack.getTag().hasKeyOfType("SkullOwner", 8)) {
return LocaleI18n.get("item.skull.player.name", new Object[] { itemstack.getTag().getString("SkullOwner")});
}
}
return super.n(itemstack);
} }
} }

Datei anzeigen

@ -61,9 +61,7 @@ public class LoginListener implements PacketLoginInListener {
public void c() { public void c() {
if (!this.i.isComplete()) { if (!this.i.isComplete()) {
UUID uuid = UUID.nameUUIDFromBytes(("OfflinePlayer:" + this.i.getName()).getBytes(Charsets.UTF_8)); this.i = this.a(this.i);
this.i = new GameProfile(uuid.toString().replaceAll("-", ""), this.i.getName());
} }
// CraftBukkit start - fire PlayerLoginEvent // CraftBukkit start - fire PlayerLoginEvent
@ -97,7 +95,7 @@ public class LoginListener implements PacketLoginInListener {
this.i = packetlogininstart.c(); this.i = packetlogininstart.c();
if (this.server.getOnlineMode() && !this.networkManager.c()) { if (this.server.getOnlineMode() && !this.networkManager.c()) {
this.g = EnumProtocolState.KEY; this.g = EnumProtocolState.KEY;
this.networkManager.handle(new PacketLoginOutEncryptionBegin(this.j, this.server.J().getPublic(), this.e), new GenericFutureListener[0]); this.networkManager.handle(new PacketLoginOutEncryptionBegin(this.j, this.server.K().getPublic(), this.e), new GenericFutureListener[0]);
} else { } else {
this.g = EnumProtocolState.READY_TO_ACCEPT; this.g = EnumProtocolState.READY_TO_ACCEPT;
} }
@ -105,7 +103,7 @@ public class LoginListener implements PacketLoginInListener {
public void a(PacketLoginInEncryptionBegin packetlogininencryptionbegin) { public void a(PacketLoginInEncryptionBegin packetlogininencryptionbegin) {
Validate.validState(this.g == EnumProtocolState.KEY, "Unexpected key packet", new Object[0]); Validate.validState(this.g == EnumProtocolState.KEY, "Unexpected key packet", new Object[0]);
PrivateKey privatekey = this.server.J().getPrivate(); PrivateKey privatekey = this.server.K().getPrivate();
if (!Arrays.equals(this.e, packetlogininencryptionbegin.b(privatekey))) { if (!Arrays.equals(this.e, packetlogininencryptionbegin.b(privatekey))) {
throw new IllegalStateException("Invalid nonce!"); throw new IllegalStateException("Invalid nonce!");
@ -117,15 +115,25 @@ public class LoginListener implements PacketLoginInListener {
} }
} }
static String a(LoginListener loginlistener) { protected GameProfile a(GameProfile gameprofile) {
UUID uuid = UUID.nameUUIDFromBytes(("OfflinePlayer:" + gameprofile.getName()).getBytes(Charsets.UTF_8));
return new GameProfile(uuid, gameprofile.getName());
}
static GameProfile a(LoginListener loginlistener) {
return loginlistener.i;
}
static String b(LoginListener loginlistener) {
return loginlistener.j; return loginlistener.j;
} }
static MinecraftServer b(LoginListener loginlistener) { static MinecraftServer c(LoginListener loginlistener) {
return loginlistener.server; return loginlistener.server;
} }
static SecretKey c(LoginListener loginlistener) { static SecretKey d(LoginListener loginlistener) {
return loginlistener.loginKey; return loginlistener.loginKey;
} }
@ -133,10 +141,6 @@ public class LoginListener implements PacketLoginInListener {
return loginlistener.i = gameprofile; return loginlistener.i = gameprofile;
} }
static GameProfile d(LoginListener loginlistener) {
return loginlistener.i;
}
static Logger e() { static Logger e() {
return c; return c;
} }

Datei anzeigen

@ -19,6 +19,7 @@ import javax.imageio.ImageIO;
import net.minecraft.util.com.google.common.base.Charsets; import net.minecraft.util.com.google.common.base.Charsets;
import net.minecraft.util.com.mojang.authlib.GameProfile; import net.minecraft.util.com.mojang.authlib.GameProfile;
import net.minecraft.util.com.mojang.authlib.GameProfileRepository;
import net.minecraft.util.com.mojang.authlib.minecraft.MinecraftSessionService; import net.minecraft.util.com.mojang.authlib.minecraft.MinecraftSessionService;
import net.minecraft.util.com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService; import net.minecraft.util.com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService;
import net.minecraft.util.io.netty.buffer.ByteBuf; import net.minecraft.util.io.netty.buffer.ByteBuf;
@ -43,51 +44,55 @@ import org.bukkit.event.world.WorldSaveEvent;
public abstract class MinecraftServer implements ICommandListener, Runnable, IMojangStatistics { public abstract class MinecraftServer implements ICommandListener, Runnable, IMojangStatistics {
private static final Logger h = LogManager.getLogger(); private static final Logger i = LogManager.getLogger();
private static MinecraftServer i; private static final File a = new File("usercache.json");
private static MinecraftServer j;
public Convertable convertable; // CraftBukkit - private final -> public public Convertable convertable; // CraftBukkit - private final -> public
private final MojangStatisticsGenerator k = new MojangStatisticsGenerator("server", this, aq()); private final MojangStatisticsGenerator l = new MojangStatisticsGenerator("server", this, ar());
public File universe; // CraftBukkit - private final -> public public File universe; // CraftBukkit - private final -> public
private final List m = new ArrayList(); private final List n = new ArrayList();
private final ICommandHandler n; private final ICommandHandler o;
public final MethodProfiler methodProfiler = new MethodProfiler(); public final MethodProfiler methodProfiler = new MethodProfiler();
private final ServerConnection o; private final ServerConnection p;
private final ServerPing p = new ServerPing(); private final ServerPing q = new ServerPing();
private final Random q = new Random(); private final Random r = new Random();
private String serverIp; private String serverIp;
private int s = -1; private int t = -1;
public WorldServer[] worldServer; public WorldServer[] worldServer;
private PlayerList t; private PlayerList u;
private boolean isRunning = true; private boolean isRunning = true;
private boolean isStopped; private boolean isStopped;
private int ticks; private int ticks;
protected final Proxy c; protected final Proxy d;
public String d; public String e;
public int e; public int f;
private boolean onlineMode; private boolean onlineMode;
private boolean spawnAnimals; private boolean spawnAnimals;
private boolean spawnNPCs; private boolean spawnNPCs;
private boolean pvpMode; private boolean pvpMode;
private boolean allowFlight; private boolean allowFlight;
private String motd; private String motd;
private int D; private int E;
private int E = 0; private int F = 0;
public final long[] f = new long[100]; public final long[] g = new long[100];
public long[][] g; public long[][] h;
private KeyPair F; private KeyPair G;
private String G;
private String H; private String H;
private String I;
private boolean demoMode; private boolean demoMode;
private boolean K;
private boolean L; private boolean L;
private String M = ""; private boolean M;
private boolean N; private String N = "";
private long O; private boolean O;
private String P; private long P;
private boolean Q; private String Q;
private boolean R; private boolean R;
private final MinecraftSessionService S; private boolean S;
private long T = 0L; private final YggdrasilAuthenticationService T;
private final MinecraftSessionService U;
private long V = 0L;
private final GameProfileRepository W;
private final UserCache X;
// CraftBukkit start - add fields // CraftBukkit start - add fields
public List<WorldServer> worlds = new ArrayList<WorldServer>(); public List<WorldServer> worlds = new ArrayList<WorldServer>();
@ -103,14 +108,16 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
// CraftBukkit end // CraftBukkit end
public MinecraftServer(OptionSet options, Proxy proxy) { // CraftBukkit - signature file -> OptionSet public MinecraftServer(OptionSet options, Proxy proxy) { // CraftBukkit - signature file -> OptionSet
i = this; this.X = new UserCache(this, a);
this.c = proxy; j = this;
this.d = proxy;
// this.universe = file1; // CraftBukkit // this.universe = file1; // CraftBukkit
this.o = new ServerConnection(this); this.p = new ServerConnection(this);
this.n = new CommandDispatcher(); this.o = new CommandDispatcher();
// this.convertable = new WorldLoaderServer(file1); // CraftBukkit - moved to DedicatedServer.init // this.convertable = new WorldLoaderServer(file1); // CraftBukkit - moved to DedicatedServer.init
this.S = (new YggdrasilAuthenticationService(proxy, UUID.randomUUID().toString())).createMinecraftSessionService(); this.T = new YggdrasilAuthenticationService(proxy, UUID.randomUUID().toString());
this.U = this.T.createMinecraftSessionService();
this.W = this.T.createProfileRepository();
// CraftBukkit start // CraftBukkit start
this.options = options; this.options = options;
// Try to see if we're actually running in a terminal, disable jline if not // Try to see if we're actually running in a terminal, disable jline if not
@ -131,7 +138,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
this.reader = new ConsoleReader(System.in, System.out); this.reader = new ConsoleReader(System.in, System.out);
this.reader.setExpandEvents(false); this.reader.setExpandEvents(false);
} catch (IOException ex) { } catch (IOException ex) {
h.warn((String) null, ex); i.warn((String) null, ex);
} }
} }
Runtime.getRuntime().addShutdownHook(new org.bukkit.craftbukkit.util.ServerShutdownThread(this)); Runtime.getRuntime().addShutdownHook(new org.bukkit.craftbukkit.util.ServerShutdownThread(this));
@ -146,21 +153,21 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
protected void a(String s) { protected void a(String s) {
if (this.getConvertable().isConvertable(s)) { if (this.getConvertable().isConvertable(s)) {
h.info("Converting map!"); i.info("Converting map!");
this.b("menu.convertingLevel"); this.b("menu.convertingLevel");
this.getConvertable().convert(s, new ConvertProgressUpdater(this)); this.getConvertable().convert(s, new ConvertProgressUpdater(this));
} }
} }
protected synchronized void b(String s) { protected synchronized void b(String s) {
this.P = s; this.Q = s;
} }
protected void a(String s, String s1, long i, WorldType worldtype, String s2) { protected void a(String s, String s1, long i, WorldType worldtype, String s2) {
this.a(s); this.a(s);
this.b("menu.loadingLevel"); this.b("menu.loadingLevel");
this.worldServer = new WorldServer[3]; this.worldServer = new WorldServer[3];
// this.g = new long[this.worldServer.length][100]; // CraftBukkit - Removed ticktime arrays // this.h = new long[this.worldServer.length][100]; // CraftBukkit - Removed ticktime arrays
// IDataManager idatamanager = this.convertable.a(s, true); // IDataManager idatamanager = this.convertable.a(s, true);
// WorldData worlddata = idatamanager.getWorldData(); // WorldData worlddata = idatamanager.getWorldData();
/* CraftBukkit start - Removed worldsettings /* CraftBukkit start - Removed worldsettings
@ -173,7 +180,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
worldsettings = new WorldSettings(worlddata); worldsettings = new WorldSettings(worlddata);
} }
if (this.K) { if (this.L) {
worldsettings.a(); worldsettings.a();
} }
// */ // */
@ -208,7 +215,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
if (j == 0) { if (j == 0) {
IDataManager idatamanager = new ServerNBTManager(server.getWorldContainer(), s1, true); IDataManager idatamanager = new ServerNBTManager(server.getWorldContainer(), s1, true);
if (this.Q()) { if (this.R()) {
world = new DemoWorldServer(this, idatamanager, s1, dimension, this.methodProfiler); world = new DemoWorldServer(this, idatamanager, s1, dimension, this.methodProfiler);
} else { } else {
// world =, b0 to dimension, added Environment and gen // world =, b0 to dimension, added Environment and gen
@ -222,31 +229,31 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
File oldWorld = new File(new File(s), dim); File oldWorld = new File(new File(s), dim);
if ((!newWorld.isDirectory()) && (oldWorld.isDirectory())) { if ((!newWorld.isDirectory()) && (oldWorld.isDirectory())) {
h.info("---- Migration of old " + worldType + " folder required ----"); MinecraftServer.i.info("---- Migration of old " + worldType + " folder required ----");
h.info("Unfortunately due to the way that Minecraft implemented multiworld support in 1.6, Bukkit requires that you move your " + worldType + " folder to a new location in order to operate correctly."); MinecraftServer.i.info("Unfortunately due to the way that Minecraft implemented multiworld support in 1.6, Bukkit requires that you move your " + worldType + " folder to a new location in order to operate correctly.");
h.info("We will move this folder for you, but it will mean that you need to move it back should you wish to stop using Bukkit in the future."); MinecraftServer.i.info("We will move this folder for you, but it will mean that you need to move it back should you wish to stop using Bukkit in the future.");
h.info("Attempting to move " + oldWorld + " to " + newWorld + "..."); MinecraftServer.i.info("Attempting to move " + oldWorld + " to " + newWorld + "...");
if (newWorld.exists()) { if (newWorld.exists()) {
h.warn("A file or folder already exists at " + newWorld + "!"); MinecraftServer.i.warn("A file or folder already exists at " + newWorld + "!");
h.info("---- Migration of old " + worldType + " folder failed ----"); MinecraftServer.i.info("---- Migration of old " + worldType + " folder failed ----");
} else if (newWorld.getParentFile().mkdirs()) { } else if (newWorld.getParentFile().mkdirs()) {
if (oldWorld.renameTo(newWorld)) { if (oldWorld.renameTo(newWorld)) {
h.info("Success! To restore " + worldType + " in the future, simply move " + newWorld + " to " + oldWorld); MinecraftServer.i.info("Success! To restore " + worldType + " in the future, simply move " + newWorld + " to " + oldWorld);
// Migrate world data too. // Migrate world data too.
try { try {
com.google.common.io.Files.copy(new File(new File(s), "level.dat"), new File(new File(name), "level.dat")); com.google.common.io.Files.copy(new File(new File(s), "level.dat"), new File(new File(name), "level.dat"));
} catch (IOException exception) { } catch (IOException exception) {
h.warn("Unable to migrate world data."); MinecraftServer.i.warn("Unable to migrate world data.");
} }
h.info("---- Migration of old " + worldType + " folder complete ----"); MinecraftServer.i.info("---- Migration of old " + worldType + " folder complete ----");
} else { } else {
h.warn("Could not move folder " + oldWorld + " to " + newWorld + "!"); MinecraftServer.i.warn("Could not move folder " + oldWorld + " to " + newWorld + "!");
h.info("---- Migration of old " + worldType + " folder failed ----"); MinecraftServer.i.info("---- Migration of old " + worldType + " folder failed ----");
} }
} else { } else {
h.warn("Could not create path for " + newWorld + "!"); MinecraftServer.i.warn("Could not create path for " + newWorld + "!");
h.info("---- Migration of old " + worldType + " folder failed ----"); MinecraftServer.i.info("---- Migration of old " + worldType + " folder failed ----");
} }
} }
@ -262,12 +269,12 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
this.server.getPluginManager().callEvent(new org.bukkit.event.world.WorldInitEvent(world.getWorld())); this.server.getPluginManager().callEvent(new org.bukkit.event.world.WorldInitEvent(world.getWorld()));
world.addIWorldAccess(new WorldManager(this, world)); world.addIWorldAccess(new WorldManager(this, world));
if (!this.M()) { if (!this.N()) {
world.getWorldData().setGameType(this.getGamemode()); world.getWorldData().setGameType(this.getGamemode());
} }
this.worlds.add(world); this.worlds.add(world);
this.t.setPlayerFileData(this.worlds.toArray(new WorldServer[this.worlds.size()])); this.u.setPlayerFileData(this.worlds.toArray(new WorldServer[this.worlds.size()]));
// CraftBukkit end // CraftBukkit end
} }
@ -288,18 +295,18 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
// CraftBukkit start - fire WorldLoadEvent and handle whether or not to keep the spawn in memory // CraftBukkit start - fire WorldLoadEvent and handle whether or not to keep the spawn in memory
for (int m = 0; m < this.worlds.size(); ++m) { for (int m = 0; m < this.worlds.size(); ++m) {
WorldServer worldserver = this.worlds.get(m); WorldServer worldserver = this.worlds.get(m);
h.info("Preparing start region for level " + m + " (Seed: " + worldserver.getSeed() + ")"); MinecraftServer.i.info("Preparing start region for level " + m + " (Seed: " + worldserver.getSeed() + ")");
if (!worldserver.getWorld().getKeepSpawnInMemory()) { if (!worldserver.getWorld().getKeepSpawnInMemory()) {
continue; continue;
} }
ChunkCoordinates chunkcoordinates = worldserver.getSpawn(); ChunkCoordinates chunkcoordinates = worldserver.getSpawn();
long j = aq(); long j = ar();
i = 0; i = 0;
for (int k = -192; k <= 192 && this.isRunning(); k += 16) { for (int k = -192; k <= 192 && this.isRunning(); k += 16) {
for (int l = -192; l <= 192 && this.isRunning(); l += 16) { for (int l = -192; l <= 192 && this.isRunning(); l += 16) {
long i1 = aq(); long i1 = ar();
if (i1 - j > 1000L) { if (i1 - j > 1000L) {
this.a_("Preparing spawn area", i * 100 / 625); this.a_("Preparing spawn area", i * 100 / 625);
@ -332,20 +339,21 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
public abstract boolean m(); public abstract boolean m();
protected void a_(String s, int i) { protected void a_(String s, int i) {
this.d = s; this.e = s;
this.e = i; this.f = i;
h.info(s + ": " + i + "%"); // CraftBukkit - Use FQN to work around decompiler issue
MinecraftServer.i.info(s + ": " + i + "%");
} }
protected void n() { protected void n() {
this.d = null; this.e = null;
this.e = 0; this.f = 0;
this.server.enablePlugins(org.bukkit.plugin.PluginLoadOrder.POSTWORLD); // CraftBukkit this.server.enablePlugins(org.bukkit.plugin.PluginLoadOrder.POSTWORLD); // CraftBukkit
} }
protected void saveChunks(boolean flag) throws ExceptionWorldConflict { // CraftBukkit - added throws protected void saveChunks(boolean flag) throws ExceptionWorldConflict { // CraftBukkit - added throws
if (!this.L) { if (!this.M) {
// CraftBukkit start - fire WorldSaveEvent // CraftBukkit start - fire WorldSaveEvent
// WorldServer[] aworldserver = this.worldServer; // WorldServer[] aworldserver = this.worldServer;
int i = this.worlds.size(); int i = this.worlds.size();
@ -355,7 +363,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
if (worldserver != null) { if (worldserver != null) {
if (!flag) { if (!flag) {
h.info("Saving chunks for level \'" + worldserver.getWorldData().getName() + "\'/" + worldserver.worldProvider.getName()); MinecraftServer.i.info("Saving chunks for level \'" + worldserver.getWorldData().getName() + "\'/" + worldserver.worldProvider.getName());
} }
worldserver.save(true, (IProgressUpdate) null); worldserver.save(true, (IProgressUpdate) null);
@ -370,25 +378,26 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public void stop() throws ExceptionWorldConflict { // CraftBukkit - added throws public void stop() throws ExceptionWorldConflict { // CraftBukkit - added throws
if (!this.L) { if (!this.M) {
h.info("Stopping server"); i.info("Stopping server");
// CraftBukkit start // CraftBukkit start
if (this.server != null) { if (this.server != null) {
this.server.disablePlugins(); this.server.disablePlugins();
} }
// CraftBukkit end // CraftBukkit end
if (this.ah() != null) { if (this.ai() != null) {
this.ah().b(); this.ai().b();
} }
if (this.t != null) { if (this.u != null) {
h.info("Saving players"); i.info("Saving players");
this.t.savePlayers(); this.u.savePlayers();
this.t.r(); this.u.u();
} }
h.info("Saving worlds"); if (this.worldServer != null) {
i.info("Saving worlds");
this.saveChunks(false); this.saveChunks(false);
/* CraftBukkit start - Handled in saveChunks /* CraftBukkit start - Handled in saveChunks
@ -398,9 +407,10 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
worldserver.saveLevel(); worldserver.saveLevel();
} }
// CraftBukkit end */ // CraftBukkit end */
}
if (this.k.d()) { if (this.l.d()) {
this.k.e(); this.l.e();
} }
} }
} }
@ -424,26 +434,26 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
public void run() { public void run() {
try { try {
if (this.init()) { if (this.init()) {
long i = aq(); long i = ar();
long j = 0L; long j = 0L;
this.p.setMOTD(new ChatComponentText(this.motd)); this.q.setMOTD(new ChatComponentText(this.motd));
this.p.setServerInfo(new ServerPingServerData("1.7.5", 4)); this.q.setServerInfo(new ServerPingServerData("1.7.8", 5));
this.a(this.p); this.a(this.q);
while (this.isRunning) { while (this.isRunning) {
long k = aq(); long k = ar();
long l = k - i; long l = k - i;
if (l > 2000L && i - this.O >= 15000L) { if (l > 2000L && i - this.P >= 15000L) {
if (this.server.getWarnOnOverload()) // CraftBukkit - Added option to suppress warning messages if (this.server.getWarnOnOverload()) // CraftBukkit - Added option to suppress warning messages
h.warn("Can\'t keep up! Did the system time change, or is the server overloaded? Running {}ms behind, skipping {} tick(s)", new Object[] { Long.valueOf(l), Long.valueOf(l / 50L)}); MinecraftServer.i.warn("Can\'t keep up! Did the system time change, or is the server overloaded? Running {}ms behind, skipping {} tick(s)", new Object[] { Long.valueOf(l), Long.valueOf(l / 50L)});
l = 2000L; l = 2000L;
this.O = i; this.P = i;
} }
if (l < 0L) { if (l < 0L) {
h.warn("Time ran backwards! Did the system time change?"); MinecraftServer.i.warn("Time ran backwards! Did the system time change?");
l = 0L; l = 0L;
} }
@ -461,13 +471,13 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
Thread.sleep(Math.max(1L, 50L - j)); Thread.sleep(Math.max(1L, 50L - j));
this.N = true; this.O = true;
} }
} else { } else {
this.a((CrashReport) null); this.a((CrashReport) null);
} }
} catch (Throwable throwable) { } catch (Throwable throwable) {
h.error("Encountered an unexpected exception", throwable); i.error("Encountered an unexpected exception", throwable);
CrashReport crashreport = null; CrashReport crashreport = null;
if (throwable instanceof ReportedException) { if (throwable instanceof ReportedException) {
@ -479,9 +489,9 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
File file1 = new File(new File(this.s(), "crash-reports"), "crash-" + (new SimpleDateFormat("yyyy-MM-dd_HH.mm.ss")).format(new Date()) + "-server.txt"); File file1 = new File(new File(this.s(), "crash-reports"), "crash-" + (new SimpleDateFormat("yyyy-MM-dd_HH.mm.ss")).format(new Date()) + "-server.txt");
if (crashreport.a(file1)) { if (crashreport.a(file1)) {
h.error("This crash report has been saved to: " + file1.getAbsolutePath()); i.error("This crash report has been saved to: " + file1.getAbsolutePath());
} else { } else {
h.error("We were unable to save this crash report to disk."); i.error("We were unable to save this crash report to disk.");
} }
this.a(crashreport); this.a(crashreport);
@ -490,7 +500,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
this.stop(); this.stop();
this.isStopped = true; this.isStopped = true;
} catch (Throwable throwable1) { } catch (Throwable throwable1) {
h.error("Exception stopping the server", throwable1); i.error("Exception stopping the server", throwable1);
} finally { } finally {
// CraftBukkit start - Restore terminal to original settings // CraftBukkit start - Restore terminal to original settings
try { try {
@ -519,7 +529,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
serverping.setFavicon("data:image/png;base64," + bytebuf1.toString(Charsets.UTF_8)); serverping.setFavicon("data:image/png;base64," + bytebuf1.toString(Charsets.UTF_8));
} catch (Exception exception) { } catch (Exception exception) {
h.error("Couldn\'t load server icon", exception); i.error("Couldn\'t load server icon", exception);
} finally { } finally {
bytebuf.release(); bytebuf.release();
} }
@ -538,45 +548,45 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
long i = System.nanoTime(); long i = System.nanoTime();
++this.ticks; ++this.ticks;
if (this.Q) { if (this.R) {
this.Q = false; this.R = false;
this.methodProfiler.a = true; this.methodProfiler.a = true;
this.methodProfiler.a(); this.methodProfiler.a();
} }
this.methodProfiler.a("root"); this.methodProfiler.a("root");
this.v(); this.v();
if (i - this.T >= 5000000000L) { if (i - this.V >= 5000000000L) {
this.T = i; this.V = i;
this.p.setPlayerSample(new ServerPingPlayerSample(this.D(), this.C())); this.q.setPlayerSample(new ServerPingPlayerSample(this.D(), this.C()));
GameProfile[] agameprofile = new GameProfile[Math.min(this.C(), 12)]; GameProfile[] agameprofile = new GameProfile[Math.min(this.C(), 12)];
int j = MathHelper.nextInt(this.q, 0, this.C() - agameprofile.length); int j = MathHelper.nextInt(this.r, 0, this.C() - agameprofile.length);
for (int k = 0; k < agameprofile.length; ++k) { for (int k = 0; k < agameprofile.length; ++k) {
agameprofile[k] = ((EntityPlayer) this.t.players.get(j + k)).getProfile(); agameprofile[k] = ((EntityPlayer) this.u.players.get(j + k)).getProfile();
} }
Collections.shuffle(Arrays.asList(agameprofile)); Collections.shuffle(Arrays.asList(agameprofile));
this.p.b().a(agameprofile); this.q.b().a(agameprofile);
} }
if ((this.autosavePeriod > 0) && ((this.ticks % this.autosavePeriod) == 0)) { // CraftBukkit if ((this.autosavePeriod > 0) && ((this.ticks % this.autosavePeriod) == 0)) { // CraftBukkit
this.methodProfiler.a("save"); this.methodProfiler.a("save");
this.t.savePlayers(); this.u.savePlayers();
this.saveChunks(true); this.saveChunks(true);
this.methodProfiler.b(); this.methodProfiler.b();
} }
this.methodProfiler.a("tallying"); this.methodProfiler.a("tallying");
this.f[this.ticks % 100] = System.nanoTime() - i; this.g[this.ticks % 100] = System.nanoTime() - i;
this.methodProfiler.b(); this.methodProfiler.b();
this.methodProfiler.a("snooper"); this.methodProfiler.a("snooper");
if (!this.k.d() && this.ticks > 100) { if (!this.l.d() && this.ticks > 100) {
this.k.a(); this.l.a();
} }
if (this.ticks % 6000 == 0) { if (this.ticks % 6000 == 0) {
this.k.b(); this.l.b();
} }
this.methodProfiler.b(); this.methodProfiler.b();
@ -650,17 +660,17 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
this.methodProfiler.b(); this.methodProfiler.b();
// } // CraftBukkit // } // CraftBukkit
// this.g[i][this.ticks % 100] = System.nanoTime() - j; // CraftBukkit // this.h[i][this.ticks % 100] = System.nanoTime() - j; // CraftBukkit
} }
this.methodProfiler.c("connection"); this.methodProfiler.c("connection");
this.ah().c(); this.ai().c();
this.methodProfiler.c("players"); this.methodProfiler.c("players");
this.t.tick(); this.u.tick();
this.methodProfiler.c("tickables"); this.methodProfiler.c("tickables");
for (i = 0; i < this.m.size(); ++i) { for (i = 0; i < this.n.size(); ++i) {
((IUpdatePlayerListBox) this.m.get(i)).a(); ((IUpdatePlayerListBox) this.n.get(i)).a();
} }
this.methodProfiler.b(); this.methodProfiler.b();
@ -671,7 +681,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public void a(IUpdatePlayerListBox iupdateplayerlistbox) { public void a(IUpdatePlayerListBox iupdateplayerlistbox) {
this.m.add(iupdateplayerlistbox); this.n.add(iupdateplayerlistbox);
} }
public static void main(final OptionSet options) { // CraftBukkit - replaces main(String[] astring) public static void main(final OptionSet options) { // CraftBukkit - replaces main(String[] astring)
@ -747,7 +757,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
if (flag) { if (flag) {
dedicatedserver.az(); dedicatedserver.aD();
} }
// */ // */
@ -772,7 +782,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
// Runtime.getRuntime().addShutdownHook(new ThreadShutdown("Server Shutdown Thread", dedicatedserver)); // Runtime.getRuntime().addShutdownHook(new ThreadShutdown("Server Shutdown Thread", dedicatedserver));
// CraftBukkit end // CraftBukkit end
} catch (Exception exception) { } catch (Exception exception) {
h.fatal("Failed to start the minecraft server", exception); i.fatal("Failed to start the minecraft server", exception);
} }
} }
@ -785,11 +795,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public void info(String s) { public void info(String s) {
h.info(s); i.info(s);
} }
public void warning(String s) { public void warning(String s) {
h.warn(s); i.warn(s);
} }
public WorldServer getWorldServer(int i) { public WorldServer getWorldServer(int i) {
@ -809,7 +819,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public int z() { public int z() {
return this.s; return this.t;
} }
public String A() { public String A() {
@ -817,19 +827,23 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public String getVersion() { public String getVersion() {
return "1.7.5"; return "1.7.8";
} }
public int C() { public int C() {
return this.t.getPlayerCount(); return this.u.getPlayerCount();
} }
public int D() { public int D() {
return this.t.getMaxPlayers(); return this.u.getMaxPlayers();
} }
public String[] getPlayers() { public String[] getPlayers() {
return this.t.d(); return this.u.f();
}
public GameProfile[] F() {
return this.u.g();
} }
public String getPlugins() { public String getPlugins() {
@ -871,7 +885,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
// Event changes end // Event changes end
ServerCommand servercommand = new ServerCommand(event.getCommand(), RemoteControlCommandListener.instance); ServerCommand servercommand = new ServerCommand(event.getCommand(), RemoteControlCommandListener.instance);
MinecraftServer.this.server.dispatchServerCommand(MinecraftServer.this.remoteConsole, servercommand); // CraftBukkit MinecraftServer.this.server.dispatchServerCommand(MinecraftServer.this.remoteConsole, servercommand); // CraftBukkit
// this.n.a(RemoteControlCommandListener.instance, s); // this.o.a(RemoteControlCommandListener.instance, s);
return RemoteControlCommandListener.instance.f(); return RemoteControlCommandListener.instance.f();
}}; }};
processQueue.add(waitable); processQueue.add(waitable);
@ -891,12 +905,12 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public void h(String s) { public void h(String s) {
h.error(s); i.error(s);
} }
public void i(String s) { public void i(String s) {
if (this.isDebugging()) { if (this.isDebugging()) {
h.info(s); i.info(s);
} }
} }
@ -910,7 +924,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
crashreport.g().a("Vec3 Pool Size", (Callable) (new CrashReportVec3DPoolSize(this))); crashreport.g().a("Vec3 Pool Size", (Callable) (new CrashReportVec3DPoolSize(this)));
} }
if (this.t != null) { if (this.u != null) {
crashreport.g().a("Player Count", (Callable) (new CrashReportPlayerCount(this))); crashreport.g().a("Player Count", (Callable) (new CrashReportPlayerCount(this)));
} }
@ -925,7 +939,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
if (s.startsWith("/")) { if (s.startsWith("/")) {
s = s.substring(1); s = s.substring(1);
boolean flag = !s.contains(" "); boolean flag = !s.contains(" ");
List list = this.n.b(icommandlistener, s); List list = this.o.b(icommandlistener, s);
if (list != null) { if (list != null) {
Iterator iterator = list.iterator(); Iterator iterator = list.iterator();
@ -945,7 +959,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} else { } else {
String[] astring = s.split(" ", -1); String[] astring = s.split(" ", -1);
String s2 = astring[astring.length - 1]; String s2 = astring[astring.length - 1];
String[] astring1 = this.t.d(); String[] astring1 = this.u.f();
int i = astring1.length; int i = astring1.length;
for (int j = 0; j < i; ++j) { for (int j = 0; j < i; ++j) {
@ -964,7 +978,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public static MinecraftServer getServer() { public static MinecraftServer getServer() {
return i; return j;
} }
public String getName() { public String getName() {
@ -972,7 +986,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public void sendMessage(IChatBaseComponent ichatbasecomponent) { public void sendMessage(IChatBaseComponent ichatbasecomponent) {
h.info(ichatbasecomponent.c()); i.info(ichatbasecomponent.c());
} }
public boolean a(int i, String s) { public boolean a(int i, String s) {
@ -980,43 +994,43 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public ICommandHandler getCommandHandler() { public ICommandHandler getCommandHandler() {
return this.n; return this.o;
} }
public KeyPair J() { public KeyPair K() {
return this.F;
}
public int K() {
return this.s;
}
public void setPort(int i) {
this.s = i;
}
public String L() {
return this.G; return this.G;
} }
public void j(String s) { public int L() {
this.G = s; return this.t;
} }
public boolean M() { public void setPort(int i) {
return this.G != null; this.t = i;
} }
public String N() { public String M() {
return this.H; return this.H;
} }
public void k(String s) { public void j(String s) {
this.H = s; this.H = s;
} }
public boolean N() {
return this.H != null;
}
public String O() {
return this.I;
}
public void k(String s) {
this.I = s;
}
public void a(KeyPair keypair) { public void a(KeyPair keypair) {
this.F = keypair; this.G = keypair;
} }
public void a(EnumDifficulty enumdifficulty) { public void a(EnumDifficulty enumdifficulty) {
@ -1029,7 +1043,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
if (worldserver.getWorldData().isHardcore()) { if (worldserver.getWorldData().isHardcore()) {
worldserver.difficulty = EnumDifficulty.HARD; worldserver.difficulty = EnumDifficulty.HARD;
worldserver.setSpawnFlags(true, true); worldserver.setSpawnFlags(true, true);
} else if (this.M()) { } else if (this.N()) {
worldserver.difficulty = enumdifficulty; worldserver.difficulty = enumdifficulty;
worldserver.setSpawnFlags(worldserver.difficulty != EnumDifficulty.PEACEFUL, true); worldserver.setSpawnFlags(worldserver.difficulty != EnumDifficulty.PEACEFUL, true);
} else { } else {
@ -1044,7 +1058,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
return true; return true;
} }
public boolean Q() { public boolean R() {
return this.demoMode; return this.demoMode;
} }
@ -1053,15 +1067,15 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public void c(boolean flag) { public void c(boolean flag) {
this.K = flag; this.L = flag;
} }
public Convertable getConvertable() { public Convertable getConvertable() {
return this.convertable; return this.convertable;
} }
public void T() { public void U() {
this.L = true; this.M = true;
this.getConvertable().d(); this.getConvertable().d();
// CraftBukkit start // CraftBukkit start
@ -1079,11 +1093,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public String getResourcePack() { public String getResourcePack() {
return this.M; return this.N;
} }
public void setTexturePack(String s) { public void setTexturePack(String s) {
this.M = s; this.N = s;
} }
public void a(MojangStatisticsGenerator mojangstatisticsgenerator) { public void a(MojangStatisticsGenerator mojangstatisticsgenerator) {
@ -1091,11 +1105,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
mojangstatisticsgenerator.a("whitelist_count", Integer.valueOf(0)); mojangstatisticsgenerator.a("whitelist_count", Integer.valueOf(0));
mojangstatisticsgenerator.a("players_current", Integer.valueOf(this.C())); mojangstatisticsgenerator.a("players_current", Integer.valueOf(this.C()));
mojangstatisticsgenerator.a("players_max", Integer.valueOf(this.D())); mojangstatisticsgenerator.a("players_max", Integer.valueOf(this.D()));
mojangstatisticsgenerator.a("players_seen", Integer.valueOf(this.t.getSeenPlayers().length)); mojangstatisticsgenerator.a("players_seen", Integer.valueOf(this.u.getSeenPlayers().length));
mojangstatisticsgenerator.a("uses_auth", Boolean.valueOf(this.onlineMode)); mojangstatisticsgenerator.a("uses_auth", Boolean.valueOf(this.onlineMode));
mojangstatisticsgenerator.a("gui_state", this.aj() ? "enabled" : "disabled"); mojangstatisticsgenerator.a("gui_state", this.ak() ? "enabled" : "disabled");
mojangstatisticsgenerator.a("run_time", Long.valueOf((aq() - mojangstatisticsgenerator.g()) / 60L * 1000L)); mojangstatisticsgenerator.a("run_time", Long.valueOf((ar() - mojangstatisticsgenerator.g()) / 60L * 1000L));
mojangstatisticsgenerator.a("avg_tick_ms", Integer.valueOf((int) (MathHelper.a(this.f) * 1.0E-6D))); mojangstatisticsgenerator.a("avg_tick_ms", Integer.valueOf((int) (MathHelper.a(this.g) * 1.0E-6D)));
int i = 0; int i = 0;
// CraftBukkit start - use worlds list for iteration // CraftBukkit start - use worlds list for iteration
@ -1111,7 +1125,7 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
mojangstatisticsgenerator.a("world[" + i + "][hardcore]", Boolean.valueOf(worlddata.isHardcore())); mojangstatisticsgenerator.a("world[" + i + "][hardcore]", Boolean.valueOf(worlddata.isHardcore()));
mojangstatisticsgenerator.a("world[" + i + "][generator_name]", worlddata.getType().name()); mojangstatisticsgenerator.a("world[" + i + "][generator_name]", worlddata.getType().name());
mojangstatisticsgenerator.a("world[" + i + "][generator_version]", Integer.valueOf(worlddata.getType().getVersion())); mojangstatisticsgenerator.a("world[" + i + "][generator_version]", Integer.valueOf(worlddata.getType().getVersion()));
mojangstatisticsgenerator.a("world[" + i + "][height]", Integer.valueOf(this.D)); mojangstatisticsgenerator.a("world[" + i + "][height]", Integer.valueOf(this.E));
mojangstatisticsgenerator.a("world[" + i + "][chunks_loaded]", Integer.valueOf(worldserver.L().getLoadedChunks())); mojangstatisticsgenerator.a("world[" + i + "][chunks_loaded]", Integer.valueOf(worldserver.L().getLoadedChunks()));
++i; ++i;
} }
@ -1121,17 +1135,17 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public void b(MojangStatisticsGenerator mojangstatisticsgenerator) { public void b(MojangStatisticsGenerator mojangstatisticsgenerator) {
mojangstatisticsgenerator.b("singleplayer", Boolean.valueOf(this.M())); mojangstatisticsgenerator.b("singleplayer", Boolean.valueOf(this.N()));
mojangstatisticsgenerator.b("server_brand", this.getServerModName()); mojangstatisticsgenerator.b("server_brand", this.getServerModName());
mojangstatisticsgenerator.b("gui_supported", GraphicsEnvironment.isHeadless() ? "headless" : "supported"); mojangstatisticsgenerator.b("gui_supported", GraphicsEnvironment.isHeadless() ? "headless" : "supported");
mojangstatisticsgenerator.b("dedicated", Boolean.valueOf(this.W())); mojangstatisticsgenerator.b("dedicated", Boolean.valueOf(this.X()));
} }
public boolean getSnooperEnabled() { public boolean getSnooperEnabled() {
return true; return true;
} }
public abstract boolean W(); public abstract boolean X();
public boolean getOnlineMode() { public boolean getOnlineMode() {
return this.server.getOnlineMode(); // CraftBukkit return this.server.getOnlineMode(); // CraftBukkit
@ -1184,11 +1198,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public int getMaxBuildHeight() { public int getMaxBuildHeight() {
return this.D; return this.E;
} }
public void c(int i) { public void c(int i) {
this.D = i; this.E = i;
} }
public boolean isStopped() { public boolean isStopped() {
@ -1196,11 +1210,11 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public PlayerList getPlayerList() { public PlayerList getPlayerList() {
return this.t; return this.u;
} }
public void a(PlayerList playerlist) { public void a(PlayerList playerlist) {
this.t = playerlist; this.u = playerlist;
} }
public void a(EnumGamemode enumgamemode) { public void a(EnumGamemode enumgamemode) {
@ -1211,22 +1225,22 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
} }
public ServerConnection ah() { public ServerConnection ai() {
return this.o; return this.p;
} }
public boolean aj() { public boolean ak() {
return false; return false;
} }
public abstract String a(EnumGamemode enumgamemode, boolean flag); public abstract String a(EnumGamemode enumgamemode, boolean flag);
public int ak() { public int al() {
return this.ticks; return this.ticks;
} }
public void al() { public void am() {
this.Q = true; this.R = true;
} }
public ChunkCoordinates getChunkCoordinates() { public ChunkCoordinates getChunkCoordinates() {
@ -1246,54 +1260,62 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
} }
public void setForceGamemode(boolean flag) { public void setForceGamemode(boolean flag) {
this.R = flag; this.S = flag;
} }
public boolean getForceGamemode() { public boolean getForceGamemode() {
return this.R; return this.S;
} }
public Proxy ap() { public Proxy aq() {
return this.c; return this.d;
} }
public static long aq() { public static long ar() {
return System.currentTimeMillis(); return System.currentTimeMillis();
} }
public int getIdleTimeout() { public int getIdleTimeout() {
return this.E; return this.F;
} }
public void setIdleTimeout(int i) { public void setIdleTimeout(int i) {
this.E = i; this.F = i;
} }
public IChatBaseComponent getScoreboardDisplayName() { public IChatBaseComponent getScoreboardDisplayName() {
return new ChatComponentText(this.getName()); return new ChatComponentText(this.getName());
} }
public boolean as() { public boolean at() {
return true; return true;
} }
public MinecraftSessionService at() { public MinecraftSessionService av() {
return this.S; return this.U;
} }
public ServerPing au() { public GameProfileRepository getGameProfileRepository() {
return this.p; return this.W;
} }
public void av() { public UserCache getUserCache() {
this.T = 0L; return this.X;
}
public ServerPing ay() {
return this.q;
}
public void az() {
this.V = 0L;
} }
public static Logger getLogger() { public static Logger getLogger() {
return h; return i;
} }
public static PlayerList a(MinecraftServer minecraftserver) { public static PlayerList a(MinecraftServer minecraftserver) {
return minecraftserver.t; return minecraftserver.u;
} }
} }

Datei anzeigen

@ -0,0 +1,410 @@
package net.minecraft.server;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.UUID;
import net.minecraft.util.com.google.common.base.Charsets;
import net.minecraft.util.com.google.common.collect.Iterators;
import net.minecraft.util.com.google.common.collect.Lists;
import net.minecraft.util.com.google.common.collect.Maps;
import net.minecraft.util.com.google.common.io.Files;
import net.minecraft.util.com.mojang.authlib.Agent;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import net.minecraft.util.com.mojang.authlib.ProfileLookupCallback;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
// CraftBukkit - Imported for package private static methods
public class NameReferencingFileConverter {
private static final Logger e = LogManager.getLogger();
public static final File a = new File("banned-ips.txt");
public static final File b = new File("banned-players.txt");
public static final File c = new File("ops.txt");
public static final File d = new File("white-list.txt");
static List a(File file1, Map map) throws IOException { // CraftBukkit - Added throws
List list = Files.readLines(file1, Charsets.UTF_8);
Iterator iterator = list.iterator();
while (iterator.hasNext()) {
String s = (String) iterator.next();
s = s.trim();
if (!s.startsWith("#") && s.length() >= 1) {
String[] astring = s.split("\\|");
map.put(astring[0].toLowerCase(Locale.ROOT), astring);
}
}
return list;
}
private static void a(MinecraftServer minecraftserver, Collection collection, ProfileLookupCallback profilelookupcallback) {
String[] astring = (String[]) Iterators.toArray(Iterators.filter(collection.iterator(), new PredicateEmptyList()), String.class);
if (minecraftserver.getOnlineMode()) {
minecraftserver.getGameProfileRepository().findProfilesByNames(astring, Agent.MINECRAFT, profilelookupcallback);
} else {
String[] astring1 = astring;
int i = astring.length;
for (int j = 0; j < i; ++j) {
String s = astring1[j];
UUID uuid = EntityHuman.a(new GameProfile((UUID) null, s));
GameProfile gameprofile = new GameProfile(uuid, s);
profilelookupcallback.onProfileLookupSucceeded(gameprofile);
}
}
}
public static boolean a(MinecraftServer minecraftserver) {
GameProfileBanList gameprofilebanlist = new GameProfileBanList(PlayerList.a);
if (b.exists() && b.isFile()) {
if (gameprofilebanlist.c().exists()) {
/* CraftBukkit start - Exception is never thrown
try {
gameprofilebanlist.load();
} catch (FileNotFoundException filenotfoundexception) {
e.warn("Could not load existing file " + gameprofilebanlist.c().getName(), filenotfoundexception);
}
*/
gameprofilebanlist.load();
// CraftBukkit end
}
try {
HashMap hashmap = Maps.newHashMap();
a(b, (Map) hashmap);
GameProfileBanListEntryConverter gameprofilebanlistentryconverter = new GameProfileBanListEntryConverter(minecraftserver, hashmap, gameprofilebanlist);
a(minecraftserver, hashmap.keySet(), gameprofilebanlistentryconverter);
gameprofilebanlist.save();
c(b);
return true;
} catch (IOException ioexception) {
e.warn("Could not read old user banlist to convert it!", ioexception);
return false;
} catch (FileConversionException fileconversionexception) {
e.error("Conversion failed, please try again later", fileconversionexception);
return false;
}
} else {
return true;
}
}
public static boolean b(MinecraftServer minecraftserver) {
IpBanList ipbanlist = new IpBanList(PlayerList.b);
if (a.exists() && a.isFile()) {
if (ipbanlist.c().exists()) {
/* CraftBukkit start - Exception is never thrown
try {
ipbanlist.load();
} catch (FileNotFoundException filenotfoundexception) {
e.warn("Could not load existing file " + ipbanlist.c().getName(), filenotfoundexception);
}
*/
ipbanlist.load();
// CraftBukkit end
}
try {
HashMap hashmap = Maps.newHashMap();
a(a, (Map) hashmap);
Iterator iterator = hashmap.keySet().iterator();
while (iterator.hasNext()) {
String s = (String) iterator.next();
String[] astring = (String[]) hashmap.get(s);
Date date = astring.length > 1 ? b(astring[1], (Date) null) : null;
String s1 = astring.length > 2 ? astring[2] : null;
Date date1 = astring.length > 3 ? b(astring[3], (Date) null) : null;
String s2 = astring.length > 4 ? astring[4] : null;
ipbanlist.add(new IpBanEntry(s, date, s1, date1, s2));
}
ipbanlist.save();
c(a);
return true;
} catch (IOException ioexception) {
e.warn("Could not parse old ip banlist to convert it!", ioexception);
return false;
}
} else {
return true;
}
}
public static boolean c(MinecraftServer minecraftserver) {
OpList oplist = new OpList(PlayerList.c);
if (c.exists() && c.isFile()) {
if (oplist.c().exists()) {
/* CraftBukkit start - Exception is never thrown
try {
oplist.load();
} catch (FileNotFoundException filenotfoundexception) {
e.warn("Could not load existing file " + oplist.c().getName(), filenotfoundexception);
}
*/
oplist.load();
// CraftBukkit end
}
try {
List list = Files.readLines(c, Charsets.UTF_8);
OpListProfileCallback oplistprofilecallback = new OpListProfileCallback(minecraftserver, oplist);
a(minecraftserver, list, oplistprofilecallback);
oplist.save();
c(c);
return true;
} catch (IOException ioexception) {
e.warn("Could not read old oplist to convert it!", ioexception);
return false;
} catch (FileConversionException fileconversionexception) {
e.error("Conversion failed, please try again later", fileconversionexception);
return false;
}
} else {
return true;
}
}
public static boolean d(MinecraftServer minecraftserver) {
WhiteList whitelist = new WhiteList(PlayerList.d);
if (d.exists() && d.isFile()) {
if (whitelist.c().exists()) {
/* CraftBukkit start - Exception is never thrown
try {
whitelist.load();
} catch (FileNotFoundException filenotfoundexception) {
e.warn("Could not load existing file " + whitelist.c().getName(), filenotfoundexception);
}
*/
whitelist.load();
// CraftBukkit end
}
try {
List list = Files.readLines(d, Charsets.UTF_8);
WhiteListProfileCallback whitelistprofilecallback = new WhiteListProfileCallback(minecraftserver, whitelist);
a(minecraftserver, list, whitelistprofilecallback);
whitelist.save();
c(d);
return true;
} catch (IOException ioexception) {
e.warn("Could not read old whitelist to convert it!", ioexception);
return false;
} catch (FileConversionException fileconversionexception) {
e.error("Conversion failed, please try again later", fileconversionexception);
return false;
}
} else {
return true;
}
}
public static String a(String s) {
if (!UtilColor.b(s) && s.length() <= 16) {
MinecraftServer minecraftserver = MinecraftServer.getServer();
GameProfile gameprofile = minecraftserver.getUserCache().a(s);
if (gameprofile != null && gameprofile.getId() != null) {
return gameprofile.getId().toString();
} else if (!minecraftserver.N() && minecraftserver.getOnlineMode()) {
ArrayList arraylist = Lists.newArrayList();
GameProfileLookupCallback gameprofilelookupcallback = new GameProfileLookupCallback(minecraftserver, arraylist);
a(minecraftserver, Lists.newArrayList(new String[] { s}), gameprofilelookupcallback);
return arraylist.size() > 0 && ((GameProfile) arraylist.get(0)).getId() != null ? ((GameProfile) arraylist.get(0)).getId().toString() : "";
} else {
return EntityHuman.a(new GameProfile((UUID) null, s)).toString();
}
} else {
return s;
}
}
public static boolean a(DedicatedServer dedicatedserver, PropertyManager propertymanager) {
File file1 = d(propertymanager);
File file2 = new File(file1.getParentFile(), "playerdata");
File file3 = new File(file1.getParentFile(), "unknownplayers");
if (file1.exists() && file1.isDirectory()) {
File[] afile = file1.listFiles();
ArrayList arraylist = Lists.newArrayList();
File[] afile1 = afile;
int i = afile.length;
for (int j = 0; j < i; ++j) {
File file4 = afile1[j];
String s = file4.getName();
if (s.toLowerCase(Locale.ROOT).endsWith(".dat")) {
String s1 = s.substring(0, s.length() - ".dat".length());
if (s1.length() > 0) {
arraylist.add(s1);
}
}
}
try {
String[] astring = (String[]) arraylist.toArray(new String[arraylist.size()]);
PlayerDatFileConverter playerdatfileconverter = new PlayerDatFileConverter(dedicatedserver, file2, file3, file1, astring);
a(dedicatedserver, Lists.newArrayList(astring), playerdatfileconverter);
return true;
} catch (FileConversionException fileconversionexception) {
e.error("Conversion failed, please try again later", fileconversionexception);
return false;
}
} else {
return true;
}
}
private static void b(File file1) {
if (file1.exists()) {
if (!file1.isDirectory()) {
throw new FileConversionException("Can\'t create directory " + file1.getName() + " in world save directory.", (PredicateEmptyList) null);
}
} else if (!file1.mkdirs()) {
throw new FileConversionException("Can\'t create directory " + file1.getName() + " in world save directory.", (PredicateEmptyList) null);
}
}
public static boolean a(PropertyManager propertymanager) {
boolean flag = b(propertymanager);
flag = flag && c(propertymanager);
return flag;
}
private static boolean b(PropertyManager propertymanager) {
boolean flag = false;
if (b.exists() && b.isFile()) {
flag = true;
}
boolean flag1 = false;
if (a.exists() && a.isFile()) {
flag1 = true;
}
boolean flag2 = false;
if (c.exists() && c.isFile()) {
flag2 = true;
}
boolean flag3 = false;
if (d.exists() && d.isFile()) {
flag3 = true;
}
if (!flag && !flag1 && !flag2 && !flag3) {
return true;
} else {
e.warn("**** FAILED TO START THE SERVER AFTER ACCOUNT CONVERSION!");
e.warn("** please remove the following files and restart the server:");
if (flag) {
e.warn("* " + b.getName());
}
if (flag1) {
e.warn("* " + a.getName());
}
if (flag2) {
e.warn("* " + c.getName());
}
if (flag3) {
e.warn("* " + d.getName());
}
return false;
}
}
private static boolean c(PropertyManager propertymanager) {
File file1 = d(propertymanager);
if (file1.exists() && file1.isDirectory()) {
String[] astring = file1.list(new DatFilenameFilter());
if (astring.length > 0) {
e.warn("**** DETECTED OLD PLAYER FILES IN THE WORLD SAVE");
e.warn("**** THIS USUALLY HAPPENS WHEN THE AUTOMATIC CONVERSION FAILED IN SOME WAY");
e.warn("** please restart the server and if the problem persists, remove the directory \'{}\'", new Object[] { file1.getPath()});
return false;
}
}
return true;
}
private static File d(PropertyManager propertymanager) {
String s = propertymanager.getString("level-name", "world");
File file1 = new File(s);
return new File(file1, "players");
}
private static void c(File file1) {
File file2 = new File(file1.getName() + ".converted");
file1.renameTo(file2);
}
private static Date b(String s, Date date) {
Date date1;
try {
date1 = ExpirableListEntry.a.parse(s);
} catch (ParseException parseexception) {
date1 = date;
}
return date1;
}
static Logger a() {
return e;
}
static Date a(String s, Date date) {
return b(s, date);
}
static void a(File file1) {
b(file1);
}
}

Datei anzeigen

@ -40,6 +40,7 @@ public class NetworkManager extends SimpleChannelInboundHandler {
private PacketListener o; private PacketListener o;
private EnumProtocol p; private EnumProtocol p;
private IChatBaseComponent q; private IChatBaseComponent q;
private boolean r;
public NetworkManager(boolean flag) { public NetworkManager(boolean flag) {
this.j = flag; this.j = flag;
@ -86,7 +87,7 @@ public class NetworkManager extends SimpleChannelInboundHandler {
public void handle(Packet packet, GenericFutureListener... agenericfuturelistener) { public void handle(Packet packet, GenericFutureListener... agenericfuturelistener) {
if (this.m != null && this.m.isOpen()) { if (this.m != null && this.m.isOpen()) {
this.h(); this.i();
this.b(packet, agenericfuturelistener); this.b(packet, agenericfuturelistener);
} else { } else {
this.l.add(new QueuedPacket(packet, agenericfuturelistener)); this.l.add(new QueuedPacket(packet, agenericfuturelistener));
@ -113,7 +114,7 @@ public class NetworkManager extends SimpleChannelInboundHandler {
} }
} }
private void h() { private void i() {
if (this.m != null && this.m.isOpen()) { if (this.m != null && this.m.isOpen()) {
while (!this.l.isEmpty()) { while (!this.l.isEmpty()) {
QueuedPacket queuedpacket = (QueuedPacket) this.l.poll(); QueuedPacket queuedpacket = (QueuedPacket) this.l.poll();
@ -124,7 +125,7 @@ public class NetworkManager extends SimpleChannelInboundHandler {
} }
public void a() { public void a() {
this.h(); this.i();
EnumProtocol enumprotocol = (EnumProtocol) this.m.attr(d).get(); EnumProtocol enumprotocol = (EnumProtocol) this.m.attr(d).get();
if (this.p != enumprotocol) { if (this.p != enumprotocol) {
@ -171,6 +172,7 @@ public class NetworkManager extends SimpleChannelInboundHandler {
public void a(SecretKey secretkey) { public void a(SecretKey secretkey) {
this.m.pipeline().addBefore("splitter", "decrypt", new PacketDecrypter(MinecraftEncryption.a(2, secretkey))); this.m.pipeline().addBefore("splitter", "decrypt", new PacketDecrypter(MinecraftEncryption.a(2, secretkey)));
this.m.pipeline().addBefore("prepender", "encrypt", new PacketEncrypter(MinecraftEncryption.a(1, secretkey))); this.m.pipeline().addBefore("prepender", "encrypt", new PacketEncrypter(MinecraftEncryption.a(1, secretkey)));
this.r = true;
} }
public boolean isConnected() { public boolean isConnected() {

Datei anzeigen

@ -74,7 +74,7 @@ public class PacketDataSerializer extends ByteBuf {
byte[] abyte = new byte[short1]; byte[] abyte = new byte[short1];
this.readBytes(abyte); this.readBytes(abyte);
return NBTCompressedStreamTools.a(abyte); return NBTCompressedStreamTools.a(abyte, new NBTReadLimiter(2097152L));
} }
} }

Datei anzeigen

@ -1,8 +1,11 @@
package net.minecraft.server; package net.minecraft.server;
import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.UUID;
import net.minecraft.util.com.mojang.authlib.GameProfile; import net.minecraft.util.com.mojang.authlib.GameProfile;
import net.minecraft.util.com.mojang.authlib.properties.Property;
import java.io.IOException; // CraftBukkit import java.io.IOException; // CraftBukkit
@ -37,7 +40,19 @@ public class PacketPlayOutNamedEntitySpawn extends Packet {
public void a(PacketDataSerializer packetdataserializer) throws IOException { // CraftBukkit - added throws public void a(PacketDataSerializer packetdataserializer) throws IOException { // CraftBukkit - added throws
this.a = packetdataserializer.a(); this.a = packetdataserializer.a();
this.b = new GameProfile(packetdataserializer.c(36), packetdataserializer.c(16)); UUID uuid = UUID.fromString(packetdataserializer.c(36));
this.b = new GameProfile(uuid, packetdataserializer.c(16));
int i = packetdataserializer.a();
for (int j = 0; j < i; ++j) {
String s = packetdataserializer.c(32767);
String s1 = packetdataserializer.c(32767);
String s2 = packetdataserializer.c(32767);
this.b.getProperties().put(s, new Property(s, s1, s2));
}
this.c = packetdataserializer.readInt(); this.c = packetdataserializer.readInt();
this.d = packetdataserializer.readInt(); this.d = packetdataserializer.readInt();
this.e = packetdataserializer.readInt(); this.e = packetdataserializer.readInt();
@ -49,8 +64,21 @@ public class PacketPlayOutNamedEntitySpawn extends Packet {
public void b(PacketDataSerializer packetdataserializer) throws IOException { // CraftBukkit - added throws public void b(PacketDataSerializer packetdataserializer) throws IOException { // CraftBukkit - added throws
packetdataserializer.b(this.a); packetdataserializer.b(this.a);
packetdataserializer.a(this.b.getId()); UUID uuid = this.b.getId();
packetdataserializer.a(uuid == null ? "" : uuid.toString());
packetdataserializer.a(this.b.getName().length() > 16 ? this.b.getName().substring(0, 16) : this.b.getName()); // CraftBukkit - Limit name length to 16 characters packetdataserializer.a(this.b.getName().length() > 16 ? this.b.getName().substring(0, 16) : this.b.getName()); // CraftBukkit - Limit name length to 16 characters
packetdataserializer.b(this.b.getProperties().size());
Iterator iterator = this.b.getProperties().values().iterator();
while (iterator.hasNext()) {
Property property = (Property) iterator.next();
packetdataserializer.a(property.getName());
packetdataserializer.a(property.getValue());
packetdataserializer.a(property.getSignature());
}
packetdataserializer.writeInt(this.c); packetdataserializer.writeInt(this.c);
packetdataserializer.writeInt(this.d); packetdataserializer.writeInt(this.d);
packetdataserializer.writeInt(this.e); packetdataserializer.writeInt(this.e);

Datei anzeigen

@ -116,7 +116,7 @@ public class PacketStatusListener implements PacketStatusInListener {
ping.setFavicon(event.icon.value); ping.setFavicon(event.icon.value);
ping.setMOTD(new ChatComponentText(event.getMotd())); ping.setMOTD(new ChatComponentText(event.getMotd()));
ping.setPlayerSample(playerSample); ping.setPlayerSample(playerSample);
ping.setServerInfo(new ServerPingServerData(minecraftServer.getServerModName() + " " + minecraftServer.getVersion(), 4)); // TODO: Update when protocol changes ping.setServerInfo(new ServerPingServerData(minecraftServer.getServerModName() + " " + minecraftServer.getVersion(), 5)); // TODO: Update when protocol changes
this.networkManager.handle(new PacketStatusOutServerInfo(ping), new GenericFutureListener[0]); this.networkManager.handle(new PacketStatusOutServerInfo(ping), new GenericFutureListener[0]);
// CraftBukkit end // CraftBukkit end

Datei anzeigen

@ -78,8 +78,8 @@ public abstract class PathfinderGoalTarget extends PathfinderGoal {
} else if (!this.c.a(entityliving.getClass())) { } else if (!this.c.a(entityliving.getClass())) {
return false; return false;
} else { } else {
if (this.c instanceof EntityOwnable && StringUtils.isNotEmpty(((EntityOwnable) this.c).getOwnerName())) { if (this.c instanceof EntityOwnable && StringUtils.isNotEmpty(((EntityOwnable) this.c).getOwnerUUID())) {
if (entityliving instanceof EntityOwnable && ((EntityOwnable) this.c).getOwnerName().equals(((EntityOwnable) entityliving).getOwnerName())) { if (entityliving instanceof EntityOwnable && ((EntityOwnable) this.c).getOwnerUUID().equals(((EntityOwnable) entityliving).getOwnerUUID())) {
return false; return false;
} }

Datei anzeigen

@ -28,7 +28,7 @@ public class PlayerChunkMap {
public PlayerChunkMap(WorldServer worldserver) { public PlayerChunkMap(WorldServer worldserver) {
this.world = worldserver; this.world = worldserver;
this.a(worldserver.getMinecraftServer().getPlayerList().o()); this.a(worldserver.getMinecraftServer().getPlayerList().s());
} }
public WorldServer a() { public WorldServer a() {

Datei anzeigen

@ -4,6 +4,7 @@ import java.io.ByteArrayInputStream;
import java.io.DataInputStream; import java.io.DataInputStream;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator; import java.util.Iterator;
import java.util.Random; import java.util.Random;
import java.util.concurrent.Callable; import java.util.concurrent.Callable;
@ -356,7 +357,7 @@ public class PlayerConnection implements PacketPlayInListener {
// CraftBukkit end // CraftBukkit end
double d10 = d7 * d7 + d8 * d8 + d9 * d9; double d10 = d7 * d7 + d8 * d8 + d9 * d9;
if (d10 > 100.0D && this.checkMovement && (!this.minecraftServer.M() || !this.minecraftServer.L().equals(this.player.getName()))) { // CraftBukkit - Added this.checkMovement condition to solve this check being triggered by teleports if (d10 > 100.0D && this.checkMovement && (!this.minecraftServer.N() || !this.minecraftServer.M().equals(this.player.getName()))) { // CraftBukkit - Added this.checkMovement condition to solve this check being triggered by teleports
c.warn(this.player.getName() + " moved too quickly! " + d4 + "," + d5 + "," + d6 + " (" + d7 + ", " + d8 + ", " + d9 + ")"); c.warn(this.player.getName() + " moved too quickly! " + d4 + "," + d5 + "," + d6 + " (" + d7 + ", " + d8 + ", " + d9 + ")");
this.a(this.y, this.z, this.q, this.player.yaw, this.player.pitch); this.a(this.y, this.z, this.q, this.player.yaw, this.player.pitch);
return; return;
@ -689,7 +690,7 @@ public class PlayerConnection implements PacketPlayInListener {
} }
// CraftBukkit end // CraftBukkit end
c.info(this.player.getName() + " lost connection: " + ichatbasecomponent.c()); // CraftBukkit - Don't toString the component c.info(this.player.getName() + " lost connection: " + ichatbasecomponent.c()); // CraftBukkit - Don't toString the component
this.minecraftServer.av(); this.minecraftServer.az();
// CraftBukkit start - Replace vanilla quit message handling with our own. // CraftBukkit start - Replace vanilla quit message handling with our own.
/* /*
ChatMessage chatmessage = new ChatMessage("multiplayer.player.left", new Object[] { this.player.getScoreboardDisplayName()}); ChatMessage chatmessage = new ChatMessage("multiplayer.player.left", new Object[] { this.player.getScoreboardDisplayName()});
@ -704,7 +705,7 @@ public class PlayerConnection implements PacketPlayInListener {
this.minecraftServer.getPlayerList().sendMessage(CraftChatMessage.fromString(quitMessage)); this.minecraftServer.getPlayerList().sendMessage(CraftChatMessage.fromString(quitMessage));
} }
// CraftBukkit end // CraftBukkit end
if (this.minecraftServer.M() && this.player.getName().equals(this.minecraftServer.L())) { if (this.minecraftServer.N() && this.player.getName().equals(this.minecraftServer.M())) {
c.info("Stopping singleplayer server as player logged out"); c.info("Stopping singleplayer server as player logged out");
this.minecraftServer.safeShutdown(); this.minecraftServer.safeShutdown();
} }
@ -835,7 +836,7 @@ public class PlayerConnection implements PacketPlayInListener {
// CraftBukkit start - replaced with thread safe throttle // CraftBukkit start - replaced with thread safe throttle
// this.chatThrottle += 20; // this.chatThrottle += 20;
if (chatSpamField.addAndGet(this, 20) > 200 && !this.minecraftServer.getPlayerList().isOp(this.player.getName())) { if (chatSpamField.addAndGet(this, 20) > 200 && !this.minecraftServer.getPlayerList().isOp(this.player.getProfile())) {
if (packetplayinchat.a()) { if (packetplayinchat.a()) {
Waitable waitable = new Waitable() { Waitable waitable = new Waitable() {
@Override @Override
@ -1120,14 +1121,13 @@ public class PlayerConnection implements PacketPlayInListener {
if (this.player.viewingCredits) { if (this.player.viewingCredits) {
this.minecraftServer.getPlayerList().changeDimension(this.player, 0, PlayerTeleportEvent.TeleportCause.END_PORTAL); // CraftBukkit - reroute logic through custom portal management this.minecraftServer.getPlayerList().changeDimension(this.player, 0, PlayerTeleportEvent.TeleportCause.END_PORTAL); // CraftBukkit - reroute logic through custom portal management
} else if (this.player.r().getWorldData().isHardcore()) { } else if (this.player.r().getWorldData().isHardcore()) {
if (this.minecraftServer.M() && this.player.getName().equals(this.minecraftServer.L())) { if (this.minecraftServer.N() && this.player.getName().equals(this.minecraftServer.M())) {
this.player.playerConnection.disconnect("You have died. Game over, man, it\'s game over!"); this.player.playerConnection.disconnect("You have died. Game over, man, it\'s game over!");
this.minecraftServer.T(); this.minecraftServer.U();
} else { } else {
BanEntry banentry = new BanEntry(this.player.getName()); GameProfileBanEntry gameprofilebanentry = new GameProfileBanEntry(this.player.getProfile(), (Date) null, "(You just lost the game)", (Date) null, "Death in Hardcore");
banentry.setReason("Death in Hardcore"); this.minecraftServer.getPlayerList().getProfileBans().add(gameprofilebanentry);
this.minecraftServer.getPlayerList().getNameBans().add(banentry);
this.player.playerConnection.disconnect("You have died. Game over, man, it\'s game over!"); this.player.playerConnection.disconnect("You have died. Game over, man, it\'s game over!");
} }
} else { } else {
@ -1654,16 +1654,16 @@ public class PlayerConnection implements PacketPlayInListener {
try { try {
itemstack = packetdataserializer.c(); itemstack = packetdataserializer.c();
if (itemstack != null) { if (itemstack == null) {
return;
}
if (!ItemBookAndQuill.a(itemstack.getTag())) { if (!ItemBookAndQuill.a(itemstack.getTag())) {
throw new IOException("Invalid book tag!"); throw new IOException("Invalid book tag!");
} }
itemstack1 = this.player.inventory.getItemInHand(); itemstack1 = this.player.inventory.getItemInHand();
if (itemstack1 == null) { if (itemstack1 != null) {
return;
}
if (itemstack.getItem() == Items.BOOK_AND_QUILL && itemstack.getItem() == itemstack1.getItem()) { if (itemstack.getItem() == Items.BOOK_AND_QUILL && itemstack.getItem() == itemstack1.getItem()) {
itemstack1.a("pages", (NBTBase) itemstack.getTag().getList("pages", 8)); itemstack1.a("pages", (NBTBase) itemstack.getTag().getList("pages", 8));
} }
@ -1686,18 +1686,18 @@ public class PlayerConnection implements PacketPlayInListener {
try { try {
itemstack = packetdataserializer.c(); itemstack = packetdataserializer.c();
if (itemstack == null) { if (itemstack != null) {
return;
}
if (!ItemWrittenBook.a(itemstack.getTag())) { if (!ItemWrittenBook.a(itemstack.getTag())) {
throw new IOException("Invalid book tag!"); throw new IOException("Invalid book tag!");
} }
itemstack1 = this.player.inventory.getItemInHand(); itemstack1 = this.player.inventory.getItemInHand();
if (itemstack1 != null) { if (itemstack1 == null) {
return;
}
if (itemstack.getItem() == Items.WRITTEN_BOOK && itemstack1.getItem() == Items.BOOK_AND_QUILL) { if (itemstack.getItem() == Items.WRITTEN_BOOK && itemstack1.getItem() == Items.BOOK_AND_QUILL) {
CraftEventFactory.handleEditBookEvent(player, itemstack); // CraftBukkit CraftEventFactory.handleEditBookEvent(player, itemstack); // CraftBukkit
} }
return; return;

Datei anzeigen

@ -0,0 +1,98 @@
package net.minecraft.server;
import java.io.File;
import java.util.UUID;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import net.minecraft.util.com.mojang.authlib.ProfileLookupCallback;
import net.minecraft.util.com.mojang.authlib.yggdrasil.ProfileNotFoundException;
final class PlayerDatFileConverter implements ProfileLookupCallback {
final DedicatedServer a;
final File b;
final File c;
final File d;
final String[] e;
PlayerDatFileConverter(DedicatedServer dedicatedserver, File file1, File file2, File file3, String[] astring) {
this.a = dedicatedserver;
this.b = file1;
this.c = file2;
this.d = file3;
this.e = astring;
}
public void onProfileLookupSucceeded(GameProfile gameprofile) {
this.a.getUserCache().a(gameprofile);
UUID uuid = gameprofile.getId();
if (uuid == null) {
throw new FileConversionException("Missing UUID for user profile " + gameprofile.getName(), (PredicateEmptyList) null);
} else {
this.a(this.b, this.a(gameprofile), uuid.toString());
}
}
public void onProfileLookupFailed(GameProfile gameprofile, Exception exception) {
NameReferencingFileConverter.a().warn("Could not lookup user uuid for " + gameprofile.getName(), exception);
if (exception instanceof ProfileNotFoundException) {
String s = this.a(gameprofile);
this.a(this.c, s, s);
} else {
throw new FileConversionException("Could not request user " + gameprofile.getName() + " from backend systems", exception, (PredicateEmptyList) null);
}
}
private void a(File file1, String s, String s1) {
File file2 = new File(this.d, s + ".dat");
File file3 = new File(file1, s1 + ".dat");
// CraftBukkit start - Use old file name to seed lastKnownName
NBTTagCompound root = null;
try {
root = NBTCompressedStreamTools.a(new java.io.FileInputStream(file2));
} catch (Exception exception) {
exception.printStackTrace();
}
if (root != null) {
if (!root.hasKey("bukkit")) {
root.set("bukkit", new NBTTagCompound());
}
NBTTagCompound data = root.getCompound("bukkit");
data.setString("lastKnownName", s);
try {
NBTCompressedStreamTools.a(root, new java.io.FileOutputStream(file2));
} catch (Exception exception) {
exception.printStackTrace();
}
}
// CraftBukkit end
NameReferencingFileConverter.a(file1);
if (!file2.renameTo(file3)) {
throw new FileConversionException("Could not convert file for " + s, (PredicateEmptyList) null);
}
}
private String a(GameProfile gameprofile) {
String s = null;
for (int i = 0; i < this.e.length; ++i) {
if (this.e[i] != null && this.e[i].equalsIgnoreCase(gameprofile.getName())) {
s = this.e[i];
break;
}
}
if (s == null) {
throw new FileConversionException("Could not find the filename for " + gameprofile.getName() + " anymore", (PredicateEmptyList) null);
} else {
return s;
}
}
}

Datei anzeigen

@ -9,10 +9,11 @@ import java.util.HashSet;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Set; import java.util.UUID;
import java.util.Map.Entry; import java.util.Map.Entry;
import net.minecraft.util.com.google.common.base.Charsets; import net.minecraft.util.com.google.common.base.Charsets;
import net.minecraft.util.com.google.common.collect.Lists;
import net.minecraft.util.com.google.common.collect.Maps; import net.minecraft.util.com.google.common.collect.Maps;
import net.minecraft.util.com.mojang.authlib.GameProfile; import net.minecraft.util.com.mojang.authlib.GameProfile;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
@ -39,22 +40,26 @@ import org.bukkit.util.Vector;
public abstract class PlayerList { public abstract class PlayerList {
private static final Logger c = LogManager.getLogger(); public static final File a = new File("banned-players.json");
private static final SimpleDateFormat d = new SimpleDateFormat("yyyy-MM-dd \'at\' HH:mm:ss z"); public static final File b = new File("banned-ips.json");
public static final File c = new File("ops.json");
public static final File d = new File("whitelist.json");
private static final Logger g = LogManager.getLogger();
private static final SimpleDateFormat h = new SimpleDateFormat("yyyy-MM-dd \'at\' HH:mm:ss z");
private final MinecraftServer server; private final MinecraftServer server;
public final List players = new java.util.concurrent.CopyOnWriteArrayList(); // CraftBukkit - ArrayList -> CopyOnWriteArrayList: Iterator safety public final List players = new java.util.concurrent.CopyOnWriteArrayList(); // CraftBukkit - ArrayList -> CopyOnWriteArrayList: Iterator safety
private final BanList banByName = new BanList(new File("banned-players.txt")); private final GameProfileBanList j;
private final BanList banByIP = new BanList(new File("banned-ips.txt")); private final IpBanList k;
private final Set operators = new HashSet(); private final OpList operators;
private final Set whitelist = new java.util.LinkedHashSet(); // CraftBukkit - HashSet -> LinkedHashSet private final WhiteList whitelist;
private final Map j = Maps.newHashMap(); private final Map n;
public IPlayerFileData playerFileData; // CraftBukkit - private -> public public IPlayerFileData playerFileData; // CraftBukkit - private -> public
public boolean hasWhitelist; // CraftBukkit - private -> public public boolean hasWhitelist; // CraftBukkit - private -> public
protected int maxPlayers; protected int maxPlayers;
protected int m; private int q;
private EnumGamemode n; private EnumGamemode r;
private boolean o; private boolean s;
private int p; private int t;
// CraftBukkit start // CraftBukkit start
private CraftServer cserver; private CraftServer cserver;
@ -66,25 +71,36 @@ public abstract class PlayerList {
this.cserver = minecraftserver.server; this.cserver = minecraftserver.server;
// CraftBukkit end // CraftBukkit end
this.j = new GameProfileBanList(a);
this.k = new IpBanList(b);
this.operators = new OpList(c);
this.whitelist = new WhiteList(d);
this.n = Maps.newHashMap();
this.server = minecraftserver; this.server = minecraftserver;
this.banByName.setEnabled(false); this.j.a(false);
this.banByIP.setEnabled(false); this.k.a(false);
this.maxPlayers = 8; this.maxPlayers = 8;
} }
public void a(NetworkManager networkmanager, EntityPlayer entityplayer) { public void a(NetworkManager networkmanager, EntityPlayer entityplayer) {
GameProfile gameprofile = entityplayer.getProfile();
UserCache usercache = this.server.getUserCache();
GameProfile gameprofile1 = usercache.a(gameprofile.getId());
String s = gameprofile1 == null ? gameprofile.getName() : gameprofile1.getName();
usercache.a(gameprofile);
NBTTagCompound nbttagcompound = this.a(entityplayer); NBTTagCompound nbttagcompound = this.a(entityplayer);
entityplayer.spawnIn(this.server.getWorldServer(entityplayer.dimension)); entityplayer.spawnIn(this.server.getWorldServer(entityplayer.dimension));
entityplayer.playerInteractManager.a((WorldServer) entityplayer.world); entityplayer.playerInteractManager.a((WorldServer) entityplayer.world);
String s = "local"; String s1 = "local";
if (networkmanager.getSocketAddress() != null) { if (networkmanager.getSocketAddress() != null) {
s = networkmanager.getSocketAddress().toString(); s1 = networkmanager.getSocketAddress().toString();
} }
// CraftBukkit - Moved message to after join // CraftBukkit - Moved message to after join
// c.info(entityplayer.getName() + "[" + s + "] logged in with entity id " + entityplayer.getId() + " at (" + entityplayer.locX + ", " + entityplayer.locY + ", " + entityplayer.locZ + ")"); // g.info(entityplayer.getName() + "[" + s1 + "] logged in with entity id " + entityplayer.getId() + " at (" + entityplayer.locX + ", " + entityplayer.locY + ", " + entityplayer.locZ + ")");
WorldServer worldserver = this.server.getWorldServer(entityplayer.dimension); WorldServer worldserver = this.server.getWorldServer(entityplayer.dimension);
ChunkCoordinates chunkcoordinates = worldserver.getSpawn(); ChunkCoordinates chunkcoordinates = worldserver.getSpawn();
@ -106,13 +122,19 @@ public abstract class PlayerList {
entityplayer.getStatisticManager().d(); entityplayer.getStatisticManager().d();
entityplayer.getStatisticManager().updateStatistics(entityplayer); entityplayer.getStatisticManager().updateStatistics(entityplayer);
this.a((ScoreboardServer) worldserver.getScoreboard(), entityplayer); this.a((ScoreboardServer) worldserver.getScoreboard(), entityplayer);
this.server.av(); this.server.az();
/* CraftBukkit start - login message is handled in the event /* CraftBukkit start - login message is handled in the event
ChatMessage chatmessage = new ChatMessage("multiplayer.player.joined", new Object[] { entityplayer.getScoreboardDisplayName()}); ChatMessage chatmessage;
if (!entityplayer.getName().equalsIgnoreCase(s)) {
chatmessage = new ChatMessage("multiplayer.player.joined.renamed", new Object[] { entityplayer.getScoreboardDisplayName(), s});
} else {
chatmessage = new ChatMessage("multiplayer.player.joined", new Object[] { entityplayer.getScoreboardDisplayName()});
}
chatmessage.getChatModifier().setColor(EnumChatFormat.YELLOW); chatmessage.getChatModifier().setColor(EnumChatFormat.YELLOW);
this.sendMessage(chatmessage); this.sendMessage(chatmessage);
// CraftBukkit end*/ // CraftBukkit end */
this.c(entityplayer); this.c(entityplayer);
worldserver = this.server.getWorldServer(entityplayer.dimension); // CraftBukkit - Update in case join event changed it worldserver = this.server.getWorldServer(entityplayer.dimension); // CraftBukkit - Update in case join event changed it
playerconnection.a(entityplayer.locX, entityplayer.locY, entityplayer.locZ, entityplayer.yaw, entityplayer.pitch); playerconnection.a(entityplayer.locX, entityplayer.locY, entityplayer.locZ, entityplayer.yaw, entityplayer.pitch);
@ -142,7 +164,7 @@ public abstract class PlayerList {
} }
// CraftBukkit - Moved from above, added world // CraftBukkit - Moved from above, added world
c.info(entityplayer.getName() + "[" + s + "] logged in with entity id " + entityplayer.getId() + " at ([" + entityplayer.world.worldData.getName() + "] " + entityplayer.locX + ", " + entityplayer.locY + ", " + entityplayer.locZ + ")"); g.info(entityplayer.getName() + "[" + s + "] logged in with entity id " + entityplayer.getId() + " at ([" + entityplayer.world.worldData.getName() + "] " + entityplayer.locX + ", " + entityplayer.locY + ", " + entityplayer.locZ + ")");
} }
public void a(ScoreboardServer scoreboardserver, EntityPlayer entityplayer) { // CraftBukkit - protected -> public public void a(ScoreboardServer scoreboardserver, EntityPlayer entityplayer) { // CraftBukkit - protected -> public
@ -189,8 +211,8 @@ public abstract class PlayerList {
worldserver1.chunkProviderServer.getChunkAt((int) entityplayer.locX >> 4, (int) entityplayer.locZ >> 4); worldserver1.chunkProviderServer.getChunkAt((int) entityplayer.locX >> 4, (int) entityplayer.locZ >> 4);
} }
public int a() { public int d() {
return PlayerChunkMap.getFurthestViewableBlock(this.o()); return PlayerChunkMap.getFurthestViewableBlock(this.s());
} }
public NBTTagCompound a(EntityPlayer entityplayer) { public NBTTagCompound a(EntityPlayer entityplayer) {
@ -198,10 +220,10 @@ public abstract class PlayerList {
NBTTagCompound nbttagcompound = this.server.worlds.get(0).getWorldData().i(); NBTTagCompound nbttagcompound = this.server.worlds.get(0).getWorldData().i();
NBTTagCompound nbttagcompound1; NBTTagCompound nbttagcompound1;
if (entityplayer.getName().equals(this.server.L()) && nbttagcompound != null) { if (entityplayer.getName().equals(this.server.M()) && nbttagcompound != null) {
entityplayer.f(nbttagcompound); entityplayer.f(nbttagcompound);
nbttagcompound1 = nbttagcompound; nbttagcompound1 = nbttagcompound;
c.debug("loading single player"); g.debug("loading single player");
} else { } else {
nbttagcompound1 = this.playerFileData.load(entityplayer); nbttagcompound1 = this.playerFileData.load(entityplayer);
} }
@ -211,7 +233,7 @@ public abstract class PlayerList {
protected void b(EntityPlayer entityplayer) { protected void b(EntityPlayer entityplayer) {
this.playerFileData.save(entityplayer); this.playerFileData.save(entityplayer);
ServerStatisticManager serverstatisticmanager = (ServerStatisticManager) this.j.get(entityplayer.getName()); ServerStatisticManager serverstatisticmanager = (ServerStatisticManager) this.n.get(entityplayer.getUniqueID());
if (serverstatisticmanager != null) { if (serverstatisticmanager != null) {
serverstatisticmanager.b(); serverstatisticmanager.b();
@ -285,18 +307,19 @@ public abstract class PlayerList {
this.cserver.getPluginManager().callEvent(playerQuitEvent); this.cserver.getPluginManager().callEvent(playerQuitEvent);
entityplayer.getBukkitEntity().disconnect(playerQuitEvent.getQuitMessage()); entityplayer.getBukkitEntity().disconnect(playerQuitEvent.getQuitMessage());
// CraftBukkit end // CraftBukkit end
this.b(entityplayer); this.b(entityplayer);
WorldServer worldserver = entityplayer.r(); WorldServer worldserver = entityplayer.r();
if (entityplayer.vehicle != null && !(entityplayer.vehicle instanceof EntityPlayer)) { // CraftBukkit - Don't remove players if (entityplayer.vehicle != null && !(entityplayer.vehicle instanceof EntityPlayer)) { // CraftBukkit - Don't remove players
worldserver.removeEntity(entityplayer.vehicle); worldserver.removeEntity(entityplayer.vehicle);
c.debug("removing player mount"); g.debug("removing player mount");
} }
worldserver.kill(entityplayer); worldserver.kill(entityplayer);
worldserver.getPlayerChunkMap().removePlayer(entityplayer); worldserver.getPlayerChunkMap().removePlayer(entityplayer);
this.players.remove(entityplayer); this.players.remove(entityplayer);
this.j.remove(entityplayer.getName()); this.n.remove(entityplayer.getUniqueID());
ChunkIOExecutor.adjustPoolSize(this.getPlayerCount()); // CraftBukkit ChunkIOExecutor.adjustPoolSize(this.getPlayerCount()); // CraftBukkit
// CraftBukkit start - .name -> .listName, replace sendAll with loop // CraftBukkit start - .name -> .listName, replace sendAll with loop
@ -307,6 +330,8 @@ public abstract class PlayerList {
if (entityplayer1.getBukkitEntity().canSee(entityplayer.getBukkitEntity())) { if (entityplayer1.getBukkitEntity().canSee(entityplayer.getBukkitEntity())) {
entityplayer1.playerConnection.sendPacket(packet); entityplayer1.playerConnection.sendPacket(packet);
} else {
entityplayer1.getBukkitEntity().removeDisconnectingPlayer(entityplayer.getBukkitEntity());
} }
} }
// This removes the scoreboard (and player reference) for the specific player in the manager // This removes the scoreboard (and player reference) for the specific player in the manager
@ -326,42 +351,37 @@ public abstract class PlayerList {
EntityPlayer entity = new EntityPlayer(this.server, this.server.getWorldServer(0), gameprofile, new PlayerInteractManager(this.server.getWorldServer(0))); EntityPlayer entity = new EntityPlayer(this.server, this.server.getWorldServer(0), gameprofile, new PlayerInteractManager(this.server.getWorldServer(0)));
Player player = entity.getBukkitEntity(); Player player = entity.getBukkitEntity();
PlayerLoginEvent event = new PlayerLoginEvent(player, hostname, ((java.net.InetSocketAddress) socketaddress).getAddress()); PlayerLoginEvent event = new PlayerLoginEvent(player, hostname, ((java.net.InetSocketAddress) socketaddress).getAddress());
String s;
if (this.banByName.isBanned(gameprofile.getName())) { if (this.j.isBanned(gameprofile)) {
BanEntry banentry = (BanEntry) this.banByName.getEntries().get(gameprofile.getName()); GameProfileBanEntry gameprofilebanentry = (GameProfileBanEntry) this.j.get(gameprofile);
String s = "You are banned from this server!\nReason: " + banentry.getReason();
if (banentry.getExpires() != null) { s = "You are banned from this server!\nReason: " + gameprofilebanentry.getReason();
s = s + "\nYour ban will be removed on " + d.format(banentry.getExpires()); if (gameprofilebanentry.getExpires() != null) {
s = s + "\nYour ban will be removed on " + h.format(gameprofilebanentry.getExpires());
} }
// return s; // return s;
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s); event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s);
} else if (!this.isWhitelisted(gameprofile.getName())) { } else if (!this.isWhitelisted(gameprofile)) {
// return "You are not white-listed on this server!"; // return "You are not white-listed on this server!";
event.disallow(PlayerLoginEvent.Result.KICK_WHITELIST, "You are not white-listed on this server!"); event.disallow(PlayerLoginEvent.Result.KICK_WHITELIST, "You are not white-listed on this server!");
} else { } else if (this.k.isBanned(socketaddress)) {
String s1 = socketaddress.toString(); IpBanEntry ipbanentry = this.k.get(socketaddress);
s1 = s1.substring(s1.indexOf("/") + 1); s = "Your IP address is banned from this server!\nReason: " + ipbanentry.getReason();
s1 = s1.substring(0, s1.indexOf(":")); if (ipbanentry.getExpires() != null) {
if (this.banByIP.isBanned(s1)) { s = s + "\nYour ban will be removed on " + h.format(ipbanentry.getExpires());
BanEntry banentry1 = (BanEntry) this.banByIP.getEntries().get(s1);
String s2 = "Your IP address is banned from this server!\nReason: " + banentry1.getReason();
if (banentry1.getExpires() != null) {
s2 = s2 + "\nYour ban will be removed on " + d.format(banentry1.getExpires());
} }
// return s2; // return s2;
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s2); event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s);
} else { } else {
// return this.players.size() >= this.maxPlayers ? "The server is full!" : null; // return this.players.size() >= this.maxPlayers ? "The server is full!" : null;
if (this.players.size() >= this.maxPlayers) { if (this.players.size() >= this.maxPlayers) {
event.disallow(PlayerLoginEvent.Result.KICK_FULL, "The server is full!"); event.disallow(PlayerLoginEvent.Result.KICK_FULL, "The server is full!");
} }
} }
}
this.cserver.getPluginManager().callEvent(event); this.cserver.getPluginManager().callEvent(event);
if (event.getResult() != PlayerLoginEvent.Result.ALLOWED) { if (event.getResult() != PlayerLoginEvent.Result.ALLOWED) {
@ -374,13 +394,14 @@ public abstract class PlayerList {
} }
public EntityPlayer processLogin(GameProfile gameprofile, EntityPlayer player) { // CraftBukkit - added EntityPlayer public EntityPlayer processLogin(GameProfile gameprofile, EntityPlayer player) { // CraftBukkit - added EntityPlayer
ArrayList arraylist = new ArrayList(); UUID uuid = EntityHuman.a(gameprofile);
ArrayList arraylist = Lists.newArrayList();
EntityPlayer entityplayer; EntityPlayer entityplayer;
for (int i = 0; i < this.players.size(); ++i) { for (int i = 0; i < this.players.size(); ++i) {
entityplayer = (EntityPlayer) this.players.get(i); entityplayer = (EntityPlayer) this.players.get(i);
if (entityplayer.getName().equalsIgnoreCase(gameprofile.getName())) { if (entityplayer.getUniqueID().equals(uuid)) {
arraylist.add(entityplayer); arraylist.add(entityplayer);
} }
} }
@ -395,7 +416,7 @@ public abstract class PlayerList {
/* CraftBukkit start /* CraftBukkit start
Object object; Object object;
if (this.server.Q()) { if (this.server.R()) {
object = new DemoPlayerInteractManager(this.server.getWorldServer(0)); object = new DemoPlayerInteractManager(this.server.getWorldServer(0));
} else { } else {
object = new PlayerInteractManager(this.server.getWorldServer(0)); object = new PlayerInteractManager(this.server.getWorldServer(0));
@ -426,7 +447,7 @@ public abstract class PlayerList {
entityplayer.dimension = i; entityplayer.dimension = i;
Object object; Object object;
if (this.server.Q()) { if (this.server.R()) {
object = new DemoPlayerInteractManager(this.server.getWorldServer(entityplayer.dimension)); object = new DemoPlayerInteractManager(this.server.getWorldServer(entityplayer.dimension));
} else { } else {
object = new PlayerInteractManager(this.server.getWorldServer(entityplayer.dimension)); object = new PlayerInteractManager(this.server.getWorldServer(entityplayer.dimension));
@ -443,8 +464,8 @@ public abstract class PlayerList {
entityplayer1.copyTo(entityplayer, flag); entityplayer1.copyTo(entityplayer, flag);
entityplayer1.d(entityplayer.getId()); entityplayer1.d(entityplayer.getId());
// WorldServer worldserver = this.server.getWorldServer(entityplayer.dimension); // CraftBukkit - handled later // WorldServer worldserver = this.server.getWorldServer(entityplayer.dimension); // CraftBukkit - handled later
// this.a(entityplayer1, entityplayer, worldserver); // CraftBukkit - removed
// this.a(entityplayer1, entityplayer, worldserver); // CraftBukkit - removed
ChunkCoordinates chunkcoordinates1; ChunkCoordinates chunkcoordinates1;
// CraftBukkit start - fire PlayerRespawnEvent // CraftBukkit start - fire PlayerRespawnEvent
@ -750,7 +771,7 @@ public abstract class PlayerList {
// worldserver1.s().a(entity, d3, d4, d5, f); // worldserver1.s().a(entity, d3, d4, d5, f);
if (portal) { if (portal) {
Vector velocity = entity.getBukkitEntity().getVelocity(); Vector velocity = entity.getBukkitEntity().getVelocity();
worldserver1.getTravelAgent().adjustExit(entity, exit, velocity); // Should be getTravelAgent worldserver1.getTravelAgent().adjustExit(entity, exit, velocity);
entity.setPositionRotation(exit.getX(), exit.getY(), exit.getZ(), exit.getYaw(), exit.getPitch()); entity.setPositionRotation(exit.getX(), exit.getY(), exit.getZ(), exit.getYaw(), exit.getPitch());
if (entity.motX != velocity.getX() || entity.motY != velocity.getY() || entity.motZ != velocity.getZ()) { if (entity.motX != velocity.getX() || entity.motY != velocity.getY() || entity.motZ != velocity.getZ()) {
entity.getBukkitEntity().setVelocity(velocity); entity.getBukkitEntity().setVelocity(velocity);
@ -768,8 +789,8 @@ public abstract class PlayerList {
} }
public void tick() { public void tick() {
if (++this.p > 600) { if (++this.t > 600) {
this.p = 0; this.t = 0;
} }
/* CraftBukkit start - Remove updating of lag to players -- it spams way to much on big servers. /* CraftBukkit start - Remove updating of lag to players -- it spams way to much on big servers.
@ -797,21 +818,25 @@ public abstract class PlayerList {
} }
} }
public String c() { public String b(boolean flag) {
String s = ""; String s = "";
ArrayList arraylist = Lists.newArrayList(this.players);
for (int i = 0; i < this.players.size(); ++i) { for (int i = 0; i < arraylist.size(); ++i) {
if (i > 0) { if (i > 0) {
s = s + ", "; s = s + ", ";
} }
s = s + ((EntityPlayer) this.players.get(i)).getName(); s = s + ((EntityPlayer) arraylist.get(i)).getName();
if (flag) {
s = s + " (" + ((EntityPlayer) arraylist.get(i)).getUniqueID().toString() + ")";
}
} }
return s; return s;
} }
public String[] d() { public String[] f() {
String[] astring = new String[this.players.size()]; String[] astring = new String[this.players.size()];
for (int i = 0; i < this.players.size(); ++i) { for (int i = 0; i < this.players.size(); ++i) {
@ -821,44 +846,53 @@ public abstract class PlayerList {
return astring; return astring;
} }
public BanList getNameBans() { public GameProfile[] g() {
return this.banByName; GameProfile[] agameprofile = new GameProfile[this.players.size()];
for (int i = 0; i < this.players.size(); ++i) {
agameprofile[i] = ((EntityPlayer) this.players.get(i)).getProfile();
} }
public BanList getIPBans() { return agameprofile;
return this.banByIP;
} }
public void addOp(String s) { public GameProfileBanList getProfileBans() {
this.operators.add(s.toLowerCase()); return this.j;
}
public IpBanList getIPBans() {
return this.k;
}
public void addOp(GameProfile gameprofile) {
this.operators.add(new OpListEntry(gameprofile, this.server.l()));
// CraftBukkit start // CraftBukkit start
Player player = server.server.getPlayerExact(s); Player player = server.server.getPlayer(gameprofile.getId());
if (player != null) { if (player != null) {
player.recalculatePermissions(); player.recalculatePermissions();
} }
// CraftBukkit end // CraftBukkit end
} }
public void removeOp(String s) { public void removeOp(GameProfile gameprofile) {
this.operators.remove(s.toLowerCase()); this.operators.remove(gameprofile);
// CraftBukkit start // CraftBukkit start
Player player = server.server.getPlayerExact(s); Player player = server.server.getPlayer(gameprofile.getId());
if (player != null) { if (player != null) {
player.recalculatePermissions(); player.recalculatePermissions();
} }
// CraftBukkit end // CraftBukkit end
} }
public boolean isWhitelisted(String s) { public boolean isWhitelisted(GameProfile gameprofile) {
s = s.trim().toLowerCase(); return !this.hasWhitelist || this.operators.d(gameprofile) || this.whitelist.d(gameprofile);
return !this.hasWhitelist || this.operators.contains(s) || this.whitelist.contains(s);
} }
public boolean isOp(String s) { public boolean isOp(GameProfile gameprofile) {
// CraftBukkit - fix reference to worldserver array // CraftBukkit - fix reference to worldserver array
return this.operators.contains(s.trim().toLowerCase()) || this.server.M() && this.server.worlds.get(0).getWorldData().allowCommands() && this.server.L().equalsIgnoreCase(s) || this.o; return this.operators.d(gameprofile) || this.server.N() && this.server.worlds.get(0).getWorldData().allowCommands() && this.server.M().equalsIgnoreCase(gameprofile.getName()) || this.s;
} }
public EntityPlayer getPlayer(String s) { public EntityPlayer getPlayer(String s) {
@ -1015,22 +1049,30 @@ public abstract class PlayerList {
} }
} }
public void addWhitelist(String s) { public void addWhitelist(GameProfile gameprofile) {
this.whitelist.add(s); this.whitelist.add(new WhiteListEntry(gameprofile));
} }
public void removeWhitelist(String s) { public void removeWhitelist(GameProfile gameprofile) {
this.whitelist.remove(s); this.whitelist.remove(gameprofile);
} }
public Set getWhitelisted() { public WhiteList getWhitelist() {
return this.whitelist; return this.whitelist;
} }
public Set getOPs() { public String[] getWhitelisted() {
return this.whitelist.getEntries();
}
public OpList getOPs() {
return this.operators; return this.operators;
} }
public String[] n() {
return this.operators.getEntries();
}
public void reloadWhitelist() {} public void reloadWhitelist() {}
public void b(EntityPlayer entityplayer, WorldServer worldserver) { public void b(EntityPlayer entityplayer, WorldServer worldserver) {
@ -1072,7 +1114,7 @@ public abstract class PlayerList {
this.hasWhitelist = flag; this.hasWhitelist = flag;
} }
public List h(String s) { public List b(String s) {
ArrayList arraylist = new ArrayList(); ArrayList arraylist = new ArrayList();
Iterator iterator = this.players.iterator(); Iterator iterator = this.players.iterator();
@ -1087,29 +1129,29 @@ public abstract class PlayerList {
return arraylist; return arraylist;
} }
public int o() { public int s() {
return this.m; return this.q;
} }
public MinecraftServer getServer() { public MinecraftServer getServer() {
return this.server; return this.server;
} }
public NBTTagCompound q() { public NBTTagCompound t() {
return null; return null;
} }
private void a(EntityPlayer entityplayer, EntityPlayer entityplayer1, World world) { private void a(EntityPlayer entityplayer, EntityPlayer entityplayer1, World world) {
if (entityplayer1 != null) { if (entityplayer1 != null) {
entityplayer.playerInteractManager.setGameMode(entityplayer1.playerInteractManager.getGameMode()); entityplayer.playerInteractManager.setGameMode(entityplayer1.playerInteractManager.getGameMode());
} else if (this.n != null) { } else if (this.r != null) {
entityplayer.playerInteractManager.setGameMode(this.n); entityplayer.playerInteractManager.setGameMode(this.r);
} }
entityplayer.playerInteractManager.b(world.getWorldData().getGameType()); entityplayer.playerInteractManager.b(world.getWorldData().getGameType());
} }
public void r() { public void u() {
for (int i = 0; i < this.players.size(); ++i) { for (int i = 0; i < this.players.size(); ++i) {
((EntityPlayer) this.players.get(i)).playerConnection.disconnect(this.server.server.getShutdownMessage()); // CraftBukkit - add custom shutdown message ((EntityPlayer) this.players.get(i)).playerConnection.disconnect(this.server.server.getShutdownMessage()); // CraftBukkit - add custom shutdown message
} }
@ -1132,20 +1174,32 @@ public abstract class PlayerList {
this.sendMessage(ichatbasecomponent, true); this.sendMessage(ichatbasecomponent, true);
} }
public ServerStatisticManager i(String s) { public ServerStatisticManager a(EntityHuman entityhuman) {
ServerStatisticManager serverstatisticmanager = (ServerStatisticManager) this.j.get(s); UUID uuid = entityhuman.getUniqueID();
ServerStatisticManager serverstatisticmanager = uuid == null ? null : (ServerStatisticManager) this.n.get(uuid);
if (serverstatisticmanager == null) { if (serverstatisticmanager == null) {
serverstatisticmanager = new ServerStatisticManager(this.server, new File(this.server.getWorldServer(0).getDataManager().getDirectory(), "stats/" + s + ".json")); File file1 = new File(this.server.getWorldServer(0).getDataManager().getDirectory(), "stats");
File file2 = new File(file1, uuid.toString() + ".json");
if (!file2.exists()) {
File file3 = new File(file1, entityhuman.getName() + ".json");
if (file3.exists() && file3.isFile()) {
file3.renameTo(file2);
}
}
serverstatisticmanager = new ServerStatisticManager(this.server, file2);
serverstatisticmanager.a(); serverstatisticmanager.a();
this.j.put(s, serverstatisticmanager); this.n.put(uuid, serverstatisticmanager);
} }
return serverstatisticmanager; return serverstatisticmanager;
} }
public void a(int i) { public void a(int i) {
this.m = i; this.q = i;
if (this.server.worldServer != null) { if (this.server.worldServer != null) {
WorldServer[] aworldserver = this.server.worldServer; WorldServer[] aworldserver = this.server.worldServer;
int j = aworldserver.length; int j = aworldserver.length;

Datei anzeigen

@ -244,7 +244,7 @@ public class RegionFile {
} }
} }
this.b(i, j, (int) (MinecraftServer.aq() / 1000L)); this.b(i, j, (int) (MinecraftServer.ar() / 1000L));
} catch (IOException ioexception) { } catch (IOException ioexception) {
ioexception.printStackTrace(); ioexception.printStackTrace();
} }

Datei anzeigen

@ -39,7 +39,7 @@ class ThreadCommandReader extends Thread {
// CraftBukkit end // CraftBukkit end
} }
} catch (IOException ioexception) { } catch (IOException ioexception) {
DedicatedServer.aA().error("Exception handling console input", ioexception); DedicatedServer.aF().error("Exception handling console input", ioexception);
} }
} }
} }

Datei anzeigen

@ -1,6 +1,7 @@
package net.minecraft.server; package net.minecraft.server;
import java.math.BigInteger; import java.math.BigInteger;
import java.util.UUID;
import net.minecraft.util.com.mojang.authlib.GameProfile; import net.minecraft.util.com.mojang.authlib.GameProfile;
import net.minecraft.util.com.mojang.authlib.exceptions.AuthenticationUnavailableException; import net.minecraft.util.com.mojang.authlib.exceptions.AuthenticationUnavailableException;
@ -21,20 +22,22 @@ class ThreadPlayerLookupUUID extends Thread {
} }
public void run() { public void run() {
try { GameProfile gameprofile = LoginListener.a(this.a);
String s = (new BigInteger(MinecraftEncryption.a(LoginListener.a(this.a), LoginListener.b(this.a).J().getPublic(), LoginListener.c(this.a)))).toString(16);
LoginListener.a(this.a, LoginListener.b(this.a).at().hasJoinedServer(new GameProfile((String) null, LoginListener.d(this.a).getName()), s)); try {
if (LoginListener.d(this.a) != null) { String s = (new BigInteger(MinecraftEncryption.a(LoginListener.b(this.a), LoginListener.c(this.a).K().getPublic(), LoginListener.d(this.a)))).toString(16);
LoginListener.a(this.a, LoginListener.c(this.a).av().hasJoinedServer(new GameProfile((UUID) null, gameprofile.getName()), s));
if (LoginListener.a(this.a) != null) {
// CraftBukkit start - fire PlayerPreLoginEvent // CraftBukkit start - fire PlayerPreLoginEvent
if (!this.a.networkManager.isConnected()) { if (!this.a.networkManager.isConnected()) {
return; return;
} }
String playerName = LoginListener.d(this.a).getName(); String playerName = LoginListener.a(this.a).getName();
java.net.InetAddress address = ((java.net.InetSocketAddress) a.networkManager.getSocketAddress()).getAddress(); java.net.InetAddress address = ((java.net.InetSocketAddress) a.networkManager.getSocketAddress()).getAddress();
java.util.UUID uniqueId = UtilUUID.b(LoginListener.d(this.a).getId()); java.util.UUID uniqueId = LoginListener.a(this.a).getId();
final org.bukkit.craftbukkit.CraftServer server = LoginListener.b(this.a).server; final org.bukkit.craftbukkit.CraftServer server = LoginListener.c(this.a).server;
AsyncPlayerPreLoginEvent asyncEvent = new AsyncPlayerPreLoginEvent(playerName, address, uniqueId); AsyncPlayerPreLoginEvent asyncEvent = new AsyncPlayerPreLoginEvent(playerName, address, uniqueId);
server.getPluginManager().callEvent(asyncEvent); server.getPluginManager().callEvent(asyncEvent);
@ -51,7 +54,7 @@ class ThreadPlayerLookupUUID extends Thread {
return event.getResult(); return event.getResult();
}}; }};
LoginListener.b(this.a).processQueue.add(waitable); LoginListener.c(this.a).processQueue.add(waitable);
if (waitable.get() != PlayerPreLoginEvent.Result.ALLOWED) { if (waitable.get() != PlayerPreLoginEvent.Result.ALLOWED) {
this.a.disconnect(event.getKickMessage()); this.a.disconnect(event.getKickMessage());
return; return;
@ -64,19 +67,29 @@ class ThreadPlayerLookupUUID extends Thread {
} }
// CraftBukkit end // CraftBukkit end
LoginListener.e().info("UUID of player " + LoginListener.d(this.a).getName() + " is " + LoginListener.d(this.a).getId()); LoginListener.e().info("UUID of player " + LoginListener.a(this.a).getName() + " is " + LoginListener.a(this.a).getId());
LoginListener.a(this.a, EnumProtocolState.READY_TO_ACCEPT);
} else if (LoginListener.c(this.a).N()) {
LoginListener.e().warn("Failed to verify username but will let them in anyway!");
LoginListener.a(this.a, this.a.a(gameprofile));
LoginListener.a(this.a, EnumProtocolState.READY_TO_ACCEPT); LoginListener.a(this.a, EnumProtocolState.READY_TO_ACCEPT);
} else { } else {
this.a.disconnect("Failed to verify username!"); this.a.disconnect("Failed to verify username!");
LoginListener.e().error("Username \'" + LoginListener.d(this.a).getName() + "\' tried to join with an invalid session"); LoginListener.e().error("Username \'" + LoginListener.a(this.a).getName() + "\' tried to join with an invalid session");
} }
} catch (AuthenticationUnavailableException authenticationunavailableexception) { } catch (AuthenticationUnavailableException authenticationunavailableexception) {
if (LoginListener.c(this.a).N()) {
LoginListener.e().warn("Authentication servers are down but will let them in anyway!");
LoginListener.a(this.a, this.a.a(gameprofile));
LoginListener.a(this.a, EnumProtocolState.READY_TO_ACCEPT);
} else {
this.a.disconnect("Authentication servers are down. Please try again later, sorry!"); this.a.disconnect("Authentication servers are down. Please try again later, sorry!");
LoginListener.e().error("Couldn\'t verify username because servers are unavailable"); LoginListener.e().error("Couldn\'t verify username because servers are unavailable");
}
// CraftBukkit start - catch all exceptions // CraftBukkit start - catch all exceptions
} catch (Exception exception) { } catch (Exception exception) {
this.a.disconnect("Failed to verify username!"); this.a.disconnect("Failed to verify username!");
LoginListener.b(this.a).server.getLogger().log(java.util.logging.Level.WARNING, "Exception verifying " + LoginListener.d(this.a).getName(), exception); LoginListener.c(this.a).server.getLogger().log(java.util.logging.Level.WARNING, "Exception verifying " + LoginListener.a(this.a).getName(), exception);
// CraftBukkit end // CraftBukkit end
} }
} }

Datei anzeigen

@ -1,10 +1,16 @@
package net.minecraft.server; package net.minecraft.server;
import java.util.UUID;
import net.minecraft.util.com.google.common.collect.Iterables;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import net.minecraft.util.com.mojang.authlib.properties.Property;
public class TileEntitySkull extends TileEntity { public class TileEntitySkull extends TileEntity {
private int a; private int a;
private int i; private int i;
private String j = ""; private GameProfile j = null;
public TileEntitySkull() {} public TileEntitySkull() {}
@ -12,17 +18,31 @@ public class TileEntitySkull extends TileEntity {
super.b(nbttagcompound); super.b(nbttagcompound);
nbttagcompound.setByte("SkullType", (byte) (this.a & 255)); nbttagcompound.setByte("SkullType", (byte) (this.a & 255));
nbttagcompound.setByte("Rot", (byte) (this.i & 255)); nbttagcompound.setByte("Rot", (byte) (this.i & 255));
nbttagcompound.setString("ExtraType", this.j); if (this.j != null) {
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
GameProfileSerializer.a(nbttagcompound1, this.j);
nbttagcompound.set("Owner", nbttagcompound1);
}
} }
public void a(NBTTagCompound nbttagcompound) { public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound); super.a(nbttagcompound);
this.a = nbttagcompound.getByte("SkullType"); this.a = nbttagcompound.getByte("SkullType");
this.i = nbttagcompound.getByte("Rot"); this.i = nbttagcompound.getByte("Rot");
if (nbttagcompound.hasKeyOfType("ExtraType", 8)) { if (this.a == 3) {
this.j = nbttagcompound.getString("ExtraType"); if (nbttagcompound.hasKeyOfType("Owner", 10)) {
this.j = GameProfileSerializer.a(nbttagcompound.getCompound("Owner"));
} else if (nbttagcompound.hasKeyOfType("ExtraType", 8) && !UtilColor.b(nbttagcompound.getString("ExtraType"))) {
this.j = new GameProfile((UUID) null, nbttagcompound.getString("ExtraType"));
this.d();
} }
} }
}
public GameProfile getGameProfile() {
return this.j;
}
public Packet getUpdatePacket() { public Packet getUpdatePacket() {
NBTTagCompound nbttagcompound = new NBTTagCompound(); NBTTagCompound nbttagcompound = new NBTTagCompound();
@ -31,9 +51,34 @@ public class TileEntitySkull extends TileEntity {
return new PacketPlayOutTileEntityData(this.x, this.y, this.z, 4, nbttagcompound); return new PacketPlayOutTileEntityData(this.x, this.y, this.z, 4, nbttagcompound);
} }
public void setSkullType(int i, String s) { public void setSkullType(int i) {
this.a = i; this.a = i;
this.j = s; this.j = null;
}
public void setGameProfile(GameProfile gameprofile) {
this.a = 3;
this.j = gameprofile;
this.d();
}
private void d() {
if (this.j != null && !UtilColor.b(this.j.getName())) {
if (!this.j.isComplete() || !this.j.getProperties().containsKey("textures")) {
GameProfile gameprofile = MinecraftServer.getServer().getUserCache().a(this.j.getName());
if (gameprofile != null) {
Property property = (Property) Iterables.getFirst(gameprofile.getProperties().get("textures"), null);
if (property == null) {
gameprofile = MinecraftServer.getServer().av().fillProfileProperties(gameprofile, true);
}
this.j = gameprofile;
this.update();
}
}
}
} }
public int getSkullType() { public int getSkullType() {
@ -49,8 +94,4 @@ public class TileEntitySkull extends TileEntity {
return this.i; return this.i;
} }
// CraftBukkit end // CraftBukkit end
public String getExtraType() {
return this.j;
}
} }

Datei anzeigen

@ -8,6 +8,7 @@ import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.Random; import java.util.Random;
import java.util.Set; import java.util.Set;
import java.util.UUID;
import java.util.concurrent.Callable; import java.util.concurrent.Callable;
// CraftBukkit start // CraftBukkit start
@ -2532,8 +2533,22 @@ public abstract class World implements IBlockAccess {
public EntityHuman a(String s) { public EntityHuman a(String s) {
for (int i = 0; i < this.players.size(); ++i) { for (int i = 0; i < this.players.size(); ++i) {
if (s.equals(((EntityHuman) this.players.get(i)).getName())) { EntityHuman entityhuman = (EntityHuman) this.players.get(i);
return (EntityHuman) this.players.get(i);
if (s.equals(entityhuman.getName())) {
return entityhuman;
}
}
return null;
}
public EntityHuman a(UUID uuid) {
for (int i = 0; i < this.players.size(); ++i) {
EntityHuman entityhuman = (EntityHuman) this.players.get(i);
if (uuid.equals(entityhuman.getUniqueID())) {
return entityhuman;
} }
} }
@ -2726,7 +2741,7 @@ public abstract class World implements IBlockAccess {
public Calendar V() { public Calendar V() {
if (this.getTime() % 600L == 0L) { if (this.getTime() % 600L == 0L) {
this.J.setTimeInMillis(MinecraftServer.aq()); this.J.setTimeInMillis(MinecraftServer.ar());
} }
return this.J; return this.J;

Datei anzeigen

@ -24,14 +24,14 @@ public class WorldNBTStorage implements IDataManager, IPlayerFileData {
private final File baseDir; private final File baseDir;
private final File playerDir; private final File playerDir;
private final File dataDir; private final File dataDir;
private final long sessionId = MinecraftServer.aq(); private final long sessionId = MinecraftServer.ar();
private final String f; private final String f;
private UUID uuid = null; // CraftBukkit private UUID uuid = null; // CraftBukkit
public WorldNBTStorage(File file1, String s, boolean flag) { public WorldNBTStorage(File file1, String s, boolean flag) {
this.baseDir = new File(file1, s); this.baseDir = new File(file1, s);
this.baseDir.mkdirs(); this.baseDir.mkdirs();
this.playerDir = new File(this.baseDir, "players"); this.playerDir = new File(this.baseDir, "playerdata");
this.dataDir = new File(this.baseDir, "data"); this.dataDir = new File(this.baseDir, "data");
this.dataDir.mkdirs(); this.dataDir.mkdirs();
this.f = s; this.f = s;
@ -177,8 +177,8 @@ public class WorldNBTStorage implements IDataManager, IPlayerFileData {
NBTTagCompound nbttagcompound = new NBTTagCompound(); NBTTagCompound nbttagcompound = new NBTTagCompound();
entityhuman.e(nbttagcompound); entityhuman.e(nbttagcompound);
File file1 = new File(this.playerDir, entityhuman.getName() + ".dat.tmp"); File file1 = new File(this.playerDir, entityhuman.getUniqueID().toString() + ".dat.tmp");
File file2 = new File(this.playerDir, entityhuman.getName() + ".dat"); File file2 = new File(this.playerDir, entityhuman.getUniqueID().toString() + ".dat");
NBTCompressedStreamTools.a(nbttagcompound, (OutputStream) (new FileOutputStream(file1))); NBTCompressedStreamTools.a(nbttagcompound, (OutputStream) (new FileOutputStream(file1)));
if (file2.exists()) { if (file2.exists()) {
@ -192,7 +192,17 @@ public class WorldNBTStorage implements IDataManager, IPlayerFileData {
} }
public NBTTagCompound load(EntityHuman entityhuman) { public NBTTagCompound load(EntityHuman entityhuman) {
NBTTagCompound nbttagcompound = this.getPlayerData(entityhuman.getName()); NBTTagCompound nbttagcompound = null;
try {
File file1 = new File(this.playerDir, entityhuman.getUniqueID().toString() + ".dat");
if (file1.exists() && file1.isFile()) {
nbttagcompound = NBTCompressedStreamTools.a((InputStream) (new FileInputStream(file1)));
}
} catch (Exception exception) {
a.warn("Failed to load player data for " + entityhuman.getName());
}
if (nbttagcompound != null) { if (nbttagcompound != null) {
// CraftBukkit start // CraftBukkit start
@ -201,6 +211,7 @@ public class WorldNBTStorage implements IDataManager, IPlayerFileData {
player.setFirstPlayed(new File(playerDir, entityhuman.getName() + ".dat").lastModified()); player.setFirstPlayed(new File(playerDir, entityhuman.getName() + ".dat").lastModified());
} }
// CraftBukkit end // CraftBukkit end
entityhuman.f(nbttagcompound); entityhuman.f(nbttagcompound);
} }

Datei anzeigen

@ -9,6 +9,7 @@ import java.util.Random;
import java.util.Set; import java.util.Set;
import java.util.TreeSet; import java.util.TreeSet;
import net.minecraft.util.com.google.common.collect.Lists;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;
@ -765,14 +766,14 @@ public class WorldServer extends World implements org.bukkit.BlockChangeDelegate
} }
this.chunkProvider.saveChunks(flag, iprogressupdate); this.chunkProvider.saveChunks(flag, iprogressupdate);
// CraftBukkit - List -> Collection // CraftBukkit - ArrayList -> Collection
Collection list = this.chunkProviderServer.a(); Collection arraylist = this.chunkProviderServer.a();
Iterator iterator = list.iterator(); Iterator iterator = arraylist.iterator();
while (iterator.hasNext()) { while (iterator.hasNext()) {
Chunk chunk = (Chunk) iterator.next(); Chunk chunk = (Chunk) iterator.next();
if (!this.manager.a(chunk.locX, chunk.locZ)) { if (chunk != null && !this.manager.a(chunk.locX, chunk.locZ)) {
this.chunkProviderServer.queueUnload(chunk.locX, chunk.locZ); this.chunkProviderServer.queueUnload(chunk.locX, chunk.locZ);
} }
} }
@ -787,7 +788,7 @@ public class WorldServer extends World implements org.bukkit.BlockChangeDelegate
protected void a() throws ExceptionWorldConflict { // CraftBukkit - added throws protected void a() throws ExceptionWorldConflict { // CraftBukkit - added throws
this.G(); this.G();
this.dataManager.saveWorldData(this.worldData, this.server.getPlayerList().q()); this.dataManager.saveWorldData(this.worldData, this.server.getPlayerList().t());
// CraftBukkit start - save worldMaps once, rather than once per shared world // CraftBukkit start - save worldMaps once, rather than once per shared world
if (!(this instanceof SecondaryWorldServer)) { if (!(this instanceof SecondaryWorldServer)) {
this.worldMaps.a(); this.worldMaps.a();
@ -961,7 +962,7 @@ public class WorldServer extends World implements org.bukkit.BlockChangeDelegate
} }
protected int p() { protected int p() {
return this.server.getPlayerList().o(); return this.server.getPlayerList().s();
} }
public MinecraftServer getMinecraftServer() { public MinecraftServer getMinecraftServer() {

Datei anzeigen

@ -1,21 +1,21 @@
package org.bukkit.craftbukkit; package org.bukkit.craftbukkit;
import net.minecraft.server.IpBanEntry;
import net.minecraft.server.IpBanList;
import java.util.Date; import java.util.Date;
import net.minecraft.server.BanEntry; public final class CraftIpBanEntry implements org.bukkit.BanEntry {
import net.minecraft.server.BanList; private final IpBanList list;
private final String target;
public final class CraftBanEntry implements org.bukkit.BanEntry {
private final BanList list;
private final String name;
private Date created; private Date created;
private String source; private String source;
private Date expiration; private Date expiration;
private String reason; private String reason;
public CraftBanEntry(BanEntry entry, BanList list) { public CraftIpBanEntry(String target, IpBanEntry entry, IpBanList list) {
this.list = list; this.list = list;
this.name = entry.getName(); this.target = target;
this.created = entry.getCreated() != null ? new Date(entry.getCreated().getTime()) : null; this.created = entry.getCreated() != null ? new Date(entry.getCreated().getTime()) : null;
this.source = entry.getSource(); this.source = entry.getSource();
this.expiration = entry.getExpires() != null ? new Date(entry.getExpires().getTime()) : null; this.expiration = entry.getExpires() != null ? new Date(entry.getExpires().getTime()) : null;
@ -24,7 +24,7 @@ public final class CraftBanEntry implements org.bukkit.BanEntry {
@Override @Override
public String getTarget() { public String getTarget() {
return this.name; return this.target;
} }
@Override @Override
@ -73,14 +73,8 @@ public final class CraftBanEntry implements org.bukkit.BanEntry {
@Override @Override
public void save() { public void save() {
BanEntry entry = new BanEntry(this.name); IpBanEntry entry = new IpBanEntry(target, this.created, this.source, this.expiration, this.reason);
entry.setCreated(this.created);
entry.setSource(this.source);
entry.setExpires(this.expiration);
entry.setReason(this.reason);
this.list.add(entry); this.list.add(entry);
this.list.save(); this.list.save();
} }
} }

Datei anzeigen

@ -1,21 +1,20 @@
package org.bukkit.craftbukkit; package org.bukkit.craftbukkit;
import java.util.Collection; import java.net.InetSocketAddress;
import java.util.Date; import java.util.Date;
import java.util.Set; import java.util.Set;
import net.minecraft.server.IpBanEntry;
import net.minecraft.server.IpBanList;
import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.Validate; import org.apache.commons.lang.Validate;
import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableSet;
import net.minecraft.server.BanEntry; public class CraftIpBanList implements org.bukkit.BanList {
import net.minecraft.server.BanList; private final IpBanList list;
public class CraftBanList implements org.bukkit.BanList { public CraftIpBanList(IpBanList list) {
private final BanList list;
public CraftBanList(BanList list){
this.list = list; this.list = list;
} }
@ -23,33 +22,34 @@ public class CraftBanList implements org.bukkit.BanList {
public org.bukkit.BanEntry getBanEntry(String target) { public org.bukkit.BanEntry getBanEntry(String target) {
Validate.notNull(target, "Target cannot be null"); Validate.notNull(target, "Target cannot be null");
if (!list.getEntries().containsKey(target)) { IpBanEntry entry = (IpBanEntry) list.get(target);
if (entry == null) {
return null; return null;
} }
return new CraftBanEntry((BanEntry) list.getEntries().get(target), list); return new CraftIpBanEntry(target, entry, list);
} }
@Override @Override
public org.bukkit.BanEntry addBan(String target, String reason, Date expires, String source) { public org.bukkit.BanEntry addBan(String target, String reason, Date expires, String source) {
Validate.notNull(target, "Ban target cannot be null"); Validate.notNull(target, "Ban target cannot be null");
BanEntry entry = new BanEntry(target); IpBanEntry entry = new IpBanEntry(target, new Date(),
entry.setSource(StringUtils.isBlank(source) ? entry.getSource() : source); // Use default if null/empty StringUtils.isBlank(source) ? null : source, expires,
entry.setExpires(expires); // Null values are interpreted as "forever" StringUtils.isBlank(reason) ? null : reason);
entry.setReason(StringUtils.isBlank(reason) ? entry.getReason() : reason); // Use default if null/empty
list.add(entry); list.add(entry);
list.save(); list.save();
return new CraftBanEntry(entry, list); return new CraftIpBanEntry(target, entry, list);
} }
@Override @Override
public Set<org.bukkit.BanEntry> getBanEntries() { public Set<org.bukkit.BanEntry> getBanEntries() {
ImmutableSet.Builder<org.bukkit.BanEntry> builder = ImmutableSet.builder(); ImmutableSet.Builder<org.bukkit.BanEntry> builder = ImmutableSet.builder();
for (BanEntry entry : (Collection<BanEntry>) list.getEntries().values()) { for (String target : list.getEntries()) {
builder.add(new CraftBanEntry(entry, list)); builder.add(new CraftIpBanEntry(target, (IpBanEntry) list.get(target), list));
} }
return builder.build(); return builder.build();
} }
@ -57,7 +57,7 @@ public class CraftBanList implements org.bukkit.BanList {
public boolean isBanned(String target) { public boolean isBanned(String target) {
Validate.notNull(target, "Target cannot be null"); Validate.notNull(target, "Target cannot be null");
return list.isBanned(target); return list.isBanned(InetSocketAddress.createUnresolved(target, 0));
} }
@Override @Override
@ -66,5 +66,4 @@ public class CraftBanList implements org.bukkit.BanList {
list.remove(target); list.remove(target);
} }
} }

Datei anzeigen

@ -6,11 +6,11 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.UUID; import java.util.UUID;
import net.minecraft.server.BanEntry;
import net.minecraft.server.EntityPlayer; import net.minecraft.server.EntityPlayer;
import net.minecraft.server.NBTTagCompound; import net.minecraft.server.NBTTagCompound;
import net.minecraft.server.WorldNBTStorage; import net.minecraft.server.WorldNBTStorage;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import org.bukkit.BanList; import org.bukkit.BanList;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
import org.bukkit.Location; import org.bukkit.Location;
@ -24,14 +24,19 @@ import org.bukkit.plugin.Plugin;
@SerializableAs("Player") @SerializableAs("Player")
public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializable { public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializable {
private final String name; private final GameProfile profile;
private final CraftServer server; private final CraftServer server;
private final WorldNBTStorage storage; private final WorldNBTStorage storage;
protected CraftOfflinePlayer(CraftServer server, String name) { protected CraftOfflinePlayer(CraftServer server, GameProfile profile) {
this.server = server; this.server = server;
this.name = name; this.profile = profile;
this.storage = (WorldNBTStorage) (server.console.worlds.get(0).getDataManager()); this.storage = (WorldNBTStorage) (server.console.worlds.get(0).getDataManager());
}
public GameProfile getProfile() {
return profile;
} }
public boolean isOnline() { public boolean isOnline() {
@ -39,21 +44,24 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
} }
public String getName() { public String getName() {
return name; Player player = getPlayer();
if (player != null) {
return player.getName();
}
NBTTagCompound data = getBukkitData();
if (data != null) {
if (data.hasKey("lastKnownName")) {
return data.getString("lastKnownName");
}
}
return null;
} }
// TODO: In 1.7.6+ OfflinePlayer lookup should be by UUID and store it like it does the name now
public UUID getUniqueId() { public UUID getUniqueId() {
NBTTagCompound data = getData(); return profile.getId();
if (data == null) {
return null;
}
if (data.hasKeyOfType("UUIDMost", 4) && data.hasKeyOfType("UUIDLeast", 4)) {
return new UUID(data.getLong("UUIDMost"), data.getLong("UUIDLeast"));
}
return null;
} }
public Server getServer() { public Server getServer() {
@ -61,64 +69,71 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
} }
public boolean isOp() { public boolean isOp() {
return server.getHandle().isOp(getName().toLowerCase()); return server.getHandle().isOp(profile);
} }
public void setOp(boolean value) { public void setOp(boolean value) {
if (value == isOp()) return; if (value == isOp()) {
return;
}
if (value) { if (value) {
server.getHandle().addOp(getName().toLowerCase()); server.getHandle().addOp(profile);
} else { } else {
server.getHandle().removeOp(getName().toLowerCase()); server.getHandle().removeOp(profile);
} }
} }
public boolean isBanned() { public boolean isBanned() {
return server.getBanList(BanList.Type.NAME).isBanned(getName()); return server.getBanList(BanList.Type.UUID).isBanned(getUniqueId().toString());
} }
public void setBanned(boolean value) { public void setBanned(boolean value) {
if (value) { if (value) {
server.getBanList(BanList.Type.NAME).addBan(getName(), null, null, null); server.getBanList(BanList.Type.UUID).addBan(getUniqueId().toString(), null, null, null);
} else { } else {
server.getBanList(BanList.Type.NAME).pardon(getName()); server.getBanList(BanList.Type.UUID).pardon(getUniqueId().toString());
} }
} }
public boolean isWhitelisted() { public boolean isWhitelisted() {
return server.getHandle().getWhitelisted().contains(name.toLowerCase()); return server.getHandle().isWhitelisted(profile);
} }
public void setWhitelisted(boolean value) { public void setWhitelisted(boolean value) {
if (value) { if (value) {
server.getHandle().addWhitelist(name.toLowerCase()); server.getHandle().addWhitelist(profile);
} else { } else {
server.getHandle().removeWhitelist(name.toLowerCase()); server.getHandle().removeWhitelist(profile);
} }
} }
public Map<String, Object> serialize() { public Map<String, Object> serialize() {
Map<String, Object> result = new LinkedHashMap<String, Object>(); Map<String, Object> result = new LinkedHashMap<String, Object>();
result.put("name", name); result.put("UUID", profile.getId().toString());
return result; return result;
} }
public static OfflinePlayer deserialize(Map<String, Object> args) { public static OfflinePlayer deserialize(Map<String, Object> args) {
// Backwards comparability
if (args.get("name") != null) {
return Bukkit.getServer().getOfflinePlayer((String) args.get("name")); return Bukkit.getServer().getOfflinePlayer((String) args.get("name"));
} }
return Bukkit.getServer().getOfflinePlayer(UUID.fromString((String) args.get("UUID")));
}
@Override @Override
public String toString() { public String toString() {
return getClass().getSimpleName() + "[name=" + name + "]"; return getClass().getSimpleName() + "[UUID=" + profile.getId() + "]";
} }
public Player getPlayer() { public Player getPlayer() {
for (Object obj : server.getHandle().players) { for (Object obj : server.getHandle().players) {
EntityPlayer player = (EntityPlayer) obj; EntityPlayer player = (EntityPlayer) obj;
if (player.getName().equalsIgnoreCase(getName())) { if (player.getUniqueID().equals(getUniqueId())) {
return (player.playerConnection != null) ? player.playerConnection.getPlayer() : null; return (player.playerConnection != null) ? player.playerConnection.getPlayer() : null;
} }
} }
@ -128,28 +143,27 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
@Override @Override
public boolean equals(Object obj) { public boolean equals(Object obj) {
if (obj == null) { if (obj == null || !(obj instanceof OfflinePlayer)) {
return false;
}
if (!(obj instanceof OfflinePlayer)) {
return false; return false;
} }
OfflinePlayer other = (OfflinePlayer) obj; OfflinePlayer other = (OfflinePlayer) obj;
if ((this.getName() == null) || (other.getName() == null)) { if ((this.getUniqueId() == null) || (other.getUniqueId() == null)) {
return false; return false;
} }
return this.getName().equalsIgnoreCase(other.getName());
return this.getUniqueId().equals(other.getUniqueId());
} }
@Override @Override
public int hashCode() { public int hashCode() {
int hash = 5; int hash = 5;
hash = 97 * hash + (this.getName() != null ? this.getName().toLowerCase().hashCode() : 0); hash = 97 * hash + (this.getUniqueId() != null ? this.getUniqueId().toString().hashCode() : 0);
return hash; return hash;
} }
private NBTTagCompound getData() { private NBTTagCompound getData() {
return storage.getPlayerData(getName()); return storage.getPlayerData(getUniqueId().toString());
} }
private NBTTagCompound getBukkitData() { private NBTTagCompound getBukkitData() {
@ -166,7 +180,7 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
} }
private File getDataFile() { private File getDataFile() {
return new File(storage.getPlayerDir(), name + ".dat"); return new File(storage.getPlayerDir(), getUniqueId() + ".dat");
} }
public long getFirstPlayed() { public long getFirstPlayed() {

Datei anzeigen

@ -0,0 +1,81 @@
package org.bukkit.craftbukkit;
import net.minecraft.server.GameProfileBanEntry;
import net.minecraft.server.GameProfileBanList;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import java.util.Date;
public final class CraftProfileBanEntry implements org.bukkit.BanEntry {
private final GameProfileBanList list;
private final GameProfile profile;
private Date created;
private String source;
private Date expiration;
private String reason;
public CraftProfileBanEntry(GameProfile profile, GameProfileBanEntry entry, GameProfileBanList list) {
this.list = list;
this.profile = profile;
this.created = entry.getCreated() != null ? new Date(entry.getCreated().getTime()) : null;
this.source = entry.getSource();
this.expiration = entry.getExpires() != null ? new Date(entry.getExpires().getTime()) : null;
this.reason = entry.getReason();
}
@Override
public String getTarget() {
return this.profile.getId().toString();
}
@Override
public Date getCreated() {
return this.created == null ? null : (Date) this.created.clone();
}
@Override
public void setCreated(Date created) {
this.created = created;
}
@Override
public String getSource() {
return this.source;
}
@Override
public void setSource(String source) {
this.source = source;
}
@Override
public Date getExpiration() {
return this.expiration == null ? null : (Date) this.expiration.clone();
}
@Override
public void setExpiration(Date expiration) {
if (expiration != null && expiration.getTime() == new Date(0, 0, 0, 0, 0, 0).getTime()) {
expiration = null; // Forces "forever"
}
this.expiration = expiration;
}
@Override
public String getReason() {
return this.reason;
}
@Override
public void setReason(String reason) {
this.reason = reason;
}
@Override
public void save() {
GameProfileBanEntry entry = new GameProfileBanEntry(profile, this.created, this.source, this.expiration, this.reason);
this.list.add(entry);
this.list.save();
}
}

Datei anzeigen

@ -0,0 +1,86 @@
package org.bukkit.craftbukkit;
import java.util.Date;
import java.util.Set;
import java.util.UUID;
import net.minecraft.server.GameProfileBanEntry;
import net.minecraft.server.GameProfileBanList;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.Validate;
import com.google.common.collect.ImmutableSet;
public class CraftProfileBanList implements org.bukkit.BanList {
private final GameProfileBanList list;
public CraftProfileBanList(GameProfileBanList list){
this.list = list;
}
@Override
public org.bukkit.BanEntry getBanEntry(String target) {
Validate.notNull(target, "Target cannot be null");
UUID id = UUID.fromString(target);
GameProfile profile = new GameProfile(id, null);
GameProfileBanEntry entry = (GameProfileBanEntry) list.get(profile);
if (entry == null) {
return null;
}
return new CraftProfileBanEntry(profile, entry, list);
}
@Override
public org.bukkit.BanEntry addBan(String target, String reason, Date expires, String source) {
Validate.notNull(target, "Ban target cannot be null");
UUID id = UUID.fromString(target);
GameProfile profile = new GameProfile(id, null);
GameProfileBanEntry entry = new GameProfileBanEntry(profile, new Date(),
StringUtils.isBlank(source) ? null : source, expires,
StringUtils.isBlank(reason) ? null : reason);
list.add(entry);
list.save();
return new CraftProfileBanEntry(profile, entry, list);
}
@Override
public Set<org.bukkit.BanEntry> getBanEntries() {
ImmutableSet.Builder<org.bukkit.BanEntry> builder = ImmutableSet.builder();
for (String target : list.getEntries()) {
UUID id = UUID.fromString(target);
GameProfile profile = new GameProfile(id, null);
builder.add(new CraftProfileBanEntry(profile, (GameProfileBanEntry) list.get(profile), list));
}
return builder.build();
}
@Override
public boolean isBanned(String target) {
Validate.notNull(target, "Target cannot be null");
UUID id = UUID.fromString(target);
GameProfile profile = new GameProfile(id, null);
return list.isBanned(profile);
}
@Override
public void pardon(String target) {
Validate.notNull(target, "Target cannot be null");
UUID id = UUID.fromString(target);
GameProfile profile = new GameProfile(id, null);
list.remove(profile);
}
}

Datei anzeigen

@ -15,7 +15,6 @@ import java.util.LinkedHashSet;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.UUID;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
@ -92,6 +91,7 @@ import net.minecraft.server.WorldServer;
import net.minecraft.server.WorldSettings; import net.minecraft.server.WorldSettings;
import net.minecraft.server.WorldType; import net.minecraft.server.WorldType;
import net.minecraft.util.com.google.common.base.Charsets; import net.minecraft.util.com.google.common.base.Charsets;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import net.minecraft.util.io.netty.buffer.ByteBuf; import net.minecraft.util.io.netty.buffer.ByteBuf;
import net.minecraft.util.io.netty.buffer.ByteBufOutputStream; import net.minecraft.util.io.netty.buffer.ByteBufOutputStream;
import net.minecraft.util.io.netty.buffer.Unpooled; import net.minecraft.util.io.netty.buffer.Unpooled;
@ -204,7 +204,7 @@ public final class CraftServer implements Server {
private YamlConfiguration configuration; private YamlConfiguration configuration;
private YamlConfiguration commandsConfiguration; private YamlConfiguration commandsConfiguration;
private final Yaml yaml = new Yaml(new SafeConstructor()); private final Yaml yaml = new Yaml(new SafeConstructor());
private final Map<String, OfflinePlayer> offlinePlayers = new MapMaker().softValues().makeMap(); private final Map<java.util.UUID, OfflinePlayer> offlinePlayers = new MapMaker().softValues().makeMap();
private final AutoUpdater updater; private final AutoUpdater updater;
private final EntityMetadataStore entityMetadata = new EntityMetadataStore(); private final EntityMetadataStore entityMetadata = new EntityMetadataStore();
private final PlayerMetadataStore playerMetadata = new PlayerMetadataStore(); private final PlayerMetadataStore playerMetadata = new PlayerMetadataStore();
@ -514,7 +514,7 @@ public final class CraftServer implements Server {
} }
// TODO: In 1.7.6+ this should use the server's UUID->EntityPlayer map // TODO: In 1.7.6+ this should use the server's UUID->EntityPlayer map
public Player getPlayer(UUID id) { public Player getPlayer(java.util.UUID id) {
for (Player player : getOnlinePlayers()) { for (Player player : getOnlinePlayers()) {
if (player.getUniqueId().equals(id)) { if (player.getUniqueId().equals(id)) {
return player; return player;
@ -734,7 +734,7 @@ public final class CraftServer implements Server {
loadIcon(); loadIcon();
playerList.getIPBans().load(); playerList.getIPBans().load();
playerList.getNameBans().load(); playerList.getProfileBans().load();
for (WorldServer world : console.worlds) { for (WorldServer world : console.worlds) {
world.difficulty = difficulty; world.difficulty = difficulty;
@ -1013,7 +1013,7 @@ public final class CraftServer implements Server {
return worlds.get(name.toLowerCase()); return worlds.get(name.toLowerCase());
} }
public World getWorld(UUID uid) { public World getWorld(java.util.UUID uid) {
for (World world : worlds.values()) { for (World world : worlds.values()) {
if (world.getUID().equals(uid)) { if (world.getUID().equals(uid)) {
return world; return world;
@ -1258,54 +1258,44 @@ public final class CraftServer implements Server {
} }
public OfflinePlayer getOfflinePlayer(String name) { public OfflinePlayer getOfflinePlayer(String name) {
return getOfflinePlayer(name, true);
}
public OfflinePlayer getOfflinePlayer(String name, boolean search) {
Validate.notNull(name, "Name cannot be null"); Validate.notNull(name, "Name cannot be null");
OfflinePlayer result = getPlayerExact(name); // This is potentially blocking :(
String lname = name.toLowerCase(); GameProfile profile = MinecraftServer.getServer().getUserCache().a(name);
if (profile == null) {
// Make an OfflinePlayer using an offline mode UUID since the name has no profile
return getOfflinePlayer(new GameProfile(java.util.UUID.nameUUIDFromBytes(("OfflinePlayer:" + name).getBytes(Charsets.UTF_8)), name));
}
return getOfflinePlayer(profile.getId());
}
public OfflinePlayer getOfflinePlayer(java.util.UUID id) {
Validate.notNull(id, "UUID cannot be null");
OfflinePlayer result = getPlayer(id);
if (result == null) { if (result == null) {
result = offlinePlayers.get(lname); result = offlinePlayers.get(id);
if (result == null) { if (result == null) {
if (search) { result = new CraftOfflinePlayer(this, new GameProfile(id, null));
WorldNBTStorage storage = (WorldNBTStorage) console.worlds.get(0).getDataManager(); offlinePlayers.put(id, result);
for (String dat : storage.getPlayerDir().list(new DatFileFilter())) {
String datName = dat.substring(0, dat.length() - 4);
if (datName.equalsIgnoreCase(name)) {
name = datName;
break;
}
}
}
result = new CraftOfflinePlayer(this, name);
offlinePlayers.put(lname, result);
} }
} else { } else {
offlinePlayers.remove(lname); offlinePlayers.remove(id);
} }
return result; return result;
} }
// TODO: In 1.7.6+ this should just lookup the UUID-based player data filename public OfflinePlayer getOfflinePlayer(GameProfile profile) {
public OfflinePlayer getOfflinePlayer(UUID id) { OfflinePlayer player = new CraftOfflinePlayer(this, profile);
String name = MojangNameLookup.lookupName(id); offlinePlayers.put(profile.getId(), player);
if (name == null) { return player;
// This is completely wrong
name = "InvalidUUID";
}
return getOfflinePlayer(name);
} }
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public Set<String> getIPBans() { public Set<String> getIPBans() {
return new HashSet<String>(playerList.getIPBans().getEntries().keySet()); return new HashSet<String>(Arrays.asList(playerList.getIPBans().getEntries()));
} }
public void banIP(String address) { public void banIP(String address) {
@ -1323,28 +1313,34 @@ public final class CraftServer implements Server {
public Set<OfflinePlayer> getBannedPlayers() { public Set<OfflinePlayer> getBannedPlayers() {
Set<OfflinePlayer> result = new HashSet<OfflinePlayer>(); Set<OfflinePlayer> result = new HashSet<OfflinePlayer>();
for (Object name : playerList.getNameBans().getEntries().keySet()) { for (String id : playerList.getProfileBans().getEntries()) {
result.add(getOfflinePlayer((String) name)); try {
result.add(getOfflinePlayer(java.util.UUID.fromString(id)));
} catch (IllegalArgumentException ex) {
// This shouldn't happen
}
} }
return result; return result;
} }
@Override @Override
public BanList getBanList(BanList.Type type){ public BanList getBanList(BanList.Type type) {
Validate.notNull(type, "Type cannot be null"); Validate.notNull(type, "Type cannot be null");
switch(type){ switch(type){
case IP: case IP:
return new CraftBanList(playerList.getIPBans()); return new CraftIpBanList(playerList.getIPBans());
case NAME: case NAME:
default: // Fall through as a player name list for safety return null;
return new CraftBanList(playerList.getNameBans()); case UUID:
default:
return new CraftProfileBanList(playerList.getProfileBans());
} }
} }
public void setWhitelist(boolean value) { public void setWhitelist(boolean value) {
playerList.hasWhitelist = value; playerList.setHasWhitelist(value);
console.getPropertyManager().a("white-list", value); console.getPropertyManager().a("white-list", value);
} }
@ -1364,8 +1360,12 @@ public final class CraftServer implements Server {
public Set<OfflinePlayer> getOperators() { public Set<OfflinePlayer> getOperators() {
Set<OfflinePlayer> result = new HashSet<OfflinePlayer>(); Set<OfflinePlayer> result = new HashSet<OfflinePlayer>();
for (Object name : playerList.getOPs()) { for (String id : playerList.getOPs().getEntries()) {
result.add(getOfflinePlayer((String) name)); try {
result.add(getOfflinePlayer(java.util.UUID.fromString(id)));
} catch (IllegalArgumentException ex) {
// This shouldn't ever happen
}
} }
return result; return result;
@ -1442,8 +1442,13 @@ public final class CraftServer implements Server {
Set<OfflinePlayer> players = new HashSet<OfflinePlayer>(); Set<OfflinePlayer> players = new HashSet<OfflinePlayer>();
for (String file : files) { for (String file : files) {
players.add(getOfflinePlayer(file.substring(0, file.length() - 4), false)); try {
players.add(getOfflinePlayer(java.util.UUID.fromString(file.substring(0, file.length() - 4))));
} catch (IllegalArgumentException ex) {
// Who knows what is in this directory, just ignore invalid files
} }
}
players.addAll(Arrays.asList(getOnlinePlayers())); players.addAll(Arrays.asList(getOnlinePlayers()));
return players.toArray(new OfflinePlayer[players.size()]); return players.toArray(new OfflinePlayer[players.size()]);

Datei anzeigen

@ -10,6 +10,7 @@ import net.minecraft.server.BlockCocoa;
import net.minecraft.server.BlockRedstoneWire; import net.minecraft.server.BlockRedstoneWire;
import net.minecraft.server.Blocks; import net.minecraft.server.Blocks;
import net.minecraft.server.EnumSkyBlock; import net.minecraft.server.EnumSkyBlock;
import net.minecraft.server.GameProfileSerializer;
import net.minecraft.server.Item; import net.minecraft.server.Item;
import net.minecraft.server.NBTTagCompound; import net.minecraft.server.NBTTagCompound;
import net.minecraft.server.TileEntitySkull; import net.minecraft.server.TileEntitySkull;
@ -423,9 +424,12 @@ public class CraftBlock implements Block {
net.minecraft.server.ItemStack nmsStack = new net.minecraft.server.ItemStack(item, 1, block.getDropData(chunk.getHandle().world, x, y, z)); net.minecraft.server.ItemStack nmsStack = new net.minecraft.server.ItemStack(item, 1, block.getDropData(chunk.getHandle().world, x, y, z));
TileEntitySkull tileentityskull = (TileEntitySkull) chunk.getHandle().world.getTileEntity(x, y, z); TileEntitySkull tileentityskull = (TileEntitySkull) chunk.getHandle().world.getTileEntity(x, y, z);
if (tileentityskull.getSkullType() == 3 && tileentityskull.getExtraType() != null && tileentityskull.getExtraType().length() > 0) { if (tileentityskull.getSkullType() == 3 && tileentityskull.getGameProfile() != null) {
nmsStack.setTag(new NBTTagCompound()); nmsStack.setTag(new NBTTagCompound());
nmsStack.getTag().setString("SkullOwner", tileentityskull.getExtraType()); NBTTagCompound nbttagcompound = new NBTTagCompound();
GameProfileSerializer.a(nbttagcompound, tileentityskull.getGameProfile());
nmsStack.getTag().set("SkullOwner", nbttagcompound);
} }
drops.add(CraftItemStack.asBukkitCopy(nmsStack)); drops.add(CraftItemStack.asBukkitCopy(nmsStack));

Datei anzeigen

@ -1,28 +1,30 @@
package org.bukkit.craftbukkit.block; package org.bukkit.craftbukkit.block;
import com.google.common.base.Strings; import net.minecraft.server.MinecraftServer;
import net.minecraft.server.TileEntitySkull; import net.minecraft.server.TileEntitySkull;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import org.bukkit.OfflinePlayer;
import org.bukkit.SkullType; import org.bukkit.SkullType;
import org.bukkit.block.Block; import org.bukkit.block.Block;
import org.bukkit.block.BlockFace; import org.bukkit.block.BlockFace;
import org.bukkit.block.Skull; import org.bukkit.block.Skull;
import org.bukkit.craftbukkit.CraftOfflinePlayer;
import org.bukkit.craftbukkit.CraftWorld; import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.craftbukkit.entity.CraftPlayer;
public class CraftSkull extends CraftBlockState implements Skull { public class CraftSkull extends CraftBlockState implements Skull {
private final TileEntitySkull skull; private final TileEntitySkull skull;
private String player; private GameProfile profile;
private SkullType skullType; private SkullType skullType;
private byte rotation; private byte rotation;
private final int MAX_OWNER_LENGTH = 16;
public CraftSkull(final Block block) { public CraftSkull(final Block block) {
super(block); super(block);
CraftWorld world = (CraftWorld) block.getWorld(); CraftWorld world = (CraftWorld) block.getWorld();
skull = (TileEntitySkull) world.getTileEntityAt(getX(), getY(), getZ()); skull = (TileEntitySkull) world.getTileEntityAt(getX(), getY(), getZ());
player = skull.getExtraType(); profile = skull.getGameProfile();
skullType = getSkullType(skull.getSkullType()); skullType = getSkullType(skull.getSkullType());
rotation = (byte) skull.getRotation(); rotation = (byte) skull.getRotation();
} }
@ -140,23 +142,36 @@ public class CraftSkull extends CraftBlockState implements Skull {
} }
public boolean hasOwner() { public boolean hasOwner() {
return !Strings.isNullOrEmpty(player); return profile != null;
} }
public String getOwner() { public String getOwner() {
return player; return profile.getName();
} }
public boolean setOwner(String name) { public boolean setOwner(String name) {
if (name == null || name.length() > MAX_OWNER_LENGTH) {
return false; return false;
} }
player = name;
if (skullType != SkullType.PLAYER) { public OfflinePlayer getPlayer() {
skullType = SkullType.PLAYER; return MinecraftServer.getServer().server.getOfflinePlayer(profile);
} }
public boolean setPlayer(OfflinePlayer player) {
GameProfile profile;
if (player instanceof CraftPlayer) {
profile = ((CraftPlayer) player).getProfile();
} else if (player instanceof CraftOfflinePlayer) {
profile = ((CraftOfflinePlayer) player).getProfile();
} else {
return false;
}
if (profile == null) {
return false;
}
this.profile = profile;
return true; return true;
} }
@ -176,7 +191,7 @@ public class CraftSkull extends CraftBlockState implements Skull {
this.skullType = skullType; this.skullType = skullType;
if (skullType != SkullType.PLAYER) { if (skullType != SkullType.PLAYER) {
player = ""; profile = null;
} }
} }
@ -185,7 +200,8 @@ public class CraftSkull extends CraftBlockState implements Skull {
boolean result = super.update(force, applyPhysics); boolean result = super.update(force, applyPhysics);
if (result) { if (result) {
skull.setSkullType(getSkullType(skullType), player); skull.setSkullType(getSkullType(skullType));
skull.setGameProfile(profile);
skull.setRotation(rotation); skull.setRotation(rotation);
skull.update(); skull.update();
} }

Datei anzeigen

@ -9,6 +9,8 @@ import org.bukkit.entity.EntityType;
import org.bukkit.entity.Horse; import org.bukkit.entity.Horse;
import org.bukkit.inventory.HorseInventory; import org.bukkit.inventory.HorseInventory;
import java.util.UUID;
public class CraftHorse extends CraftAnimals implements Horse { public class CraftHorse extends CraftAnimals implements Horse {
public CraftHorse(CraftServer server, EntityHorse entity) { public CraftHorse(CraftServer server, EntityHorse entity) {
@ -97,28 +99,36 @@ public class CraftHorse extends CraftAnimals implements Horse {
@Override @Override
public AnimalTamer getOwner() { public AnimalTamer getOwner() {
if (getOwnerName() == null || "".equals(getOwnerName())) return null; if (getOwnerUUID() == null) return null;
return getServer().getOfflinePlayer(getOwnerName()); return getServer().getOfflinePlayer(getOwnerUUID());
} }
@Override @Override
public void setOwner(AnimalTamer owner) { public void setOwner(AnimalTamer owner) {
if (owner != null && !"".equals(owner.getName())) { if (owner != null) {
setTamed(true); setTamed(true);
getHandle().setPathEntity(null); getHandle().setPathEntity(null);
setOwnerName(owner.getName()); setOwnerUUID(owner.getUniqueId());
} else { } else {
setTamed(false); setTamed(false);
setOwnerName(""); setOwnerUUID(null);
} }
} }
public String getOwnerName() { public UUID getOwnerUUID() {
return getHandle().getOwnerName(); try {
return UUID.fromString(getHandle().getOwnerUUID());
} catch (IllegalArgumentException ex) {
return null;
}
} }
public void setOwnerName(String name) { public void setOwnerUUID(UUID uuid) {
getHandle().setOwnerName(name); if (uuid == null) {
getHandle().setOwnerUUID("");
} else {
getHandle().setOwnerUUID(uuid.toString());
}
} }
public HorseInventory getInventory() { public HorseInventory getInventory() {

Datei anzeigen

@ -13,11 +13,13 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.UUID;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import net.minecraft.server.*; import net.minecraft.server.*;
import net.minecraft.util.com.mojang.authlib.GameProfile;
import org.apache.commons.lang.Validate; import org.apache.commons.lang.Validate;
import org.apache.commons.lang.NotImplementedException; import org.apache.commons.lang.NotImplementedException;
import org.bukkit.*; import org.bukkit.*;
@ -64,7 +66,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
private boolean hasPlayedBefore = false; private boolean hasPlayedBefore = false;
private final ConversationTracker conversationTracker = new ConversationTracker(); private final ConversationTracker conversationTracker = new ConversationTracker();
private final Set<String> channels = new HashSet<String>(); private final Set<String> channels = new HashSet<String>();
private final Map<String, Player> hiddenPlayers = new MapMaker().softValues().makeMap(); private final Set<UUID> hiddenPlayers = new HashSet<UUID>();
private int hash = 0; private int hash = 0;
private double health = 20; private double health = 20;
private boolean scaledHealth = false; private boolean scaledHealth = false;
@ -76,9 +78,13 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
firstPlayed = System.currentTimeMillis(); firstPlayed = System.currentTimeMillis();
} }
public GameProfile getProfile() {
return getHandle().getProfile();
}
@Override @Override
public boolean isOp() { public boolean isOp() {
return server.getHandle().isOp(getName()); return server.getHandle().isOp(getProfile());
} }
@Override @Override
@ -86,9 +92,9 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
if (value == isOp()) return; if (value == isOp()) return;
if (value) { if (value) {
server.getHandle().addOp(getName()); server.getHandle().addOp(getProfile());
} else { } else {
server.getHandle().removeOp(getName()); server.getHandle().removeOp(getProfile());
} }
perm.recalculatePermissions(); perm.recalculatePermissions();
@ -732,29 +738,29 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
@Override @Override
public boolean isBanned() { public boolean isBanned() {
return server.getBanList(BanList.Type.NAME).isBanned(getName()); return server.getBanList(BanList.Type.UUID).isBanned(getUniqueId().toString());
} }
@Override @Override
public void setBanned(boolean value) { public void setBanned(boolean value) {
if (value) { if (value) {
server.getBanList(BanList.Type.NAME).addBan(getName(), null, null, null); server.getBanList(BanList.Type.UUID).addBan(getUniqueId().toString(), null, null, null);
} else { } else {
server.getBanList(BanList.Type.NAME).pardon(getName()); server.getBanList(BanList.Type.UUID).pardon(getUniqueId().toString());
} }
} }
@Override @Override
public boolean isWhitelisted() { public boolean isWhitelisted() {
return server.getHandle().getWhitelisted().contains(getName().toLowerCase()); return server.getHandle().isWhitelisted(getProfile());
} }
@Override @Override
public void setWhitelisted(boolean value) { public void setWhitelisted(boolean value) {
if (value) { if (value) {
server.getHandle().addWhitelist(getName().toLowerCase()); server.getHandle().addWhitelist(getProfile());
} else { } else {
server.getHandle().removeWhitelist(getName().toLowerCase()); server.getHandle().removeWhitelist(getProfile());
} }
} }
@ -872,8 +878,8 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
Validate.notNull(player, "hidden player cannot be null"); Validate.notNull(player, "hidden player cannot be null");
if (getHandle().playerConnection == null) return; if (getHandle().playerConnection == null) return;
if (equals(player)) return; if (equals(player)) return;
if (hiddenPlayers.containsKey(player.getName())) return; if (hiddenPlayers.contains(player.getUniqueId())) return;
hiddenPlayers.put(player.getName(), player); hiddenPlayers.add(player.getUniqueId());
//remove this player from the hidden player's EntityTrackerEntry //remove this player from the hidden player's EntityTrackerEntry
EntityTracker tracker = ((WorldServer) entity.world).tracker; EntityTracker tracker = ((WorldServer) entity.world).tracker;
@ -891,8 +897,8 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
Validate.notNull(player, "shown player cannot be null"); Validate.notNull(player, "shown player cannot be null");
if (getHandle().playerConnection == null) return; if (getHandle().playerConnection == null) return;
if (equals(player)) return; if (equals(player)) return;
if (!hiddenPlayers.containsKey(player.getName())) return; if (!hiddenPlayers.contains(player.getUniqueId())) return;
hiddenPlayers.remove(player.getName()); hiddenPlayers.remove(player.getUniqueId());
EntityTracker tracker = ((WorldServer) entity.world).tracker; EntityTracker tracker = ((WorldServer) entity.world).tracker;
EntityPlayer other = ((CraftPlayer) player).getHandle(); EntityPlayer other = ((CraftPlayer) player).getHandle();
@ -904,8 +910,12 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
getHandle().playerConnection.sendPacket(new PacketPlayOutPlayerInfo(player.getPlayerListName(), true, getHandle().ping)); getHandle().playerConnection.sendPacket(new PacketPlayOutPlayerInfo(player.getPlayerListName(), true, getHandle().ping));
} }
public void removeDisconnectingPlayer(Player player) {
hiddenPlayers.remove(player.getUniqueId());
}
public boolean canSee(Player player) { public boolean canSee(Player player) {
return !hiddenPlayers.containsKey(player.getName()); return !hiddenPlayers.contains(player.getUniqueId());
} }
public Map<String, Object> serialize() { public Map<String, Object> serialize() {

Datei anzeigen

@ -6,6 +6,8 @@ import org.bukkit.entity.AnimalTamer;
import org.bukkit.entity.Creature; import org.bukkit.entity.Creature;
import org.bukkit.entity.Tameable; import org.bukkit.entity.Tameable;
import java.util.UUID;
public class CraftTameableAnimal extends CraftAnimals implements Tameable, Creature { public class CraftTameableAnimal extends CraftAnimals implements Tameable, Creature {
public CraftTameableAnimal(CraftServer server, EntityTameableAnimal entity) { public CraftTameableAnimal(CraftServer server, EntityTameableAnimal entity) {
super(server, entity); super(server, entity);
@ -16,21 +18,35 @@ public class CraftTameableAnimal extends CraftAnimals implements Tameable, Creat
return (EntityTameableAnimal)super.getHandle(); return (EntityTameableAnimal)super.getHandle();
} }
public AnimalTamer getOwner() { public UUID getOwnerUUID() {
if (("").equals(getOwnerName())) return null; try {
return UUID.fromString(getHandle().getOwnerUUID());
} catch (IllegalArgumentException ex) {
return null;
}
}
AnimalTamer owner = getServer().getPlayerExact(getOwnerName()); public void setOwnerUUID(UUID uuid) {
if (uuid == null) {
getHandle().setOwnerUUID("");
} else {
getHandle().setOwnerUUID(uuid.toString());
}
}
public AnimalTamer getOwner() {
if (getOwnerUUID() == null) {
return null;
}
AnimalTamer owner = getServer().getPlayer(getOwnerUUID());
if (owner == null) { if (owner == null) {
owner = getServer().getOfflinePlayer(getOwnerName()); owner = getServer().getOfflinePlayer(getOwnerUUID());
} }
return owner; return owner;
} }
public String getOwnerName() {
return getHandle().getOwnerName();
}
public boolean isTamed() { public boolean isTamed() {
return getHandle().isTamed(); return getHandle().isTamed();
} }
@ -39,21 +55,17 @@ public class CraftTameableAnimal extends CraftAnimals implements Tameable, Creat
if (tamer != null) { if (tamer != null) {
setTamed(true); setTamed(true);
getHandle().setPathEntity(null); getHandle().setPathEntity(null);
setOwnerName(tamer.getName()); setOwnerUUID(tamer.getUniqueId());
} else { } else {
setTamed(false); setTamed(false);
setOwnerName(""); setOwnerUUID(null);
} }
} }
public void setOwnerName(String ownerName) {
getHandle().setOwnerName(ownerName == null ? "" : ownerName);
}
public void setTamed(boolean tame) { public void setTamed(boolean tame) {
getHandle().setTamed(tame); getHandle().setTamed(tame);
if (!tame) { if (!tame) {
setOwnerName(""); setOwnerUUID(null);
} }
} }

Datei anzeigen

@ -85,7 +85,7 @@ public class CraftEventFactory {
if (world.getHandle().dimension != 0) return true; if (world.getHandle().dimension != 0) return true;
if (spawnSize <= 0) return true; if (spawnSize <= 0) return true;
if (((CraftServer) Bukkit.getServer()).getHandle().getOPs().isEmpty()) return true; if (((CraftServer) Bukkit.getServer()).getHandle().getOPs().d()) return true; // Should be isEmpty
if (player.isOp()) return true; if (player.isOp()) return true;
ChunkCoordinates chunkcoordinates = worldServer.getSpawn(); ChunkCoordinates chunkcoordinates = worldServer.getSpawn();