Paper/src/main/java/net/minecraft/server/EntityFireball.java

280 Zeilen
9.9 KiB
Java

package net.minecraft.server;
import java.util.List;
// CraftBukkit start
import org.bukkit.Bukkit;
2011-02-04 04:03:11 +01:00
import org.bukkit.craftbukkit.entity.CraftEntity;
import org.bukkit.craftbukkit.entity.CraftLivingEntity;
import org.bukkit.entity.Explosive;
import org.bukkit.entity.Projectile;
import org.bukkit.event.entity.EntityDamageByEntityEvent;
import org.bukkit.event.entity.EntityDamageEvent;
2011-03-18 22:57:22 +01:00
import org.bukkit.event.entity.ExplosionPrimeEvent;
import org.bukkit.event.entity.ProjectileHitEvent;
// CraftBukkit end
public class EntityFireball extends Entity {
2011-11-20 09:01:14 +01:00
private int e = -1;
2011-01-29 22:50:29 +01:00
private int f = -1;
2011-02-23 03:37:56 +01:00
private int g = -1;
2011-11-20 09:01:14 +01:00
private int h = 0;
private boolean i = false;
2011-05-26 14:48:22 +02:00
public EntityLiving shooter;
2011-11-20 09:01:14 +01:00
private int j;
private int k = 0;
public double dirX;
public double dirY;
public double dirZ;
public float yield = 1; // CraftBukkit
public boolean isIncendiary = true; // CraftBukkit
public EntityFireball(World world) {
super(world);
2011-03-31 22:40:00 +02:00
this.b(1.0F, 1.0F);
}
2011-04-20 22:47:26 +02:00
protected void b() {}
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;
2011-03-31 22:40:00 +02:00
this.b(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;
2012-01-12 19:43:34 +01: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;
}
2012-01-12 23:10:13 +01:00
public void y_() {
super.y_();
this.setOnFire(1);
2011-11-20 09:01:14 +01:00
if (!this.world.isStatic && (this.shooter == null || this.shooter.dead)) {
this.die();
}
2011-01-29 22:50:29 +01:00
2011-11-20 09:01:14 +01:00
if (this.i) {
int i = this.world.getTypeId(this.e, this.f, this.g);
2011-01-29 22:50:29 +01:00
2011-11-20 09:01:14 +01:00
if (i == this.h) {
++this.j;
if (this.j == 1200) {
this.die();
}
2011-01-29 22:50:29 +01:00
return;
}
2011-01-29 22:50:29 +01:00
2011-11-20 09:01:14 +01:00
this.i = false;
2011-01-29 22:50:29 +01:00
this.motX *= (double) (this.random.nextFloat() * 0.2F);
this.motY *= (double) (this.random.nextFloat() * 0.2F);
this.motZ *= (double) (this.random.nextFloat() * 0.2F);
2011-11-20 09:01:14 +01:00
this.j = 0;
2011-02-23 03:37:56 +01:00
this.k = 0;
} else {
2011-11-20 09:01:14 +01:00
++this.k;
}
Vec3D vec3d = Vec3D.create(this.locX, this.locY, this.locZ);
Vec3D vec3d1 = Vec3D.create(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
2011-01-29 22:50:29 +01:00
MovingObjectPosition movingobjectposition = this.world.a(vec3d, vec3d1);
vec3d = Vec3D.create(this.locX, this.locY, this.locZ);
vec3d1 = Vec3D.create(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
if (movingobjectposition != null) {
vec3d1 = Vec3D.create(movingobjectposition.f.a, movingobjectposition.f.b, movingobjectposition.f.c);
}
2011-01-29 22:50:29 +01:00
Entity entity = null;
2012-01-12 16:27:39 +01:00
List list = this.world.getEntities(this, this.boundingBox.a(this.motX, this.motY, this.motZ).grow(1.0D, 1.0D, 1.0D));
2011-01-29 22:50:29 +01:00
double d0 = 0.0D;
2011-01-29 22:50:29 +01:00
for (int j = 0; j < list.size(); ++j) {
Entity entity1 = (Entity) list.get(j);
2011-11-20 09:01:14 +01:00
if (entity1.e_() && (!entity1.a((Entity) this.shooter) || this.k >= 25)) {
2011-01-29 22:50:29 +01:00
float f = 0.3F;
2012-01-12 16:27:39 +01:00
AxisAlignedBB axisalignedbb = entity1.boundingBox.grow((double) f, (double) f, (double) f);
2011-01-29 22:50:29 +01:00
MovingObjectPosition movingobjectposition1 = axisalignedbb.a(vec3d, vec3d1);
2011-01-29 22:50:29 +01:00
if (movingobjectposition1 != null) {
2011-09-15 02:23:52 +02:00
double d1 = vec3d.b(movingobjectposition1.f);
2011-01-29 22:50:29 +01:00
if (d1 < d0 || d0 == 0.0D) {
entity = entity1;
d0 = d1;
}
}
}
}
if (entity != null) {
movingobjectposition = new MovingObjectPosition(entity);
}
2011-01-29 22:50:29 +01:00
if (movingobjectposition != null) {
2011-11-23 04:33:53 +01:00
this.a(movingobjectposition);
}
2011-01-29 22:50:29 +01: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.motX, this.motZ) * 180.0D / 3.1415927410125732D);
for (this.pitch = (float) (Math.atan2(this.motY, (double) f1) * 180.0D / 3.1415927410125732D); this.pitch - this.lastPitch < -180.0F; this.lastPitch -= 360.0F) {
;
}
2011-01-29 22:50:29 +01:00
while (this.pitch - this.lastPitch >= 180.0F) {
this.lastPitch += 360.0F;
}
2011-01-29 22:50:29 +01:00
while (this.yaw - this.lastYaw < -180.0F) {
this.lastYaw -= 360.0F;
}
2011-01-29 22:50:29 +01:00
while (this.yaw - this.lastYaw >= 180.0F) {
this.lastYaw += 360.0F;
}
2011-01-29 22:50:29 +01:00
this.pitch = this.lastPitch + (this.pitch - this.lastPitch) * 0.2F;
this.yaw = this.lastYaw + (this.yaw - this.lastYaw) * 0.2F;
float f2 = 0.95F;
2012-01-12 23:10:13 +01:00
if (this.aK()) {
2011-01-29 22:50:29 +01:00
for (int k = 0; k < 4; ++k) {
float f3 = 0.25F;
2011-01-29 22:50:29 +01:00
this.world.a("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);
}
f2 = 0.8F;
}
2011-01-29 22:50:29 +01:00
this.motX += this.dirX;
this.motY += this.dirY;
this.motZ += this.dirZ;
2011-01-29 22:50:29 +01:00
this.motX *= (double) f2;
this.motY *= (double) f2;
this.motZ *= (double) f2;
this.world.a("smoke", this.locX, this.locY + 0.5D, this.locZ, 0.0D, 0.0D, 0.0D);
this.setPosition(this.locX, this.locY, this.locZ);
}
2011-11-20 09:01:14 +01:00
protected void a(MovingObjectPosition movingobjectposition) {
if (!this.world.isStatic) {
// CraftBukkit start
ProjectileHitEvent phe = new ProjectileHitEvent((Projectile) this.getBukkitEntity());
this.world.getServer().getPluginManager().callEvent(phe);
// CraftBukkit end
if (!this.world.isStatic) {
// CraftBukkit start
if (movingobjectposition.entity != null) {
boolean stick;
if (movingobjectposition.entity instanceof EntityLiving) {
org.bukkit.entity.Entity damagee = movingobjectposition.entity.getBukkitEntity();
Projectile projectile = (Projectile) this.getBukkitEntity();
EntityDamageByEntityEvent event = new EntityDamageByEntityEvent(projectile, damagee, EntityDamageEvent.DamageCause.PROJECTILE, 0);
Bukkit.getPluginManager().callEvent(event);
2011-11-20 09:01:14 +01:00
if (event.isCancelled()) {
stick = !projectile.doesBounce();
} else {
// this function returns if the fireball should stick in or not, i.e. !bounce
stick = movingobjectposition.entity.damageEntity(DamageSource.fireball(this, this.shooter), event.getDamage());
}
} else {
stick = movingobjectposition.entity.damageEntity(DamageSource.fireball(this, this.shooter), 0);
}
if (stick) {
;
}
}
ExplosionPrimeEvent event = new ExplosionPrimeEvent((Explosive) CraftEntity.getEntity(this.world.getServer(), this));
this.world.getServer().getPluginManager().callEvent(event);
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());
}
// CraftBukkit end
}
// this.world.createExplosion((Entity) null, this.locX, this.locY, this.locZ, 1.0F, true); // CraftBukkit
this.die();
}
}
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);
nbttagcompound.setByte("inTile", (byte) this.h);
nbttagcompound.setByte("inGround", (byte) (this.i ? 1 : 0));
}
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");
this.h = nbttagcompound.getByte("inTile") & 255;
this.i = nbttagcompound.getByte("inGround") == 1;
}
2011-11-20 09:01:14 +01:00
public boolean e_() {
return true;
}
2011-11-20 09:01:14 +01:00
public float j_() {
return 1.0F;
}
2011-09-15 02:23:52 +02:00
public boolean damageEntity(DamageSource damagesource, int i) {
2012-01-12 23:10:13 +01:00
this.aM();
2011-09-15 18:36:27 +02:00
if (damagesource.getEntity() != null) {
2012-01-12 23:10:13 +01:00
Vec3D vec3d = damagesource.getEntity().aA();
if (vec3d != null) {
2011-01-29 22:50:29 +01:00
this.motX = vec3d.a;
this.motY = vec3d.b;
this.motZ = vec3d.c;
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
2011-11-20 09:01:14 +01:00
if (damagesource.getEntity() instanceof EntityLiving) {
this.shooter = (EntityLiving) damagesource.getEntity();
}
return true;
} else {
return false;
}
}
2011-11-20 09:01:14 +01:00
public float a(float f) {
return 1.0F;
}
}