1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
package gtPlusPlus.xmod.bop.blocks.rainforest;
import java.util.Random;
import net.minecraft.block.Block;
import net.minecraft.init.Blocks;
import net.minecraft.world.World;
import net.minecraft.world.gen.feature.WorldGenBigTree;
import net.minecraft.world.gen.feature.WorldGenTrees;
import net.minecraft.world.gen.feature.WorldGenerator;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.xmod.bop.blocks.BOPBlockRegistrator;
import gtPlusPlus.xmod.bop.blocks.base.SaplingBase;
import gtPlusPlus.xmod.bop.world.features.trees.WorldGenRainForestTree_Ex;
public class SaplingRainforestTree extends SaplingBase {
public SaplingRainforestTree() {
super("Rainforest Oak Sapling", "rainforestoak", new String[] { "rainforest" });
}
@Override
public void func_149878_d(World world, int x, int y, int z, Random rand) {
Logger.WARNING("func_149878_d - 1");
if (!net.minecraftforge.event.terraingen.TerrainGen.saplingGrowTree(world, rand, x, y, z)) return;
int l = world.getBlockMetadata(x, y, z) & 7;
rand.nextInt(10);
new WorldGenBigTree(true);
new WorldGenTrees(true);
int i1 = 0;
int j1 = 0;
boolean flag = false;
Block block = Blocks.air;
if (flag) {
world.setBlock(x + i1, y, z + j1, block, 0, 4);
world.setBlock(x + i1 + 1, y, z + j1, block, 0, 4);
world.setBlock(x + i1, y, z + j1 + 1, block, 0, 4);
world.setBlock(x + i1 + 1, y, z + j1 + 1, block, 0, 4);
} else {
world.setBlock(x, y, z, block, 0, 4);
}
Object o = new WorldGenRainForestTree_Ex(
BOPBlockRegistrator.log_Rainforest,
BOPBlockRegistrator.leaves_Rainforest,
0,
0,
true,
50,
75);
if (!((WorldGenerator) o).generate(world, rand, x + i1, y, z + j1)) {
if (flag) {
world.setBlock(x + i1, y, z + j1, this, l, 4);
world.setBlock(x + i1 + 1, y, z + j1, this, l, 4);
world.setBlock(x + i1, y, z + j1 + 1, this, l, 4);
world.setBlock(x + i1 + 1, y, z + j1 + 1, this, l, 4);
} else {
world.setBlock(x, y, z, this, l, 4);
}
}
}
}
|