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

117 Zeilen
3.4 KiB
Java

2011-01-03 10:41:43 +01:00
package net.minecraft.server;
// CraftBukkit start
import org.bukkit.entity.LivingEntity;
2011-01-03 10:41:43 +01:00
import org.bukkit.craftbukkit.CraftBlock;
import org.bukkit.craftbukkit.CraftEntity;
import org.bukkit.craftbukkit.CraftLivingEntity;
2011-01-03 12:24:25 +01:00
import org.bukkit.craftbukkit.CraftPlayer;
import org.bukkit.event.entity.EntityDamageByBlockEvent;
import org.bukkit.event.entity.EntityDamageEvent;
// CraftBukkit end
2011-01-03 10:41:43 +01:00
import java.util.Random;
public class BlockCactus extends Block {
protected BlockCactus(int i, int j) {
super(i, j, Material.u);
a(true);
}
public void a(World world, int i, int j, int k, Random random) {
if (world.e(i, j + 1, k)) {
int l;
2011-01-14 14:31:10 +01:00
for (l = 1; world.a(i, j - l, k) == bi; l++) {
2011-01-03 10:41:43 +01:00
;
}
if (l < 3) {
int i1 = world.b(i, j, k);
if (i1 == 15) {
2011-01-14 14:31:10 +01:00
world.e(i, j + 1, k, bi);
world.c(i, j, k, 0);
2011-01-03 10:41:43 +01:00
} else {
2011-01-14 14:31:10 +01:00
world.c(i, j, k, i1 + 1);
2011-01-03 10:41:43 +01:00
}
}
}
}
public AxisAlignedBB d(World world, int i, int j, int k) {
float f1 = 0.0625F;
return AxisAlignedBB.b((float) i + f1, j, (float) k + f1, (float) (i + 1) - f1, (float) (j + 1) - f1, (float) (k + 1) - f1);
}
public int a(int i) {
if (i == 1) {
2011-01-14 14:31:10 +01:00
return bh - 1;
2011-01-03 10:41:43 +01:00
}
if (i == 0) {
2011-01-14 14:31:10 +01:00
return bh + 1;
2011-01-03 10:41:43 +01:00
} else {
2011-01-14 14:31:10 +01:00
return bh;
2011-01-03 10:41:43 +01:00
}
}
public boolean a() {
return false;
}
public boolean a(World world, int i, int j, int k) {
if (!super.a(world, i, j, k)) {
return false;
} else {
return f(world, i, j, k);
}
}
public void b(World world, int i, int j, int k, int l) {
if (!f(world, i, j, k)) {
a_(world, i, j, k, world.b(i, j, k));
2011-01-14 14:31:10 +01:00
world.e(i, j, k, 0);
2011-01-03 10:41:43 +01:00
}
}
public boolean f(World world, int i, int j, int k) {
if (world.c(i - 1, j, k).a()) {
return false;
}
if (world.c(i + 1, j, k).a()) {
return false;
}
if (world.c(i, j, k - 1).a()) {
return false;
}
if (world.c(i, j, k + 1).a()) {
return false;
} else {
int l = world.a(i, j - 1, k);
2011-01-14 14:31:10 +01:00
return l == Block.aV.bi || l == Block.E.bi;
2011-01-03 10:41:43 +01:00
}
}
public void a(World world, int i, int j, int k, Entity entity) {
// CraftBukkit start - ENTITY_DAMAGEBY_BLOCK event
2011-01-03 10:41:43 +01:00
CraftEntity toPassIn = null;
if (entity instanceof EntityPlayerMP) {
toPassIn = new CraftPlayer(((WorldServer) world).getServer(), (EntityPlayerMP) entity);
} else if (entity instanceof EntityLiving) {
toPassIn = new CraftLivingEntity(((WorldServer) world).getServer(), (EntityLiving) entity);
2011-01-03 10:41:43 +01:00
}
if(toPassIn != null) {
EntityDamageByBlockEvent edbbe = new EntityDamageByBlockEvent(((WorldServer) world).getWorld().getBlockAt(i, j, k), toPassIn, EntityDamageEvent.DamageCause.CONTACT, 1);
((WorldServer) world).getServer().getPluginManager().callEvent(edbbe);
if (edbbe.isCancelled())
return;
2011-01-03 10:41:43 +01:00
}
// CraftBukkit end TODO: Other entities (when their respective classes are added) hitting a Cactus
entity.a(((Entity) (null)), 1);
2011-01-03 10:41:43 +01:00
}
}