Return to site

Minecraft Download Size

broken image


Download this game from Microsoft Store for Windows 10. See screenshots, read the latest customer reviews, and compare ratings for Minecraft for Windows 10 Starter Collection. Minecraft with RTX on Windows 10 is now available to download and play! Minecraft with RTX brings fully path-traced rendering, physically-based materials, and NVIDIA DLSS 2.0 to Minecraft, delivering bleeding-edge visual fidelity and realism that can be experienced on all GeForce RTX GPUs. To demonstrate the full capabilities of Minecraft with RTX's new technologies, which deliver.

This article may need cleanup to comply with the style guide.[discuss]
Please help the Minecraft Wiki clean up this page if you can.
The talk page may contain suggestions.
This feature is exclusive to Java Edition.

The Region file format is a storage format for Minecraftchunks introduced in Beta 1.3, in which groups of 32×32 chunks (512×256×512 blocks, 67,108,864 total) are stored in a region file. This file format took the place of the Alpha level format, which had been in use since the Infdev development phase, in which chunks were stored in individual files. It could be said that a region is a part of a file system where the header shows the player positions for each file and sector is the allocation size.

The system is based on McRegion,[1] a mod by Scaevolus, also known for his development of the Optimine project. The McRegion format was adopted nearly unchanged, except for the addition of a table of chunk update timestamps. JahKob has claimed that this format is up to 7 times faster than the previous system.[2] The difference in a world's total file size between the Region file format and the Alpha level format is negligible.

The format has been superseded by the Anvil file format; however, the Anvil file format made changes only to the Chunk format and changed only the region file extensions from '.mcr' to '.mca'.

  • 1Region files

Region files[edit]

Region file location[edit]

Minecraft Download Size

Region files are located in a subfolder of the world directory called 'region', and have names in the form r.x.z.mcr, where x and z are the region's coordinates. The coordinates for the region a chunk belongs to can be found by taking the floor of the chunk coordinates divided by 32.

In Java Edition:

Or in bit-operation(bit shift):

For example, a chunk at (30, -3) would be in the region (0, -1), and one at (70, -30) would be at (2, -1).

Structure[edit]

Region files begin with an 8kB header containing information about which chunks are present in the region file, when they were last updated, and where they can be found. The location in the region file of a chunk at (x, z) (in chunk coordinates) must be found at byte offset 4 * ((x mod 32) + (z mod 32) * 32) in its region file. In case the values of x mod 32 or z mod 32 are negative (which happens when using % operator in Java/C/C++), simply add 32 or the player can replace mod with & (AND operator). Offset calculation look like this: 4 * ((x & 31) + (z & 31) * 32). Its timestamp can be found 4096 bytes later in the file. The remainder of the file consists of data for up to 1024 chunks, interspersed with unused space.

byte0 - 40954096 - 81918192..
descriptionlocations (1024 entries)timestamps (1024 entries)chunks and unused space

Chunk location[edit]

Location information for a chunk consists of four bytes split into two fields: the first three bytes are a (big-endian) offset in 4KiB sectors from the start of the file, and a remaining byte that gives the length of the chunk (also in 4KiB sectors, rounded up). Chunks are always less than 1MiB in size. If a chunk isn't present in the region file (e.g. because it hasn't been generated or migrated yet), both fields are zero.

byte0123
descriptionoffsetsector count

A chunk with an offset of 2 begins right after the timestamps table.

Chunk timestamps[edit]

The entries in the timestamp table are individual four-byte big-endian integers, representing the last modification time of a chunk in epoch seconds.

byte0123
descriptiontimestamp

Chunk data[edit]

Chunk data begins with a (big-endian) four-byte length field that indicates the exact length of the remaining chunk data in bytes. The following byte indicates the compression scheme used for chunk data, and the remaining (length-1) bytes are the compressed chunk data.

Minecraft always pads the last chunk's data to be a multiple-of-4096B in length (so that the entire file has a size that is a multiple of 4KiB). Minecraft does not accept files in which the last chunk is not padded. Note that this padding is not included in the length field.

byte012345..
descriptionlength (in bytes)compression typecompressed data (length-1 bytes)

There are currently three defined compression schemes:

valuemethod
1GZip (RFC1952) (unused in practice)
2Zlib (RFC1950)
3since a version before 1.15.1[keep it uncompressed](unused in practice)

The uncompressed data is in NBT format and follows the information detailed on the chunk format article; if compressed with compression scheme 1, the compressed data would be the same as the on-disk content of an Alpha chunk file. Note that chunks are always saved using compression scheme 2 by the official client.

If the value of compression scheme increases by 128, the compressed data is saved in a file called c.x.z.mcc, where x and z are the chunk's coordinates, instead of the usual position.

Migration and level.dat[edit]

How Minecraft looks when converting to the new format.

Beta 1.3 converts any 'old' chunks into region files before loading the world, rather than incrementally as they are loaded during play. As part of the conversion, level.dat is updated with TAG_Int('version') (note case) set to 19132. Beta 1.3 also introduces a new level name field, TAG_String('LevelName'). There's also introduced new TAG_Byte('Sleeping') in player TAG_Compounds - level.dat in singleplayer, [player name].dat in multiplayer that indicates whether is player in the bed. It has value 1(true) or 0(false). For the beta 1.8, TAG_Int('GameType') was added. In beta 1.9, TAG_byte('hardcore') was added.

The format of level.dat is otherwise unchanged.

Minecraft xbox one download size

See also[edit]

External links[edit]

References[edit]

  1. http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/mods-discussion/1346703-mod-mcregion-v5-optimized-saves-1-2_02#p2619453
  2. http://www.pcgamer.com/minecraft-dev-diary-new-block-magic-fiddles/

Software[edit]

The community has developed programs to work with region files:

NameDescriptionScreenshot
McRegionThis mod optimizes how chunks are stored on the disk, meaning pauses to load or save a chunk as the player moves around a world become much shorter and less noticeable.
Minecraft Region FixerThis tool is a python script that tries to fix problems in region files. It can find some typical errors (corrupted chunks, wrong located chunks, too many entities problems), and can fix these errors in various ways (deleting the chunks, replacing them with a backup copy, or relocating the chunk). This is a command-line application.
MCA2NBTA simple Unix command-line utility to convert a Minecraft .mca region file (in anvil format) to a directory with the same basename containing an uncompressed NBT file for each of its chunks.
Region ScannerA Java Edition 1.7.10 (only) Java command line utility to analyze and mass edit region files
Versions
  • Demo
  • PC Gamer Demo(Beta 1.3)
Development
Version history
  • Classic
  • Removed features
  • Mentioned features
Technical
  • Known bugs
  • Commands
  • Data values
.minecraft
Development resources
  • Region file format
  • Structure block file format
Legacy development resources
Multiplayer
Game customization
Retrieved from 'https://minecraft.gamepedia.com/Region_file_format?oldid=1701590'
  • Latest Version:

    Minecraft LATEST

  • Requirements:

    Windows XP / Vista / Windows 7 / Windows 8 / Windows 10

  • Author / Product:

    Mojang / Minecraft

  • Old Versions:

  • Filename:

    MinecraftInstaller.msi

  • Fortnite battle royale p. Details:

    Minecraft 2021 full offline installer setup for PC 32bit/64bit

Minecraft is a creative sandbox game that allows players to explore the procedurally generated colorful world, gather together, and build various objects and structures using different 3D blocks. Because of its focus on simplicity, discovery, randomized environments, freedom of choice, and ability to host incredibly large creations imagined by its players, after its release on PC in 2011 the game very quickly became not only one of the landmark titles that influenced the development of many future games, but also the commercially most successful video game of all time. As of late 2019, Minecraft Java Edition has managed on PC and other platforms to collectively be sold in over 176 million copies, surpassing even the legendary Tetris.
The game features a rich and expansive worlds that are rendered in a unique way – using large pixelated blocks made out of numerous materials. The players are encouraged to explore the world, gather materials, use crafting to create new objects or block types

Size Of Minecraft Pc

, and re-arrange the world according to their liking. After a decade on the market, the worlds made inside of Minecraft Classic Edition have attracted incredibly large fanbase, ranging from the young kids to seasoned gamers, all the way to seniors who all want to discover, create and share their exploits inside this fun world, from the small huts all the way to large cities and impossible structures that tower to the skies. With the years of constant development and expansion of in-game features, modern It allows users to express their ideas in a wide variety of ways.
If you want to experience Minecraft Classic on your PC, be assured that this game will run on it flawlessly no matter how old PC you have. It requires very modest system resources, making it perfect not only for home PCs but also for laptops.
Be aware that Minecraft
Minecraft for windows 10 download size

See also[edit]

External links[edit]

References[edit]

  1. http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/mods-discussion/1346703-mod-mcregion-v5-optimized-saves-1-2_02#p2619453
  2. http://www.pcgamer.com/minecraft-dev-diary-new-block-magic-fiddles/

Software[edit]

The community has developed programs to work with region files:

NameDescriptionScreenshot
McRegionThis mod optimizes how chunks are stored on the disk, meaning pauses to load or save a chunk as the player moves around a world become much shorter and less noticeable.
Minecraft Region FixerThis tool is a python script that tries to fix problems in region files. It can find some typical errors (corrupted chunks, wrong located chunks, too many entities problems), and can fix these errors in various ways (deleting the chunks, replacing them with a backup copy, or relocating the chunk). This is a command-line application.
MCA2NBTA simple Unix command-line utility to convert a Minecraft .mca region file (in anvil format) to a directory with the same basename containing an uncompressed NBT file for each of its chunks.
Region ScannerA Java Edition 1.7.10 (only) Java command line utility to analyze and mass edit region files
Versions
  • Demo
  • PC Gamer Demo(Beta 1.3)
Development
Version history
  • Classic
  • Removed features
  • Mentioned features
Technical
  • Known bugs
  • Commands
  • Data values
.minecraft
Development resources
  • Region file format
  • Structure block file format
Legacy development resources
Multiplayer
Game customization
Retrieved from 'https://minecraft.gamepedia.com/Region_file_format?oldid=1701590'
  • Latest Version:

    Minecraft LATEST

  • Requirements:

    Windows XP / Vista / Windows 7 / Windows 8 / Windows 10

  • Author / Product:

    Mojang / Minecraft

  • Old Versions:

  • Filename:

    MinecraftInstaller.msi

  • Fortnite battle royale p. Details:

    Minecraft 2021 full offline installer setup for PC 32bit/64bit

Minecraft is a creative sandbox game that allows players to explore the procedurally generated colorful world, gather together, and build various objects and structures using different 3D blocks. Because of its focus on simplicity, discovery, randomized environments, freedom of choice, and ability to host incredibly large creations imagined by its players, after its release on PC in 2011 the game very quickly became not only one of the landmark titles that influenced the development of many future games, but also the commercially most successful video game of all time. As of late 2019, Minecraft Java Edition has managed on PC and other platforms to collectively be sold in over 176 million copies, surpassing even the legendary Tetris.
The game features a rich and expansive worlds that are rendered in a unique way – using large pixelated blocks made out of numerous materials. The players are encouraged to explore the world, gather materials, use crafting to create new objects or block types

Size Of Minecraft Pc

, and re-arrange the world according to their liking. After a decade on the market, the worlds made inside of Minecraft Classic Edition have attracted incredibly large fanbase, ranging from the young kids to seasoned gamers, all the way to seniors who all want to discover, create and share their exploits inside this fun world, from the small huts all the way to large cities and impossible structures that tower to the skies. With the years of constant development and expansion of in-game features, modern It allows users to express their ideas in a wide variety of ways.
If you want to experience Minecraft Classic on your PC, be assured that this game will run on it flawlessly no matter how old PC you have. It requires very modest system resources, making it perfect not only for home PCs but also for laptops.
Be aware that Minecraft is released on PC in two versions – the original Java version that is offered here which is still actively developed, and a separate Xbox version that is available from the Windows 10 Store. The major advantage of the Windows Store version is that it can establish a crossplay online connection to players who enjoy Minecraft Java Version on other non-PC platforms.
Modes of Play
  • Survival – The original mode which tasks players to organize their living space and gather enough resources during the day so that they could defend themselves during the dangerous nights.
  • Creative – The most popular Minecraft mode that promotes exploration and creativity. Express yourself without limits.
  • Hardcore – Hard version of the Survival mode. You have only one life, so make it count.
  • Spectator – Fly around the world made by other players.
  • Adventure – Story mode that features narrative missions, objectives, and other tasks.

Main Features

  • Landmark creative sandbox game that broke all the sales records.
  • Explore and customize your own virtual world using building blocks.
  • Ignore restrictions of physics, create everything from small objects to cloud-reaching cities.
  • Play solo or together with friends.
  • Browser countless creations made by players all around the world.
  • Complex sandbox editor.
  • Play in one of five included modes, from solo play to multiplayer.
  • Modest system requirements.
  • Requires the presence of Java.
  • Free to try under the Shareware license as a 5-day limited demo.

System Requirements
Who is the founder of fortnite.

  • CPU: Intel Core i3-3210 3.2 GHz / AMD A8-7600 APU 3.1 GHz or equivalent
  • RAM: 4GB
  • GPU (Integrated): Intel HD Graphics 4000 (Ivy Bridge) or AMD Radeon R5 series
  • GPU (Discrete): Nvidia GeForce 400 Series or AMD Radeon HD 7000 series with OpenGL 4.4
  • HDD: At least 1GB
  • OS: Windows: Windows 7 or newer

Also Available: Download Minecraft for Mac





broken image