Jump to content

Creating Mirror dimension of Overworld


Durtle02

Recommended Posts

Hi, so I'd like to create an exact copy of the overworld so I can use a block as a regenerative thing however I don't know where to start. Could I get a quick run down of how the dimension generation works, how I can copy the world seed and where the files are that specifically handle generating the overworld are in the MC source code are? Also any UPDATED tutorials you have would be cool.
Thanks.

  Durtle02

I don't optimize my code before it works.

Link to comment
Share on other sites

Fun thing, I tried to do the exact same thing two years ago. Just generate a random new dimension with the same WorldGen and seed the overworld has and you should be (mostly) fine. Has been quite a struggle to find any good reference material back then. And I have no idea how much things have changed.

 

But why would you even want to create a copy of the overworld? If you just want to reset everything to how it has been when the world was generated you could just delete the chunk and let MC regenerate it. Way faster and uses a lot less disk space.

Here could be your advertisement!

Link to comment
Share on other sites

7 hours ago, Jacky2611 said:

But why would you even want to create a copy of the overworld?

I'm remaking an old mod and one of the blocks is regenerative of the mirror world. So it looks in mirror world, checks if blocks are same, and if not, makes it so.

I don't optimize my code before it works.

Link to comment
Share on other sites

8 minutes ago, Durtle02 said:

I'm remaking an old mod and one of the blocks is regenerative of the mirror world. So it looks in mirror world, checks if blocks are same, and if not, makes it so.

What is the range of the regen? One chunk the whole world? A couple blocks?

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

3 minutes ago, Animefan8888 said:

What is the range of the regen? One chunk the whole world? A couple blocks?

So you place it and it checks the surrounding blocks. If they are different, if they are it sets them as itself and turns itself to whatever the block is at it's cords in the mirror world (using random ticks). If it's not the same, it sets itself as air and doesn't change any others. 
Recreating this: 

 

I don't optimize my code before it works.

Link to comment
Share on other sites

1 minute ago, Durtle02 said:

So you place it and it checks the surrounding blocks. If they are different, if they are it sets them as itself and turns itself to whatever the block is at it's cords in the mirror world (using random ticks). If it's not the same, it sets itself as air and doesn't change any others. 
Recreating this: 

Instead of creating a mirror dimension/World instance, I would say use WorldSaveDatat and the chunk loading event. On a chunks first load load the chunk into nbt and then put that nbt in a Map<ChunkPos, NBTTagCompound(or some other nbt thing)>. Then save all of this in WorldSaveData to the disk. And load it when the world loads back into the map. The map should be static and only changed and accessed on the Server side. Then you can access the Map in your Blocks class and change the Blocks according to the NBT.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Just now, Durtle02 said:

You will need to be able to get to the dimension though.

Why? What you explained was that it just needs to load from an original copy of the world.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

1 minute ago, Animefan8888 said:

Why? What you explained was that it just needs to load from an original copy of the world.

I don't know how to explain it but they do. 

Also I want players to be able to get there.

I don't optimize my code before it works.

Link to comment
Share on other sites

4 minutes ago, Durtle02 said:

I don't know how to explain it but they do. 

Also I want players to be able to get there.

Then you could probably just do DimensionManager.registerDimension(id, DimensionType.OVERWORLD), I am not sure, but that will make the WorldProvider the same so it might.

  • Like 1

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

2 minutes ago, Animefan8888 said:

Then you could probably just do DimensionManager.registerDimension(id, DimensionType.OVERWORLD), I am not sure, but that will make the WorldProvider the same so it might.

Where would I go doing this? In my dimension files, correct?

 

I don't optimize my code before it works.

Link to comment
Share on other sites

Just now, Durtle02 said:

Where would I go doing this? In my dimension files, correct?

 

It has to be called from your @Mod class.

  • Like 1

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

One of the inits. Not sure which one though.

 

Edit: preinit

 

And thx, your video just gave me an idea on how to solve one of my own problems. (Without overloading the server)

 

And do you need something to teleport you to your dimension?

Edited by Jacky2611

Here could be your advertisement!

Link to comment
Share on other sites

4 minutes ago, Durtle02 said:

And if I wanted to use it like this 


public void blockSpread(World world, BlockPos posNumber){
    if (world.getBlockState(posNumber).getBlock() != Blocks.AIR){

    }
  }

how would I do so?
 

What exactly is this supposed to do, where is it, and could you please rename posNumber to pos?

 

Show us more code. Preferably a GitHub repo.

Here could be your advertisement!

Link to comment
Share on other sites

4 minutes ago, Jacky2611 said:

What exactly is this supposed to do, where is it, and could you please rename posNumber to pos?

It's just an example. If I wanted to use detection like that with the other world. Pos is blocks location.

 

public void blockSpread(World world, BlockPos posNumber)
  {
    if (world.getBlockState(posNumber).getBlock() != MirrorWorld.getBlockState(posNumber).getBlock()){
    	world.setBlockState(posNumber, MirrorWorld.getBlockState(posNumber));
	}
  }

Like this.

I don't optimize my code before it works.

Link to comment
Share on other sites

4 minutes ago, Durtle02 said:

It's just an example. If I wanted to use detection like that with the other world. Pos is blocks location.

if (!world.isRemote) {
	WorldServer mirrorWorld = DimensionManager.getWorld(id);
	// Do stuff
}

 

  • Like 1

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

2 minutes ago, Animefan8888 said:

if (!world.isRemote) {
	WorldServer mirrorWorld = DimensionManager.getWorld(id);
	// Do stuff
}

 

 

So then to test for in other world what would I run in '//Do stuff'? Like how this 

world.getBlockState(posNumber).getBlock()

will modify in the overworld with what I have but what would it look like for the mirrorworld?

I don't optimize my code before it works.

Link to comment
Share on other sites

Just now, Durtle02 said:

 

So then to test for in other world what would I run in '//Do stuff'? Like how this 


world.getBlockState(posNumber).getBlock()

will modify in the overworld with what I have but what would it look like for the mirrorworld?

mirrorWorld.getBlockState() Gets from the mirror world.

world.setBlockState(...) Sets a blockstate in the overworld

Also IBlockStates are singletons so compare with ==

  • Like 1

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

2 minutes ago, Animefan8888 said:

mirrorWorld.getBlockState() Gets from the mirror world.

world.setBlockState(...) Sets a blockstate in the overworld

Also IBlockStates are singletons so compare with ==

Alright will do! Thanks for all the help and bearing me, I have very little clue what I'm doing and with such little preexisting resources it makes it hard to find out. I always hate asking on the forums because I feel like I'm wasting peoples time so thank you.

 

I don't optimize my code before it works.

Link to comment
Share on other sites

Just now, Durtle02 said:

I always hate asking on the forums because I feel like I'm wasting peoples time so thank you.

No problem. I can't speak for others, but I am on here because I like helping people debug their code and help them with ideas somewhat. So you are not wasting my time.

  • Like 1

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Just now, Animefan8888 said:

So you are not wasting my time.

No so much wasting time but just having little knowledge of what I'm doing, but that's why people help, so then later I can help too.

I don't optimize my code before it works.

Link to comment
Share on other sites

Nah, we are perfectly happy helping you as long as the best answer gets a like. And it's not like I have anything better to do. My own mods usually run out of ideas or I get stuck in some really boring part of development. (like writing jsons. ugh)

  • Like 1

Here could be your advertisement!

Link to comment
Share on other sites

1 hour ago, Jacky2611 said:

Nah, we are perfectly happy helping you as long as the best answer gets a like. And it's not like I have anything better to do. My own mods usually run out of ideas or I get stuck in some really boring part of development. (like writing jsons. ugh)

Then again you could just make a json writer for yourself. I already made a BlockState writer. It does both the forge and vanilla BlockState jsons.

Edited by Animefan8888
  • Like 1

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

25 minutes ago, Animefan8888 said:

Then again you could just make a is in writer for yourself. I already made a BlockState writer. It does both the forge and vanilla BlockState jsons.

Fun things: one of the things at the top of my possible projects list is a model json maker. But writing a really good ui and figuring out the eclipse api would be so boring...

  • Like 1

Here could be your advertisement!

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • C:\Minecraft Server>java -Xmx4096M -Xms1024M -jar server.jar nogui Starting net.minecraft.server.Main ERROR StatusConsoleListener Unable to delete file C:\Minecraft Server\logs\latest.log: java.nio.file.FileSystemException C:\Minecraft Server\logs\latest.log: The process cannot access the file because it is being used by another process ^CTerminate batch job (Y/N)?
    • Oke i tried to download a different mod and try that out on my server and i get the same error. Now i know for a fact that my port forwarding and server is working properly, because i can join them without adding any mods into the server file, but then i dont know what i am doing wrong 
    • Salutation to you ladies and gentlemen, i must confidently say a very big thanks to Fastfundrecovery8 AT GMAIL COM for their tremendous action taken over my case immediately brought to their table, i saw how the whole process was going, and i wisperred to myself and said indeed i am previlledge to know such a legitimate recovery company who is very understable and do not stress their client over recovery software tools, Fastfunds Recovery are good in keeping to time, punctuality, I was scammed last year December 18, i realized that my long investment which i inteded to withdraw has long been a scam, got so frustrated, hired 4 recovery hackers which ended up taking money from me and i couldn't contact them anymore, i went through emotional pains and betrayer, wasn't easy for me at that moment, am very greatful for FastFunds Recovery, who was referred to me by a civil engineer who i was opportuned to share part of my story with and he was like i have a cyber friend do reach and say i'm from Pato's, that's how i got in touch with fastfundsrecovery8(@)gmail(.)com, do inform FastFunds recovery for any cyber issues. Fastfundsrecovery8 AT GMAIL WILL ALWAYS HELP GET BACK YOUR FUNDS.
    • Hello everyone i have made a server with forge and have added pixelmon into the server. But for some reason i keep getting "Internal Exception: io.netty.handles.codec.DecoderException: Not enough bytes in buffer, expected 105, byt got 48". I tried upping the ram of the server to 2GB but it didnt solve anything. I have 16 GB of ram on my pc (where i host the server), but i cant seem to get it to work. Pixelmon does work when i try to go into singleplayer, but for some reason just doesnt work online   Edit: server logs sais nothing aswell [18:55:49] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD] [18:55:50] [ServerMain/INFO]: Loaded 7 recipes [18:55:51] [ServerMain/INFO]: Loaded 1271 advancements [18:55:51] [Server thread/INFO]: Starting minecraft server version 1.20.2 [18:55:51] [Server thread/INFO]: Loading properties [18:55:51] [Server thread/INFO]: Default game type: SURVIVAL [18:55:51] [Server thread/INFO]: Generating keypair [18:55:51] [Server thread/INFO]: Starting Minecraft server on *:xxxx [18:55:51] [Server thread/INFO]: Using default channel type [18:55:51] [Server thread/INFO]: Preparing level "world" [18:55:52] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld [18:55:53] [Worker-Main-8/INFO]: Preparing spawn area: 0% [18:55:53] [Worker-Main-8/INFO]: Preparing spawn area: 0% [18:55:53] [Worker-Main-8/INFO]: Preparing spawn area: 0% [18:55:53] [Worker-Main-12/INFO]: Preparing spawn area: 0% [18:55:54] [Worker-Main-11/INFO]: Preparing spawn area: 31% [18:55:54] [Server thread/INFO]: Time elapsed: 2344 ms [18:55:54] [Server thread/INFO]: Done (2.865s)! For help, type "help" [18:55:56] [User Authenticator #1/INFO]: UUID of player kemal007023 is 9a2a1dff-fa06-4e29-b57d-b1e6afb2db87 [18:55:56] [Server thread/INFO]: kemal007023[/xxxx] logged in with entity id 271 at (9.497695306619189, 68.0, 10.973182362716573) [18:55:56] [Server thread/INFO]: kemal007023 joined the game [18:55:56] [Server thread/INFO]: kemal007023 lost connection: Disconnected [18:55:56] [Server thread/INFO]: kemal007023 left the game [18:56:00] [User Authenticator #2/INFO]: UUID of player kemal007023 is 9a2a1dff-fa06-4e29-b57d-b1e6afb2db87 [18:56:00] [Server thread/INFO]: kemal007023[xxxx] logged in with entity id 272 at (9.497695306619189, 68.0, 10.973182362716573) [18:56:00] [Server thread/INFO]: kemal007023 joined the game [18:56:00] [Server thread/INFO]: kemal007023 lost connection: Disconnected [18:56:00] [Server thread/INFO]: kemal007023 left the game  
    • Hi, im making a BlockEntity that can contain fluids, and render them in the GUI, only one fluid works perfectly, I can fill or drain it, sync it to the client, and render it. The problem comes when i try to have two fluids in the same GUI, depending on what I delete or leave, the fluids act differently; for example, deleting both of them from "saveAdditional" and "load" methods makes that the fluids cannot render. Also, it can only render one fluid alone, or again, render one fluid, but twice (copies one fluid to the other one). FYI the left one is water, the right one is a red custom fluid. How can I fix this? BoilerBlockEntity: https://pastebin.com/e6b2U3sD BoilerMenu: https://pastebin.com/D375yCNr BoilerScreen: https://pastebin.com/WMrK83Du 
  • Topics

×
×
  • Create New...

Important Information

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