Map exchange string format: Difference between revisions
Line 59: | Line 59: | ||
| An dictionary of [[#Autoplace_Control|Autoplace Controls]], with string keys, where the key represents the resource name. Factorio doesn’t care what order this dictionary is in, but it always alphabetizes during export. Vanilla has seven resources: [[Coal|coal]], [[Copper ore|copper-ore]], [[Crude oil|crude-oil]], [[Enemies|enemy-base]], [[Iron ore|iron-ore]], [[Stone|stone]], and [[Uranium ore|uranium-ore]]. Unknown ores are ignored and missing ores are set to their defaults. | | An dictionary of [[#Autoplace_Control|Autoplace Controls]], with string keys, where the key represents the resource name. Factorio doesn’t care what order this dictionary is in, but it always alphabetizes during export. Vanilla has seven resources: [[Coal|coal]], [[Copper ore|copper-ore]], [[Crude oil|crude-oil]], [[Enemies|enemy-base]], [[Iron ore|iron-ore]], [[Stone|stone]], and [[Uranium ore|uranium-ore]]. Unknown ores are ignored and missing ores are set to their defaults. | ||
Factorio 0.16.x adds addition terrain related autoplace features: desert, dirt, grass, sand, trees. With the exception of trees, these resources ignore their richness and as such are not configuration using the map gen GUI, and always have a richness value of 3 ("Regular"). | Factorio 0.16.x adds addition terrain related autoplace features: desert, dirt, grass, sand, trees. With the exception of trees, these resources ignore their richness and as such are not configuration using the map gen GUI, and always have a richness value of 3 ("Regular"). | ||
|- | |||
| [[Data types#byte|byte]][2] | |||
|- TODO | |||
| 0.16.0 | |||
| TODO... | |||
|- | |- | ||
| [[Data types#int|uint]] | | [[Data types#int|uint]] |
Revision as of 00:22, 16 April 2018
This is a technical description of the map exchange string format, used to share map generating configurations with other users. This format is also used to store these settings inside save files for future chunk generation.
Factorio line wraps the entire map exchange string after 57 characters during export (55 code characters + '\r\n', which is fairly standard), but ignores all whitespace during import. The outer layer of the map exchange string format includes three angle brackets on either side: ">>>" and "<<<", which must be present for Factorio to accept the string. Between those two tokens is the map exchange data, encoded using base 64 as defined by RFC 4648 (or 3548, 2535, 2045, 1421, et al).
See the page on data types for an explanation of the different types of data used in this document.
Factorio 0.16 and Beyond
Beginning with Factorio 0.16.0, two important changes are made to the encoding of the map exchange string data:
- The map exchange data inside the Base 64 encoding is further encoded using the zlib compression algorithm. The best way to determine the encoding is to first attempt to parse the map exchange string using zlib, and if that fails, try again using the 0.14+ rules.
- All numeric data fields longer than 1 byte are encoding using a custom-built variable length integer format described by Factorio developer Rseding at Data_types#Space_Optimized. For appropriate Factorio versions, all such data types (int, short, dict, etc) used in this document represent values encoded using this approach, unless otherwise specifically noted.
After taking these considerations into your codec, proceed using the 0.14+ rules below.
Factorio 0.14 and Beyond
This is the base map exchange string format for all Factorio versions 0.14.x and greater.
Type | Description |
---|---|
short[4] | The version string of Factorio that generated this string, used to determine encoding format. This field is never space optimized. |
byte[*] | Map Gen Settings. Variable length. See linked section for information on how to parse. |
byte[*] | 0.15.x Map Settings. If present, this chunk consists of the remainder of the data (minus the checksum). |
int | CRC32 checksum of all preceding data, as defined by ANSI X3.66 / FIPS 71 / ITU-T V.42 (the same one used by zlib, ethernet, etc.) |
Map Gen Settings
This format matches MapGenSettings.
The "From" column denotes the earliest Factorio version in which that field is present. Most of them are currently labeled as "≤0.14", which means the field was present from at least 0.14. If you have more specific information, please edit this page!
Type | LUA key | From | Description |
---|---|---|---|
byte | terrain_segmentation | ≤0.14 | Water frequency. |
byte | water | ≤0.14 | Water size. |
dict<string, byte[3]> | autoplace_controls | ≤0.14 | An dictionary of Autoplace Controls, with string keys, where the key represents the resource name. Factorio doesn’t care what order this dictionary is in, but it always alphabetizes during export. Vanilla has seven resources: coal, copper-ore, crude-oil, enemy-base, iron-ore, stone, and uranium-ore. Unknown ores are ignored and missing ores are set to their defaults.
Factorio 0.16.x adds addition terrain related autoplace features: desert, dirt, grass, sand, trees. With the exception of trees, these resources ignore their richness and as such are not configuration using the map gen GUI, and always have a richness value of 3 ("Regular"). |
byte[2] | |||
0.16.0 | TODO... | ||
uint | seed | ≤0.14 | Map seed. This field is never space optimized. |
none | shift | ≤0.14 | This field isn't present in the binary format! But it is part of the LUA structure - by default it's derived from the map seed. I'll slap the algorithm here soon(tm). |
uint | width | ≤0.14 | Map width. |
uint | height | ≤0.14 | Map height. |
byte | starting_area | ≤0.14 | Starting area size. |
TODO | starting_points | 0.16.16 | TODO... |
boolean | peaceful_mode | ≤0.14 | Peaceful mode. Enabled if set to 1, disabled otherwise. |
0.15 Map Settings
All of the following data fields (until noted at the end) have a special encapsulation format. Preceding each value is a single byte that states whether or not the value is present. If the byte is equal to zero, then the field value is not present. Otherwise, then the field's value follows.
In the LUA structure, this information is stored in the "game.map_settings" table, which is created by the "MapSettings" prototype. Each section in the table below represents a nested sub-table in "map-settings", where the LUA key listed is the key of the table, and all subsequent fields are part of the sub-table. See data/base/prototypes/map-settings.lua for a description of all attributes (some of that information has now been copied to this page).
Fields marked with a check (✓) in the "GUI" column are configurable in the new game map generator GUI.
Type | GUI | LUA key | Description |
---|
Difficulty Settings
This information is instead stored in the LUA structure at game.difficulty_settings, which is prototyped by DifficultySettings. These fields do not use the special encapsulation method noted above.
Type | GUI | LUA key | Description |
---|---|---|---|
byte[10] | ✓ | difficulty_settings | Difficulty Settings |
byte | ✓ | recipe_difficulty | Recipe difficulty. 0 for Normal, 1 for Expensive. |
byte | ✓ | technology_difficulty | Technology difficulty. 0 for Normal, 1 for Expensive. |
double | ✓ | technology_price_multiplier | Technology price multiplier. |
Note: these values are typically defined using the constants at defines.difficulty_settings.
Autoplace Control
See the page on world generation for more information on frequency, size, and richness.
Type | LUA key | Description |
---|---|---|
byte | frequency | Ore frequency. |
byte | size | Ore size. |
byte | richness | Ore richness. |
Map Gen Size
These are the values used for the frequencies, sizes, and richnesses of ores, water, and the starting area size. None is a valid value for all three options.
0 | None / None /None |
1 | Very Low / Small / Poor |
2 | Low / Small / Poor |
3 | Normal / Medium / Regular |
4 | High / Big / Good |
5 | Very High / Big / Good |
Each of the values in a triplet (such as "low", "small", and "poor") are synonymous.