2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityMinecartAbstract.java
|
|
|
|
+++ b/net/minecraft/server/EntityMinecartAbstract.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -8,6 +8,15 @@
|
|
|
|
import java.util.function.ToIntFunction;
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.Location;
|
|
|
|
+import org.bukkit.entity.Vehicle;
|
|
|
|
+import org.bukkit.event.vehicle.VehicleDamageEvent;
|
|
|
|
+import org.bukkit.event.vehicle.VehicleDestroyEvent;
|
|
|
|
+import org.bukkit.event.vehicle.VehicleEntityCollisionEvent;
|
|
|
|
+import org.bukkit.util.Vector;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public abstract class EntityMinecartAbstract extends Entity implements INamableTileEntity {
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
private static final DataWatcherObject<Integer> a = DataWatcher.a(EntityMinecartAbstract.class, DataWatcherRegistry.b);
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -25,6 +34,17 @@
|
|
|
|
private double aA;
|
|
|
|
private double aB;
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ public boolean slowWhenEmpty = true;
|
|
|
|
+ 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;
|
|
|
|
+ public double maxSpeed = 0.4D;
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2018-07-15 02:00:00 +02:00
|
|
|
protected EntityMinecartAbstract(EntityTypes<?> entitytypes, World world) {
|
|
|
|
super(entitytypes, world);
|
|
|
|
this.j = true;
|
|
|
|
@@ -98,6 +118,19 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
if (this.isInvulnerable(damagesource)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
+ // CraftBukkit start - fire VehicleDamageEvent
|
|
|
|
+ Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
|
|
|
+ org.bukkit.entity.Entity passenger = (damagesource.getEntity() == null) ? null : damagesource.getEntity().getBukkitEntity();
|
|
|
|
+
|
|
|
|
+ VehicleDamageEvent event = new VehicleDamageEvent(vehicle, passenger, f);
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
+
|
|
|
|
+ if (event.isCancelled()) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ f = (float) event.getDamage();
|
|
|
|
+ // CraftBukkit end
|
2018-08-26 04:00:00 +02:00
|
|
|
this.k(-this.u());
|
|
|
|
this.d(10);
|
2018-07-15 02:00:00 +02:00
|
|
|
this.aA();
|
|
|
|
@@ -105,6 +138,15 @@
|
2015-04-13 13:01:55 +02:00
|
|
|
boolean flag = damagesource.getEntity() instanceof EntityHuman && ((EntityHuman) damagesource.getEntity()).abilities.canInstantlyBuild;
|
|
|
|
|
|
|
|
if (flag || this.getDamage() > 40.0F) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ VehicleDestroyEvent destroyEvent = new VehicleDestroyEvent(vehicle, passenger);
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(destroyEvent);
|
|
|
|
+
|
|
|
|
+ if (destroyEvent.isCancelled()) {
|
|
|
|
+ this.setDamage(40); // Maximize damage so this doesn't get triggered again right away
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2017-05-30 13:25:59 +02:00
|
|
|
this.ejectPassengers();
|
2016-02-29 22:32:46 +01:00
|
|
|
if (flag && !this.hasCustomName()) {
|
|
|
|
this.die();
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -143,6 +185,14 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
public void tick() {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ double prevX = this.locX;
|
|
|
|
+ double prevY = this.locY;
|
|
|
|
+ double prevZ = this.locZ;
|
|
|
|
+ float prevYaw = this.yaw;
|
|
|
|
+ float prevPitch = this.pitch;
|
|
|
|
+ // CraftBukkit end
|
2016-02-29 22:32:46 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
if (this.getType() > 0) {
|
2018-08-26 04:00:00 +02:00
|
|
|
this.d(this.getType() - 1);
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -157,6 +207,8 @@
|
2018-02-09 08:02:53 +01:00
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
+ // CraftBukkit - handled in postTick
|
|
|
|
+ /*
|
|
|
|
if (!this.world.isClientSide && this.world instanceof WorldServer) {
|
|
|
|
this.world.methodProfiler.a("portal");
|
|
|
|
MinecraftServer minecraftserver = this.world.getMinecraftServer();
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -196,6 +248,7 @@
|
2018-02-09 08:02:53 +01:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
this.world.methodProfiler.e();
|
2018-02-09 08:02:53 +01:00
|
|
|
}
|
|
|
|
+ */
|
|
|
|
|
|
|
|
if (this.world.isClientSide) {
|
2018-07-15 02:00:00 +02:00
|
|
|
if (this.aw > 0) {
|
|
|
|
@@ -263,6 +316,18 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setYawPitch(this.yaw, this.pitch);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ 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);
|
|
|
|
+ Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
|
|
|
+
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(new org.bukkit.event.vehicle.VehicleUpdateEvent(vehicle));
|
|
|
|
+
|
|
|
|
+ if (!from.equals(to)) {
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(new org.bukkit.event.vehicle.VehicleMoveEvent(vehicle, from, to));
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2016-06-09 03:43:49 +02:00
|
|
|
if (this.v() == EntityMinecartAbstract.EnumMinecartType.RIDEABLE && this.motX * this.motX + this.motZ * this.motZ > 0.01D) {
|
|
|
|
List list = this.world.getEntities(this, this.getBoundingBox().grow(0.20000000298023224D, 0.0D, 0.20000000298023224D), IEntitySelector.a(this));
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -271,8 +336,24 @@
|
2016-06-09 03:43:49 +02:00
|
|
|
Entity entity = (Entity) list.get(l);
|
|
|
|
|
|
|
|
if (!(entity instanceof EntityHuman) && !(entity instanceof EntityIronGolem) && !(entity instanceof EntityMinecartAbstract) && !this.isVehicle() && !entity.isPassenger()) {
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ VehicleEntityCollisionEvent collisionEvent = new VehicleEntityCollisionEvent(vehicle, entity.getBukkitEntity());
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(collisionEvent);
|
|
|
|
+
|
|
|
|
+ if (collisionEvent.isCancelled()) {
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
entity.startRiding(this);
|
|
|
|
} else {
|
2016-06-12 02:45:03 +02:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ VehicleEntityCollisionEvent collisionEvent = new VehicleEntityCollisionEvent(vehicle, entity.getBukkitEntity());
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(collisionEvent);
|
|
|
|
+
|
|
|
|
+ if (collisionEvent.isCancelled()) {
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2016-06-09 03:43:49 +02:00
|
|
|
entity.collide(this);
|
2016-06-12 02:45:03 +02:00
|
|
|
}
|
|
|
|
}
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -284,6 +365,14 @@
|
2016-06-12 02:45:03 +02:00
|
|
|
Entity entity1 = (Entity) iterator.next();
|
|
|
|
|
|
|
|
if (!this.w(entity1) && entity1.isCollidable() && entity1 instanceof EntityMinecartAbstract) {
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ VehicleEntityCollisionEvent collisionEvent = new VehicleEntityCollisionEvent(vehicle, entity1.getBukkitEntity());
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(collisionEvent);
|
|
|
|
+
|
|
|
|
+ if (collisionEvent.isCancelled()) {
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
entity1.collide(this);
|
|
|
|
}
|
|
|
|
}
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -294,7 +383,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2017-05-14 04:00:00 +02:00
|
|
|
protected double p() {
|
2014-11-25 22:32:16 +01:00
|
|
|
- return 0.4D;
|
|
|
|
+ return this.maxSpeed; // CraftBukkit
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(int i, int j, int k, boolean flag) {}
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -305,16 +394,20 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
this.motX = MathHelper.a(this.motX, -d0, d0);
|
|
|
|
this.motZ = MathHelper.a(this.motZ, -d0, d0);
|
|
|
|
if (this.onGround) {
|
|
|
|
- this.motX *= 0.5D;
|
|
|
|
- this.motY *= 0.5D;
|
|
|
|
- this.motZ *= 0.5D;
|
|
|
|
+ // CraftBukkit start - replace magic numbers with our variables
|
|
|
|
+ this.motX *= this.derailedX;
|
|
|
|
+ this.motY *= this.derailedY;
|
|
|
|
+ this.motZ *= this.derailedZ;
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
this.move(EnumMoveType.SELF, this.motX, this.motY, this.motZ);
|
2014-11-25 22:32:16 +01:00
|
|
|
if (!this.onGround) {
|
|
|
|
- this.motX *= 0.949999988079071D;
|
|
|
|
- this.motY *= 0.949999988079071D;
|
|
|
|
- this.motZ *= 0.949999988079071D;
|
|
|
|
+ // CraftBukkit start - replace magic numbers with our variables
|
|
|
|
+ this.motX *= this.flyingX;
|
|
|
|
+ this.motY *= this.flyingY;
|
|
|
|
+ this.motZ *= this.flyingZ;
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -502,7 +595,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
protected void r() {
|
|
|
|
- if (this.isVehicle()) {
|
|
|
|
+ if (this.isVehicle() || !this.slowWhenEmpty) { // CraftBukkit - add !this.slowWhenEmpty
|
2014-11-25 22:32:16 +01:00
|
|
|
this.motX *= 0.996999979019165D;
|
|
|
|
this.motY *= 0.0D;
|
|
|
|
this.motZ *= 0.996999979019165D;
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -599,6 +692,14 @@
|
2018-04-02 04:55:28 +02:00
|
|
|
if (!this.world.isClientSide) {
|
|
|
|
if (!entity.noclip && !this.noclip) {
|
|
|
|
if (!this.w(entity)) {
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ VehicleEntityCollisionEvent collisionEvent = new VehicleEntityCollisionEvent((Vehicle) this.getBukkitEntity(), entity.getBukkitEntity());
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(collisionEvent);
|
|
|
|
+
|
|
|
|
+ if (collisionEvent.isCancelled()) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
double d0 = entity.locX - this.locX;
|
|
|
|
double d1 = entity.locZ - this.locZ;
|
|
|
|
double d2 = d0 * d0 + d1 * d1;
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -745,4 +846,26 @@
|
|
|
|
return this.i;
|
2014-11-25 22:32:16 +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
|
|
|
|
}
|