Voxelum / minecraft-launcher-core-node

Provide packages to install Minecraft, launch Minecraft and more to build launcher with NodeJs/Electron!
https://docs.xmcl.app/en/core/
MIT License
174 stars 25 forks source link

Adds 'getEntityData' to WorldReader #240

Closed John-Dean closed 2 years ago

John-Dean commented 2 years ago

This commit adds (if I haven't messed anything up) the ability to also pull entity files using the WorldReader. This re-uses the overwhelming bulk of the code from the region files, so I have merged the functionality into a publically exposed function to read .mca files called getMCAData.

I have not added a EntityDataFrame (EntityRegionDataFrame?) much like there is a RegionDataFrame - I'm not super familiar with the entitiy data structure so I didn't want to get this wrong.

I considered making the getMCAData function private, but I considered if they add any future .mca files having this public would allow a way for people to read it while the repo gets updated.