Minecraft Wiki
Advertisement
This article is about the file format. For the item repair block, see Anvil.

The Anvil[1] file format was officially introduced in Minecraft 1.2. It brings a list of changes and improvements over from the previous file format, Region. It was implemented as of snapshot 12w07a.

Changes from MCRegion

Anvil Conversion

Converting a world from McRegion format to Anvil.

The only changes from MCRegion to Anvil were in the Chunk format - the Region file format is still used, but labeled as Anvil. The Anvil format introduced these changes to the Chunk format:

  • Maximum build height has been increased to 256 (was 128).
  • Empty sections of the world are not loaded into memory or saved to disk.
  • The maximum Block ID has been increased to 4096 (was 256) by adding a 4 bit data layer (similar to how meta data is stored). The rest of Minecraft's code is not currently prepared to take advantage of this, however.
  • Block ordering has been changed from XZY to YZX in order to improve compression.
  • Packets for sending chunks have been optimized (a chunk without air is smaller than in the same chunk in the old format, and a chunk with lots of air is even smaller).
  • Biomes are saved per X,Z column, which means they can be altered by tools; this is very useful for map makers.

Further information

Minecraft Snapshot 12w07a/b and 1.2 will automatically convert worlds to the new format, but a copy of the world files will be created in the previous formats for compatibility with older game versions. The world generator has not been changed, so there will be an additional 128 blocks of air above the usual terrain, making 192 blocks from sea level to the height limit.

  • The 16x128x16 "Blocks", "Data", "SkyLight" and "BlockLight" tags were moved and repurposed. (see below)
  • A "Sections" List tag containing Compound tags has been added with up to 16 Compound tags.
  • Each section has 16x16x16 "Blocks", "Data", "SkyLight" and "BlockLight" tags.
  • Each section has a "Y" Byte tag saying which section it is (note that some Y positions can be skipped). 0 is at the bottom of the world and 15 is the topmost section.
  • Each section also has an optional "Add" tag, which is a DataLayer byte array just like "Data". The "Add" tag is not included in the converter since the old format never had block ids above 255. This extra tag is created whenever a block requires it, so the getTile() method needs to check if the array exists and then combine it with the default block data. In other words, blockId = (add << 8) + baseId.
  • Each chunk has a 16×16 byte array with biome ids called "Biomes". If this array is missing it will be filled when the game starts, as will any -1 values in the array. The converter source provided for developers doesn’t include any biome sources, however.
  • Note that the old format is XZY ((x * 16 + z) * 16 + y) and the new format is YZX ((y * 16 + z) * 16 + x) (see the difference between DataLayer and OldDataLayer).
  • The new format uses the extension ".mca" instead of ".mcr" (the old format is kept for safety, with the level.dat backed up as "level.dat_mcr").
  • A new NBT tag type called IntArray was added to the NBT Format (With ID 11) and is used by the "Heightmap" tag.

Additional information may be found on the Chunk format page.

Standalone Converter and Source Code

The converter and source code was released individually for developers to examine and prepare.[1]

Reducing the world's size after conversion (on SMP server)

The world data in Anvil format has an .mca suffix, while the data in McRegion format ends on .mcr
To maintain about the size of backups, the .mcr files may be deleted (after backing them up!). This can be achieved by e.g.

  • Windows command prompt
    1. Open Windows command prompt (Win-r, cmd, Enter)
    2. execute this command (without the <> characters):
DEL /F /S /Q <path_to_your_world_data_directory>\*.mcr
  • Windows explorer
    1. Open Windows Explorer (Win-e)
    2. browse to the folder containing the world data
    3. select it
    4. search this folder (F3)
    5. search for *.mcr
    6. mark all search results (ctrl-a)
    7. hit delete
  • Linux shell / OS X Terminal
    1. cd into the folder that contains the world data
    2. run this command
rm *.mcr

See also

References


Advertisement