ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/gen/OreGen.java

91 lines
3.8 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("OreGen.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.gen;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.InitBlocks;
import de.ellpeck.actuallyadditions.mod.blocks.metalists.TheMiscBlocks;
import de.ellpeck.actuallyadditions.mod.config.ConfigValues;
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
import de.ellpeck.actuallyadditions.mod.util.Util;
import net.minecraft.block.Block;
2016-03-18 23:47:22 +01:00
import net.minecraft.block.state.pattern.BlockMatcher;
2015-03-08 14:58:26 +01:00
import net.minecraft.init.Blocks;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.world.World;
import net.minecraft.world.WorldType;
2016-03-18 23:47:22 +01:00
import net.minecraft.world.chunk.IChunkGenerator;
import net.minecraft.world.chunk.IChunkProvider;
import net.minecraft.world.gen.feature.WorldGenMinable;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.common.IWorldGenerator;
import net.minecraftforge.fml.common.registry.GameRegistry;
import java.util.Random;
public class OreGen implements IWorldGenerator{
public static final int QUARTZ_MIN = 0;
public static final int QUARTZ_MAX = 45;
2015-10-03 10:16:18 +02:00
public static void init(){
ModUtil.LOGGER.info("Registering World Generator...");
GameRegistry.registerWorldGenerator(new OreGen(), 10);
}
@Override
2016-03-18 23:47:22 +01:00
public void generate(Random random, int chunkX, int chunkZ, World world, IChunkGenerator chunkGenerator, IChunkProvider chunkProvider){
if(world.getWorldType() != WorldType.FLAT && Util.arrayContains(ConfigValues.oreGenDimensionBlacklist, world.provider.getDimension()) < 0){
switch(world.provider.getDimension()){
case -1:
2016-05-02 17:46:53 +02:00
this.generateNether(world, random, chunkX*16, chunkZ*16);
//case 0:
// generateSurface(world, random, chunkX*16, chunkZ*16);
case 1:
2016-05-02 17:46:53 +02:00
this.generateEnd(world, random, chunkX*16, chunkZ*16);
default:
2016-05-02 17:46:53 +02:00
this.generateSurface(world, random, chunkX*16, chunkZ*16);
}
}
}
2015-10-03 10:19:40 +02:00
@SuppressWarnings("unused")
2015-12-20 23:38:24 +01:00
private void generateNether(World world, Random random, int x, int z){
2015-10-03 10:19:40 +02:00
}
@SuppressWarnings("unused")
2015-12-20 23:38:24 +01:00
private void generateEnd(World world, Random random, int x, int z){
}
2015-12-20 23:38:24 +01:00
private void generateSurface(World world, Random random, int x, int z){
if(ConfigBoolValues.GENERATE_QUARTZ.isEnabled()){
2016-04-20 21:39:03 +02:00
this.addOreSpawn(InitBlocks.blockMisc, TheMiscBlocks.ORE_QUARTZ.ordinal(), Blocks.STONE, world, random, x, z, MathHelper.getRandomIntegerInRange(random, 5, 8), 10, QUARTZ_MIN, QUARTZ_MAX);
2015-06-28 12:42:38 +02:00
}
}
2015-03-08 14:58:26 +01:00
public void addOreSpawn(Block block, int meta, Block blockIn, World world, Random random, int blockXPos, int blockZPos, int maxVeinSize, int chancesToSpawn, int minY, int maxY){
if(maxY > minY){
2015-10-02 16:48:01 +02:00
int yDiff = maxY-minY;
2015-03-08 14:58:26 +01:00
for(int i = 0; i < chancesToSpawn; i++){
2015-10-02 16:48:01 +02:00
int posX = blockXPos+random.nextInt(16);
int posY = minY+random.nextInt(yDiff);
int posZ = blockZPos+random.nextInt(16);
2016-03-18 23:47:22 +01:00
new WorldGenMinable(block.getStateFromMeta(meta), maxVeinSize, BlockMatcher.forBlock(blockIn)).generate(world, random, new BlockPos(posX, posY, posZ));
2015-03-08 14:58:26 +01:00
}
}
2015-10-02 16:48:01 +02:00
else{
ModUtil.LOGGER.fatal("Couldn't generate '"+block.getUnlocalizedName()+"' into the world because the Min Y coordinate is bigger than the Max! This is definitely a Config Error! Check the Files!");
}
2015-03-08 14:58:26 +01:00
}
}