package net.minecraft.network.packet; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import net.minecraft.entity.Entity; public class Packet28EntityVelocity extends Packet { public int entityId; public int motionX; public int motionY; public int motionZ; public Packet28EntityVelocity() {} public Packet28EntityVelocity(Entity par1Entity) { this(par1Entity.entityId, par1Entity.motionX, par1Entity.motionY, par1Entity.motionZ); } public Packet28EntityVelocity(int par1, double par2, double par4, double par6) { this.entityId = par1; double var8 = 3.9D; if (par2 < -var8) { par2 = -var8; } if (par4 < -var8) { par4 = -var8; } if (par6 < -var8) { par6 = -var8; } if (par2 > var8) { par2 = var8; } if (par4 > var8) { par4 = var8; } if (par6 > var8) { par6 = var8; } this.motionX = (int)(par2 * 8000.0D); this.motionY = (int)(par4 * 8000.0D); this.motionZ = (int)(par6 * 8000.0D); } /** * Abstract. Reads the raw packet data from the data stream. */ public void readPacketData(DataInputStream par1DataInputStream) throws IOException { this.entityId = par1DataInputStream.readInt(); this.motionX = par1DataInputStream.readShort(); this.motionY = par1DataInputStream.readShort(); this.motionZ = par1DataInputStream.readShort(); } /** * Abstract. Writes the raw packet data to the data stream. */ public void writePacketData(DataOutputStream par1DataOutputStream) throws IOException { par1DataOutputStream.writeInt(this.entityId); par1DataOutputStream.writeShort(this.motionX); par1DataOutputStream.writeShort(this.motionY); par1DataOutputStream.writeShort(this.motionZ); } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(NetHandler par1NetHandler) { par1NetHandler.handleEntityVelocity(this); } /** * Abstract. Return the size of the packet (not counting the header). */ public int getPacketSize() { return 10; } /** * only false for the abstract Packet class, all real packets return true */ public boolean isRealPacket() { return true; } /** * eg return packet30entity.entityId == entityId; WARNING : will throw if you compare a packet to a different packet * class */ public boolean containsSameEntityIDAs(Packet par1Packet) { Packet28EntityVelocity var2 = (Packet28EntityVelocity)par1Packet; return var2.entityId == this.entityId; } }