Search in sources :

Example 6 with DecoHelper5050

use of rtg.api.world.deco.helper.DecoHelper5050 in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeBOPRedwoodForest method initDecos.

@Override
public void initDecos() {
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoSingleBiomeDecorations();
    this.addDeco(decoBaseBiomeDecorations);
    DecoBoulder decoBoulder1 = new DecoBoulder();
    decoBoulder1.setBoulderBlock(Blocks.COBBLESTONE.getDefaultState());
    decoBoulder1.setMaxY(80);
    decoBoulder1.setChance(16);
    decoBoulder1.setStrengthFactor(1f);
    DecoBoulder decoBoulder2 = new DecoBoulder();
    decoBoulder2.setBoulderBlock(Blocks.COBBLESTONE.getDefaultState());
    decoBoulder2.setMaxY(80);
    decoBoulder2.setChance(16);
    decoBoulder2.setStrengthFactor(1f);
    DecoHelper5050 decoHelper5050 = new DecoHelper5050(decoBoulder1, decoBoulder2);
    this.addDeco(decoHelper5050);
    DecoFallenTree decoFallenTree = new DecoFallenTree();
    decoFallenTree.getDistribution().setNoiseDivisor(80f);
    decoFallenTree.getDistribution().setNoiseFactor(60f);
    decoFallenTree.getDistribution().setNoiseAddend(-15f);
    decoFallenTree.setLogCondition(RANDOM_CHANCE);
    decoFallenTree.setLogConditionChance(12);
    decoFallenTree.setLogBlock(BOPBlocks.log_3.getDefaultState());
    decoFallenTree.setLeavesBlock(Blocks.LEAVES.getDefaultState());
    decoFallenTree.setMinSize(3);
    decoFallenTree.setMaxSize(9);
    this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
}
Also used : DecoBaseBiomeDecorations(rtg.api.world.deco.DecoBaseBiomeDecorations) DecoHelper5050(rtg.api.world.deco.helper.DecoHelper5050) DecoSingleBiomeDecorations(rtg.api.world.deco.DecoSingleBiomeDecorations) DecoFallenTree(rtg.api.world.deco.DecoFallenTree) DecoBoulder(rtg.api.world.deco.DecoBoulder)

Example 7 with DecoHelper5050

use of rtg.api.world.deco.helper.DecoHelper5050 in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeBOPGrove method initDecos.

@Override
public void initDecos() {
    DecoFallenTree decoFallenTree1 = new DecoFallenTree();
    decoFallenTree1.getDistribution().setNoiseDivisor(80f);
    decoFallenTree1.getDistribution().setNoiseFactor(60f);
    decoFallenTree1.getDistribution().setNoiseAddend(-15f);
    decoFallenTree1.setLogCondition(X_DIVIDED_BY_STRENGTH);
    decoFallenTree1.setLogConditionNoise(8f);
    decoFallenTree1.setLogConditionChance(1);
    decoFallenTree1.setMaxY(100);
    decoFallenTree1.setLogBlock(BlockUtil.getStateLog(2));
    decoFallenTree1.setLeavesBlock(BlockUtil.getStateLeaf(2));
    decoFallenTree1.setMinSize(3);
    decoFallenTree1.setMaxSize(6);
    DecoFallenTree decoFallenTree2 = new DecoFallenTree();
    decoFallenTree2.getDistribution().setNoiseDivisor(80f);
    decoFallenTree2.getDistribution().setNoiseFactor(60f);
    decoFallenTree2.getDistribution().setNoiseAddend(-15f);
    decoFallenTree2.setLogCondition(X_DIVIDED_BY_STRENGTH);
    decoFallenTree2.setLogConditionNoise(8f);
    decoFallenTree2.setLogConditionChance(1);
    decoFallenTree2.setMaxY(100);
    decoFallenTree2.setLogBlock(BlockUtil.getStateLog2(1));
    decoFallenTree2.setLeavesBlock(BlockUtil.getStateLeaf(1));
    decoFallenTree2.setMinSize(3);
    decoFallenTree2.setMaxSize(6);
    DecoHelper5050 decoHelperHelper5050 = new DecoHelper5050(decoFallenTree1, decoFallenTree2);
    this.addDeco(decoHelperHelper5050, this.getConfig().ALLOW_LOGS.get());
    DecoShrub decoShrubCustom = new DecoShrub();
    decoShrubCustom.setLogBlock(BlockUtil.getStateLog(2));
    decoShrubCustom.setLeavesBlock(BlockUtil.getStateLeaf(2));
    decoShrubCustom.setMaxY(110);
    decoShrubCustom.setStrengthFactor(2f);
    DecoShrub decoShrubCustom2 = new DecoShrub();
    decoShrubCustom2.setLogBlock(BlockUtil.getStateLog2(1));
    decoShrubCustom2.setLeavesBlock(BlockUtil.getStateLeaf2(1));
    decoShrubCustom2.setMaxY(110);
    decoShrubCustom2.setStrengthFactor(2f);
    DecoHelper5050 decoHelperHelper50502 = new DecoHelper5050(decoShrubCustom, decoShrubCustom2);
    this.addDeco(decoHelperHelper50502);
    DecoFlowersRTG decoFlowersRTG = new DecoFlowersRTG();
    decoFlowersRTG.setFlowers(new int[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 });
    decoFlowersRTG.setMaxY(128);
    decoFlowersRTG.setStrengthFactor(2f);
    this.addDeco(decoFlowersRTG);
    DecoGrass decoGrass = new DecoGrass();
    decoGrass.setMaxY(128);
    decoGrass.setStrengthFactor(12f);
    this.addDeco(decoGrass);
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoSingleBiomeDecorations();
    this.addDeco(decoBaseBiomeDecorations);
}
Also used : DecoHelper5050(rtg.api.world.deco.helper.DecoHelper5050) DecoSingleBiomeDecorations(rtg.api.world.deco.DecoSingleBiomeDecorations)

Example 8 with DecoHelper5050

use of rtg.api.world.deco.helper.DecoHelper5050 in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeMFMithwoodForest method initDecos.

@Override
public void initDecos() {
    TreeRTG megaMithwood = new TreeRTGPinusNigra();
    megaMithwood.setLogBlock(mithwoodLogBlock);
    megaMithwood.setLeavesBlock(mithwoodLeavesBlock);
    megaMithwood.setMinTrunkSize(18);
    megaMithwood.setMaxTrunkSize(27);
    megaMithwood.setMinCrownSize(7);
    megaMithwood.setMaxCrownSize(10);
    this.addTree(megaMithwood);
    DecoTree RTGMithwood = new DecoTree(megaMithwood);
    RTGMithwood.setStrengthFactorForLoops(1f);
    RTGMithwood.setStrengthNoiseFactorXForLoops(true);
    RTGMithwood.getDistribution().setNoiseDivisor(100f);
    RTGMithwood.getDistribution().setNoiseFactor(6f);
    RTGMithwood.getDistribution().setNoiseAddend(0.8f);
    RTGMithwood.setTreeType(DecoTree.TreeType.RTG_TREE);
    RTGMithwood.setTreeCondition(DecoTree.TreeCondition.RANDOM_CHANCE);
    RTGMithwood.setTreeConditionChance(12);
    RTGMithwood.setMaxY(100);
    this.addDeco(RTGMithwood);
    TreeRTG megaOak = new TreeRTGPinusNigra();
    megaOak.setLogBlock(Blocks.LOG.getDefaultState());
    megaOak.setLeavesBlock(Blocks.LEAVES.getDefaultState());
    megaOak.setMinTrunkSize(18);
    megaOak.setMaxTrunkSize(27);
    megaOak.setMinCrownSize(7);
    megaOak.setMaxCrownSize(10);
    this.addTree(megaOak);
    DecoTree RTGOak = new DecoTree(megaOak);
    RTGOak.setStrengthFactorForLoops(4f);
    RTGOak.setStrengthNoiseFactorXForLoops(true);
    RTGOak.getDistribution().setNoiseDivisor(100f);
    RTGOak.getDistribution().setNoiseFactor(6f);
    RTGOak.getDistribution().setNoiseAddend(0.8f);
    RTGOak.setTreeType(DecoTree.TreeType.RTG_TREE);
    RTGOak.setTreeCondition(DecoTree.TreeCondition.RANDOM_CHANCE);
    RTGOak.setTreeConditionChance(12);
    RTGOak.setMaxY(100);
    this.addDeco(RTGOak);
    TreeRTG megaBirch = new TreeRTGBetulaPapyrifera();
    megaBirch.setLogBlock(BlockUtil.getStateLog(2));
    megaBirch.setLeavesBlock(BlockUtil.getStateLeaf(2));
    megaBirch.setMinTrunkSize(4);
    megaBirch.setMaxTrunkSize(10);
    megaBirch.setMinCrownSize(8);
    megaBirch.setMaxCrownSize(19);
    this.addTree(megaBirch);
    DecoTree RTGBirch = new DecoTree(megaBirch);
    RTGBirch.setStrengthFactorForLoops(2f);
    RTGBirch.setTreeType(DecoTree.TreeType.RTG_TREE);
    RTGBirch.setTreeCondition(DecoTree.TreeCondition.RANDOM_CHANCE);
    RTGBirch.setTreeConditionChance(24);
    RTGBirch.setMaxY(100);
    this.addDeco(RTGBirch);
    TreeRTG megaSpruce = new TreeRTGPinusPonderosa();
    megaSpruce.setLogBlock(BlockUtil.getStateLog(1));
    megaSpruce.setLeavesBlock(BlockUtil.getStateLeaf(1));
    megaSpruce.setMinTrunkSize(11);
    megaSpruce.setMaxTrunkSize(21);
    megaSpruce.setMinCrownSize(15);
    megaSpruce.setMaxCrownSize(29);
    this.addTree(megaSpruce);
    DecoTree RTGSpruce = new DecoTree(megaSpruce);
    RTGSpruce.setStrengthFactorForLoops(2f);
    RTGSpruce.setStrengthNoiseFactorForLoops(true);
    RTGSpruce.setTreeType(DecoTree.TreeType.RTG_TREE);
    RTGSpruce.getDistribution().setNoiseDivisor(80f);
    RTGSpruce.getDistribution().setNoiseFactor(60f);
    RTGSpruce.getDistribution().setNoiseAddend(-15f);
    RTGSpruce.setTreeCondition(DecoTree.TreeCondition.RANDOM_CHANCE);
    RTGSpruce.setTreeConditionNoise(0f);
    RTGSpruce.setTreeConditionChance(24);
    RTGSpruce.setMaxY(140);
    this.addDeco(RTGSpruce);
    DecoShrub decoShrubMithwood = new DecoShrub();
    decoShrubMithwood.setLogBlock(mithwoodLogBlock);
    decoShrubMithwood.setLeavesBlock(mithwoodLeavesBlock);
    decoShrubMithwood.setMaxY(100);
    decoShrubMithwood.setStrengthFactor(1f);
    decoShrubMithwood.setChance(2);
    this.addDeco(decoShrubMithwood);
    DecoShrub decoShrub = new DecoShrub();
    decoShrub.setMaxY(100);
    decoShrub.setStrengthFactor(2f);
    decoShrub.setChance(4);
    this.addDeco(decoShrub);
    DecoFlowersRTG decoFlowers1 = new DecoFlowersRTG();
    decoFlowers1.setFlowers(new int[] { 1, 2, 3, 6, 7, 8 });
    decoFlowers1.setStrengthFactor(2f);
    decoFlowers1.setHeightType(DecoFlowersRTG.HeightType.GET_HEIGHT_VALUE);
    this.addDeco(decoFlowers1);
    DecoFlowersRTG decoFlowers2 = new DecoFlowersRTG();
    decoFlowers2.setFlowers(new int[] { 11, 12, 13, 14 });
    decoFlowers2.setStrengthFactor(1f);
    decoFlowers2.setChance(1);
    decoFlowers2.setHeightType(DecoFlowersRTG.HeightType.GET_HEIGHT_VALUE);
    this.addDeco(decoFlowers2);
    DecoBoulder decoBoulder = new DecoBoulder();
    decoBoulder.setBoulderBlock(Blocks.COBBLESTONE.getDefaultState());
    decoBoulder.setChance(2);
    decoBoulder.setMaxY(100);
    decoBoulder.setStrengthFactor(2f);
    this.addDeco(decoBoulder);
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoBaseBiomeDecorations();
    decoBaseBiomeDecorations.setMaxY(100);
    decoBaseBiomeDecorations.setNotEqualsZeroChance(8);
    this.addDeco(decoBaseBiomeDecorations);
    DecoFallenTree decoFallenMithwoodTree = new DecoFallenTree();
    decoFallenMithwoodTree.getDistribution().setNoiseDivisor(100f);
    decoFallenMithwoodTree.getDistribution().setNoiseFactor(6f);
    decoFallenMithwoodTree.getDistribution().setNoiseAddend(0.8f);
    decoFallenMithwoodTree.setLogCondition(DecoFallenTree.LogCondition.NOISE_GREATER_AND_RANDOM_CHANCE);
    decoFallenMithwoodTree.setLogConditionNoise(0f);
    decoFallenMithwoodTree.setLogConditionChance(24);
    decoFallenMithwoodTree.setLogBlock(mithwoodLogBlock);
    decoFallenMithwoodTree.setLeavesBlock(mithwoodLeavesBlock);
    decoFallenMithwoodTree.setMinSize(3);
    decoFallenMithwoodTree.setMaxSize(6);
    this.addDeco(decoFallenMithwoodTree, this.getConfig().ALLOW_LOGS.get());
    DecoFallenTree decoFallenOak = new DecoFallenTree();
    decoFallenOak.setLogCondition(RANDOM_CHANCE);
    decoFallenOak.setLogConditionChance(8);
    decoFallenOak.setMaxY(100);
    decoFallenOak.setLogBlock(Blocks.LOG.getDefaultState());
    decoFallenOak.setLeavesBlock(Blocks.LEAVES.getDefaultState());
    decoFallenOak.setMinSize(3);
    decoFallenOak.setMaxSize(6);
    this.addDeco(decoFallenOak, this.getConfig().ALLOW_LOGS.get());
    DecoFallenTree decoFallenBirch = new DecoFallenTree();
    decoFallenBirch.setLogCondition(RANDOM_CHANCE);
    decoFallenBirch.setLogConditionChance(8);
    decoFallenBirch.setMaxY(100);
    decoFallenBirch.setLogBlock(BlockUtil.getStateLog(2));
    decoFallenBirch.setLeavesBlock(BlockUtil.getStateLeaf(2));
    decoFallenBirch.setMinSize(3);
    decoFallenBirch.setMaxSize(6);
    DecoFallenTree decoFallenSpruce = new DecoFallenTree();
    decoFallenSpruce.setLogCondition(RANDOM_CHANCE);
    decoFallenSpruce.setLogConditionChance(8);
    decoFallenSpruce.setMaxY(100);
    decoFallenSpruce.setLogBlock(BlockUtil.getStateLog(1));
    decoFallenSpruce.setLeavesBlock(BlockUtil.getStateLeaf(1));
    decoFallenSpruce.setMinSize(3);
    decoFallenSpruce.setMaxSize(6);
    DecoHelper5050 decoFallenTree = new DecoHelper5050(decoFallenBirch, decoFallenSpruce);
    this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
    DecoGrass decoGrass = new DecoGrass();
    decoGrass.setMaxY(128);
    decoGrass.setStrengthFactor(24f);
    this.addDeco(decoGrass);
}
Also used : DecoHelper5050(rtg.api.world.deco.helper.DecoHelper5050) TreeRTGPinusNigra(rtg.api.world.gen.feature.tree.rtg.TreeRTGPinusNigra) TreeRTG(rtg.api.world.gen.feature.tree.rtg.TreeRTG) TreeRTGPinusPonderosa(rtg.api.world.gen.feature.tree.rtg.TreeRTGPinusPonderosa) TreeRTGBetulaPapyrifera(rtg.api.world.gen.feature.tree.rtg.TreeRTGBetulaPapyrifera)

Aggregations

DecoHelper5050 (rtg.api.world.deco.helper.DecoHelper5050)8 DecoSingleBiomeDecorations (rtg.api.world.deco.DecoSingleBiomeDecorations)6 DecoBaseBiomeDecorations (rtg.api.world.deco.DecoBaseBiomeDecorations)4 DecoBoulder (rtg.api.world.deco.DecoBoulder)4 DecoFallenTree (rtg.api.world.deco.DecoFallenTree)4 TreeRTG (rtg.api.world.gen.feature.tree.rtg.TreeRTG)3 TreeRTGBetulaPapyrifera (rtg.api.world.gen.feature.tree.rtg.TreeRTGBetulaPapyrifera)2 TreeRTGPinusPonderosa (rtg.api.world.gen.feature.tree.rtg.TreeRTGPinusPonderosa)2 DecoCollectionSmallPineTreesForest (rtg.api.world.deco.collection.DecoCollectionSmallPineTreesForest)1 DecoHelperRandomSplit (rtg.api.world.deco.helper.DecoHelperRandomSplit)1 TreeRTGPiceaSitchensis (rtg.api.world.gen.feature.tree.rtg.TreeRTGPiceaSitchensis)1 TreeRTGPinusNigra (rtg.api.world.gen.feature.tree.rtg.TreeRTGPinusNigra)1