2012-12-22 19:37:06 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class EntityFireworks extends Entity {
|
|
|
|
|
2013-01-17 10:28:44 +01:00
|
|
|
private int ticksFlown;
|
|
|
|
public int expectedLifespan; // CraftBukkit - private -> public
|
2012-12-22 19:37:06 +01:00
|
|
|
|
|
|
|
public EntityFireworks(World world) {
|
|
|
|
super(world);
|
|
|
|
this.a(0.25F, 0.25F);
|
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
protected void c() {
|
2013-01-17 10:28:44 +01:00
|
|
|
this.datawatcher.a(8, 5);
|
2012-12-22 19:37:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public EntityFireworks(World world, double d0, double d1, double d2, ItemStack itemstack) {
|
|
|
|
super(world);
|
2013-01-17 10:28:44 +01:00
|
|
|
this.ticksFlown = 0;
|
2012-12-22 19:37:06 +01:00
|
|
|
this.a(0.25F, 0.25F);
|
|
|
|
this.setPosition(d0, d1, d2);
|
|
|
|
this.height = 0.0F;
|
|
|
|
int i = 1;
|
|
|
|
|
|
|
|
if (itemstack != null && itemstack.hasTag()) {
|
|
|
|
this.datawatcher.watch(8, itemstack);
|
|
|
|
NBTTagCompound nbttagcompound = itemstack.getTag();
|
|
|
|
NBTTagCompound nbttagcompound1 = nbttagcompound.getCompound("Fireworks");
|
|
|
|
|
|
|
|
if (nbttagcompound1 != null) {
|
|
|
|
i += nbttagcompound1.getByte("Flight");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.motX = this.random.nextGaussian() * 0.001D;
|
|
|
|
this.motZ = this.random.nextGaussian() * 0.001D;
|
|
|
|
this.motY = 0.05D;
|
2013-01-17 10:28:44 +01:00
|
|
|
this.expectedLifespan = 10 * i + this.random.nextInt(6) + this.random.nextInt(7);
|
2012-12-22 19:37:06 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
public void h() {
|
2014-03-21 05:26:30 +01:00
|
|
|
this.S = this.locX;
|
|
|
|
this.T = this.locY;
|
|
|
|
this.U = this.locZ;
|
2013-11-04 14:07:38 +01:00
|
|
|
super.h();
|
2012-12-22 19:37:06 +01:00
|
|
|
this.motX *= 1.15D;
|
|
|
|
this.motZ *= 1.15D;
|
|
|
|
this.motY += 0.04D;
|
|
|
|
this.move(this.motX, this.motY, this.motZ);
|
|
|
|
float f = MathHelper.sqrt(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) f) * 180.0D / 3.1415927410125732D); this.pitch - this.lastPitch < -180.0F; this.lastPitch -= 360.0F) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (this.pitch - this.lastPitch >= 180.0F) {
|
|
|
|
this.lastPitch += 360.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (this.yaw - this.lastYaw < -180.0F) {
|
|
|
|
this.lastYaw -= 360.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (this.yaw - this.lastYaw >= 180.0F) {
|
|
|
|
this.lastYaw += 360.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.pitch = this.lastPitch + (this.pitch - this.lastPitch) * 0.2F;
|
|
|
|
this.yaw = this.lastYaw + (this.yaw - this.lastYaw) * 0.2F;
|
2013-01-17 10:28:44 +01:00
|
|
|
if (this.ticksFlown == 0) {
|
2012-12-22 19:37:06 +01:00
|
|
|
this.world.makeSound(this, "fireworks.launch", 3.0F, 1.0F);
|
|
|
|
}
|
|
|
|
|
2013-01-17 10:28:44 +01:00
|
|
|
++this.ticksFlown;
|
|
|
|
if (this.world.isStatic && this.ticksFlown % 2 < 2) {
|
2012-12-22 19:37:06 +01:00
|
|
|
this.world.addParticle("fireworksSpark", this.locX, this.locY - 0.3D, this.locZ, this.random.nextGaussian() * 0.05D, -this.motY * 0.5D, this.random.nextGaussian() * 0.05D);
|
|
|
|
}
|
|
|
|
|
2013-01-17 10:28:44 +01:00
|
|
|
if (!this.world.isStatic && this.ticksFlown > this.expectedLifespan) {
|
2012-12-22 19:37:06 +01:00
|
|
|
this.world.broadcastEntityEffect(this, (byte) 17);
|
|
|
|
this.die();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
2013-01-17 10:28:44 +01:00
|
|
|
nbttagcompound.setInt("Life", this.ticksFlown);
|
|
|
|
nbttagcompound.setInt("LifeTime", this.expectedLifespan);
|
|
|
|
ItemStack itemstack = this.datawatcher.getItemStack(8);
|
2012-12-22 19:37:06 +01:00
|
|
|
|
|
|
|
if (itemstack != null) {
|
|
|
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
|
|
|
|
|
|
|
itemstack.save(nbttagcompound1);
|
2013-11-04 14:07:38 +01:00
|
|
|
nbttagcompound.set("FireworksItem", nbttagcompound1);
|
2012-12-22 19:37:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
2013-01-17 10:28:44 +01:00
|
|
|
this.ticksFlown = nbttagcompound.getInt("Life");
|
|
|
|
this.expectedLifespan = nbttagcompound.getInt("LifeTime");
|
2012-12-22 19:37:06 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = nbttagcompound.getCompound("FireworksItem");
|
|
|
|
|
|
|
|
if (nbttagcompound1 != null) {
|
2013-01-17 10:28:44 +01:00
|
|
|
ItemStack itemstack = ItemStack.createStack(nbttagcompound1);
|
2012-12-22 19:37:06 +01:00
|
|
|
|
|
|
|
if (itemstack != null) {
|
|
|
|
this.datawatcher.watch(8, itemstack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
public float d(float f) {
|
|
|
|
return super.d(f);
|
2012-12-22 19:37:06 +01:00
|
|
|
}
|
|
|
|
|
2014-03-21 05:26:30 +01:00
|
|
|
public boolean au() {
|
2012-12-22 19:37:06 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|