Jump to content

New World Type ?


Julian97

Recommended Posts

I got a good Idea for a Structure based Mod . But for those Structures i need to have a completely empty World . And if i Empty the World with :

for(int j=0;j<16;j++)
{
for(int k=0;k<16;k++)
{
	for(int i=0;i<256;i++)
	{
	world.setBlockState(new BlockPos(j+(chunkX*16),i,k+(chunkZ*16)),Blocks.air.getDefaultState(),0);
	}
}
}

It's just very slow and doesn't delete all blocks . Is there any Way to create a new World Option that makes Minecraft only run the Code of my WorldGenerator ?

Link to comment
Share on other sites

I've tried puting

if(!TerrainSet){world.getWorldInfo().setTerrainType(new IWorldType(world.getWorldInfo().getWorldName()));TerrainSet=true;}

in the generate Function of my Class that implements IWorldGenerator .

 

and i created another Class with :

public class IWorldType extends WorldType{

public IWorldType(String name) {
	super(name);
}

@Override
public IChunkProvider getChunkGenerator(World world,String generatorOptions)
{
	return null;
}
}

But it doesn't seem to work . Could it be because i return null instead of a IChunkProvider that really emptys the Chunk ?

Link to comment
Share on other sites

I've got some Situations were there was no difference .

Still though . I don't really get how a Chunkprovider works . And overriding the GetChunkGenerator Function didn't seem to change anything . I atleast expected a Crash if the Value is invalid . But It looks like the World still generates normally .

Link to comment
Share on other sites

Thank you . The Worldoptions now got a new Worldtype and it only generates empty Chunks . This Problem is solved .

 

There are just 2 other smaller Problems . Firstly how do i detect if this World Option is turned on so my WorldGenerator Class only generates in this Worldtype ? And secondly how do i set an exact Spawnpoint . world.setSpawnPoint(BlockPos) only seems to make the Player spawn in a specific Chunk . but i want an exact BlockPos .

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.