2011-02-04 04:03:11 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2012-03-11 05:19:09 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
import org.bukkit.event.entity.ExplosionPrimeEvent;
|
|
|
|
// CraftBukkit end
|
2011-02-04 04:03:11 +01:00
|
|
|
|
|
|
|
public class EntityCreeper extends EntityMonster {
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
private int bp;
|
2012-10-25 05:53:23 +02:00
|
|
|
private int fuseTicks;
|
|
|
|
private int maxFuseTicks = 30;
|
|
|
|
private int explosionRadius = 3;
|
2012-03-11 05:19:09 +01:00
|
|
|
private int record = -1; // CraftBukkit
|
2011-02-04 04:03:11 +01:00
|
|
|
|
|
|
|
public EntityCreeper(World world) {
|
|
|
|
super(world);
|
2012-03-01 11:49:23 +01:00
|
|
|
this.goalSelector.a(1, new PathfinderGoalFloat(this));
|
|
|
|
this.goalSelector.a(2, new PathfinderGoalSwell(this));
|
2013-07-01 13:03:00 +02:00
|
|
|
this.goalSelector.a(3, new PathfinderGoalAvoidPlayer(this, EntityOcelot.class, 6.0F, 1.0D, 1.2D));
|
|
|
|
this.goalSelector.a(4, new PathfinderGoalMeleeAttack(this, 1.0D, false));
|
|
|
|
this.goalSelector.a(5, new PathfinderGoalRandomStroll(this, 0.8D));
|
2012-03-01 11:49:23 +01:00
|
|
|
this.goalSelector.a(6, new PathfinderGoalLookAtPlayer(this, EntityHuman.class, 8.0F));
|
|
|
|
this.goalSelector.a(6, new PathfinderGoalRandomLookaround(this));
|
2013-07-01 13:03:00 +02:00
|
|
|
this.targetSelector.a(1, new PathfinderGoalNearestAttackableTarget(this, EntityHuman.class, 0, true));
|
2012-03-01 11:49:23 +01:00
|
|
|
this.targetSelector.a(2, new PathfinderGoalHurtByTarget(this, false));
|
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
protected void aD() {
|
|
|
|
super.aD();
|
2013-07-09 01:43:37 +02:00
|
|
|
this.getAttributeInstance(GenericAttributes.d).setValue(0.25D);
|
2013-07-01 13:03:00 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
public boolean bk() {
|
2012-03-01 11:49:23 +01:00
|
|
|
return true;
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
public int ax() {
|
2013-07-01 13:03:00 +02:00
|
|
|
return this.getGoalTarget() == null ? 3 : 3 + (int) (this.getHealth() - 1.0F);
|
2012-10-25 05:53:23 +02:00
|
|
|
}
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
protected void b(float f) {
|
|
|
|
super.b(f);
|
2012-10-25 05:53:23 +02:00
|
|
|
this.fuseTicks = (int) ((float) this.fuseTicks + f * 1.5F);
|
|
|
|
if (this.fuseTicks > this.maxFuseTicks - 5) {
|
|
|
|
this.fuseTicks = this.maxFuseTicks - 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
protected void c() {
|
|
|
|
super.c();
|
2011-02-04 04:03:11 +01:00
|
|
|
this.datawatcher.a(16, Byte.valueOf((byte) -1));
|
2011-04-20 22:47:26 +02:00
|
|
|
this.datawatcher.a(17, Byte.valueOf((byte) 0));
|
2013-11-04 14:07:38 +01:00
|
|
|
this.datawatcher.a(18, Byte.valueOf((byte) 0));
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.datawatcher.getByte(17) == 1) {
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound.setBoolean("powered", true);
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
2012-10-25 05:53:23 +02:00
|
|
|
|
|
|
|
nbttagcompound.setShort("Fuse", (short) this.maxFuseTicks);
|
|
|
|
nbttagcompound.setByte("ExplosionRadius", (byte) this.explosionRadius);
|
2013-11-04 14:07:38 +01:00
|
|
|
nbttagcompound.setBoolean("ignited", this.ca());
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2011-11-30 00:17:43 +01:00
|
|
|
this.datawatcher.watch(17, Byte.valueOf((byte) (nbttagcompound.getBoolean("powered") ? 1 : 0)));
|
2013-11-04 14:07:38 +01:00
|
|
|
if (nbttagcompound.hasKeyOfType("Fuse", 99)) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.maxFuseTicks = nbttagcompound.getShort("Fuse");
|
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
if (nbttagcompound.hasKeyOfType("ExplosionRadius", 99)) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.explosionRadius = nbttagcompound.getByte("ExplosionRadius");
|
|
|
|
}
|
2013-11-04 14:07:38 +01:00
|
|
|
|
|
|
|
if (nbttagcompound.getBoolean("ignited")) {
|
|
|
|
this.cb();
|
|
|
|
}
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
public void h() {
|
2012-03-01 11:49:23 +01:00
|
|
|
if (this.isAlive()) {
|
2013-07-01 13:03:00 +02:00
|
|
|
this.bp = this.fuseTicks;
|
2013-11-04 14:07:38 +01:00
|
|
|
if (this.ca()) {
|
|
|
|
this.a(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int i = this.bZ();
|
2011-02-04 04:03:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (i > 0 && this.fuseTicks == 0) {
|
2013-11-04 14:07:38 +01:00
|
|
|
this.makeSound("creeper.primed", 1.0F, 0.5F);
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.fuseTicks += i;
|
|
|
|
if (this.fuseTicks < 0) {
|
|
|
|
this.fuseTicks = 0;
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.fuseTicks >= this.maxFuseTicks) {
|
|
|
|
this.fuseTicks = this.maxFuseTicks;
|
2013-11-04 14:07:38 +01:00
|
|
|
this.cc();
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
|
|
|
}
|
2012-03-01 11:49:23 +01:00
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
super.h();
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
protected String aT() {
|
2012-10-25 05:53:23 +02:00
|
|
|
return "mob.creeper.say";
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
protected String aU() {
|
2012-10-25 05:53:23 +02:00
|
|
|
return "mob.creeper.death";
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public void die(DamageSource damagesource) {
|
2013-03-25 05:22:32 +01:00
|
|
|
// CraftBukkit start - Rearranged the method (super call to end, drop to dropDeathLoot)
|
2011-09-15 18:36:27 +02:00
|
|
|
if (damagesource.getEntity() instanceof EntitySkeleton) {
|
2013-11-04 14:07:38 +01:00
|
|
|
int i = Item.b(Items.RECORD_1);
|
|
|
|
int j = Item.b(Items.RECORD_12);
|
|
|
|
int k = i + this.random.nextInt(j - i + 1);
|
2012-11-06 13:05:28 +01:00
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
// this.a(Item.d(k), 1); // CraftBukkit
|
|
|
|
this.record = k;
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-03-11 05:19:09 +01:00
|
|
|
super.die(damagesource);
|
|
|
|
// CraftBukkit end
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2013-03-25 05:22:32 +01:00
|
|
|
// CraftBukkit start - Whole method
|
2012-03-11 05:19:09 +01:00
|
|
|
protected void dropDeathLoot(boolean flag, int i) {
|
2013-11-04 14:07:38 +01:00
|
|
|
Item j = this.getLoot();
|
2012-03-11 05:19:09 +01:00
|
|
|
|
2012-07-22 08:18:00 +02:00
|
|
|
java.util.List<org.bukkit.inventory.ItemStack> loot = new java.util.ArrayList<org.bukkit.inventory.ItemStack>();
|
2012-03-11 05:19:09 +01:00
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
if (j != null) {
|
2012-03-11 05:19:09 +01:00
|
|
|
int k = this.random.nextInt(3);
|
|
|
|
|
|
|
|
if (i > 0) {
|
|
|
|
k += this.random.nextInt(i + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (k > 0) {
|
2013-11-04 14:07:38 +01:00
|
|
|
loot.add(new org.bukkit.inventory.ItemStack(org.bukkit.craftbukkit.util.CraftMagicNumbers.getMaterial(j), k));
|
2012-03-11 05:19:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Drop a music disc?
|
|
|
|
if (this.record != -1) {
|
2013-11-04 14:07:38 +01:00
|
|
|
loot.add(new org.bukkit.inventory.ItemStack(this.record, 1)); // TODO: Material
|
2012-03-11 05:19:09 +01:00
|
|
|
this.record = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
CraftEventFactory.callEntityDeathEvent(this, loot); // raise event even for those times when the entity does not drop loot
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
public boolean m(Entity entity) {
|
2012-03-01 11:49:23 +01:00
|
|
|
return true;
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
public boolean isPowered() {
|
2011-09-24 23:03:31 +02:00
|
|
|
return this.datawatcher.getByte(17) == 1;
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
protected Item getLoot() {
|
|
|
|
return Items.SULPHUR;
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
public int bZ() {
|
2011-09-24 23:03:31 +02:00
|
|
|
return this.datawatcher.getByte(16);
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void a(int i) {
|
2011-06-27 00:25:01 +02:00
|
|
|
this.datawatcher.watch(16, Byte.valueOf((byte) i));
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|
2011-04-20 22:47:26 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void a(EntityLightning entitylightning) {
|
|
|
|
super.a(entitylightning);
|
2011-04-26 01:47:25 +02:00
|
|
|
// CraftBukkit start
|
2012-07-29 09:33:13 +02:00
|
|
|
if (CraftEventFactory.callCreeperPowerEvent(this, entitylightning, org.bukkit.event.entity.CreeperPowerEvent.PowerCause.LIGHTNING).isCancelled()) {
|
2011-05-26 14:48:22 +02:00
|
|
|
return;
|
2011-04-26 01:47:25 +02:00
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
this.setPowered(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPowered(boolean powered) {
|
|
|
|
if (!powered) {
|
|
|
|
this.datawatcher.watch(17, Byte.valueOf((byte) 0));
|
2012-03-11 05:19:09 +01:00
|
|
|
} else {
|
|
|
|
this.datawatcher.watch(17, Byte.valueOf((byte) 1));
|
|
|
|
}
|
2011-06-27 00:25:01 +02:00
|
|
|
// CraftBukkit end
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
2013-11-04 14:07:38 +01:00
|
|
|
|
|
|
|
protected boolean a(EntityHuman entityhuman) {
|
|
|
|
ItemStack itemstack = entityhuman.inventory.getItemInHand();
|
|
|
|
|
|
|
|
if (itemstack != null && itemstack.getItem() == Items.FLINT_AND_STEEL) {
|
|
|
|
this.world.makeSound(this.locX + 0.5D, this.locY + 0.5D, this.locZ + 0.5D, "fire.ignite", 1.0F, this.random.nextFloat() * 0.4F + 0.8F);
|
|
|
|
entityhuman.ba();
|
|
|
|
if (!this.world.isStatic) {
|
|
|
|
this.cb();
|
|
|
|
itemstack.damage(1, entityhuman);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return super.a(entityhuman);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void cc() {
|
|
|
|
if (!this.world.isStatic) {
|
|
|
|
boolean flag = this.world.getGameRules().getBoolean("mobGriefing");
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
float radius = this.isPowered() ? 6.0F : 3.0F;
|
|
|
|
|
|
|
|
ExplosionPrimeEvent event = new ExplosionPrimeEvent(this.getBukkitEntity(), radius, false);
|
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
if (!event.isCancelled()) {
|
|
|
|
this.world.createExplosion(this, this.locX, this.locY, this.locZ, event.getRadius(), event.getFire(), flag);
|
|
|
|
this.die();
|
|
|
|
} else {
|
|
|
|
this.fuseTicks = 0;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean ca() {
|
|
|
|
return this.datawatcher.getByte(18) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cb() {
|
|
|
|
this.datawatcher.watch(18, Byte.valueOf((byte) 1));
|
|
|
|
}
|
2011-02-04 04:03:11 +01:00
|
|
|
}
|