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

105 Zeilen
3.7 KiB
Java

package net.minecraft.server;
2011-01-29 22:50:29 +01:00
import java.util.Random;
// CraftBukkit start
import org.bukkit.craftbukkit.event.CraftEventFactory;
import org.bukkit.event.block.BlockIgniteEvent;
// CraftBukkit end
public class BlockStationary extends BlockFluids {
2011-01-29 22:50:29 +01:00
protected BlockStationary(int i, Material material) {
super(i, material);
2012-07-29 09:33:13 +02:00
this.b(false);
2011-01-29 22:50:29 +01:00
if (material == Material.LAVA) {
2012-07-29 09:33:13 +02:00
this.b(true);
}
}
2012-07-29 09:33:13 +02:00
public boolean c(IBlockAccess iblockaccess, int i, int j, int k) {
2012-03-01 11:49:23 +01:00
return this.material != Material.LAVA;
}
public void doPhysics(World world, int i, int j, int k, int l) {
super.doPhysics(world, i, j, k, l);
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j, k) == this.id) {
2012-07-29 09:33:13 +02:00
this.l(world, i, j, k);
}
}
2012-07-29 09:33:13 +02:00
private void l(World world, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
int l = world.getData(i, j, k);
world.suppressPhysics = true;
world.setRawTypeIdAndData(i, j, k, this.id - 1, l);
2012-07-29 09:33:13 +02:00
world.d(i, j, k, i, j, k);
world.a(i, j, k, this.id - 1, this.p_());
world.suppressPhysics = false;
}
2012-07-29 09:33:13 +02:00
public void b(World world, int i, int j, int k, Random random) {
2011-01-29 22:50:29 +01:00
if (this.material == Material.LAVA) {
int l = random.nextInt(3);
2012-03-01 11:49:23 +01:00
int i1;
int j1;
2012-07-29 09:33:13 +02:00
// CraftBukkit start - prevent lava putting something on fire
org.bukkit.World bworld = world.getWorld();
BlockIgniteEvent.IgniteCause igniteCause = BlockIgniteEvent.IgniteCause.LAVA;
2011-01-29 22:50:29 +01:00
// CraftBukkit end
2012-03-01 11:49:23 +01:00
for (i1 = 0; i1 < l; ++i1) {
2011-01-29 22:50:29 +01:00
i += random.nextInt(3) - 1;
++j;
2011-01-14 14:31:10 +01:00
k += random.nextInt(3) - 1;
2012-03-01 11:49:23 +01:00
j1 = world.getTypeId(i, j, k);
2011-01-29 22:50:29 +01:00
if (j1 == 0) {
2012-07-29 09:33:13 +02:00
if (this.n(world, i - 1, j, k) || this.n(world, i + 1, j, k) || this.n(world, i, j, k - 1) || this.n(world, i, j, k + 1) || this.n(world, i, j - 1, k) || this.n(world, i, j + 1, k)) {
// CraftBukkit start - prevent lava putting something on fire
org.bukkit.block.Block block = bworld.getBlockAt(i, j, k);
if (block.getTypeId() != Block.FIRE.id) {
if (CraftEventFactory.callEvent(new BlockIgniteEvent(block, igniteCause, null)).isCancelled()) {
continue;
}
}
// CraftBukkit end
2011-01-29 22:50:29 +01:00
world.setTypeId(i, j, k, Block.FIRE.id);
return;
}
2011-01-29 22:50:29 +01:00
} else if (Block.byId[j1].material.isSolid()) {
2011-01-14 14:31:10 +01:00
return;
}
}
2012-03-01 11:49:23 +01:00
if (l == 0) {
i1 = i;
j1 = k;
for (int k1 = 0; k1 < 3; ++k1) {
i = i1 + random.nextInt(3) - 1;
k = j1 + random.nextInt(3) - 1;
2012-07-29 09:33:13 +02:00
if (world.isEmpty(i, j + 1, k) && this.n(world, i, j, k)) {
// CraftBukkit start - prevent lava putting something on fire
org.bukkit.block.Block block = bworld.getBlockAt(i, j + 1, k);
if (block.getTypeId() != Block.FIRE.id) {
if (CraftEventFactory.callEvent(new BlockIgniteEvent(block, igniteCause, null)).isCancelled()) {
continue;
}
}
// CraftBukkit end
2012-03-01 11:49:23 +01:00
world.setTypeId(i, j + 1, k, Block.FIRE.id);
}
}
}
}
}
2012-07-29 09:33:13 +02:00
private boolean n(World world, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
return world.getMaterial(i, j, k).isBurnable();
}
}