mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
52 lines
1.9 KiB
Java
52 lines
1.9 KiB
Java
|
package ellpeck.thingycraft;
|
||
|
|
||
|
import cpw.mods.fml.common.IWorldGenerator;
|
||
|
import ellpeck.thingycraft.blocks.InitBlocks;
|
||
|
import net.minecraft.block.Block;
|
||
|
import net.minecraft.init.Blocks;
|
||
|
import net.minecraft.world.World;
|
||
|
import net.minecraft.world.chunk.IChunkProvider;
|
||
|
import net.minecraft.world.gen.feature.WorldGenMinable;
|
||
|
|
||
|
import java.util.Random;
|
||
|
|
||
|
public class OreGen implements IWorldGenerator {
|
||
|
|
||
|
public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider){
|
||
|
switch (world.provider.dimensionId){
|
||
|
case -1:
|
||
|
generateNether(world, random, chunkX * 16, chunkZ * 16);
|
||
|
case 0:
|
||
|
generateSurface(world, random, chunkX * 16, chunkZ * 16);
|
||
|
case 1:
|
||
|
generateEnd(world, random, chunkX * 16, chunkZ * 16);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@SuppressWarnings("unused")
|
||
|
private void generateEnd(World world, Random random, int x, int z){
|
||
|
|
||
|
}
|
||
|
|
||
|
private void generateSurface(World world, Random random, int x, int z){
|
||
|
for(int i = 0; i < Util.gemTypes.length; i++) {
|
||
|
this.addOreSpawn(InitBlocks.oreGem, i, Blocks.stone, world, random, x, z, 4 + random.nextInt(3), 12, 1, 70);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@SuppressWarnings("unused")
|
||
|
private void generateNether(World world, Random random, int x, int z){
|
||
|
|
||
|
}
|
||
|
|
||
|
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){
|
||
|
int yDiff = maxY - minY;
|
||
|
for(int i = 0; i < chancesToSpawn; i++){
|
||
|
int posX = blockXPos + random.nextInt(16);
|
||
|
int posY = minY + random.nextInt(yDiff);
|
||
|
int posZ = blockZPos + random.nextInt(16);
|
||
|
(new WorldGenMinable(block, meta, maxVeinSize, blockIn)).generate(world, random, posX, posY, posZ);
|
||
|
}
|
||
|
}
|
||
|
}
|