Archiviert
13
0
Dieses Repository wurde am 2024-12-25 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
Paper-Old/src/main/java/net/minecraft/server/EntityFireball.java

273 Zeilen
9.8 KiB
Java

package net.minecraft.server;
import java.util.List;
import org.bukkit.event.entity.EntityDamageByEntityEvent; // CraftBukkit
public abstract class EntityFireball extends Entity {
2011-11-20 00:01:14 -08:00
private int e = -1;
2011-01-29 22:50:29 +01:00
private int f = -1;
2011-02-23 02:37:56 +00:00
private int g = -1;
2013-11-04 07:07:38 -06:00
private Block h;
2013-07-01 06:03:00 -05:00
private boolean i;
2011-05-26 13:48:22 +01:00
public EntityLiving shooter;
2011-11-20 00:01:14 -08:00
private int j;
2013-07-01 06:03:00 -05:00
private int au;
public double dirX;
public double dirY;
public double dirZ;
2013-09-19 13:25:08 -05:00
public float bukkitYield = 1; // CraftBukkit
public boolean isIncendiary = true; // CraftBukkit
public EntityFireball(World world) {
super(world);
2012-07-29 02:33:13 -05:00
this.a(1.0F, 1.0F);
}
2013-11-04 07:07:38 -06:00
protected void c() {}
2012-03-01 10:49:23 +00:00
public EntityFireball(World world, double d0, double d1, double d2, double d3, double d4, double d5) {
super(world);
2012-07-29 02:33:13 -05:00
this.a(1.0F, 1.0F);
2012-03-01 10:49:23 +00:00
this.setPositionRotation(d0, d1, d2, this.yaw, this.pitch);
this.setPosition(d0, d1, d2);
double d6 = (double) MathHelper.sqrt(d3 * d3 + d4 * d4 + d5 * d5);
this.dirX = d3 / d6 * 0.1D;
this.dirY = d4 / d6 * 0.1D;
this.dirZ = d5 / d6 * 0.1D;
}
2011-01-29 22:50:29 +01:00
public EntityFireball(World world, EntityLiving entityliving, double d0, double d1, double d2) {
super(world);
this.shooter = entityliving;
this.projectileSource = (org.bukkit.entity.LivingEntity) entityliving.getBukkitEntity(); // CraftBukkit
2012-07-29 02:33:13 -05:00
this.a(1.0F, 1.0F);
this.setPositionRotation(entityliving.locX, entityliving.locY, entityliving.locZ, entityliving.yaw, entityliving.pitch);
this.setPosition(this.locX, this.locY, this.locZ);
2011-01-29 22:50:29 +01:00
this.height = 0.0F;
this.motX = this.motY = this.motZ = 0.0D;
2013-03-24 23:22:32 -05:00
// CraftBukkit start - Added setDirection method
this.setDirection(d0, d1, d2);
}
public void setDirection(double d0, double d1, double d2) {
// CraftBukkit end
2011-01-29 22:50:29 +01:00
d0 += this.random.nextGaussian() * 0.4D;
d1 += this.random.nextGaussian() * 0.4D;
d2 += this.random.nextGaussian() * 0.4D;
double d3 = (double) MathHelper.sqrt(d0 * d0 + d1 * d1 + d2 * d2);
2011-01-29 22:50:29 +01:00
this.dirX = d0 / d3 * 0.1D;
this.dirY = d1 / d3 * 0.1D;
this.dirZ = d2 / d3 * 0.1D;
}
2013-11-04 07:07:38 -06:00
public void h() {
2012-03-01 10:49:23 +00:00
if (!this.world.isStatic && (this.shooter != null && this.shooter.dead || !this.world.isLoaded((int) this.locX, (int) this.locY, (int) this.locZ))) {
2011-11-20 00:01:14 -08:00
this.die();
2012-03-01 10:49:23 +00:00
} else {
2013-11-04 07:07:38 -06:00
super.h();
2012-03-01 10:49:23 +00:00
this.setOnFire(1);
if (this.i) {
2013-11-04 07:07:38 -06:00
if (this.world.getType(this.e, this.f, this.g) == this.h) {
2012-03-01 10:49:23 +00:00
++this.j;
if (this.j == 600) {
this.die();
}
2011-01-29 22:50:29 +01:00
2012-03-01 10:49:23 +00:00
return;
}
2011-01-29 22:50:29 +01:00
2012-03-01 10:49:23 +00:00
this.i = false;
this.motX *= (double) (this.random.nextFloat() * 0.2F);
this.motY *= (double) (this.random.nextFloat() * 0.2F);
this.motZ *= (double) (this.random.nextFloat() * 0.2F);
this.j = 0;
2013-03-13 17:33:27 -05:00
this.au = 0;
2012-03-01 10:49:23 +00:00
} else {
2013-03-13 17:33:27 -05:00
++this.au;
}
2011-01-29 22:50:29 +01:00
Vec3D vec3d = this.world.getVec3DPool().create(this.locX, this.locY, this.locZ);
Vec3D vec3d1 = this.world.getVec3DPool().create(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
2012-03-01 10:49:23 +00:00
MovingObjectPosition movingobjectposition = this.world.a(vec3d, vec3d1);
2011-01-29 22:50:29 +01:00
vec3d = this.world.getVec3DPool().create(this.locX, this.locY, this.locZ);
vec3d1 = this.world.getVec3DPool().create(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
2012-03-01 10:49:23 +00:00
if (movingobjectposition != null) {
vec3d1 = this.world.getVec3DPool().create(movingobjectposition.pos.c, movingobjectposition.pos.d, movingobjectposition.pos.e);
2012-03-01 10:49:23 +00:00
}
2011-01-29 22:50:29 +01:00
2012-03-01 10:49:23 +00:00
Entity entity = null;
List list = this.world.getEntities(this, this.boundingBox.a(this.motX, this.motY, this.motZ).grow(1.0D, 1.0D, 1.0D));
double d0 = 0.0D;
2013-11-04 07:07:38 -06:00
for (int i = 0; i < list.size(); ++i) {
Entity entity1 = (Entity) list.get(i);
2013-11-04 07:07:38 -06:00
if (entity1.R() && (!entity1.h(this.shooter) || this.au >= 25)) {
2012-03-01 10:49:23 +00:00
float f = 0.3F;
AxisAlignedBB axisalignedbb = entity1.boundingBox.grow((double) f, (double) f, (double) f);
MovingObjectPosition movingobjectposition1 = axisalignedbb.a(vec3d, vec3d1);
2012-03-01 10:49:23 +00:00
if (movingobjectposition1 != null) {
double d1 = vec3d.distanceSquared(movingobjectposition1.pos); // CraftBukkit - distance efficiency
2012-03-01 10:49:23 +00:00
if (d1 < d0 || d0 == 0.0D) {
entity = entity1;
d0 = d1;
}
2011-01-29 22:50:29 +01:00
}
}
}
2012-03-01 10:49:23 +00:00
if (entity != null) {
movingobjectposition = new MovingObjectPosition(entity);
}
2011-01-29 22:50:29 +01:00
2012-03-01 10:49:23 +00:00
if (movingobjectposition != null) {
this.a(movingobjectposition);
2012-07-29 02:33:13 -05:00
// CraftBukkit start
if (this.dead) {
org.bukkit.craftbukkit.event.CraftEventFactory.callProjectileHitEvent(this);
}
// CraftBukkit end
2012-03-01 10:49:23 +00:00
}
2012-03-01 10:49:23 +00:00
this.locX += this.motX;
this.locY += this.motY;
this.locZ += this.motZ;
float f1 = MathHelper.sqrt(this.motX * this.motX + this.motZ * this.motZ);
2011-01-29 22:50:29 +01:00
this.yaw = (float) (Math.atan2(this.motZ, this.motX) * 180.0D / 3.1415927410125732D) + 90.0F;
2011-01-29 22:50:29 +01:00
for (this.pitch = (float) (Math.atan2((double) f1, this.motY) * 180.0D / 3.1415927410125732D) - 90.0F; this.pitch - this.lastPitch < -180.0F; this.lastPitch -= 360.0F) {
2012-03-01 10:49:23 +00:00
;
}
2011-01-29 22:50:29 +01:00
2012-03-01 10:49:23 +00:00
while (this.pitch - this.lastPitch >= 180.0F) {
this.lastPitch += 360.0F;
}
2011-01-29 22:50:29 +01:00
2012-03-01 10:49:23 +00:00
while (this.yaw - this.lastYaw < -180.0F) {
this.lastYaw -= 360.0F;
}
2011-01-29 22:50:29 +01:00
2012-03-01 10:49:23 +00:00
while (this.yaw - this.lastYaw >= 180.0F) {
this.lastYaw += 360.0F;
}
2011-01-29 22:50:29 +01:00
2012-03-01 10:49:23 +00:00
this.pitch = this.lastPitch + (this.pitch - this.lastPitch) * 0.2F;
this.yaw = this.lastYaw + (this.yaw - this.lastYaw) * 0.2F;
2013-11-04 07:07:38 -06:00
float f2 = this.e();
2013-11-04 07:07:38 -06:00
if (this.M()) {
for (int j = 0; j < 4; ++j) {
2012-03-01 10:49:23 +00:00
float f3 = 0.25F;
this.world.addParticle("bubble", this.locX - this.motX * (double) f3, this.locY - this.motY * (double) f3, this.locZ - this.motZ * (double) f3, this.motX, this.motY, this.motZ);
2012-03-01 10:49:23 +00:00
}
f2 = 0.8F;
}
2012-03-01 10:49:23 +00:00
this.motX += this.dirX;
this.motY += this.dirY;
this.motZ += this.dirZ;
this.motX *= (double) f2;
this.motY *= (double) f2;
this.motZ *= (double) f2;
this.world.addParticle("smoke", this.locX, this.locY + 0.5D, this.locZ, 0.0D, 0.0D, 0.0D);
2012-03-01 10:49:23 +00:00
this.setPosition(this.locX, this.locY, this.locZ);
}
}
2013-11-04 07:07:38 -06:00
protected float e() {
return 0.95F;
2011-11-20 00:01:14 -08:00
}
protected abstract void a(MovingObjectPosition movingobjectposition);
2011-04-20 22:47:26 +02:00
public void b(NBTTagCompound nbttagcompound) {
nbttagcompound.setShort("xTile", (short) this.e);
nbttagcompound.setShort("yTile", (short) this.f);
nbttagcompound.setShort("zTile", (short) this.g);
2013-11-04 07:07:38 -06:00
nbttagcompound.setByte("inTile", (byte) Block.b(this.h));
nbttagcompound.setByte("inGround", (byte) (this.i ? 1 : 0));
// CraftBukkit - Fix direction being mismapped to invalid variables
nbttagcompound.set("power", this.a(new double[] { this.dirX, this.dirY, this.dirZ}));
}
2011-04-20 22:47:26 +02:00
public void a(NBTTagCompound nbttagcompound) {
this.e = nbttagcompound.getShort("xTile");
this.f = nbttagcompound.getShort("yTile");
this.g = nbttagcompound.getShort("zTile");
2013-11-04 07:07:38 -06:00
this.h = Block.e(nbttagcompound.getByte("inTile") & 255);
this.i = nbttagcompound.getByte("inGround") == 1;
2013-03-24 23:22:32 -05:00
// CraftBukkit start - direction -> power
2013-11-04 07:07:38 -06:00
if (nbttagcompound.hasKeyOfType("power", 9)) {
NBTTagList nbttaglist = nbttagcompound.getList("power", 6);
2013-11-04 07:07:38 -06:00
this.dirX = nbttaglist.d(0);
this.dirY = nbttaglist.d(1);
this.dirZ = nbttaglist.d(2);
// CraftBukkit end
} else {
this.die();
}
}
2013-11-04 07:07:38 -06:00
public boolean R() {
return true;
}
2013-11-04 07:07:38 -06:00
public float af() {
2011-11-20 00:01:14 -08:00
return 1.0F;
}
2013-07-01 06:03:00 -05:00
public boolean damageEntity(DamageSource damagesource, float f) {
2012-11-06 06:05:28 -06:00
if (this.isInvulnerable()) {
return false;
} else {
2013-11-04 07:07:38 -06:00
this.Q();
2012-11-06 06:05:28 -06:00
if (damagesource.getEntity() != null) {
// CraftBukkit start
EntityDamageByEntityEvent event = new EntityDamageByEntityEvent(damagesource.getEntity().getBukkitEntity(), this.getBukkitEntity(), org.bukkit.event.entity.EntityDamageEvent.DamageCause.ENTITY_ATTACK, f);
world.getServer().getPluginManager().callEvent(event);
if (event.isCancelled()) {
return false;
}
// CraftBukkit end
2013-11-04 07:07:38 -06:00
Vec3D vec3d = damagesource.getEntity().ag();
2012-11-06 06:05:28 -06:00
if (vec3d != null) {
this.motX = vec3d.c;
this.motY = vec3d.d;
this.motZ = vec3d.e;
this.dirX = this.motX * 0.1D;
this.dirY = this.motY * 0.1D;
this.dirZ = this.motZ * 0.1D;
}
2011-01-29 22:50:29 +01:00
2012-11-06 06:05:28 -06:00
if (damagesource.getEntity() instanceof EntityLiving) {
this.shooter = (EntityLiving) damagesource.getEntity();
}
2011-11-20 00:01:14 -08:00
2012-11-06 06:05:28 -06:00
return true;
} else {
return false;
}
}
}
2011-11-20 00:01:14 -08:00
2013-07-01 06:03:00 -05:00
public float d(float f) {
2011-11-20 00:01:14 -08:00
return 1.0F;
}
}