All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minecraft.server.EntityEgg Maven / Gradle / Ivy

The newest version!
package net.minecraft.server;

// CraftBukkit start

import org.bukkit.entity.Ageable;
import org.bukkit.entity.Egg;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerEggThrowEvent;
import org.jetbrains.annotations.NotNull;
// CraftBukkit end

public class EntityEgg extends EntityProjectile {

  public EntityEgg(World world) {
    super(world);
  }

  public EntityEgg(World world, EntityLiving entityliving) {
    super(world, entityliving);
  }

  public EntityEgg(World world, double d0, double d1, double d2) {
    super(world, d0, d1, d2);
  }

  @NotNull
  @Override
  public Egg getEntity() {
    return (Egg) super.getEntity();
  }

  protected void a(MovingObjectPosition movingobjectposition) {
    if (movingobjectposition.entity != null) {
      movingobjectposition.entity.damageEntity(DamageSource.projectile(this, this.getShooter()), 0.0F);
    }

    // CraftBukkit start - Fire PlayerEggThrowEvent
    boolean hatching = !this.world.isClientSide && this.random.nextInt(8) == 0;
    int numHatching = (this.random.nextInt(32) == 0) ? 4 : 1;
    if (!hatching) {
      numHatching = 0;
    }

    EntityType hatchingType = EntityType.CHICKEN;

    Entity shooter = this.getShooter();
    if (shooter instanceof EntityPlayer) {
      Player player = (shooter == null) ? null : (Player) shooter.getBukkitEntity();

      PlayerEggThrowEvent event = new PlayerEggThrowEvent(player, (org.bukkit.entity.Egg) this.getBukkitEntity(), hatching, (byte) numHatching, hatchingType);
      this.world.getServer().getPluginManager().callEvent(event);

      hatching = event.isHatching();
      numHatching = event.getNumHatches();
      hatchingType = event.getHatchingType();
    }

    if (hatching) {
      for (int k = 0; k < numHatching; k++) {
        Entity entity = world.getWorld().createEntity(new org.bukkit.Location(world.getWorld(), this.locX, this.locY, this.locZ, this.yaw, 0.0F), hatchingType.getEntityClass());
        if (entity.getBukkitEntity() instanceof Ageable) {
          ((Ageable) entity.getBukkitEntity()).setBaby();
        }
        world.getWorld().addEntity(entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.EGG);
      }
    }
    // CraftBukkit end

    double d0 = 0.08D;

    for (int j = 0; j < 8; ++j) {
      this.world.addParticle(EnumParticle.ITEM_CRACK, this.locX, this.locY, this.locZ, ((double) this.random.nextFloat() - 0.5D) * 0.08D, ((double) this.random.nextFloat() - 0.5D) * 0.08D, ((double) this.random.nextFloat() - 0.5D) * 0.08D, Item.getId(Items.EGG));
    }

    if (!this.world.isClientSide) {
      this.die();
    }

  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy