mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 02:42:14 +01:00
147 lines
6.0 KiB
Diff
147 lines
6.0 KiB
Diff
--- a/net/minecraft/server/EntityBoat.java
|
|
+++ b/net/minecraft/server/EntityBoat.java
|
|
@@ -3,6 +3,15 @@
|
|
import java.util.List;
|
|
import javax.annotation.Nullable;
|
|
|
|
+// 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.event.vehicle.VehicleMoveEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class EntityBoat extends Entity {
|
|
|
|
private static final DataWatcherObject<Integer> b = DataWatcher.a(EntityBoat.class, DataWatcherRegistry.b);
|
|
@@ -37,6 +46,14 @@
|
|
private float aO;
|
|
private float aP;
|
|
|
|
+ // CraftBukkit start
|
|
+ // PAIL: Some of these haven't worked since a few updates, and since 1.9 they are less and less applicable.
|
|
+ public double maxSpeed = 0.4D;
|
|
+ public double occupiedDeceleration = 0.2D;
|
|
+ public double unoccupiedDeceleration = -1;
|
|
+ public boolean landBoats = false;
|
|
+ // CraftBukkit end
|
|
+
|
|
public EntityBoat(EntityTypes<? extends EntityBoat> entitytypes, World world) {
|
|
super(entitytypes, world);
|
|
this.as = new float[2];
|
|
@@ -98,6 +115,19 @@
|
|
if (damagesource instanceof EntityDamageSourceIndirect && damagesource.getEntity() != null && this.w(damagesource.getEntity())) {
|
|
return false;
|
|
} else {
|
|
+ // CraftBukkit start
|
|
+ Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
|
+ org.bukkit.entity.Entity attacker = (damagesource.getEntity() == null) ? null : damagesource.getEntity().getBukkitEntity();
|
|
+
|
|
+ VehicleDamageEvent event = new VehicleDamageEvent(vehicle, attacker, (double) f);
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return false;
|
|
+ }
|
|
+ // f = event.getDamage(); // TODO Why don't we do this?
|
|
+ // CraftBukkit end
|
|
+
|
|
this.c(-this.o());
|
|
this.b(10);
|
|
this.setDamage(this.getDamage() + f * 10.0F);
|
|
@@ -105,6 +135,15 @@
|
|
boolean flag = damagesource.getEntity() instanceof EntityHuman && ((EntityHuman) damagesource.getEntity()).abilities.canInstantlyBuild;
|
|
|
|
if (flag || this.getDamage() > 40.0F) {
|
|
+ // CraftBukkit start
|
|
+ VehicleDestroyEvent destroyEvent = new VehicleDestroyEvent(vehicle, attacker);
|
|
+ this.world.getServer().getPluginManager().callEvent(destroyEvent);
|
|
+
|
|
+ if (destroyEvent.isCancelled()) {
|
|
+ this.setDamage(40F); // Maximize damage so this doesn't get triggered again right away
|
|
+ return true;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
if (!flag && this.world.getGameRules().getBoolean("doEntityDrops")) {
|
|
this.a((IMaterial) this.f());
|
|
}
|
|
@@ -140,9 +179,25 @@
|
|
public void collide(Entity entity) {
|
|
if (entity instanceof EntityBoat) {
|
|
if (entity.getBoundingBox().minY < this.getBoundingBox().maxY) {
|
|
+ // CraftBukkit start
|
|
+ VehicleEntityCollisionEvent event = new VehicleEntityCollisionEvent((Vehicle) this.getBukkitEntity(), entity.getBukkitEntity());
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
super.collide(entity);
|
|
}
|
|
} else if (entity.getBoundingBox().minY <= this.getBoundingBox().minY) {
|
|
+ // CraftBukkit start
|
|
+ VehicleEntityCollisionEvent event = new VehicleEntityCollisionEvent((Vehicle) this.getBukkitEntity(), entity.getBukkitEntity());
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
super.collide(entity);
|
|
}
|
|
|
|
@@ -176,6 +231,7 @@
|
|
return this.getDirection().e();
|
|
}
|
|
|
|
+ private Location lastLocation; // CraftBukkit
|
|
@Override
|
|
public void tick() {
|
|
this.aJ = this.aI;
|
|
@@ -219,6 +275,22 @@
|
|
this.setMot(Vec3D.a);
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ org.bukkit.Server server = this.world.getServer();
|
|
+ org.bukkit.World bworld = this.world.getWorld();
|
|
+
|
|
+ Location to = new Location(bworld, this.locX, this.locY, this.locZ, this.yaw, this.pitch);
|
|
+ Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
|
+
|
|
+ server.getPluginManager().callEvent(new org.bukkit.event.vehicle.VehicleUpdateEvent(vehicle));
|
|
+
|
|
+ if (lastLocation != null && !lastLocation.equals(to)) {
|
|
+ VehicleMoveEvent event = new VehicleMoveEvent(vehicle, lastLocation, to);
|
|
+ server.getPluginManager().callEvent(event);
|
|
+ }
|
|
+ lastLocation = vehicle.getLocation();
|
|
+ // CraftBukkit end
|
|
+
|
|
this.q();
|
|
|
|
for (int i = 0; i <= 1; ++i) {
|
|
@@ -740,6 +812,11 @@
|
|
|
|
this.b(this.fallDistance, 1.0F);
|
|
if (!this.world.isClientSide && !this.dead) {
|
|
+ // CraftBukkit start
|
|
+ Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
|
+ VehicleDestroyEvent destroyEvent = new VehicleDestroyEvent(vehicle, null);
|
|
+ this.world.getServer().getPluginManager().callEvent(destroyEvent);
|
|
+ if (!destroyEvent.isCancelled()) {
|
|
this.die();
|
|
if (this.world.getGameRules().getBoolean("doEntityDrops")) {
|
|
int i;
|
|
@@ -753,6 +830,7 @@
|
|
}
|
|
}
|
|
}
|
|
+ } // CraftBukkit end
|
|
}
|
|
|
|
this.fallDistance = 0.0F;
|