2011-10-01 01:50:19 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2012-07-22 08:18:00 +02:00
|
|
|
import org.bukkit.event.entity.SlimeSplitEvent; // CraftBukkit
|
|
|
|
|
2011-10-01 01:50:19 +02:00
|
|
|
public class EntitySlime extends EntityLiving implements IMonster {
|
|
|
|
|
|
|
|
public float a;
|
|
|
|
public float b;
|
2011-11-20 09:01:14 +01:00
|
|
|
public float c;
|
2011-11-30 00:17:43 +01:00
|
|
|
private int jumpDelay = 0;
|
2011-10-01 01:50:19 +02:00
|
|
|
|
|
|
|
public EntitySlime(World world) {
|
|
|
|
super(world);
|
|
|
|
this.texture = "/mob/slime.png";
|
|
|
|
int i = 1 << this.random.nextInt(3);
|
|
|
|
|
|
|
|
this.height = 0.0F;
|
2011-11-30 00:17:43 +01:00
|
|
|
this.jumpDelay = this.random.nextInt(20) + 10;
|
2011-10-01 01:50:19 +02:00
|
|
|
this.setSize(i);
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void a() {
|
|
|
|
super.a();
|
2011-10-01 01:50:19 +02:00
|
|
|
this.datawatcher.a(16, new Byte((byte) 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSize(int i) {
|
|
|
|
this.datawatcher.watch(16, new Byte((byte) i));
|
2012-07-29 09:33:13 +02:00
|
|
|
this.a(0.6F * (float) i, 0.6F * (float) i);
|
2011-10-01 01:50:19 +02:00
|
|
|
this.setPosition(this.locX, this.locY, this.locZ);
|
2011-11-20 09:01:14 +01:00
|
|
|
this.setHealth(this.getMaxHealth());
|
2012-07-29 09:33:13 +02:00
|
|
|
this.aV = i;
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxHealth() {
|
|
|
|
int i = this.getSize();
|
|
|
|
|
|
|
|
return i * i;
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getSize() {
|
|
|
|
return this.datawatcher.getByte(16);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound.setInt("Size", this.getSize() - 1);
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2011-11-30 00:17:43 +01:00
|
|
|
this.setSize(nbttagcompound.getInt("Size") + 1);
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected String i() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return "slime";
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected String o() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return "mob.slime";
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void h_() {
|
2011-11-20 09:01:14 +01:00
|
|
|
if (!this.world.isStatic && this.world.difficulty == 0 && this.getSize() > 0) {
|
|
|
|
this.dead = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.b += (this.a - this.b) * 0.5F;
|
|
|
|
this.c = this.b;
|
2011-10-01 01:50:19 +02:00
|
|
|
boolean flag = this.onGround;
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
super.h_();
|
2011-10-01 01:50:19 +02:00
|
|
|
if (this.onGround && !flag) {
|
|
|
|
int i = this.getSize();
|
|
|
|
|
|
|
|
for (int j = 0; j < i * 8; ++j) {
|
|
|
|
float f = this.random.nextFloat() * 3.1415927F * 2.0F;
|
|
|
|
float f1 = this.random.nextFloat() * 0.5F + 0.5F;
|
|
|
|
float f2 = MathHelper.sin(f) * (float) i * 0.5F * f1;
|
|
|
|
float f3 = MathHelper.cos(f) * (float) i * 0.5F * f1;
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.world.a(this.i(), this.locX + (double) f2, this.boundingBox.b, this.locZ + (double) f3, 0.0D, 0.0D, 0.0D);
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.p()) {
|
|
|
|
this.world.makeSound(this, this.o(), this.aP(), ((this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F) / 0.8F);
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.a = -0.5F;
|
2012-07-29 09:33:13 +02:00
|
|
|
} else if (!this.onGround && flag) {
|
|
|
|
this.a = 1.0F;
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.l();
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void be() {
|
|
|
|
this.bb();
|
2012-03-09 22:40:59 +01:00
|
|
|
EntityHuman entityhuman = this.world.findNearbyVulnerablePlayer(this, 16.0D); // CraftBukkit TODO: EntityTargetEvent
|
2011-10-01 01:50:19 +02:00
|
|
|
|
|
|
|
if (entityhuman != null) {
|
|
|
|
this.a(entityhuman, 10.0F, 20.0F);
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
if (this.onGround && this.jumpDelay-- <= 0) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.jumpDelay = this.k();
|
2011-10-01 01:50:19 +02:00
|
|
|
if (entityhuman != null) {
|
2011-11-30 00:17:43 +01:00
|
|
|
this.jumpDelay /= 3;
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bu = true;
|
|
|
|
if (this.r()) {
|
|
|
|
this.world.makeSound(this, this.o(), this.aP(), ((this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F) * 0.8F);
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.br = 1.0F - this.random.nextFloat() * 2.0F;
|
|
|
|
this.bs = (float) (1 * this.getSize());
|
2011-10-01 01:50:19 +02:00
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bu = false;
|
2011-10-01 01:50:19 +02:00
|
|
|
if (this.onGround) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.br = this.bs = 0.0F;
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void l() {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.a *= 0.6F;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected int k() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return this.random.nextInt(20) + 10;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected EntitySlime j() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return new EntitySlime(this.world);
|
|
|
|
}
|
|
|
|
|
2011-10-01 01:50:19 +02:00
|
|
|
public void die() {
|
|
|
|
int i = this.getSize();
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (!this.world.isStatic && i > 1 && this.getHealth() <= 0) {
|
|
|
|
int j = 2 + this.random.nextInt(3);
|
|
|
|
|
2011-10-01 01:50:19 +02:00
|
|
|
// CraftBukkit start
|
2012-07-22 08:18:00 +02:00
|
|
|
SlimeSplitEvent event = new SlimeSplitEvent((org.bukkit.entity.Slime) this.getBukkitEntity(), j);
|
2011-10-01 01:50:19 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (!event.isCancelled() && event.getCount() > 0) {
|
2011-11-20 09:01:14 +01:00
|
|
|
j = event.getCount();
|
|
|
|
} else {
|
|
|
|
super.die();
|
|
|
|
return;
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
for (int k = 0; k < j; ++k) {
|
|
|
|
float f = ((float) (k % 2) - 0.5F) * (float) i / 4.0F;
|
|
|
|
float f1 = ((float) (k / 2) - 0.5F) * (float) i / 4.0F;
|
2012-07-29 09:33:13 +02:00
|
|
|
EntitySlime entityslime = this.j();
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
entityslime.setSize(i / 2);
|
|
|
|
entityslime.setPositionRotation(this.locX + (double) f, this.locY + 0.5D, this.locZ + (double) f1, this.random.nextFloat() * 360.0F, 0.0F);
|
2012-04-14 08:38:22 +02:00
|
|
|
this.world.addEntity(entityslime, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SLIME_SPLIT); // CraftBukkit - SpawnReason
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
super.die();
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void b_(EntityHuman entityhuman) {
|
|
|
|
if (this.m()) {
|
2011-11-20 09:01:14 +01:00
|
|
|
int i = this.getSize();
|
2011-10-01 01:50:19 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.l(entityhuman) && this.e(entityhuman) < 0.6D * (double) i * 0.6D * (double) i && entityhuman.damageEntity(DamageSource.mobAttack(this), this.n())) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.world.makeSound(this, "mob.slimeattack", 1.0F, (this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F);
|
|
|
|
}
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected boolean m() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return this.getSize() > 1;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected int n() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return this.getSize();
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected String aR() {
|
2011-10-01 01:50:19 +02:00
|
|
|
return "mob.slime";
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected String aS() {
|
2011-10-01 01:50:19 +02:00
|
|
|
return "mob.slime";
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
protected int getLootId() {
|
2011-10-01 01:50:19 +02:00
|
|
|
return this.getSize() == 1 ? Item.SLIME_BALL.id : 0;
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
public boolean canSpawn() {
|
2011-10-01 01:50:19 +02:00
|
|
|
Chunk chunk = this.world.getChunkAtWorldCoords(MathHelper.floor(this.locX), MathHelper.floor(this.locZ));
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
return this.world.getWorldData().getType() == WorldType.FLAT && this.random.nextInt(4) != 1 ? false : ((this.getSize() == 1 || this.world.difficulty > 0) && this.random.nextInt(10) == 0 && chunk.a(987234911L).nextInt(10) == 0 && this.locY < 40.0D ? super.canSpawn() : false);
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected float aP() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return 0.4F * (float) this.getSize();
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public int bf() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected boolean r() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return this.getSize() > 1;
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected boolean p() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return this.getSize() > 2;
|
2011-10-01 01:50:19 +02:00
|
|
|
}
|
|
|
|
}
|