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

252 Zeilen
8.7 KiB
Java

package net.minecraft.server;
import java.util.List;
// CraftBukkit start
import org.bukkit.craftbukkit.CraftServer;
2011-02-04 04:03:11 +01:00
import org.bukkit.craftbukkit.entity.CraftEntity;
import org.bukkit.event.entity.EntityDamageByProjectileEvent;
import org.bukkit.event.entity.EntityDamageEvent;
import org.bukkit.event.entity.EntityDamageEvent.DamageCause;
2011-03-18 22:57:22 +01:00
import org.bukkit.event.entity.ExplosionPrimeEvent;
// CraftBukkit end
public class EntityFireball extends Entity {
2011-01-29 22:50:29 +01:00
private int e = -1;
private int f = -1;
2011-02-23 03:37:56 +01:00
private int g = -1;
private int h = 0;
private boolean i = false;
2011-01-29 22:50:29 +01:00
public int a = 0;
2011-02-23 03:37:56 +01:00
private EntityLiving j;
private int k;
private int l = 0;
public double b;
public double c;
public double d;
public EntityFireball(World world) {
super(world);
2011-01-29 22:50:29 +01:00
this.a(1.0F, 1.0F);
}
protected void a() {}
2011-01-29 22:50:29 +01:00
public EntityFireball(World world, EntityLiving entityliving, double d0, double d1, double d2) {
super(world);
2011-02-23 03:37:56 +01:00
this.j = entityliving;
2011-01-29 22:50:29 +01:00
this.a(1.0F, 1.0F);
this.c(entityliving.locX, entityliving.locY, entityliving.locZ, entityliving.yaw, entityliving.pitch);
this.a(this.locX, this.locY, this.locZ);
this.height = 0.0F;
this.motX = this.motY = this.motZ = 0.0D;
d0 += this.random.nextGaussian() * 0.4D;
d1 += this.random.nextGaussian() * 0.4D;
d2 += this.random.nextGaussian() * 0.4D;
double d3 = (double) MathHelper.a(d0 * d0 + d1 * d1 + d2 * d2);
this.b = d0 / d3 * 0.1D;
this.c = d1 / d3 * 0.1D;
this.d = d2 / d3 * 0.1D;
}
2011-02-23 03:37:56 +01:00
public void f_() {
super.f_();
2011-01-29 22:50:29 +01:00
this.fireTicks = 10;
if (this.a > 0) {
--this.a;
}
2011-01-29 22:50:29 +01:00
2011-02-23 03:37:56 +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-02-23 03:37:56 +01:00
if (i == this.h) {
++this.k;
if (this.k == 1200) {
this.C();
}
2011-01-29 22:50:29 +01:00
return;
}
2011-01-29 22:50:29 +01:00
2011-02-23 03:37:56 +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-02-23 03:37:56 +01:00
this.k = 0;
this.l = 0;
} else {
2011-02-23 03:37:56 +01:00
++this.l;
}
2011-01-29 22:50:29 +01:00
Vec3D vec3d = Vec3D.b(this.locX, this.locY, this.locZ);
Vec3D vec3d1 = Vec3D.b(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
MovingObjectPosition movingobjectposition = this.world.a(vec3d, vec3d1);
vec3d = Vec3D.b(this.locX, this.locY, this.locZ);
vec3d1 = Vec3D.b(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
if (movingobjectposition != null) {
vec3d1 = Vec3D.b(movingobjectposition.f.a, movingobjectposition.f.b, movingobjectposition.f.c);
}
2011-01-29 22:50:29 +01:00
Entity entity = null;
2011-01-29 22:50:29 +01:00
List list = this.world.b((Entity) this, this.boundingBox.a(this.motX, this.motY, this.motZ).b(1.0D, 1.0D, 1.0D));
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-02-23 03:37:56 +01:00
if (entity1.d_() && (entity1 != this.j || this.l >= 25)) {
2011-01-29 22:50:29 +01:00
float f = 0.3F;
AxisAlignedBB axisalignedbb = entity1.boundingBox.b((double) f, (double) f, (double) f);
MovingObjectPosition movingobjectposition1 = axisalignedbb.a(vec3d, vec3d1);
2011-01-29 22:50:29 +01:00
if (movingobjectposition1 != null) {
double d1 = vec3d.a(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-01-29 22:50:29 +01:00
// CraftBukkit start
if (movingobjectposition.g != null) {
2011-01-29 22:50:29 +01:00
boolean stick;
if (movingobjectposition.g instanceof EntityLiving) {
2011-01-29 22:50:29 +01:00
CraftServer server = ((WorldServer) this.world).getServer();
2011-02-23 03:37:56 +01:00
org.bukkit.entity.Entity shooter = (this.j == null) ? null : this.j.getBukkitEntity();
org.bukkit.entity.Entity damagee = movingobjectposition.g.getBukkitEntity();
org.bukkit.entity.Entity projectile = this.getBukkitEntity();
DamageCause damageCause = EntityDamageEvent.DamageCause.ENTITY_ATTACK;
int damage = 0;
// TODO @see EntityArrow#162
2011-01-29 22:50:29 +01:00
EntityDamageByProjectileEvent event = new EntityDamageByProjectileEvent(shooter, damagee, projectile, damageCause, damage);
server.getPluginManager().callEvent(event);
2011-02-23 13:56:36 +01:00
if (!event.isCancelled()) {
// this function returns if the fireball should stick or not, i.e. !bounce
2011-02-23 03:37:56 +01:00
stick = movingobjectposition.g.a(this.j, event.getDamage());
} else {
// event was cancelled, get if the fireball should bounce or not
2011-01-29 22:50:29 +01:00
stick = !event.getBounce();
}
} else {
2011-02-23 03:37:56 +01:00
stick = movingobjectposition.g.a(this.j, 0);
}
2011-01-29 22:50:29 +01:00
if (stick) {
;
}
}
2011-02-23 03:37:56 +01:00
2011-02-04 04:03:11 +01:00
CraftServer server = ((WorldServer) this.world).getServer();
2011-02-23 13:56:36 +01:00
ExplosionPrimeEvent event = new ExplosionPrimeEvent(CraftEntity.getEntity(server, this), 1.0F, false);
2011-02-04 04:03:11 +01:00
server.getPluginManager().callEvent(event);
2011-02-23 13:56:36 +01:00
if (!event.isCancelled()) {
// give 'this' instead of (Entity) null so we know what causes the damage
this.world.a(this, this.locX, this.locY, this.locZ, event.getRadius(), event.getFire());
2011-02-23 03:37:56 +01:00
this.C();
2011-02-04 04:03:11 +01:00
}
2011-02-23 13:56:36 +01:00
// CraftBukkit end
}
2011-01-29 22:50:29 +01:00
this.locX += this.motX;
this.locY += this.motY;
this.locZ += this.motZ;
float f1 = MathHelper.a(this.motX * this.motX + this.motZ * this.motZ);
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;
2011-02-23 03:37:56 +01:00
if (this.g_()) {
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.b;
this.motY += this.c;
this.motZ += this.d;
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.a(this.locX, this.locY, this.locZ);
}
public void a(NBTTagCompound nbttagcompound) {
2011-01-29 22:50:29 +01:00
nbttagcompound.a("xTile", (short) this.e);
nbttagcompound.a("yTile", (short) this.f);
2011-02-23 03:37:56 +01:00
nbttagcompound.a("zTile", (short) this.g);
nbttagcompound.a("inTile", (byte) this.h);
2011-01-29 22:50:29 +01:00
nbttagcompound.a("shake", (byte) this.a);
2011-02-23 03:37:56 +01:00
nbttagcompound.a("inGround", (byte) (this.i ? 1 : 0));
}
public void b(NBTTagCompound nbttagcompound) {
2011-02-23 03:37:56 +01:00
this.e = nbttagcompound.d("xTile");
this.f = nbttagcompound.d("yTile");
this.g = nbttagcompound.d("zTile");
this.h = nbttagcompound.c("inTile") & 255;
this.a = nbttagcompound.c("shake") & 255;
this.i = nbttagcompound.c("inGround") == 1;
}
2011-02-23 03:37:56 +01:00
public boolean d_() {
return true;
}
public boolean a(Entity entity, int i) {
2011-02-23 03:37:56 +01:00
this.R();
if (entity != null) {
2011-02-23 03:37:56 +01:00
Vec3D vec3d = entity.N();
if (vec3d != null) {
2011-01-29 22:50:29 +01:00
this.motX = vec3d.a;
this.motY = vec3d.b;
this.motZ = vec3d.c;
this.b = this.motX * 0.1D;
this.c = this.motY * 0.1D;
this.d = this.motZ * 0.1D;
}
2011-01-29 22:50:29 +01:00
return true;
} else {
return false;
}
}
}