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

119 Zeilen
3.8 KiB
Java

2011-04-04 06:48:40 +02:00
package net.minecraft.server;
import java.util.Random;
// CraftBukkit start
import org.bukkit.event.entity.EntityInteractEvent;
import org.bukkit.craftbukkit.event.CraftEventFactory;
// CraftBukkit end
2011-04-04 06:48:40 +02:00
public class BlockSoil extends Block {
protected BlockSoil(int i) {
super(i, Material.EARTH);
2012-07-29 09:33:13 +02:00
this.b(true);
2011-04-04 06:48:40 +02:00
this.a(0.0F, 0.0F, 0.0F, 1.0F, 0.9375F, 1.0F);
2013-03-13 23:33:27 +01:00
this.k(255);
2011-04-04 06:48:40 +02:00
}
2013-03-13 23:33:27 +01:00
public AxisAlignedBB b(World world, int i, int j, int k) {
2012-07-29 09:33:13 +02:00
return AxisAlignedBB.a().a((double) (i + 0), (double) (j + 0), (double) (k + 0), (double) (i + 1), (double) (j + 1), (double) (k + 1));
2011-04-04 06:48:40 +02:00
}
public boolean c() {
2011-04-04 06:48:40 +02:00
return false;
}
public boolean b() {
2011-05-26 14:48:22 +02:00
return false;
}
2013-03-13 23:33:27 +01:00
public void a(World world, int i, int j, int k, Random random) {
2013-09-19 20:25:08 +02:00
if (!this.m(world, i, j, k) && !world.isRainingAt(i, j + 1, k)) {
2011-11-20 09:01:14 +01:00
int l = world.getData(i, j, k);
if (l > 0) {
2013-03-13 23:33:27 +01:00
world.setData(i, j, k, l - 1, 2);
} else if (!this.k(world, i, j, k)) {
// CraftBukkit start
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
if (CraftEventFactory.callBlockFadeEvent(block, Block.DIRT.id).isCancelled()) {
return;
}
// CraftBukkit end
2013-03-13 23:33:27 +01:00
world.setTypeIdUpdate(i, j, k, Block.DIRT.id);
2011-04-04 06:48:40 +02:00
}
2011-11-20 09:01:14 +01:00
} else {
2013-03-13 23:33:27 +01:00
world.setData(i, j, k, 7, 2);
2011-04-04 06:48:40 +02:00
}
}
2012-01-12 23:10:13 +01:00
public void a(World world, int i, int j, int k, Entity entity, float f) {
2012-07-29 09:33:13 +02:00
if (!world.isStatic && world.random.nextFloat() < f - 0.5F) {
2012-12-20 05:03:52 +01:00
if (!(entity instanceof EntityHuman) && !world.getGameRules().getBoolean("mobGriefing")) {
return;
}
2013-03-25 05:22:32 +01:00
// CraftBukkit start - Interact soil
org.bukkit.event.Cancellable cancellable;
if (entity instanceof EntityHuman) {
cancellable = CraftEventFactory.callPlayerInteractEvent((EntityHuman) entity, org.bukkit.event.block.Action.PHYSICAL, i, j, k, -1, null);
} else {
cancellable = new EntityInteractEvent(entity.getBukkitEntity(), world.getWorld().getBlockAt(i, j, k));
world.getServer().getPluginManager().callEvent((EntityInteractEvent) cancellable);
}
2011-05-14 16:29:42 +02:00
if (cancellable.isCancelled()) {
return;
2011-04-04 06:48:40 +02:00
}
2011-05-14 16:29:42 +02:00
// CraftBukkit end
2013-03-13 23:33:27 +01:00
world.setTypeIdUpdate(i, j, k, Block.DIRT.id);
2011-04-04 06:48:40 +02:00
}
}
2013-03-13 23:33:27 +01:00
private boolean k(World world, int i, int j, int k) {
2011-04-04 06:48:40 +02:00
byte b0 = 0;
for (int l = i - b0; l <= i + b0; ++l) {
for (int i1 = k - b0; i1 <= k + b0; ++i1) {
2011-09-15 02:23:52 +02:00
int j1 = world.getTypeId(l, j + 1, i1);
2012-11-06 13:05:28 +01:00
if (j1 == Block.CROPS.id || j1 == Block.MELON_STEM.id || j1 == Block.PUMPKIN_STEM.id || j1 == Block.POTATOES.id || j1 == Block.CARROTS.id) {
2011-04-04 06:48:40 +02:00
return true;
}
}
}
return false;
}
2013-03-13 23:33:27 +01:00
private boolean m(World world, int i, int j, int k) {
2011-04-04 06:48:40 +02:00
for (int l = i - 4; l <= i + 4; ++l) {
for (int i1 = j; i1 <= j + 1; ++i1) {
for (int j1 = k - 4; j1 <= k + 4; ++j1) {
if (world.getMaterial(l, i1, j1) == Material.WATER) {
return true;
}
}
}
}
return false;
}
public void doPhysics(World world, int i, int j, int k, int l) {
super.doPhysics(world, i, j, k, l);
2011-04-04 06:48:40 +02:00
Material material = world.getMaterial(i, j + 1, k);
if (material.isBuildable()) {
2013-03-13 23:33:27 +01:00
world.setTypeIdUpdate(i, j, k, Block.DIRT.id);
2011-04-04 06:48:40 +02:00
}
}
public int getDropType(int i, Random random, int j) {
return Block.DIRT.getDropType(0, random, j);
2011-04-04 06:48:40 +02:00
}
}