Paper/src/main/java/net/minecraft/server/EntityMonster.java

131 Zeilen
4.3 KiB
Java

2011-01-29 22:50:29 +01:00
package net.minecraft.server;
// CraftBukkit start
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.entity.CraftEntity;
import org.bukkit.event.entity.EntityDamageByEntityEvent;
import org.bukkit.event.entity.EntityDamageEvent;
import org.bukkit.event.entity.EntityDamageEvent.DamageCause;
import org.bukkit.event.entity.EntityTargetEvent;
import org.bukkit.event.entity.EntityTargetEvent.TargetReason;
// CraftBukkit end
public class EntityMonster extends EntityCreature implements IMonster {
protected int c = 2;
public EntityMonster(World world) {
super(world);
this.health = 20;
}
2011-03-31 22:40:00 +02:00
public void r() {
2011-02-23 03:37:56 +01:00
float f = this.c(1.0F);
2011-01-29 22:50:29 +01:00
if (f > 0.5F) {
2011-02-23 03:37:56 +01:00
this.at += 2;
2011-01-29 22:50:29 +01:00
}
2011-03-31 22:40:00 +02:00
super.r();
2011-01-29 22:50:29 +01:00
}
2011-02-23 03:37:56 +01:00
public void f_() {
super.f_();
if (this.world.j == 0) {
2011-03-31 22:40:00 +02:00
this.D();
2011-01-29 22:50:29 +01:00
}
}
2011-03-31 22:40:00 +02:00
protected Entity m() {
2011-01-29 22:50:29 +01:00
EntityHuman entityhuman = this.world.a(this, 16.0D);
2011-02-23 03:37:56 +01:00
return entityhuman != null && this.e(entityhuman) ? entityhuman : null;
2011-01-29 22:50:29 +01:00
}
public boolean a(Entity entity, int i) {
if (super.a(entity, i)) {
if (this.passenger != entity && this.vehicle != entity) {
if (entity != this) {
// CraftBukkit start
2011-02-23 13:56:36 +01:00
CraftServer server = ((WorldServer) this.world).getServer();
2011-01-29 22:50:29 +01:00
org.bukkit.entity.Entity bukkitTarget = null;
if (entity != null) {
bukkitTarget = entity.getBukkitEntity();
}
2011-02-23 13:56:36 +01:00
2011-01-29 22:50:29 +01:00
EntityTargetEvent event = new EntityTargetEvent(this.getBukkitEntity(), bukkitTarget, TargetReason.TARGET_ATTACKED_ENTITY);
server.getPluginManager().callEvent(event);
2011-02-23 13:56:36 +01:00
2011-01-29 22:50:29 +01:00
if (!event.isCancelled()) {
if (event.getTarget() == null) {
2011-02-23 03:37:56 +01:00
this.d = null;
2011-01-29 22:50:29 +01:00
} else {
2011-02-23 03:37:56 +01:00
this.d = ((CraftEntity) event.getTarget()).getHandle();
2011-01-29 22:50:29 +01:00
}
}
// CraftBukkit end
}
return true;
} else {
return true;
}
} else {
return false;
}
}
protected void a(Entity entity, float f) {
2011-03-31 22:40:00 +02:00
if (this.attackTicks <= 0 && f < 2.0F && entity.boundingBox.e > this.boundingBox.b && entity.boundingBox.b < this.boundingBox.e) {
2011-01-29 22:50:29 +01:00
this.attackTicks = 20;
// CraftBukkit start - this is still duplicated here and EntityHuman because it's possible for an EntityMonster
// to damage another EntityMonster, and we want to catch those events.
// This does not fire events for slime attacks, as they're not an EntityMonster.
if (entity instanceof EntityLiving && !(entity instanceof EntityHuman)) {
2011-01-29 22:50:29 +01:00
CraftServer server = ((WorldServer) this.world).getServer();
org.bukkit.entity.Entity damager = this.getBukkitEntity();
org.bukkit.entity.Entity damagee = (entity == null) ? null : entity.getBukkitEntity();
DamageCause damageType = EntityDamageEvent.DamageCause.ENTITY_ATTACK;
2011-02-23 13:56:36 +01:00
EntityDamageByEntityEvent event = new EntityDamageByEntityEvent(damager, damagee, damageType, this.c);
2011-01-29 22:50:29 +01:00
server.getPluginManager().callEvent(event);
2011-03-31 22:40:00 +02:00
if (!event.isCancelled() && event.getDamage() != 0) {
2011-01-29 22:50:29 +01:00
entity.a(this, event.getDamage());
}
2011-02-23 13:56:36 +01:00
return;
2011-01-29 22:50:29 +01:00
}
// CraftBukkit end
2011-02-23 13:56:36 +01:00
entity.a(this, this.c);
2011-01-29 22:50:29 +01:00
}
}
protected float a(int i, int j, int k) {
return 0.5F - this.world.l(i, j, k);
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
}
public boolean b() {
int i = MathHelper.b(this.locX);
int j = MathHelper.b(this.boundingBox.b);
int k = MathHelper.b(this.locZ);
if (this.world.a(EnumSkyBlock.SKY, i, j, k) > this.random.nextInt(32)) {
return false;
} else {
int l = this.world.j(i, j, k);
return l <= this.random.nextInt(8) && super.b();
}
}
}