2012-07-29 09:33:13 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
import java.io.DataInput;
|
|
|
|
import java.io.DataOutput;
|
2012-07-29 09:33:13 +02:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.zip.DataFormatException;
|
|
|
|
import java.util.zip.Deflater;
|
|
|
|
import java.util.zip.Inflater;
|
|
|
|
|
|
|
|
public class Packet56MapChunkBulk extends Packet {
|
|
|
|
|
|
|
|
private int[] c;
|
|
|
|
private int[] d;
|
|
|
|
public int[] a;
|
|
|
|
public int[] b;
|
2012-11-06 13:05:28 +01:00
|
|
|
private byte[] buffer;
|
2012-07-29 09:33:13 +02:00
|
|
|
private byte[][] inflatedBuffers;
|
2012-11-06 13:05:28 +01:00
|
|
|
private int size;
|
2012-12-20 05:03:52 +01:00
|
|
|
private boolean h;
|
2012-11-06 13:05:28 +01:00
|
|
|
private byte[] buildBuffer = new byte[0]; // CraftBukkit - remove static
|
|
|
|
// CraftBukkit start
|
|
|
|
static final ThreadLocal<Deflater> localDeflater = new ThreadLocal<Deflater>() {
|
|
|
|
@Override
|
|
|
|
protected Deflater initialValue() {
|
2012-11-18 15:45:54 +01:00
|
|
|
// Don't use higher compression level, slows things down too much
|
|
|
|
return new Deflater(6);
|
2012-11-06 13:05:28 +01:00
|
|
|
}
|
|
|
|
};
|
2012-07-29 09:33:13 +02:00
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
public Packet56MapChunkBulk() {}
|
|
|
|
|
|
|
|
public Packet56MapChunkBulk(List list) {
|
|
|
|
int i = list.size();
|
|
|
|
|
|
|
|
this.c = new int[i];
|
|
|
|
this.d = new int[i];
|
|
|
|
this.a = new int[i];
|
|
|
|
this.b = new int[i];
|
|
|
|
this.inflatedBuffers = new byte[i][];
|
2013-07-01 13:03:00 +02:00
|
|
|
this.h = !list.isEmpty() && !((Chunk) list.get(0)).world.worldProvider.g;
|
2012-07-29 09:33:13 +02:00
|
|
|
int j = 0;
|
|
|
|
|
|
|
|
for (int k = 0; k < i; ++k) {
|
|
|
|
Chunk chunk = (Chunk) list.get(k);
|
|
|
|
ChunkMap chunkmap = Packet51MapChunk.a(chunk, true, '\uffff');
|
|
|
|
|
|
|
|
if (buildBuffer.length < j + chunkmap.a.length) {
|
|
|
|
byte[] abyte = new byte[j + chunkmap.a.length];
|
|
|
|
|
|
|
|
System.arraycopy(buildBuffer, 0, abyte, 0, buildBuffer.length);
|
|
|
|
buildBuffer = abyte;
|
|
|
|
}
|
|
|
|
|
|
|
|
System.arraycopy(chunkmap.a, 0, buildBuffer, j, chunkmap.a.length);
|
|
|
|
j += chunkmap.a.length;
|
|
|
|
this.c[k] = chunk.x;
|
|
|
|
this.d[k] = chunk.z;
|
|
|
|
this.a[k] = chunkmap.b;
|
|
|
|
this.b[k] = chunkmap.c;
|
|
|
|
this.inflatedBuffers[k] = chunkmap.a;
|
|
|
|
}
|
|
|
|
|
2013-03-25 05:22:32 +01:00
|
|
|
/* CraftBukkit start - Moved to compress()
|
2012-07-29 09:33:13 +02:00
|
|
|
Deflater deflater = new Deflater(-1);
|
|
|
|
|
|
|
|
try {
|
|
|
|
deflater.setInput(buildBuffer, 0, j);
|
|
|
|
deflater.finish();
|
|
|
|
this.buffer = new byte[j];
|
|
|
|
this.size = deflater.deflate(this.buffer);
|
|
|
|
} finally {
|
|
|
|
deflater.end();
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
// Add compression method
|
|
|
|
public void compress() {
|
|
|
|
if (this.buffer != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Deflater deflater = localDeflater.get();
|
|
|
|
deflater.reset();
|
|
|
|
deflater.setInput(this.buildBuffer);
|
|
|
|
deflater.finish();
|
|
|
|
|
|
|
|
this.buffer = new byte[this.buildBuffer.length + 100];
|
|
|
|
this.size = deflater.deflate(this.buffer);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
public void a(DataInput datainput) throws IOException { // CraftBukkit - throws IOException
|
|
|
|
short short1 = datainput.readShort();
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
this.size = datainput.readInt();
|
|
|
|
this.h = datainput.readBoolean();
|
2012-07-29 09:33:13 +02:00
|
|
|
this.c = new int[short1];
|
|
|
|
this.d = new int[short1];
|
|
|
|
this.a = new int[short1];
|
|
|
|
this.b = new int[short1];
|
|
|
|
this.inflatedBuffers = new byte[short1][];
|
|
|
|
if (buildBuffer.length < this.size) {
|
|
|
|
buildBuffer = new byte[this.size];
|
|
|
|
}
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
datainput.readFully(buildBuffer, 0, this.size);
|
2012-07-29 09:33:13 +02:00
|
|
|
byte[] abyte = new byte[196864 * short1];
|
|
|
|
Inflater inflater = new Inflater();
|
|
|
|
|
|
|
|
inflater.setInput(buildBuffer, 0, this.size);
|
|
|
|
|
|
|
|
try {
|
|
|
|
inflater.inflate(abyte);
|
|
|
|
} catch (DataFormatException dataformatexception) {
|
|
|
|
throw new IOException("Bad compressed data format");
|
|
|
|
} finally {
|
|
|
|
inflater.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for (int j = 0; j < short1; ++j) {
|
2013-07-01 13:03:00 +02:00
|
|
|
this.c[j] = datainput.readInt();
|
|
|
|
this.d[j] = datainput.readInt();
|
|
|
|
this.a[j] = datainput.readShort();
|
|
|
|
this.b[j] = datainput.readShort();
|
2012-07-29 09:33:13 +02:00
|
|
|
int k = 0;
|
2012-12-20 05:03:52 +01:00
|
|
|
int l = 0;
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
int i1;
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
for (i1 = 0; i1 < 16; ++i1) {
|
|
|
|
k += this.a[j] >> i1 & 1;
|
|
|
|
l += this.b[j] >> i1 & 1;
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
i1 = 2048 * 4 * k + 256;
|
|
|
|
i1 += 2048 * l;
|
|
|
|
if (this.h) {
|
|
|
|
i1 += 2048 * k;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.inflatedBuffers[j] = new byte[i1];
|
|
|
|
System.arraycopy(abyte, i, this.inflatedBuffers[j], 0, i1);
|
|
|
|
i += i1;
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
public void a(DataOutput dataoutput) throws IOException { // CraftBukkit - throws IOException
|
2012-11-06 13:05:28 +01:00
|
|
|
compress(); // CraftBukkit
|
2013-07-01 13:03:00 +02:00
|
|
|
dataoutput.writeShort(this.c.length);
|
|
|
|
dataoutput.writeInt(this.size);
|
|
|
|
dataoutput.writeBoolean(this.h);
|
|
|
|
dataoutput.write(this.buffer, 0, this.size);
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < this.c.length; ++i) {
|
2013-07-01 13:03:00 +02:00
|
|
|
dataoutput.writeInt(this.c[i]);
|
|
|
|
dataoutput.writeInt(this.d[i]);
|
|
|
|
dataoutput.writeShort((short) (this.a[i] & '\uffff'));
|
|
|
|
dataoutput.writeShort((short) (this.b[i] & '\uffff'));
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
public void handle(Connection connection) {
|
|
|
|
connection.a(this);
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public int a() {
|
|
|
|
return 6 + this.size + 12 * this.d();
|
|
|
|
}
|
|
|
|
|
|
|
|
public int d() {
|
|
|
|
return this.c.length;
|
|
|
|
}
|
|
|
|
}
|