Jump to content

Get block data from unloaded chunk?


RInventor7

Recommended Posts

Hi! If I want to know what block is for example at position (10, 64, 100), it is very easy to get that block as long as this position is in the players view distance (which means the chunk where the block is located is loaded). 

But how can I get a block from a location where the player has been previously but what is out of the player's view distance at the moment. Since the chunk is not loaded I get always the same result (Block{void_air}) even if there is grass block. How can I fix this issue and is it even possible to fix it? Thanks.  

Link to comment
Share on other sites

well you can load a chunk, but i feel you shouldn't.

i don't know what you are doing but the game is structured so that parts of the world where no player has been for a while are "frozen", kinda. machines from good-quality mods stop working when in unloaded parts of the world. plants from good-quality mods stop growing.

all those modders could have forced part of the world to stay loaded (at a price paid by the player). but they didn't. they didn't say "i don't care how the game is intended to run and that players expect all mods to behave uniformly, because my block is just that important!".

when mods keep chunks loaded it's often because the young modder was too lazy to make their block just unavailable at the moment.

Link to comment
Share on other sites

Yeah nothing that I already don't know. In my case it's not so simple as just a block. I'm trying to implement a map editor/system into my mod like JourneyMap's fullscreen map with some extras. The problem is that when I try to map all regions of the world, it only maps what's in the player's view distance and everything else will be blank/transparent images, because the level.getBlockState(pos) in unloaded chunks always returns Block{minecraft:void_air}.

So at the moment I'm trying to read the block data from the world region files (.mca). But I have no idea how to decode the 64-bit integers into actual understandable hints to the chunk section palette...

Link to comment
Share on other sites

make a handler for ChunkDataEvent.Load event. get pixel colors for your map and add to your data structure. do not worry about that chunk getting unloaded 5 minutes later.

you will have to update map later if player builds a big fort, but that can be done in EnteringSection event.

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.



×
×
  • Create New...

Important Information

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