项目作者: matcool

项目描述 :
A Minecraft anvil file format parser
高级语言: Python
项目地址: git://github.com/matcool/anvil-parser.git
创建时间: 2019-08-04T22:39:23Z
项目社区:https://github.com/matcool/anvil-parser

开源协议:MIT License

下载


anvil-parser

CodeFactor
Documentation Status
Tests
PyPI - Downloads

Simple parser for the Minecraft anvil file format

Installation

This project is available on PyPI and can be installed with pip

  1. pip install anvil-parser

or directly from github

  1. pip install git+https://github.com/matcool/anvil-parser.git

Usage

Reading

  1. import anvil
  2. region = anvil.Region.from_file('r.0.0.mca')
  3. # You can also provide the region file name instead of the object
  4. chunk = anvil.Chunk.from_region(region, 0, 0)
  5. # If `section` is not provided, will get it from the y coords
  6. # and assume it's global
  7. block = chunk.get_block(0, 0, 0)
  8. print(block) # <Block(minecraft:air)>
  9. print(block.id) # air
  10. print(block.properties) # {}

Making own regions

  1. import anvil
  2. from random import choice
  3. # Create a new region with the `EmptyRegion` class at 0, 0 (in region coords)
  4. region = anvil.EmptyRegion(0, 0)
  5. # Create `Block` objects that are used to set blocks
  6. stone = anvil.Block('minecraft', 'stone')
  7. dirt = anvil.Block('minecraft', 'dirt')
  8. # Make a 16x16x16 cube of either stone or dirt blocks
  9. for y in range(16):
  10. for z in range(16):
  11. for x in range(16):
  12. region.set_block(choice((stone, dirt)), x, y, z)
  13. # Save to a file
  14. region.save('r.0.0.mca')

Todo

things to do before 1.0.0

  • Proper documentation
  • Biomes
  • CI
  • More tests
    • Tests for 20w17a+ BlockStates format

      Note

      Testing done in 1.14.4 and 1.15.2, should work fine for other versions.