3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-18 05:50:04 +01:00
Paper/src/main/java/net/minecraft/server/EntityEgg.java

347 Zeilen
14 KiB
Java

2011-01-11 09:25:49 +01:00
package net.minecraft.server;
import java.util.List;
// CraftBukkit start
import org.bukkit.entity.CreatureType;
2011-01-23 23:06:16 +01:00
import org.bukkit.entity.Egg;
import org.bukkit.entity.Player;
2011-01-11 09:44:39 +01:00
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.event.entity.EntityDamageByProjectileEvent;
import org.bukkit.event.entity.EntityDamageEvent;
import org.bukkit.event.entity.EntityDamageEvent.DamageCause;
2011-01-11 09:44:39 +01:00
import org.bukkit.event.player.PlayerEggThrowEvent;
// CraftBukkit end
2011-01-11 09:25:49 +01:00
public class EntityEgg extends Entity {
2011-01-29 22:50:29 +01:00
private int b = -1;
private int c = -1;
private int d = -1;
private int e = 0;
private boolean f = false;
public int a = 0;
private EntityLiving thrower;
2011-02-23 03:37:56 +01:00
private int h;
private int i = 0;
2011-01-11 09:25:49 +01:00
public EntityEgg(World world) {
super(world);
2011-03-31 22:40:00 +02:00
this.b(0.25F, 0.25F);
2011-01-11 09:25:49 +01:00
}
2011-04-20 22:47:26 +02:00
protected void b() {}
2011-01-14 14:31:10 +01:00
2011-01-11 09:25:49 +01:00
public EntityEgg(World world, EntityLiving entityliving) {
super(world);
this.thrower = entityliving;
2011-03-31 22:40:00 +02:00
this.b(0.25F, 0.25F);
2011-04-20 22:47:26 +02:00
this.setPositionRotation(entityliving.locX, entityliving.locY + (double) entityliving.s(), entityliving.locZ, entityliving.yaw, entityliving.pitch);
this.locX -= (double) (MathHelper.cos(this.yaw / 180.0F * 3.1415927F) * 0.16F);
2011-01-29 22:50:29 +01:00
this.locY -= 0.10000000149011612D;
this.locZ -= (double) (MathHelper.sin(this.yaw / 180.0F * 3.1415927F) * 0.16F);
this.setPosition(this.locX, this.locY, this.locZ);
2011-01-29 22:50:29 +01:00
this.height = 0.0F;
float f = 0.4F;
this.motX = (double) (-MathHelper.sin(this.yaw / 180.0F * 3.1415927F) * MathHelper.cos(this.pitch / 180.0F * 3.1415927F) * f);
this.motZ = (double) (MathHelper.cos(this.yaw / 180.0F * 3.1415927F) * MathHelper.cos(this.pitch / 180.0F * 3.1415927F) * f);
this.motY = (double) (-MathHelper.sin(this.pitch / 180.0F * 3.1415927F) * f);
2011-01-29 22:50:29 +01:00
this.a(this.motX, this.motY, this.motZ, 1.5F, 1.0F);
2011-01-11 09:25:49 +01:00
}
2011-01-29 22:50:29 +01:00
public EntityEgg(World world, double d0, double d1, double d2) {
super(world);
2011-02-23 03:37:56 +01:00
this.h = 0;
2011-03-31 22:40:00 +02:00
this.b(0.25F, 0.25F);
this.setPosition(d0, d1, d2);
2011-01-29 22:50:29 +01:00
this.height = 0.0F;
2011-01-14 14:31:10 +01:00
}
2011-01-29 22:50:29 +01:00
public void a(double d0, double d1, double d2, float f, float f1) {
float f2 = MathHelper.a(d0 * d0 + d1 * d1 + d2 * d2);
d0 /= (double) f2;
d1 /= (double) f2;
d2 /= (double) f2;
d0 += this.random.nextGaussian() * 0.007499999832361937D * (double) f1;
d1 += this.random.nextGaussian() * 0.007499999832361937D * (double) f1;
d2 += this.random.nextGaussian() * 0.007499999832361937D * (double) f1;
d0 *= (double) f;
d1 *= (double) f;
d2 *= (double) f;
this.motX = d0;
this.motY = d1;
this.motZ = d2;
float f3 = MathHelper.a(d0 * d0 + d2 * d2);
this.lastYaw = this.yaw = (float) (Math.atan2(d0, d2) * 180.0D / 3.1415927410125732D);
this.lastPitch = this.pitch = (float) (Math.atan2(d1, (double) f3) * 180.0D / 3.1415927410125732D);
2011-02-23 03:37:56 +01:00
this.h = 0;
2011-01-11 09:25:49 +01:00
}
2011-05-28 22:50:08 +02:00
public void o_() {
this.bo = this.locX;
this.bp = this.locY;
this.bq = this.locZ;
super.o_();
2011-01-29 22:50:29 +01:00
if (this.a > 0) {
--this.a;
2011-01-11 09:25:49 +01:00
}
2011-01-29 22:50:29 +01:00
if (this.f) {
int i = this.world.getTypeId(this.b, this.c, this.d);
if (i == this.e) {
2011-02-23 03:37:56 +01:00
++this.h;
if (this.h == 1200) {
this.die();
2011-01-11 09:25:49 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-11 09:25:49 +01:00
return;
}
2011-01-29 22:50:29 +01:00
this.f = 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);
2011-02-23 03:37:56 +01:00
this.h = 0;
this.i = 0;
2011-01-11 09:25:49 +01:00
} else {
2011-02-23 03:37:56 +01:00
++this.i;
2011-01-11 09:25:49 +01:00
}
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);
2011-01-11 09:25:49 +01:00
if (movingobjectposition != null) {
vec3d1 = Vec3D.create(movingobjectposition.f.a, movingobjectposition.f.b, movingobjectposition.f.c);
2011-01-11 09:25:49 +01:00
}
2011-01-29 22:50:29 +01:00
if (!this.world.isStatic) {
2011-01-11 09:25:49 +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-11 09:25:49 +01:00
2011-01-29 22:50:29 +01:00
for (int j = 0; j < list.size(); ++j) {
Entity entity1 = (Entity) list.get(j);
2011-01-11 09:25:49 +01:00
2011-05-28 22:50:08 +02:00
if (entity1.n_() && (entity1 != this.thrower || this.i >= 5)) {
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-11 09:25:49 +01:00
2011-01-29 22:50:29 +01:00
if (movingobjectposition1 != null) {
double d1 = vec3d.a(movingobjectposition1.f);
2011-01-11 09:25:49 +01:00
2011-01-29 22:50:29 +01:00
if (d1 < d0 || d0 == 0.0D) {
entity = entity1;
d0 = d1;
}
}
2011-01-11 09:25:49 +01:00
}
}
if (entity != null) {
movingobjectposition = new MovingObjectPosition(entity);
}
}
2011-01-29 22:50:29 +01:00
2011-01-11 09:25:49 +01:00
if (movingobjectposition != null) {
2011-01-29 22:50:29 +01:00
// CraftBukkit start
if (movingobjectposition.entity != null) {
2011-01-29 22:50:29 +01:00
boolean stick;
if (movingobjectposition.entity instanceof EntityLiving) {
2011-01-29 22:50:29 +01:00
CraftServer server = ((WorldServer) this.world).getServer();
org.bukkit.entity.Entity shooter = (this.thrower == null) ? null : this.thrower.getBukkitEntity();
org.bukkit.entity.Entity damagee = movingobjectposition.entity.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 egg should stick or not, i.e. !bounce
stick = movingobjectposition.entity.damageEntity(this.thrower, event.getDamage());
} else {
// event was cancelled, get if the egg should bounce or not
2011-01-29 22:50:29 +01:00
stick = !event.getBounce();
}
} else {
stick = movingobjectposition.entity.damageEntity(this.thrower, 0);
}
2011-01-29 22:50:29 +01:00
if (stick) {
; // Original code does nothing *yet*
2011-01-11 09:25:49 +01:00
}
}
2011-01-29 22:50:29 +01:00
boolean hatching = !this.world.isStatic && this.random.nextInt(8) == 0;
2011-02-23 13:56:36 +01:00
int numHatching = (this.random.nextInt(32) == 0) ? 4 : 1;
2011-01-11 09:44:39 +01:00
if (!hatching) {
numHatching = 0;
}
CreatureType hatchingType = CreatureType.CHICKEN;
2011-01-11 09:25:49 +01:00
if (this.thrower instanceof EntityPlayer) {
2011-01-29 22:50:29 +01:00
CraftServer server = ((WorldServer) this.world).getServer();
Player player = (this.thrower == null) ? null : (Player) this.thrower.getBukkitEntity();
PlayerEggThrowEvent event = new PlayerEggThrowEvent(player, (Egg) this.getBukkitEntity(), hatching, (byte) numHatching, hatchingType);
2011-01-11 09:44:39 +01:00
server.getPluginManager().callEvent(event);
2011-02-23 13:56:36 +01:00
2011-01-11 09:44:39 +01:00
hatching = event.isHatching();
numHatching = event.getNumHatches();
hatchingType = event.getHatchType();
2011-01-11 09:44:39 +01:00
}
2011-01-11 09:25:49 +01:00
2011-01-11 09:44:39 +01:00
if (hatching) {
for (int k = 0; k < numHatching; k++) {
Entity entity = null;
switch (hatchingType) {
2011-01-11 09:44:39 +01:00
case CHICKEN:
2011-01-29 22:50:29 +01:00
entity = new EntityChicken(this.world);
2011-01-11 09:44:39 +01:00
break;
case COW:
2011-01-29 22:50:29 +01:00
entity = new EntityCow(this.world);
2011-01-11 09:44:39 +01:00
break;
case CREEPER:
2011-01-29 22:50:29 +01:00
entity = new EntityCreeper(this.world);
2011-01-11 09:44:39 +01:00
break;
case GHAST:
2011-01-29 22:50:29 +01:00
entity = new EntityGhast(this.world);
2011-01-11 09:44:39 +01:00
break;
2011-03-29 22:56:36 +02:00
case GIANT:
entity = new EntityGiantZombie(this.world);
break;
2011-01-11 09:44:39 +01:00
case PIG:
2011-01-29 22:50:29 +01:00
entity = new EntityPig(this.world);
2011-01-11 09:44:39 +01:00
break;
case PIG_ZOMBIE:
2011-01-29 22:50:29 +01:00
entity = new EntityPigZombie(this.world);
2011-01-11 09:44:39 +01:00
break;
case SHEEP:
2011-01-29 22:50:29 +01:00
entity = new EntitySheep(this.world);
2011-01-11 09:44:39 +01:00
break;
case SKELETON:
2011-01-29 22:50:29 +01:00
entity = new EntitySkeleton(this.world);
2011-01-11 09:44:39 +01:00
break;
case SPIDER:
2011-01-29 22:50:29 +01:00
entity = new EntitySpider(this.world);
2011-01-11 09:44:39 +01:00
break;
case ZOMBIE:
2011-01-29 22:50:29 +01:00
entity = new EntityZombie(this.world);
2011-01-11 09:44:39 +01:00
break;
case SQUID:
2011-01-29 22:50:29 +01:00
entity = new EntitySquid(this.world);
break;
case SLIME:
entity = new EntitySlime(this.world);
break;
case WOLF:
entity = new EntityWolf(this.world);
break;
case MONSTER:
entity = new EntityMonster(this.world);
break;
2011-01-11 09:44:39 +01:00
default:
2011-01-29 22:50:29 +01:00
entity = new EntityChicken(this.world);
2011-01-11 09:44:39 +01:00
break;
}
2011-01-29 22:50:29 +01:00
// The world we're spawning in accepts this creature
boolean isAnimal = entity instanceof EntityAnimal || entity instanceof EntityWaterAnimal;
if ((isAnimal && this.world.allowAnimals) || (!isAnimal && this.world.allowMonsters)) {
entity.setPositionRotation(this.locX, this.locY, this.locZ, this.yaw, 0.0F);
this.world.addEntity(entity);
}
2011-05-14 16:29:42 +02:00
// CraftBukkit end
2011-01-11 09:44:39 +01:00
}
2011-01-11 09:25:49 +01:00
}
2011-01-11 09:44:39 +01:00
2011-01-29 22:50:29 +01:00
for (int l = 0; l < 8; ++l) {
this.world.a("snowballpoof", this.locX, this.locY, this.locZ, 0.0D, 0.0D, 0.0D);
2011-01-11 09:25:49 +01:00
}
this.die();
2011-01-11 09:25:49 +01:00
}
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-11 09:25:49 +01:00
;
}
2011-01-29 22:50:29 +01:00
while (this.pitch - this.lastPitch >= 180.0F) {
this.lastPitch += 360.0F;
2011-01-11 09:25:49 +01:00
}
2011-01-29 22:50:29 +01:00
while (this.yaw - this.lastYaw < -180.0F) {
this.lastYaw -= 360.0F;
2011-01-11 09:25:49 +01:00
}
2011-01-29 22:50:29 +01:00
while (this.yaw - this.lastYaw >= 180.0F) {
this.lastYaw += 360.0F;
2011-01-11 09:25:49 +01:00
}
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;
2011-01-11 09:25:49 +01:00
float f2 = 0.99F;
2011-01-29 22:50:29 +01:00
float f3 = 0.03F;
2011-01-11 09:25:49 +01:00
2011-05-28 22:50:08 +02:00
if (this.ac()) {
2011-01-29 22:50:29 +01:00
for (int i1 = 0; i1 < 4; ++i1) {
float f4 = 0.25F;
2011-01-11 09:25:49 +01:00
2011-01-29 22:50:29 +01:00
this.world.a("bubble", this.locX - this.motX * (double) f4, this.locY - this.motY * (double) f4, this.locZ - this.motZ * (double) f4, this.motX, this.motY, this.motZ);
2011-01-11 09:25:49 +01:00
}
f2 = 0.8F;
}
2011-01-29 22:50:29 +01:00
this.motX *= (double) f2;
this.motY *= (double) f2;
this.motZ *= (double) f2;
this.motY -= (double) f3;
this.setPosition(this.locX, this.locY, this.locZ);
2011-01-11 09:25:49 +01:00
}
2011-04-20 22:47:26 +02:00
public void b(NBTTagCompound nbttagcompound) {
2011-01-29 22:50:29 +01:00
nbttagcompound.a("xTile", (short) this.b);
nbttagcompound.a("yTile", (short) this.c);
nbttagcompound.a("zTile", (short) this.d);
nbttagcompound.a("inTile", (byte) this.e);
nbttagcompound.a("shake", (byte) this.a);
nbttagcompound.a("inGround", (byte) (this.f ? 1 : 0));
2011-01-11 09:25:49 +01:00
}
2011-04-20 22:47:26 +02:00
public void a(NBTTagCompound nbttagcompound) {
2011-02-23 03:37:56 +01:00
this.b = nbttagcompound.d("xTile");
this.c = nbttagcompound.d("yTile");
this.d = nbttagcompound.d("zTile");
this.e = nbttagcompound.c("inTile") & 255;
this.a = nbttagcompound.c("shake") & 255;
this.f = nbttagcompound.c("inGround") == 1;
2011-01-11 09:25:49 +01:00
}
2011-01-29 22:50:29 +01:00
public void b(EntityHuman entityhuman) {
if (this.f && this.thrower == entityhuman && this.a <= 0 && entityhuman.inventory.canHold(new ItemStack(Item.ARROW, 1))) {
this.world.makeSound(this, "random.pop", 0.2F, ((this.random.nextFloat() - this.random.nextFloat()) * 0.7F + 1.0F) * 2.0F);
entityhuman.receive(this, 1);
this.die();
2011-01-11 09:25:49 +01:00
}
}
}