2011-06-17 20:48:20 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-12-09 17:11:56 +01:00
|
|
|
import java.util.ArrayList;
|
2011-06-17 20:48:20 +02:00
|
|
|
import java.util.Random;
|
2011-12-09 17:11:56 +01:00
|
|
|
// Craftbukkit start
|
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.TreeType;
|
|
|
|
import org.bukkit.block.BlockState;
|
|
|
|
import org.bukkit.entity.Player;
|
2011-09-15 02:23:52 +02:00
|
|
|
import org.bukkit.event.block.BlockSpreadEvent;
|
2011-12-09 17:11:56 +01:00
|
|
|
import org.bukkit.event.world.StructureGrowEvent;
|
|
|
|
// Craftbukkit end
|
2011-06-17 20:48:20 +02:00
|
|
|
|
|
|
|
public class BlockMushroom extends BlockFlower {
|
|
|
|
|
|
|
|
protected BlockMushroom(int i, int j) {
|
|
|
|
super(i, j);
|
|
|
|
float f = 0.2F;
|
|
|
|
|
|
|
|
this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f * 2.0F, 0.5F + f);
|
|
|
|
this.a(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(World world, int i, int j, int k, Random random) {
|
2011-11-20 09:01:14 +01:00
|
|
|
if (random.nextInt(25) == 0) {
|
2011-09-15 02:23:52 +02:00
|
|
|
byte b0 = 4;
|
|
|
|
int l = 5;
|
2011-06-17 20:48:20 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
int i1;
|
|
|
|
int j1;
|
|
|
|
int k1;
|
2011-06-17 20:48:20 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
for (i1 = i - b0; i1 <= i + b0; ++i1) {
|
|
|
|
for (j1 = k - b0; j1 <= k + b0; ++j1) {
|
|
|
|
for (k1 = j - 1; k1 <= j + 1; ++k1) {
|
|
|
|
if (world.getTypeId(i1, k1, j1) == this.id) {
|
|
|
|
--l;
|
|
|
|
if (l <= 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-06-17 20:48:20 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
i1 = i + random.nextInt(3) - 1;
|
|
|
|
j1 = j + random.nextInt(2) - random.nextInt(2);
|
|
|
|
k1 = k + random.nextInt(3) - 1;
|
2011-06-17 20:48:20 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
for (int l1 = 0; l1 < 4; ++l1) {
|
|
|
|
if (world.isEmpty(i1, j1, k1) && this.f(world, i1, j1, k1)) {
|
|
|
|
i = i1;
|
|
|
|
j = j1;
|
|
|
|
k = k1;
|
2011-06-17 20:48:20 +02:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
|
|
|
i1 = i + random.nextInt(3) - 1;
|
|
|
|
j1 = j + random.nextInt(2) - random.nextInt(2);
|
|
|
|
k1 = k + random.nextInt(3) - 1;
|
2011-06-17 20:48:20 +02:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-09-16 21:10:11 +02:00
|
|
|
if (world.isEmpty(i1, j1, k1) && this.f(world, i1, j1, k1)) {
|
|
|
|
// CraftBukkit start
|
|
|
|
org.bukkit.World bworld = world.getWorld();
|
|
|
|
org.bukkit.block.BlockState blockState = bworld.getBlockAt(i1, j1, k1).getState();
|
|
|
|
blockState.setTypeId(this.id);
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-09-16 21:10:11 +02:00
|
|
|
BlockSpreadEvent event = new BlockSpreadEvent(blockState.getBlock(), bworld.getBlockAt(i, j, k), blockState);
|
|
|
|
world.getServer().getPluginManager().callEvent(event);
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-09-16 21:10:11 +02:00
|
|
|
if (!event.isCancelled()) {
|
|
|
|
blockState.update(true);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-06-17 20:48:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
protected boolean d(int i) {
|
2011-06-17 20:48:20 +02:00
|
|
|
return Block.o[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean f(World world, int i, int j, int k) {
|
2011-11-20 09:01:14 +01:00
|
|
|
if (j >= 0 && j < world.height) {
|
|
|
|
int l = world.getTypeId(i, j - 1, k);
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
return l == Block.MYCEL.id || world.k(i, j, k) < 13 && this.d(l);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-12-09 17:11:56 +01:00
|
|
|
// CraftBukkit - added bonemeal, player and itemstack
|
|
|
|
public boolean b(World world, int i, int j, int k, Random random, boolean bonemeal, Player player, ItemStack itemstack) {
|
2011-11-20 09:01:14 +01:00
|
|
|
int l = world.getData(i, j, k);
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
world.setRawTypeId(i, j, k, 0);
|
2011-12-09 17:11:56 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
boolean grown = false;
|
|
|
|
StructureGrowEvent event = null;
|
|
|
|
Location location = new Location(world.getWorld(), i, j, k);
|
2011-11-20 09:01:14 +01:00
|
|
|
WorldGenHugeMushroom worldgenhugemushroom = null;
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.id == Block.BROWN_MUSHROOM.id) {
|
2011-12-09 17:11:56 +01:00
|
|
|
event = new StructureGrowEvent(location, TreeType.BROWN_MUSHROOM, bonemeal, player, new ArrayList<BlockState>());
|
2011-11-20 09:01:14 +01:00
|
|
|
worldgenhugemushroom = new WorldGenHugeMushroom(0);
|
|
|
|
} else if (this.id == Block.RED_MUSHROOM.id) {
|
2011-12-09 17:11:56 +01:00
|
|
|
event = new StructureGrowEvent(location, TreeType.RED_MUSHROOM, bonemeal, player, new ArrayList<BlockState>());
|
2011-11-20 09:01:14 +01:00
|
|
|
worldgenhugemushroom = new WorldGenHugeMushroom(1);
|
|
|
|
}
|
2011-12-09 17:11:56 +01:00
|
|
|
if (worldgenhugemushroom != null && event != null){
|
|
|
|
grown = worldgenhugemushroom.grow(world, random, i, j, k, event, itemstack, world.getWorld());
|
|
|
|
}
|
|
|
|
if (!grown || event.isCancelled()){
|
2011-11-20 09:01:14 +01:00
|
|
|
world.setRawTypeIdAndData(i, j, k, this.id, l);
|
|
|
|
return false;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-12-09 17:11:56 +01:00
|
|
|
return true;
|
|
|
|
// CraftBukkit end
|
2011-06-17 20:48:20 +02:00
|
|
|
}
|
|
|
|
}
|