3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 21:40:08 +01:00
Paper/src/main/java/net/minecraft/server/EntityTNTPrimed.java

101 Zeilen
3.0 KiB
Java

2011-02-04 04:03:11 +01:00
package net.minecraft.server;
2011-02-23 13:56:36 +01:00
// CraftBukkit start
2011-02-04 04:03:11 +01:00
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.entity.CraftEntity;
import org.bukkit.entity.Explosive;
2011-03-18 22:57:22 +01:00
import org.bukkit.event.entity.ExplosionPrimeEvent;
2011-02-04 04:03:11 +01:00
// CraftBukkit end
public class EntityTNTPrimed extends Entity {
public int fuseTicks;
public float yield = 4; // CraftBukkit
public boolean isIncendiary = false; // CraftBukkit
2011-02-04 04:03:11 +01:00
public EntityTNTPrimed(World world) {
super(world);
this.fuseTicks = 0;
2011-09-15 02:23:52 +02:00
this.aY = true;
2011-03-31 22:40:00 +02:00
this.b(0.98F, 0.98F);
2011-02-04 04:03:11 +01:00
this.height = this.width / 2.0F;
}
public EntityTNTPrimed(World world, double d0, double d1, double d2) {
this(world);
this.setPosition(d0, d1, d2);
2011-02-04 04:03:11 +01:00
float f = (float) (Math.random() * 3.1415927410125732D * 2.0D);
this.motX = (double) (-MathHelper.sin(f * 3.1415927F / 180.0F) * 0.02F);
2011-02-04 04:03:11 +01:00
this.motY = 0.20000000298023224D;
this.motZ = (double) (-MathHelper.cos(f * 3.1415927F / 180.0F) * 0.02F);
this.fuseTicks = 80;
2011-02-04 04:03:11 +01:00
this.lastX = d0;
this.lastY = d1;
this.lastZ = d2;
}
2011-04-20 22:47:26 +02:00
protected void b() {}
2011-02-04 04:03:11 +01:00
2011-09-15 02:23:52 +02:00
protected boolean e_() {
2011-03-31 22:40:00 +02:00
return false;
}
2011-09-15 02:23:52 +02:00
public boolean r_() {
2011-02-04 04:03:11 +01:00
return !this.dead;
}
2011-09-15 02:23:52 +02:00
public void s_() {
2011-02-04 04:03:11 +01:00
this.lastX = this.locX;
this.lastY = this.locY;
this.lastZ = this.locZ;
this.motY -= 0.03999999910593033D;
this.move(this.motX, this.motY, this.motZ);
2011-02-04 04:03:11 +01:00
this.motX *= 0.9800000190734863D;
this.motY *= 0.9800000190734863D;
this.motZ *= 0.9800000190734863D;
if (this.onGround) {
this.motX *= 0.699999988079071D;
this.motZ *= 0.699999988079071D;
this.motY *= -0.5D;
}
if (this.fuseTicks-- <= 0) {
2011-05-26 14:48:22 +02:00
if (!this.world.isStatic) {
// CraftBukkit start - Need to reverse the order of the explosion and the entity death so we have a location for the event.
this.explode();
this.die();
// CraftBukkit end
2011-05-28 22:50:08 +02:00
} else {
this.die();
2011-05-26 14:48:22 +02:00
}
2011-02-04 04:03:11 +01:00
} else {
this.world.a("smoke", this.locX, this.locY + 0.5D, this.locZ, 0.0D, 0.0D, 0.0D);
}
}
private void explode() {
2011-02-23 13:56:36 +01:00
// CraftBukkit start
// float f = 4.0F;
CraftServer server = this.world.getServer();
2011-02-23 13:56:36 +01:00
ExplosionPrimeEvent event = new ExplosionPrimeEvent((Explosive) CraftEntity.getEntity(server, this));
2011-02-04 04:03:11 +01:00
server.getPluginManager().callEvent(event);
2011-02-23 13:56:36 +01:00
2011-02-23 03:37:56 +01:00
if (!event.isCancelled()) {
// give 'this' instead of (Entity) null so we know what causes the damage
this.world.createExplosion(this, this.locX, this.locY, this.locZ, event.getRadius(), event.getFire());
2011-02-04 04:03:11 +01:00
}
2011-02-23 13:56:36 +01:00
// CraftBukkit end
2011-02-04 04:03:11 +01:00
}
2011-04-20 22:47:26 +02:00
protected void b(NBTTagCompound nbttagcompound) {
nbttagcompound.a("Fuse", (byte) this.fuseTicks);
2011-02-04 04:03:11 +01:00
}
2011-04-20 22:47:26 +02:00
protected void a(NBTTagCompound nbttagcompound) {
this.fuseTicks = nbttagcompound.c("Fuse");
2011-02-04 04:03:11 +01:00
}
}