Posted April 24, 20169 yr I am trying to store custom data into a chunk so that 1) The data is preserved if the chunk is unloaded 2) I can read the data if I have a Chunk instance. I tried the ChunkDataEvent.Load and ChunkDataEvent.Save events but did not figure out how to solve (2). How do I achieve this? Thanks in advance.
April 25, 20169 yr Author You have to store the data in a Map<Chunk, [data]> ( HashMap is the obvious implementation choice[/code]). You have to unload from this Map using ChunkEvent.Unload . Then make a WorldSavedData instance to attach this Map to a World instance. You can see an example of this here. Note that the WorldSavedData is not actually saving anything to disk (hence never call markDirty on it), it is purely to attach your Map to the World. Do I have to write the data using the readFromNBT and writeToNBT methods? I have tried using ChunkEvent.Load/Unload but did not find a way to write data into the chunk. I am thinking about using ChunkDataEvent.Load/Save but not sure if it is good practice.
April 25, 20169 yr FYI: ChunkDataEvent is for reading/writing to disk, but in no way tells you that the chunk has been removed from memory and to disassociate any extra data from your Map. ChunkEvent.Load/Unload on the other hand, runs on a separate thread. (ConcurrentHashMap is needed, fortunately this Map alone should be sufficient to solve that problem). You'll still have to figure out a couple other problems (the sequence of events that get fired is not simple); just don't do something like world.getChunkFromChunkCoords(x, z).isChunkLoaded because that'll load the chunk and be useless. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
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.