2011-05-16 05:52:11 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.Random;
|
2011-12-09 17:11:56 +01:00
|
|
|
// CraftBukkit start
|
2012-03-16 07:32:25 +01:00
|
|
|
import org.bukkit.BlockChangeDelegate;
|
2011-12-23 00:54:34 +01:00
|
|
|
import org.bukkit.Bukkit;
|
2011-12-09 17:11:56 +01:00
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.TreeType;
|
|
|
|
import org.bukkit.block.BlockState;
|
2011-12-23 00:54:34 +01:00
|
|
|
import org.bukkit.craftbukkit.util.StructureGrowDelegate;
|
2011-12-09 17:11:56 +01:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.world.StructureGrowEvent;
|
2012-01-12 12:02:39 +01:00
|
|
|
// CraftBukkit end
|
2011-05-16 05:52:11 +02:00
|
|
|
|
|
|
|
public class BlockSapling extends BlockFlower {
|
|
|
|
|
|
|
|
protected BlockSapling(int i, int j) {
|
|
|
|
super(i, j);
|
|
|
|
float f = 0.4F;
|
|
|
|
|
|
|
|
this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f * 2.0F, 0.5F + f);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(World world, int i, int j, int k, Random random) {
|
2011-05-26 14:48:22 +02:00
|
|
|
if (!world.isStatic) {
|
|
|
|
super.a(world, i, j, k, random);
|
2011-11-20 09:01:14 +01:00
|
|
|
if (world.getLightLevel(i, j + 1, k) >= 9 && random.nextInt(7) == 0) {
|
2011-05-26 14:48:22 +02:00
|
|
|
int l = world.getData(i, j, k);
|
|
|
|
|
|
|
|
if ((l & 8) == 0) {
|
|
|
|
world.setData(i, j, k, l | 8);
|
|
|
|
} else {
|
2012-01-14 21:03:48 +01:00
|
|
|
this.grow(world, i, j, k, random, false, null, null); // CraftBukkit - added bonemeal, player and itemstack
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
2011-05-16 05:52:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int a(int i, int j) {
|
|
|
|
j &= 3;
|
2012-03-01 11:49:23 +01:00
|
|
|
return j == 1 ? 63 : (j == 2 ? 79 : (j == 3 ? 30 : super.a(i, j)));
|
2011-05-16 05:52:11 +02:00
|
|
|
}
|
|
|
|
|
2011-12-09 17:11:56 +01:00
|
|
|
// CraftBukkit - added bonemeal, player and itemstack
|
2012-01-14 21:03:48 +01:00
|
|
|
public void grow(World world, int i, int j, int k, Random random, boolean bonemeal, Player player, ItemStack itemstack) {
|
2011-05-16 05:52:11 +02:00
|
|
|
int l = world.getData(i, j, k) & 3;
|
2012-03-02 10:50:18 +01:00
|
|
|
int i1 = 0;
|
|
|
|
int j1 = 0;
|
2012-03-16 07:32:25 +01:00
|
|
|
// CraftBukkit start - records tree generation and calls StructureGrowEvent
|
|
|
|
StructureGrowDelegate delegate = new StructureGrowDelegate(world);
|
|
|
|
TreeType treeType = null;
|
|
|
|
TreeGenerator gen = null;
|
2012-03-02 10:50:18 +01:00
|
|
|
boolean grownTree = false;
|
2012-03-16 07:32:25 +01:00
|
|
|
boolean flag = false;
|
|
|
|
|
2011-05-16 05:52:11 +02:00
|
|
|
if (l == 1) {
|
2011-12-23 00:54:34 +01:00
|
|
|
treeType = TreeType.REDWOOD;
|
2012-03-16 07:32:25 +01:00
|
|
|
gen = new WorldGenTaiga2(false);
|
2011-05-16 05:52:11 +02:00
|
|
|
} else if (l == 2) {
|
2011-12-23 00:54:34 +01:00
|
|
|
treeType = TreeType.BIRCH;
|
2012-03-16 07:32:25 +01:00
|
|
|
gen = new WorldGenForest(false);
|
2012-03-02 10:50:18 +01:00
|
|
|
} else if (l == 3) {
|
|
|
|
for (i1 = 0; i1 >= -1; --i1) {
|
|
|
|
for (j1 = 0; j1 >= -1; --j1) {
|
|
|
|
if (world.getTypeId(i + i1, j, k + j1) == this.id && world.getTypeId(i + i1 + 1, j, k + j1) == this.id && world.getTypeId(i + i1, j, k + j1 + 1) == this.id && world.getTypeId(i + i1 + 1, j, k + j1 + 1) == this.id) {
|
2012-03-16 07:32:25 +01:00
|
|
|
treeType = TreeType.JUNGLE;
|
|
|
|
gen = new WorldGenMegaTree(false, 10 + random.nextInt(20), 3, 3);
|
|
|
|
flag = true;
|
2012-03-02 10:50:18 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-03-16 07:32:25 +01:00
|
|
|
|
|
|
|
if (gen != null) {
|
|
|
|
break;
|
|
|
|
}
|
2012-03-02 10:50:18 +01:00
|
|
|
}
|
2012-03-16 07:32:25 +01:00
|
|
|
|
|
|
|
if (gen == null) {
|
2012-03-02 10:50:18 +01:00
|
|
|
j1 = 0;
|
|
|
|
i1 = 0;
|
2012-03-16 07:32:25 +01:00
|
|
|
treeType = TreeType.TREE;
|
|
|
|
gen = new WorldGenTrees(false, 4 + random.nextInt(7), 3, 3, false);
|
2012-03-02 10:50:18 +01:00
|
|
|
}
|
2011-05-16 05:52:11 +02:00
|
|
|
} else {
|
2012-03-16 07:32:25 +01:00
|
|
|
treeType = TreeType.TREE;
|
|
|
|
gen = new WorldGenTrees(false);
|
2011-05-16 05:52:11 +02:00
|
|
|
if (random.nextInt(10) == 0) {
|
2011-12-23 00:54:34 +01:00
|
|
|
treeType = TreeType.BIG_TREE;
|
2012-03-16 07:32:25 +01:00
|
|
|
gen = new WorldGenBigTree(false);
|
2011-05-16 05:52:11 +02:00
|
|
|
}
|
|
|
|
}
|
2011-12-23 00:54:34 +01:00
|
|
|
|
2012-03-16 07:32:25 +01:00
|
|
|
if (flag) {
|
|
|
|
world.setRawTypeId(i + i1, j, k + j1, 0);
|
|
|
|
world.setRawTypeId(i + i1 + 1, j, k + j1, 0);
|
|
|
|
world.setRawTypeId(i + i1, j, k + j1 + 1, 0);
|
|
|
|
world.setRawTypeId(i + i1 + 1, j, k + j1 + 1, 0);
|
|
|
|
} else {
|
|
|
|
world.setRawTypeId(i, j, k, 0);
|
|
|
|
}
|
|
|
|
grownTree = gen.generate(delegate, random, i + i1, j, k + j1);
|
2011-12-23 00:54:34 +01:00
|
|
|
if (grownTree) {
|
|
|
|
Location location = new Location(world.getWorld(), i, j, k);
|
|
|
|
StructureGrowEvent event = new StructureGrowEvent(location, treeType, bonemeal, player, delegate.getBlocks());
|
|
|
|
Bukkit.getPluginManager().callEvent(event);
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
grownTree = false;
|
|
|
|
} else {
|
|
|
|
for (BlockState state : event.getBlocks()) {
|
|
|
|
state.update(true);
|
|
|
|
}
|
|
|
|
if (event.isFromBonemeal() && itemstack != null) {
|
|
|
|
--itemstack.count;
|
|
|
|
}
|
|
|
|
}
|
2011-12-19 17:41:55 +01:00
|
|
|
}
|
2011-12-23 00:54:34 +01:00
|
|
|
if (!grownTree) {
|
2012-03-16 07:32:25 +01:00
|
|
|
if (flag) {
|
2012-03-02 10:50:18 +01:00
|
|
|
world.setRawTypeIdAndData(i + i1, j, k + j1, this.id, l);
|
|
|
|
world.setRawTypeIdAndData(i + i1 + 1, j, k + j1, this.id, l);
|
|
|
|
world.setRawTypeIdAndData(i + i1, j, k + j1 + 1, this.id, l);
|
|
|
|
world.setRawTypeIdAndData(i + i1 + 1, j, k + j1 + 1, this.id, l);
|
|
|
|
} else {
|
|
|
|
world.setRawTypeIdAndData(i, j, k, this.id, l);
|
|
|
|
}
|
2011-05-16 05:52:11 +02:00
|
|
|
}
|
2012-03-16 07:32:25 +01:00
|
|
|
// CraftBukkit end
|
2011-05-16 05:52:11 +02:00
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
protected int getDropData(int i) {
|
2011-05-16 05:52:11 +02:00
|
|
|
return i & 3;
|
|
|
|
}
|
2012-03-16 07:32:25 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
interface TreeGenerator {
|
|
|
|
|
|
|
|
public boolean a(World world, Random random, int i, int j, int k);
|
|
|
|
|
|
|
|
public boolean generate(BlockChangeDelegate world, Random random, int i, int j, int k);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-05-16 05:52:11 +02:00
|
|
|
}
|