2013-10-22 06:05:01 +00:00
|
|
|
package biomesoplenty.integration;
|
|
|
|
|
|
|
|
import biomesoplenty.api.Biomes;
|
|
|
|
import biomesoplenty.api.BlockReferences;
|
|
|
|
import biomesoplenty.api.Blocks;
|
|
|
|
import biomesoplenty.api.Items;
|
|
|
|
import biomesoplenty.integration.minefactoryreloaded.Fertilizable;
|
|
|
|
import biomesoplenty.integration.minefactoryreloaded.FruitLeaves;
|
|
|
|
import biomesoplenty.integration.minefactoryreloaded.Harvestable;
|
|
|
|
import com.google.common.base.Optional;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2013-10-22 06:06:54 +00:00
|
|
|
import powercrystals.minefactoryreloaded.api.FactoryRegistry;
|
2013-10-22 06:05:01 +00:00
|
|
|
import powercrystals.minefactoryreloaded.api.HarvestType;
|
|
|
|
|
|
|
|
public class MFRIntegration
|
|
|
|
{
|
|
|
|
protected static void init()
|
|
|
|
{
|
|
|
|
registerRubberTreeBiomes();
|
|
|
|
registerFarmables();
|
|
|
|
registerSludgeDrops();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void registerRubberTreeBiomes()
|
|
|
|
{
|
2013-10-22 06:06:54 +00:00
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.bayou.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.birchForest.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.bog.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.borealForest.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.deciduousForest.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.forestNew.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.grove.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.jungleNew.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.lushSwamp.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.mapleWoods.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.rainforest.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.seasonalForest.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.shield.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.swamplandNew.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.temperateRainforest.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.thicket.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.tropicalRainforest.get().biomeName);
|
|
|
|
FactoryRegistry.registerRubberTreeBiome(Biomes.woodland.get().biomeName);
|
2013-10-22 06:05:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
|
|
|
private static void registerFarmables()
|
|
|
|
{
|
|
|
|
Optional[] bopLeaves = { Blocks.leaves1, Blocks.leaves2, Blocks.leavesColorized, Blocks.treeMoss, Blocks.willow, Blocks.ivy, Blocks.moss };
|
|
|
|
Optional[] bopFruitLeaves = { Blocks.leavesFruit };
|
|
|
|
Optional[] bopLogs = { Blocks.logs1, Blocks.logs2, Blocks.logs3, Blocks.logs4, Blocks.bamboo };
|
|
|
|
Optional[] bopMiscStandardHarvestables = { Blocks.flowers, Blocks.plants, Blocks.foliage, Blocks.mushrooms };
|
|
|
|
Optional[] bopSaplings = { Blocks.saplings, Blocks.colorizedSaplings };
|
|
|
|
|
|
|
|
for(Optional<? extends Block> leaves : bopLeaves)
|
|
|
|
{
|
2013-10-22 06:06:54 +00:00
|
|
|
FactoryRegistry.registerHarvestable(new Harvestable(leaves.get().blockID, HarvestType.TreeLeaf));
|
2013-10-22 06:05:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(Optional<? extends Block> log : bopLogs)
|
|
|
|
{
|
2013-10-22 06:06:54 +00:00
|
|
|
FactoryRegistry.registerHarvestable(new Harvestable(log.get().blockID, HarvestType.Tree));
|
2013-10-22 06:05:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(Optional<? extends Block> harvestable : bopMiscStandardHarvestables)
|
|
|
|
{
|
2013-10-22 06:06:54 +00:00
|
|
|
FactoryRegistry.registerHarvestable(new Harvestable(harvestable.get().blockID, HarvestType.Normal));
|
2013-10-22 06:05:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(Optional<? extends Block> sapling : bopSaplings)
|
|
|
|
{
|
2013-10-22 06:06:54 +00:00
|
|
|
FactoryRegistry.registerFertilizable(new Fertilizable(sapling.get().blockID));
|
2013-10-22 06:05:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(Optional<? extends Block> leaves : bopFruitLeaves)
|
|
|
|
{
|
2013-10-22 06:06:54 +00:00
|
|
|
FactoryRegistry.registerHarvestable(new Harvestable(leaves.get().blockID, HarvestType.TreeLeaf));
|
|
|
|
FactoryRegistry.registerFruit(new FruitLeaves(leaves.get().blockID));
|
2013-10-22 06:05:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void registerSludgeDrops()
|
|
|
|
{
|
2013-10-22 06:06:54 +00:00
|
|
|
FactoryRegistry.registerSludgeDrop(15, BlockReferences.getBlockItemStack("driedDirt"));
|
|
|
|
FactoryRegistry.registerSludgeDrop(15, BlockReferences.getBlockItemStack("hardSand"));
|
|
|
|
FactoryRegistry.registerSludgeDrop(15, BlockReferences.getBlockItemStack("hardDirt"));
|
|
|
|
FactoryRegistry.registerSludgeDrop(15, new ItemStack(Items.miscItems.get(), 4, 1));
|
|
|
|
FactoryRegistry.registerSludgeDrop(25, new ItemStack(Items.mudball.get(), 4));
|
2013-10-22 06:05:01 +00:00
|
|
|
}
|
|
|
|
}
|