2011-01-05 23:56:31 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-01-08 02:22:17 +01:00
|
|
|
import org.bukkit.Location;
|
2011-01-17 01:53:42 +01:00
|
|
|
import org.bukkit.entity.Vehicle;
|
2011-06-27 00:25:01 +02:00
|
|
|
import org.bukkit.event.vehicle.VehicleCreateEvent;
|
|
|
|
import org.bukkit.event.vehicle.VehicleDamageEvent;
|
|
|
|
import org.bukkit.event.vehicle.VehicleDestroyEvent;
|
|
|
|
import org.bukkit.event.vehicle.VehicleEnterEvent;
|
|
|
|
import org.bukkit.event.vehicle.VehicleEntityCollisionEvent;
|
|
|
|
import org.bukkit.event.vehicle.VehicleMoveEvent;
|
|
|
|
import org.bukkit.event.vehicle.VehicleUpdateEvent;
|
2011-11-29 11:22:35 +01:00
|
|
|
import org.bukkit.util.Vector;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public class EntityMinecart extends Entity implements IInventory {
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private ItemStack[] items;
|
2011-11-20 09:01:14 +01:00
|
|
|
private int e;
|
|
|
|
private boolean f;
|
2011-04-20 19:05:14 +02:00
|
|
|
public int type;
|
2011-11-20 09:01:14 +01:00
|
|
|
public double b;
|
|
|
|
public double c;
|
2011-04-20 19:05:14 +02:00
|
|
|
private static final int[][][] matrix = new int[][][] { { { 0, 0, -1}, { 0, 0, 1}}, { { -1, 0, 0}, { 1, 0, 0}}, { { -1, -1, 0}, { 1, 0, 0}}, { { -1, 0, 0}, { 1, -1, 0}}, { { 0, 0, -1}, { 0, -1, 1}}, { { 0, -1, -1}, { 0, 0, 1}}, { { 0, 0, 1}, { 1, 0, 0}}, { { 0, 0, 1}, { -1, 0, 0}}, { { 0, 0, -1}, { -1, 0, 0}}, { { 0, 0, -1}, { 1, 0, 0}}};
|
2011-11-20 09:01:14 +01:00
|
|
|
private int h;
|
|
|
|
private double i;
|
|
|
|
private double j;
|
|
|
|
private double k;
|
2011-02-23 03:37:56 +01:00
|
|
|
private double l;
|
|
|
|
private double m;
|
2011-01-11 09:25:13 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2011-02-12 15:57:16 +01:00
|
|
|
public boolean slowWhenEmpty = true;
|
2011-11-29 11:22:35 +01:00
|
|
|
private double derailedX = 0.5;
|
|
|
|
private double derailedY = 0.5;
|
|
|
|
private double derailedZ = 0.5;
|
|
|
|
private double flyingX = 0.95;
|
|
|
|
private double flyingY = 0.95;
|
|
|
|
private double flyingZ = 0.95;
|
2011-02-12 15:57:16 +01:00
|
|
|
public double maxSpeed = 0.4D;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
public ItemStack[] getContents() {
|
2011-04-20 19:05:14 +02:00
|
|
|
return this.items;
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-01-05 23:56:31 +01:00
|
|
|
public EntityMinecart(World world) {
|
|
|
|
super(world);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.items = new ItemStack[27]; // CraftBukkit
|
2011-11-20 09:01:14 +01:00
|
|
|
this.e = 0;
|
|
|
|
this.f = false;
|
2012-01-12 23:10:13 +01:00
|
|
|
this.bf = true;
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.98F, 0.7F);
|
2011-11-30 00:17:43 +01:00
|
|
|
this.height = this.length / 2.0F;
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
protected boolean g_() {
|
2011-03-31 22:40:00 +02:00
|
|
|
return false;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
protected void b() {
|
|
|
|
this.datawatcher.a(16, new Byte((byte) 0));
|
|
|
|
this.datawatcher.a(17, new Integer(0));
|
|
|
|
this.datawatcher.a(18, new Integer(1));
|
|
|
|
this.datawatcher.a(19, new Integer(0));
|
|
|
|
}
|
2011-01-14 14:31:10 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public AxisAlignedBB a_(Entity entity) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return entity.boundingBox;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public AxisAlignedBB h_() {
|
2011-01-05 23:56:31 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public boolean f_() {
|
2011-01-05 23:56:31 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public EntityMinecart(World world, double d0, double d1, double d2, int i) {
|
2011-01-05 23:56:31 +01:00
|
|
|
this(world);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition(d0, d1 + (double) this.height, d2);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.motX = 0.0D;
|
|
|
|
this.motY = 0.0D;
|
|
|
|
this.motZ = 0.0D;
|
|
|
|
this.lastX = d0;
|
|
|
|
this.lastY = d1;
|
|
|
|
this.lastZ = d2;
|
2011-04-20 19:05:14 +02:00
|
|
|
this.type = i;
|
2011-03-02 00:23:33 +01:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(new VehicleCreateEvent((Vehicle) this.getBukkitEntity())); // CraftBukkit
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public double q() {
|
2011-11-30 00:17:43 +01:00
|
|
|
return (double) this.length * 0.0D - 0.30000001192092896D;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean damageEntity(DamageSource damagesource, int i) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!this.world.isStatic && !this.dead) {
|
|
|
|
// CraftBukkit start
|
|
|
|
Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
2011-09-15 18:36:27 +02:00
|
|
|
org.bukkit.entity.Entity passenger = (damagesource.getEntity() == null) ? null : damagesource.getEntity().getBukkitEntity();
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
VehicleDamageEvent event = new VehicleDamageEvent(vehicle, passenger, i);
|
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (event.isCancelled()) {
|
|
|
|
return true;
|
|
|
|
}
|
2011-02-23 13:56:36 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
i = event.getDamage();
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.d(-this.m());
|
|
|
|
this.c(10);
|
2012-01-12 23:10:13 +01:00
|
|
|
this.aM();
|
2011-11-20 09:01:14 +01:00
|
|
|
this.setDamage(this.getDamage() + i * 10);
|
|
|
|
if (this.getDamage() > 40) {
|
2011-05-26 14:48:22 +02:00
|
|
|
if (this.passenger != null) {
|
|
|
|
this.passenger.mount(this);
|
|
|
|
}
|
2011-03-16 12:49:37 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
VehicleDestroyEvent destroyEvent = new VehicleDestroyEvent(vehicle, passenger);
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(destroyEvent);
|
2011-03-16 12:49:37 +01:00
|
|
|
|
|
|
|
if (destroyEvent.isCancelled()) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.setDamage(40); // Maximize damage so this doesn't get triggered again right away
|
2011-03-16 12:49:37 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
this.die();
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(Item.MINECART.id, 1, 0.0F);
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.type == 1) {
|
2011-05-26 14:48:22 +02:00
|
|
|
EntityMinecart entityminecart = this;
|
|
|
|
|
|
|
|
for (int j = 0; j < entityminecart.getSize(); ++j) {
|
|
|
|
ItemStack itemstack = entityminecart.getItem(j);
|
|
|
|
|
|
|
|
if (itemstack != null) {
|
|
|
|
float f = this.random.nextFloat() * 0.8F + 0.1F;
|
|
|
|
float f1 = this.random.nextFloat() * 0.8F + 0.1F;
|
|
|
|
float f2 = this.random.nextFloat() * 0.8F + 0.1F;
|
|
|
|
|
|
|
|
while (itemstack.count > 0) {
|
|
|
|
int k = this.random.nextInt(21) + 10;
|
|
|
|
|
|
|
|
if (k > itemstack.count) {
|
|
|
|
k = itemstack.count;
|
|
|
|
}
|
|
|
|
|
|
|
|
itemstack.count -= k;
|
|
|
|
EntityItem entityitem = new EntityItem(this.world, this.locX + (double) f, this.locY + (double) f1, this.locZ + (double) f2, new ItemStack(itemstack.id, k, itemstack.getData()));
|
|
|
|
float f3 = 0.05F;
|
|
|
|
|
|
|
|
entityitem.motX = (double) ((float) this.random.nextGaussian() * f3);
|
|
|
|
entityitem.motY = (double) ((float) this.random.nextGaussian() * f3 + 0.2F);
|
|
|
|
entityitem.motZ = (double) ((float) this.random.nextGaussian() * f3);
|
|
|
|
this.world.addEntity(entityitem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(Block.CHEST.id, 1, 0.0F);
|
2011-04-20 19:05:14 +02:00
|
|
|
} else if (this.type == 2) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(Block.FURNACE.id, 1, 0.0F);
|
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return true;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public boolean e_() {
|
2011-01-29 22:50:29 +01:00
|
|
|
return !this.dead;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void die() {
|
|
|
|
for (int i = 0; i < this.getSize(); ++i) {
|
|
|
|
ItemStack itemstack = this.getItem(i);
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (itemstack != null) {
|
|
|
|
float f = this.random.nextFloat() * 0.8F + 0.1F;
|
|
|
|
float f1 = this.random.nextFloat() * 0.8F + 0.1F;
|
|
|
|
float f2 = this.random.nextFloat() * 0.8F + 0.1F;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
while (itemstack.count > 0) {
|
|
|
|
int j = this.random.nextInt(21) + 10;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (j > itemstack.count) {
|
|
|
|
j = itemstack.count;
|
|
|
|
}
|
|
|
|
|
|
|
|
itemstack.count -= j;
|
2011-04-20 19:05:14 +02:00
|
|
|
EntityItem entityitem = new EntityItem(this.world, this.locX + (double) f, this.locY + (double) f1, this.locZ + (double) f2, new ItemStack(itemstack.id, j, itemstack.getData()));
|
2011-01-29 22:50:29 +01:00
|
|
|
float f3 = 0.05F;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
entityitem.motX = (double) ((float) this.random.nextGaussian() * f3);
|
|
|
|
entityitem.motY = (double) ((float) this.random.nextGaussian() * f3 + 0.2F);
|
|
|
|
entityitem.motZ = (double) ((float) this.random.nextGaussian() * f3);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.world.addEntity(entityitem);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
super.die();
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2012-01-12 23:10:13 +01:00
|
|
|
public void y_() {
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-01-29 22:50:29 +01:00
|
|
|
double prevX = this.locX;
|
|
|
|
double prevY = this.locY;
|
|
|
|
double prevZ = this.locZ;
|
|
|
|
float prevYaw = this.yaw;
|
|
|
|
float prevPitch = this.pitch;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.l() > 0) {
|
|
|
|
this.c(this.l() - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.getDamage() > 0) {
|
|
|
|
this.setDamage(this.getDamage() - 1);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.j() && this.random.nextInt(4) == 0) {
|
|
|
|
this.world.a("largesmoke", this.locX, this.locY + 0.8D, this.locZ, 0.0D, 0.0D, 0.0D);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.world.isStatic) {
|
|
|
|
if (this.h > 0) {
|
|
|
|
double d0 = this.locX + (this.i - this.locX) / (double) this.h;
|
|
|
|
double d1 = this.locY + (this.j - this.locY) / (double) this.h;
|
|
|
|
double d2 = this.locZ + (this.k - this.locZ) / (double) this.h;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
double d3;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
for (d3 = this.l - (double) this.yaw; d3 < -180.0D; d3 += 360.0D) {
|
2011-01-05 23:56:31 +01:00
|
|
|
;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
while (d3 >= 180.0D) {
|
|
|
|
d3 -= 360.0D;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.yaw = (float) ((double) this.yaw + d3 / (double) this.h);
|
|
|
|
this.pitch = (float) ((double) this.pitch + (this.m - (double) this.pitch) / (double) this.h);
|
|
|
|
--this.h;
|
|
|
|
this.setPosition(d0, d1, d2);
|
2011-02-23 03:37:56 +01:00
|
|
|
this.c(this.yaw, this.pitch);
|
2011-01-05 23:56:31 +01:00
|
|
|
} else {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition(this.locX, this.locY, this.locZ);
|
2011-02-23 03:37:56 +01:00
|
|
|
this.c(this.yaw, this.pitch);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
this.lastX = this.locX;
|
|
|
|
this.lastY = this.locY;
|
|
|
|
this.lastZ = this.locZ;
|
|
|
|
this.motY -= 0.03999999910593033D;
|
2011-04-20 19:05:14 +02:00
|
|
|
int i = MathHelper.floor(this.locX);
|
|
|
|
int j = MathHelper.floor(this.locY);
|
|
|
|
int k = MathHelper.floor(this.locZ);
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (BlockMinecartTrack.g(this.world, i, j - 1, k)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--j;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit
|
|
|
|
double d4 = this.maxSpeed;
|
2011-11-20 09:01:14 +01:00
|
|
|
double d5 = 0.0078125D;
|
2011-04-20 22:47:26 +02:00
|
|
|
int l = this.world.getTypeId(i, j, k);
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (BlockMinecartTrack.d(l)) {
|
2011-05-26 14:48:22 +02:00
|
|
|
Vec3D vec3d = this.h(this.locX, this.locY, this.locZ);
|
2011-04-20 22:47:26 +02:00
|
|
|
int i1 = this.world.getData(i, j, k);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.locY = (double) j;
|
2011-11-20 09:01:14 +01:00
|
|
|
boolean flag = false;
|
2011-04-20 22:47:26 +02:00
|
|
|
boolean flag1 = false;
|
|
|
|
|
|
|
|
if (l == Block.GOLDEN_RAIL.id) {
|
2011-11-20 09:01:14 +01:00
|
|
|
flag = (i1 & 8) != 0;
|
|
|
|
flag1 = !flag;
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (((BlockMinecartTrack) Block.byId[l]).h()) {
|
2011-04-20 22:47:26 +02:00
|
|
|
i1 &= 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i1 >= 2 && i1 <= 5) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.locY = (double) (j + 1);
|
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (i1 == 2) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.motX -= d5;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (i1 == 3) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.motX += d5;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (i1 == 4) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.motZ += d5;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (i1 == 5) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.motZ -= d5;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
int[][] aint = matrix[i1];
|
2011-11-20 09:01:14 +01:00
|
|
|
double d6 = (double) (aint[1][0] - aint[0][0]);
|
|
|
|
double d7 = (double) (aint[1][2] - aint[0][2]);
|
|
|
|
double d8 = Math.sqrt(d6 * d6 + d7 * d7);
|
|
|
|
double d9 = this.motX * d6 + this.motZ * d7;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (d9 < 0.0D) {
|
2011-01-29 22:50:29 +01:00
|
|
|
d6 = -d6;
|
2011-11-20 09:01:14 +01:00
|
|
|
d7 = -d7;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
double d10 = Math.sqrt(this.motX * this.motX + this.motZ * this.motZ);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.motX = d10 * d6 / d8;
|
|
|
|
this.motZ = d10 * d7 / d8;
|
|
|
|
double d11;
|
2011-04-20 22:47:26 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (flag1) {
|
|
|
|
d11 = Math.sqrt(this.motX * this.motX + this.motZ * this.motZ);
|
|
|
|
if (d11 < 0.03D) {
|
2011-04-20 22:47:26 +02:00
|
|
|
this.motX *= 0.0D;
|
|
|
|
this.motY *= 0.0D;
|
|
|
|
this.motZ *= 0.0D;
|
|
|
|
} else {
|
|
|
|
this.motX *= 0.5D;
|
|
|
|
this.motY *= 0.0D;
|
|
|
|
this.motZ *= 0.5D;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
d11 = 0.0D;
|
|
|
|
double d12 = (double) i + 0.5D + (double) aint[0][0] * 0.5D;
|
|
|
|
double d13 = (double) k + 0.5D + (double) aint[0][2] * 0.5D;
|
|
|
|
double d14 = (double) i + 0.5D + (double) aint[1][0] * 0.5D;
|
|
|
|
double d15 = (double) k + 0.5D + (double) aint[1][2] * 0.5D;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
d6 = d14 - d12;
|
2011-11-20 09:01:14 +01:00
|
|
|
d7 = d15 - d13;
|
2011-01-29 22:50:29 +01:00
|
|
|
double d16;
|
|
|
|
double d17;
|
2011-11-20 09:01:14 +01:00
|
|
|
double d18;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (d6 == 0.0D) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.locX = (double) i + 0.5D;
|
2011-11-20 09:01:14 +01:00
|
|
|
d11 = this.locZ - (double) k;
|
|
|
|
} else if (d7 == 0.0D) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.locZ = (double) k + 0.5D;
|
2011-11-20 09:01:14 +01:00
|
|
|
d11 = this.locX - (double) i;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-11-20 09:01:14 +01:00
|
|
|
d16 = this.locX - d12;
|
|
|
|
d18 = this.locZ - d13;
|
|
|
|
d17 = (d16 * d6 + d18 * d7) * 2.0D;
|
|
|
|
d11 = d17;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.locX = d12 + d6 * d11;
|
|
|
|
this.locZ = d13 + d7 * d11;
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition(this.locX, this.locY + (double) this.height, this.locZ);
|
2011-04-20 22:47:26 +02:00
|
|
|
d16 = this.motX;
|
2011-11-20 09:01:14 +01:00
|
|
|
d18 = this.motZ;
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.passenger != null) {
|
2011-04-20 22:47:26 +02:00
|
|
|
d16 *= 0.75D;
|
2011-11-20 09:01:14 +01:00
|
|
|
d18 *= 0.75D;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (d16 < -d4) {
|
|
|
|
d16 = -d4;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (d16 > d4) {
|
|
|
|
d16 = d4;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (d18 < -d4) {
|
|
|
|
d18 = -d4;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (d18 > d4) {
|
|
|
|
d18 = d4;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.move(d16, 0.0D, d18);
|
2011-04-20 19:05:14 +02:00
|
|
|
if (aint[0][1] != 0 && MathHelper.floor(this.locX) - i == aint[0][0] && MathHelper.floor(this.locZ) - k == aint[0][2]) {
|
|
|
|
this.setPosition(this.locX, this.locY + (double) aint[0][1], this.locZ);
|
|
|
|
} else if (aint[1][1] != 0 && MathHelper.floor(this.locX) - i == aint[1][0] && MathHelper.floor(this.locZ) - k == aint[1][2]) {
|
|
|
|
this.setPosition(this.locX, this.locY + (double) aint[1][1], this.locZ);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit
|
2011-06-27 00:25:01 +02:00
|
|
|
if (this.passenger != null || !this.slowWhenEmpty) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.motX *= 0.996999979019165D;
|
|
|
|
this.motY *= 0.0D;
|
|
|
|
this.motZ *= 0.996999979019165D;
|
|
|
|
} else {
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.type == 2) {
|
2011-11-20 09:01:14 +01:00
|
|
|
d17 = (double) MathHelper.a(this.b * this.b + this.c * this.c);
|
2011-04-20 22:47:26 +02:00
|
|
|
if (d17 > 0.01D) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.b /= d17;
|
|
|
|
this.c /= d17;
|
|
|
|
double d19 = 0.04D;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.motX *= 0.800000011920929D;
|
|
|
|
this.motY *= 0.0D;
|
|
|
|
this.motZ *= 0.800000011920929D;
|
2011-11-20 09:01:14 +01:00
|
|
|
this.motX += this.b * d19;
|
|
|
|
this.motZ += this.c * d19;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
this.motX *= 0.8999999761581421D;
|
|
|
|
this.motY *= 0.0D;
|
|
|
|
this.motZ *= 0.8999999761581421D;
|
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.motX *= 0.9599999785423279D;
|
|
|
|
this.motY *= 0.0D;
|
|
|
|
this.motZ *= 0.9599999785423279D;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
Vec3D vec3d1 = this.h(this.locX, this.locY, this.locZ);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (vec3d1 != null && vec3d != null) {
|
2011-11-20 09:01:14 +01:00
|
|
|
double d20 = (vec3d.b - vec3d1.b) * 0.05D;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
d10 = Math.sqrt(this.motX * this.motX + this.motZ * this.motZ);
|
|
|
|
if (d10 > 0.0D) {
|
|
|
|
this.motX = this.motX / d10 * (d10 + d20);
|
|
|
|
this.motZ = this.motZ / d10 * (d10 + d20);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition(this.locX, vec3d1.b, this.locZ);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
int j1 = MathHelper.floor(this.locX);
|
|
|
|
int k1 = MathHelper.floor(this.locZ);
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (j1 != i || k1 != k) {
|
2011-11-20 09:01:14 +01:00
|
|
|
d10 = Math.sqrt(this.motX * this.motX + this.motZ * this.motZ);
|
|
|
|
this.motX = d10 * (double) (j1 - i);
|
|
|
|
this.motZ = d10 * (double) (k1 - k);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
double d21;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (this.type == 2) {
|
2011-11-20 09:01:14 +01:00
|
|
|
d21 = (double) MathHelper.a(this.b * this.b + this.c * this.c);
|
|
|
|
if (d21 > 0.01D && this.motX * this.motX + this.motZ * this.motZ > 0.0010D) {
|
|
|
|
this.b /= d21;
|
|
|
|
this.c /= d21;
|
|
|
|
if (this.b * this.motX + this.c * this.motZ < 0.0D) {
|
|
|
|
this.b = 0.0D;
|
|
|
|
this.c = 0.0D;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.b = this.motX;
|
|
|
|
this.c = this.motZ;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
2011-04-20 22:47:26 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (flag) {
|
|
|
|
d21 = Math.sqrt(this.motX * this.motX + this.motZ * this.motZ);
|
|
|
|
if (d21 > 0.01D) {
|
|
|
|
double d22 = 0.06D;
|
2011-04-20 22:47:26 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.motX += this.motX / d21 * d22;
|
|
|
|
this.motZ += this.motZ / d21 * d22;
|
2011-04-20 22:47:26 +02:00
|
|
|
} else if (i1 == 1) {
|
2011-06-30 00:02:25 +02:00
|
|
|
if (this.world.e(i - 1, j, k)) {
|
2011-04-20 22:47:26 +02:00
|
|
|
this.motX = 0.02D;
|
2011-06-30 00:02:25 +02:00
|
|
|
} else if (this.world.e(i + 1, j, k)) {
|
2011-04-20 22:47:26 +02:00
|
|
|
this.motX = -0.02D;
|
|
|
|
}
|
|
|
|
} else if (i1 == 0) {
|
2011-06-30 00:02:25 +02:00
|
|
|
if (this.world.e(i, j, k - 1)) {
|
2011-04-20 22:47:26 +02:00
|
|
|
this.motZ = 0.02D;
|
2011-06-30 00:02:25 +02:00
|
|
|
} else if (this.world.e(i, j, k + 1)) {
|
2011-04-20 22:47:26 +02:00
|
|
|
this.motZ = -0.02D;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
if (this.motX < -d4) {
|
|
|
|
this.motX = -d4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.motX > d4) {
|
|
|
|
this.motX = d4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.motZ < -d4) {
|
|
|
|
this.motZ = -d4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.motZ > d4) {
|
|
|
|
this.motZ = d4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.onGround) {
|
2011-02-12 15:57:16 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
this.motX *= this.derailedX;
|
|
|
|
this.motY *= this.derailedY;
|
|
|
|
this.motZ *= this.derailedZ;
|
2012-01-12 19:43:34 +01:00
|
|
|
// CraftBukkit end
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.move(this.motX, this.motY, this.motZ);
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!this.onGround) {
|
2011-02-12 15:57:16 +01:00
|
|
|
// CraftBukkit start
|
2011-06-27 00:25:01 +02:00
|
|
|
this.motX *= this.flyingX;
|
|
|
|
this.motY *= this.flyingY;
|
|
|
|
this.motZ *= this.flyingZ;
|
2012-01-12 19:43:34 +01:00
|
|
|
// CraftBukkit end
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.pitch = 0.0F;
|
2011-11-20 09:01:14 +01:00
|
|
|
double d23 = this.lastX - this.locX;
|
|
|
|
double d24 = this.lastZ - this.locZ;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (d23 * d23 + d24 * d24 > 0.0010D) {
|
|
|
|
this.yaw = (float) (Math.atan2(d24, d23) * 180.0D / 3.141592653589793D);
|
|
|
|
if (this.f) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.yaw += 180.0F;
|
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
double d25;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
for (d25 = (double) (this.yaw - this.lastYaw); d25 >= 180.0D; d25 -= 360.0D) {
|
2011-01-29 22:50:29 +01:00
|
|
|
;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
while (d25 < -180.0D) {
|
|
|
|
d25 += 360.0D;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (d25 < -170.0D || d25 >= 170.0D) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.yaw += 180.0F;
|
2011-11-20 09:01:14 +01:00
|
|
|
this.f = !this.f;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
this.c(this.yaw, this.pitch);
|
2011-01-07 22:05:25 +01:00
|
|
|
|
2011-02-01 11:20:18 +01:00
|
|
|
// CraftBukkit start
|
2011-06-27 00:25:01 +02:00
|
|
|
org.bukkit.World bworld = this.world.getWorld();
|
|
|
|
Location from = new Location(bworld, prevX, prevY, prevZ, prevYaw, prevPitch);
|
|
|
|
Location to = new Location(bworld, this.locX, this.locY, this.locZ, this.yaw, this.pitch);
|
2011-02-01 11:20:18 +01:00
|
|
|
Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
2011-02-23 13:56:36 +01:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(new VehicleUpdateEvent(vehicle));
|
2011-02-23 13:56:36 +01:00
|
|
|
|
2011-02-01 11:14:59 +01:00
|
|
|
if (!from.equals(to)) {
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(new VehicleMoveEvent(vehicle, from, to));
|
2011-02-01 11:14:59 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
// CraftBukkit end
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2012-01-12 16:27:39 +01:00
|
|
|
List list = this.world.getEntities(this, this.boundingBox.grow(0.20000000298023224D, 0.0D, 0.20000000298023224D));
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (list != null && list.size() > 0) {
|
2011-04-20 22:47:26 +02:00
|
|
|
for (int l1 = 0; l1 < list.size(); ++l1) {
|
|
|
|
Entity entity = (Entity) list.get(l1);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (entity != this.passenger && entity.f_() && entity instanceof EntityMinecart) {
|
2011-04-20 19:05:14 +02:00
|
|
|
entity.collide(this);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (this.passenger != null && this.passenger.dead) {
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.passenger.vehicle == this) {
|
|
|
|
this.passenger.vehicle = null;
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.passenger = null;
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.e > 0) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--this.e;
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.e <= 0) {
|
|
|
|
this.b = this.c = 0.0D;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
this.a(this.e > 0);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
public Vec3D h(double d0, double d1, double d2) {
|
2011-04-20 19:05:14 +02:00
|
|
|
int i = MathHelper.floor(d0);
|
|
|
|
int j = MathHelper.floor(d1);
|
|
|
|
int k = MathHelper.floor(d2);
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (BlockMinecartTrack.g(this.world, i, j - 1, k)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--j;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
int l = this.world.getTypeId(i, j, k);
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (BlockMinecartTrack.d(l)) {
|
2011-04-20 22:47:26 +02:00
|
|
|
int i1 = this.world.getData(i, j, k);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
d1 = (double) j;
|
2011-11-20 09:01:14 +01:00
|
|
|
if (((BlockMinecartTrack) Block.byId[l]).h()) {
|
2011-04-20 22:47:26 +02:00
|
|
|
i1 &= 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i1 >= 2 && i1 <= 5) {
|
2011-01-29 22:50:29 +01:00
|
|
|
d1 = (double) (j + 1);
|
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
int[][] aint = matrix[i1];
|
2011-01-29 22:50:29 +01:00
|
|
|
double d3 = 0.0D;
|
|
|
|
double d4 = (double) i + 0.5D + (double) aint[0][0] * 0.5D;
|
|
|
|
double d5 = (double) j + 0.5D + (double) aint[0][1] * 0.5D;
|
|
|
|
double d6 = (double) k + 0.5D + (double) aint[0][2] * 0.5D;
|
|
|
|
double d7 = (double) i + 0.5D + (double) aint[1][0] * 0.5D;
|
|
|
|
double d8 = (double) j + 0.5D + (double) aint[1][1] * 0.5D;
|
|
|
|
double d9 = (double) k + 0.5D + (double) aint[1][2] * 0.5D;
|
|
|
|
double d10 = d7 - d4;
|
|
|
|
double d11 = (d8 - d5) * 2.0D;
|
|
|
|
double d12 = d9 - d6;
|
|
|
|
|
|
|
|
if (d10 == 0.0D) {
|
|
|
|
d0 = (double) i + 0.5D;
|
|
|
|
d3 = d2 - (double) k;
|
|
|
|
} else if (d12 == 0.0D) {
|
|
|
|
d2 = (double) k + 0.5D;
|
|
|
|
d3 = d0 - (double) i;
|
2011-01-05 23:56:31 +01:00
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
double d13 = d0 - d4;
|
|
|
|
double d14 = d2 - d6;
|
|
|
|
double d15 = (d13 * d10 + d14 * d12) * 2.0D;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
d3 = d15;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
d0 = d4 + d10 * d3;
|
|
|
|
d1 = d5 + d11 * d3;
|
|
|
|
d2 = d6 + d12 * d3;
|
|
|
|
if (d11 < 0.0D) {
|
|
|
|
++d1;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (d11 > 0.0D) {
|
|
|
|
d1 += 0.5D;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
return Vec3D.create(d0, d1, d2);
|
2011-01-05 23:56:31 +01:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
protected void b(NBTTagCompound nbttagcompound) {
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound.setInt("Type", this.type);
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.type == 2) {
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound.setDouble("PushX", this.b);
|
|
|
|
nbttagcompound.setDouble("PushZ", this.c);
|
|
|
|
nbttagcompound.setShort("Fuel", (short) this.e);
|
2011-04-20 19:05:14 +02:00
|
|
|
} else if (this.type == 1) {
|
2011-01-05 23:56:31 +01:00
|
|
|
NBTTagList nbttaglist = new NBTTagList();
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
for (int i = 0; i < this.items.length; ++i) {
|
|
|
|
if (this.items[i] != null) {
|
2011-01-05 23:56:31 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound1.setByte("Slot", (byte) i);
|
2011-09-15 02:23:52 +02:00
|
|
|
this.items[i].b(nbttagcompound1);
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttaglist.add(nbttagcompound1);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound.set("Items", nbttaglist);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
protected void a(NBTTagCompound nbttagcompound) {
|
2011-11-30 00:17:43 +01:00
|
|
|
this.type = nbttagcompound.getInt("Type");
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.type == 2) {
|
2011-11-30 00:17:43 +01:00
|
|
|
this.b = nbttagcompound.getDouble("PushX");
|
|
|
|
this.c = nbttagcompound.getDouble("PushZ");
|
|
|
|
this.e = nbttagcompound.getShort("Fuel");
|
2011-04-20 19:05:14 +02:00
|
|
|
} else if (this.type == 1) {
|
2011-11-30 00:17:43 +01:00
|
|
|
NBTTagList nbttaglist = nbttagcompound.getList("Items");
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.items = new ItemStack[this.getSize()];
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
for (int i = 0; i < nbttaglist.size(); ++i) {
|
|
|
|
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.get(i);
|
|
|
|
int j = nbttagcompound1.getByte("Slot") & 255;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (j >= 0 && j < this.items.length) {
|
2011-09-15 02:23:52 +02:00
|
|
|
this.items[j] = ItemStack.a(nbttagcompound1);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void collide(Entity entity) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!this.world.isStatic) {
|
|
|
|
if (entity != this.passenger) {
|
2011-02-06 10:41:53 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
|
|
|
org.bukkit.entity.Entity hitEntity = (entity == null) ? null : entity.getBukkitEntity();
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
VehicleEntityCollisionEvent collisionEvent = new VehicleEntityCollisionEvent(vehicle, hitEntity);
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(collisionEvent);
|
2011-02-06 10:41:53 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
if (collisionEvent.isCancelled()) {
|
2011-02-06 10:41:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (entity instanceof EntityLiving && !(entity instanceof EntityHuman) && this.type == 0 && this.motX * this.motX + this.motZ * this.motZ > 0.01D && this.passenger == null && entity.vehicle == null) {
|
2011-12-16 21:31:00 +01:00
|
|
|
entity.mount(this);
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
2011-02-06 10:41:53 +01:00
|
|
|
// CraftBukkit end
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
double d0 = entity.locX - this.locX;
|
|
|
|
double d1 = entity.locZ - this.locZ;
|
|
|
|
double d2 = d0 * d0 + d1 * d1;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-02-06 10:41:53 +01:00
|
|
|
// CraftBukkit - Collision
|
2011-05-28 22:50:08 +02:00
|
|
|
if (d2 >= 9.999999747378752E-5D && !collisionEvent.isCollisionCancelled()) {
|
2011-01-29 22:50:29 +01:00
|
|
|
d2 = (double) MathHelper.a(d2);
|
|
|
|
d0 /= d2;
|
|
|
|
d1 /= d2;
|
|
|
|
double d3 = 1.0D / d2;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (d3 > 1.0D) {
|
|
|
|
d3 = 1.0D;
|
|
|
|
}
|
|
|
|
|
|
|
|
d0 *= d3;
|
|
|
|
d1 *= d3;
|
|
|
|
d0 *= 0.10000000149011612D;
|
|
|
|
d1 *= 0.10000000149011612D;
|
2012-01-12 23:10:13 +01:00
|
|
|
d0 *= (double) (1.0F - this.bR);
|
|
|
|
d1 *= (double) (1.0F - this.bR);
|
2011-01-29 22:50:29 +01:00
|
|
|
d0 *= 0.5D;
|
|
|
|
d1 *= 0.5D;
|
|
|
|
if (entity instanceof EntityMinecart) {
|
2011-05-26 14:48:22 +02:00
|
|
|
double d4 = entity.locX - this.locX;
|
|
|
|
double d5 = entity.locZ - this.locZ;
|
2011-11-20 09:01:14 +01:00
|
|
|
Vec3D vec3d = Vec3D.create(d4, 0.0D, d5).b();
|
|
|
|
Vec3D vec3d1 = Vec3D.create((double) MathHelper.cos(this.yaw * 3.1415927F / 180.0F), 0.0D, (double) MathHelper.sin(this.yaw * 3.1415927F / 180.0F)).b();
|
|
|
|
double d6 = Math.abs(vec3d.a(vec3d1));
|
2011-05-26 14:48:22 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (d6 < 0.800000011920929D) {
|
2011-05-26 14:48:22 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
double d7 = entity.motX + this.motX;
|
|
|
|
double d8 = entity.motZ + this.motZ;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (((EntityMinecart) entity).type == 2 && this.type != 2) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.motX *= 0.20000000298023224D;
|
|
|
|
this.motZ *= 0.20000000298023224D;
|
2011-11-20 09:01:14 +01:00
|
|
|
this.b_(entity.motX - d0, 0.0D, entity.motZ - d1);
|
|
|
|
entity.motX *= 0.949999988079071D;
|
|
|
|
entity.motZ *= 0.949999988079071D;
|
2011-04-20 19:05:14 +02:00
|
|
|
} else if (((EntityMinecart) entity).type != 2 && this.type == 2) {
|
2011-01-29 22:50:29 +01:00
|
|
|
entity.motX *= 0.20000000298023224D;
|
|
|
|
entity.motZ *= 0.20000000298023224D;
|
2011-11-20 09:01:14 +01:00
|
|
|
entity.b_(this.motX + d0, 0.0D, this.motZ + d1);
|
|
|
|
this.motX *= 0.949999988079071D;
|
|
|
|
this.motZ *= 0.949999988079071D;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-05-26 14:48:22 +02:00
|
|
|
d7 /= 2.0D;
|
|
|
|
d8 /= 2.0D;
|
2011-01-29 22:50:29 +01:00
|
|
|
this.motX *= 0.20000000298023224D;
|
|
|
|
this.motZ *= 0.20000000298023224D;
|
2011-11-20 09:01:14 +01:00
|
|
|
this.b_(d7 - d0, 0.0D, d8 - d1);
|
2011-01-29 22:50:29 +01:00
|
|
|
entity.motX *= 0.20000000298023224D;
|
|
|
|
entity.motZ *= 0.20000000298023224D;
|
2011-11-20 09:01:14 +01:00
|
|
|
entity.b_(d7 + d0, 0.0D, d8 + d1);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
} else {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.b_(-d0, 0.0D, -d1);
|
|
|
|
entity.b_(d0 / 4.0D, 0.0D, d1 / 4.0D);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getSize() {
|
2011-01-05 23:56:31 +01:00
|
|
|
return 27;
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public ItemStack getItem(int i) {
|
|
|
|
return this.items[i];
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
public ItemStack splitStack(int i, int j) {
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[i] != null) {
|
2011-01-29 22:50:29 +01:00
|
|
|
ItemStack itemstack;
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[i].count <= j) {
|
|
|
|
itemstack = this.items[i];
|
|
|
|
this.items[i] = null;
|
2011-01-05 23:56:31 +01:00
|
|
|
return itemstack;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-04-20 19:05:14 +02:00
|
|
|
itemstack = this.items[i].a(j);
|
|
|
|
if (this.items[i].count == 0) {
|
|
|
|
this.items[i] = null;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return itemstack;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void setItem(int i, ItemStack itemstack) {
|
|
|
|
this.items[i] = itemstack;
|
|
|
|
if (itemstack != null && itemstack.count > this.getMaxStackSize()) {
|
|
|
|
itemstack.count = this.getMaxStackSize();
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public String getName() {
|
2011-01-05 23:56:31 +01:00
|
|
|
return "Minecart";
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getMaxStackSize() {
|
2011-01-05 23:56:31 +01:00
|
|
|
return 64;
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void update() {}
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean b(EntityHuman entityhuman) {
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.type == 0) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.passenger != null && this.passenger instanceof EntityHuman && this.passenger != entityhuman) {
|
2011-01-05 23:56:31 +01:00
|
|
|
return true;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (!this.world.isStatic) {
|
2011-04-20 19:05:14 +02:00
|
|
|
entityhuman.mount(this);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-04-20 19:05:14 +02:00
|
|
|
} else if (this.type == 1) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!this.world.isStatic) {
|
|
|
|
entityhuman.a((IInventory) this);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-04-20 19:05:14 +02:00
|
|
|
} else if (this.type == 2) {
|
|
|
|
ItemStack itemstack = entityhuman.inventory.getItemInHand();
|
2011-01-05 23:56:31 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (itemstack != null && itemstack.id == Item.COAL.id) {
|
|
|
|
if (--itemstack.count == 0) {
|
2011-04-20 19:05:14 +02:00
|
|
|
entityhuman.inventory.setItem(entityhuman.inventory.itemInHandIndex, (ItemStack) null);
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.e += 3600;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.b = this.locX - entityhuman.locX;
|
|
|
|
this.c = this.locZ - entityhuman.locZ;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-05 23:56:31 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean a(EntityHuman entityhuman) {
|
2011-11-20 09:01:14 +01:00
|
|
|
return this.dead ? false : entityhuman.i(this) <= 64.0D;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected boolean j() {
|
|
|
|
return (this.datawatcher.getByte(16) & 1) != 0;
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
protected void a(boolean flag) {
|
|
|
|
if (flag) {
|
|
|
|
this.datawatcher.watch(16, Byte.valueOf((byte) (this.datawatcher.getByte(16) | 1)));
|
|
|
|
} else {
|
|
|
|
this.datawatcher.watch(16, Byte.valueOf((byte) (this.datawatcher.getByte(16) & -2)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void f() {}
|
|
|
|
|
|
|
|
public void g() {}
|
|
|
|
|
|
|
|
public void setDamage(int i) {
|
|
|
|
this.datawatcher.watch(19, Integer.valueOf(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getDamage() {
|
|
|
|
return this.datawatcher.getInt(19);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void c(int i) {
|
|
|
|
this.datawatcher.watch(17, Integer.valueOf(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
public int l() {
|
|
|
|
return this.datawatcher.getInt(17);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void d(int i) {
|
|
|
|
this.datawatcher.watch(18, Integer.valueOf(i));
|
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public int m() {
|
|
|
|
return this.datawatcher.getInt(18);
|
|
|
|
}
|
2011-11-29 11:22:35 +01:00
|
|
|
|
|
|
|
// CraftBukkit start - methods for getting and setting flying and derailed velocity modifiers
|
|
|
|
public Vector getFlyingVelocityMod() {
|
|
|
|
return new Vector(flyingX, flyingY, flyingZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFlyingVelocityMod(Vector flying) {
|
|
|
|
flyingX = flying.getX();
|
|
|
|
flyingY = flying.getY();
|
|
|
|
flyingZ = flying.getZ();
|
|
|
|
}
|
|
|
|
|
|
|
|
public Vector getDerailedVelocityMod() {
|
|
|
|
return new Vector(derailedX, derailedY, derailedZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDerailedVelocityMod(Vector derailed) {
|
|
|
|
derailedX = derailed.getX();
|
|
|
|
derailedY = derailed.getY();
|
|
|
|
derailedZ = derailed.getZ();
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-01-05 23:56:31 +01:00
|
|
|
}
|