blob: 0b6780ff9be94bf9183db2f0207af81dd58c2b1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
package net.minecraft.server;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException; // CraftBukkit
public class Packet20NamedEntitySpawn extends Packet {
public int a;
public String b;
public int c;
public int d;
public int e;
public byte f;
public byte g;
public int h;
public Packet20NamedEntitySpawn() {}
public Packet20NamedEntitySpawn(EntityHuman entityhuman) {
this.a = entityhuman.id;
// CraftBukkit start - limit name length to 16 characters
if (entityhuman.name.length() > 16) {
this.b = entityhuman.name.substring(0, 16);
}
else {
this.b = entityhuman.name;
}
// CraftBukkit end
this.c = MathHelper.floor(entityhuman.locX * 32.0D);
this.d = MathHelper.floor(entityhuman.locY * 32.0D);
this.e = MathHelper.floor(entityhuman.locZ * 32.0D);
this.f = (byte) ((int) (entityhuman.yaw * 256.0F / 360.0F));
this.g = (byte) ((int) (entityhuman.pitch * 256.0F / 360.0F));
ItemStack itemstack = entityhuman.inventory.getItemInHand();
this.h = itemstack == null ? 0 : itemstack.id;
}
public void a(DataInputStream datainputstream) throws IOException { // CraftBukkit
this.a = datainputstream.readInt();
this.b = a(datainputstream, 16);
this.c = datainputstream.readInt();
this.d = datainputstream.readInt();
this.e = datainputstream.readInt();
this.f = datainputstream.readByte();
this.g = datainputstream.readByte();
this.h = datainputstream.readShort();
}
public void a(DataOutputStream dataoutputstream) throws IOException { // CraftBukkit
dataoutputstream.writeInt(this.a);
a(this.b, dataoutputstream);
dataoutputstream.writeInt(this.c);
dataoutputstream.writeInt(this.d);
dataoutputstream.writeInt(this.e);
dataoutputstream.writeByte(this.f);
dataoutputstream.writeByte(this.g);
dataoutputstream.writeShort(this.h);
}
public void handle(NetHandler nethandler) {
nethandler.a(this);
}
public int a() {
return 28;
}
}
|