地图修改:修订间差异

本页面所适用的版本可能已经过时,最后更新于1.12
(文本替换 - 替换“[[Category:”为“[[分类:”)
无编辑摘要
 
第1行: 第1行:
{{version|Timeless}}
{{version|1.12}}
游戏的[[ 地图]] 是由若干层位图和描述地图内容的文本文件组成的。相关的文件位于{{path|map/}}
{{需要翻译|译者=霜泽图书馆}}
== default.map ==
The [[map|map of the game]] is primarily changed within the {{path|map/}} folder. This includes provinces and details about them as well as the cosmetic appearance of the map: trees, terrain, cities.
文件''default.map''涉及组成地图的位图文件和文本文件。一个基本的版本如下所示:
__TOC__
{{path|map/*.bmp}} files are referred to as bitmaps. Commonly these are used for the cosmetic appearance of the map, aside from the provinces bitmap.<br/>
{{path|map/*.csv}} files are CSV tables. These may be edited within a text editor or a table editor such as Excel or OpenOffice. It can be preferable to open these with text editors for greater performance.


<pre>
== Notes ==
definitions = "definition.csv"
* '''Due to [[#BMP format|how the game reads BMP files]], many image editors such as Paint.net or Microsoft Paint can't be used for most bitmap files''', with only provinces and world_normal working. Photoshop and GIMP are alternatives that will always work, but the mode should never be changed from indexed when using them. [[#fix_map|If a map was saved incorrectly, the later section on details of the BMP format provides an easy way to correct the map.]]
provinces = "provinces.bmp"
* When exporting the map in GIMP, '''"do not write color space information" must be checked on'''.
positions = "positions.txt"
* [[Modding#Advantages of using debug|Debug mode]] turned on via launch settings is essentially necessary for map modding. Without debug mode, {{hover|The only exception is 'MAP_ERROR: Palette in rivers.bmp is probably not correct'|any error marked with MAP_ERROR}} will cause the game to fail to load and it wouldn't be possible to open the [[nudger]] within the main menu: some map errors may lead to the game being impossible to open in singleplayer.
terrain = "terrain.bmp"
* Some of the errors marked with MAP_ERROR may not appear in the error log when it opens during the main menu loading. The error log after selecting a country in singleplayer will contain all of the map errors for sure.
rivers = "rivers.bmp"
* Using the [[nudger]] can make the map editing much easier, but the tool is still unstable. At times it can be better to do manual editing, but the nudge is still important to know of and use.
heightmap = "heightmap.bmp"
* The [[nudger]] will export files in the [[Modding|User directory]] directly, such as the {{path|custom=1|Documents/Paradox Interactive/Hearts of Iron IV/}} folder (Default location within Windows), with the folders of {{path|custom=1|/history/}}, {{path|custom=1|/map/}}, and {{path|custom=1|/localisation/}} potentially being created inside of that folder. These will be loaded by default in base game as well if left there. Additionally, these [[Modding#Loading mods|have lower priority]] than the mod files: if a mod is set to unload previously-loaded files within a generated folder via [[replace_path]] or contains a copy of the edited file, editing via the nudger may appear to not show changes. However, the outputs will still be created, and moving the files to the mod files and making them get loaded – such as via the 'update'/'load' button in the nudger, depending on the menu, or by restarting the game – will still work as intended.
tree_definition = "trees.bmp"
* [[replace_path]] can be used to fully unload the contents of a single folder (but not subfolders) that get indexed at the main menu loading. This can be used to ensure that none of the base game's strategic regions or states will appear in the loaded files when the mod is enabled.
continent = "continent.txt"
* {{path|map/default.map}} can be used in order to change the file used for a certain purpose, such as the name of the provinces bitmap. Within this article, it'll be assumed that {{path|map/default.map}} is unchanged, with the filenames being the same as in base game.
adjacency_rules = "adjacency_rules.txt"
=== BMP format ===
adjacencies = "adjacencies.csv"
{{Hatnote|This section is primarily the technical details on why the first two notes are necessary to be followed, as well as explaining some terminology used later in the article such as 'colourmaps' and '8-bit'/'8 bitdepth'/'8 bpp'.}}
#climate = "climate.txt"
There are 3 primary types of BMP files used in Hearts of Iron IV: 8-bit greyscale, 8-bit indexed, and 24-bit RGB. A BMP file may have compression, but Hearts of Iron IV requires that absolutely none is present and the rest here will assume it being off. No compression means that each pixel is assigned the same amount of bits.<br/>
ambient_object = "ambient_object.txt"
Bitdepth is the amount of bits per pixel, sometimes shortened as -bit (e.g. 8-bit) or bpp. The amount of bits per pixel assigns the total amount of possible colours in the file: bitdepth of 8 means <math>2^8 = 256</math> colours in the file, while bitdepth of 24 means <math>2^{24} = 16777216</math> different possible colours. As the amount of bits per pixel, '''wrong bitdepth on a file can be detected due to a large filesize difference''' between the mod's and base game's versions of an image. <br/>
seasons = "seasons.txt"
Some image editors, e.g. GIMP, don't explicitly have bitdepth as an option. In those, the bitdepth can be set by limiting the amount of possible colours. The RGB image mode allows each pixel to have 256 values for red, green, and blue colours, for a total of <math>256^3 = 2^{24}</math>, making a bitdepth of 24. If the image or a layer contains an alpha channel (i.e. making transparency allowed), which can be toggled on accidentally when creating a second layer as an overlay, the option of transparency adds even more possible colours, up to <math>256^4 = 2^{32}</math>, making a bitdepth of 32. If the image mode is set to Greyscale, then there are a total of 256 possible colours each pixel can be, making <math>2^8</math> total colours and a bitdepth of 8. With the indexed image mode, the amount of possible colours depends on the size of the colourmap/colour table and can be anything from 2 to 256.
 
In more detail on each image mode used:
* 24-bit RGB is used for <code>provinces</code> and <code>world_normal</code> bitmaps. Every pixel is assigned a direct colour value in each of the three colour channels, which gets read by the game to interpret it; either to assign province IDs in case of the former or to assign the vector proportions in case of the latter.
* 8-bit greyscale is used for the <code>heightmap</code> bitmap. Every pixel is assigned a value from 00 to FF that decides on the brightness of it and directly translates to height by the game. '''Paint.net and MS Paint cannot be used to edit this bitmap''', instead saving in 8-bit generates a colourmap as in the mode below, where the values don't strictly correspond to the brightness.
* 8-bit indexed is used for every other bitmap: <code>cities</code>, <code>rivers</code>, <code>terrain</code>, and <code>trees</code>. This mode creates a colourmap (called colour table in Photoshop), which is a list of 256 colours arranged in order from 00 to FF. Each pixel is assigned a value from 00 to FF, which directly corresponds to an entry on the colourmap. '''The game checks this value on each pixel rather than the colour''' and picks an entry based on the numeric value of that ID. Due to this, in order for the file to work correctly, the colourmap cannot be altered in any shape or form. For example, the image mode cannot be changed from Indexed to another one, since the image editor will not be able to preserve the order in memory, generating a new order after the image mode is set back to Indexed. For the same reason, '''Paint.net and MS Paint cannot be used to edit these bitmaps''', since they generate a completely new colourmap when saving rather than preserving it for the entirety of editing.<ref>Paint.net automatically generates the colourmap: https://forums.getpaint.net/topic/10989-bitmap-colormap-editing/?do=findComment&comment=181320</ref>
 
Since neither bitmap supports 32-bit, especially for 8-bit Indexed ones that cannot be easily converted back to how they're intended to be, adding a new layer may break how the map will be interpreted. Instead, it's possible to keep another image within the mod files as a backup and, when needed to use a layer as an overlay, edit the backup rather than the one interpreted by the game. After finishing the edits, it's possible to copy the contents of the backup inside of the image editor and paste them into the file interpreted by the game: that way it's possible to copy the colour of each pixel without copying over the rest of the file's format.
 
BMP files contain a DIB header at the beginning that assigns image file information. The game is set-up to expect BITMAPINFOHEADER as the format of the header for all BMP files. This depends on the image editor and most should save within this one by default.<br/>
However, other formats for the header exist: the most common one to accidentally save in is BITMAPV5HEADER, written by the GIMP foundation. This is used in order to add the ICC information, characterizing in which colour space the image has to be read in. ''Hearts of Iron IV's engine is not set to recognise this header''. For this reason, '''when exporting in GIMP, "do not write colour space information" must be checked on''' in order to save with BITMAPINFOHEADER rather than BITMAPV5HEADER.
 
=== Correcting a broken map ===
{{anchor|fix_map}}
As it's possible to edit an 8-bit file without palette restrictions by keeping a separate 24-bit copy of the file, the same can also be used to correct a file which had its colourmap reset or which was erroneously saved in a higher bitdepth. To do so, this checklist can be followed:
* Change the filename of the mod's broken bitmap. For this example, {{path|custom=1|map/terrain_broken.bmp}} will be used (with {{path|custom=1|map/terrain.bmp}} as the original file), but the same can be applied to every other bitmap.
* Copy the base game's according {{path|custom=1|map/terrain.bmp}} file into the mod. If the mod's map had its dimensions changed, this image should be resized to the proper ones, otherwise it shouldn't be touched.
* Open both {{path|custom=1|map/terrain_broken.bmp}} and {{path|custom=1|map/terrain.bmp}} within GIMP or Photoshop. '''Paint.net or MS Paint will not work.'''
* Within the image editor, select everything in {{path|custom=1|map/terrain_broken.bmp}} (using ctrl+A or Select -> All) and copy it to the clipboard.
* Paste the contents of the file into {{path|custom=1|map/terrain.bmp}}.
* Export the opened {{path|custom=1|map/terrain.bmp}} file with correct settings, disabling writing colour space information if using GIMP.
* Optionally delete the {{path|custom=1|map/terrain_broken.bmp}} file.
 
=== Coordinate system ===
Since the map is a 3D object, there are X, Y, and Z positions using a [[wp:Cartesian coordinate system|typical Cartesian coordinate system]], which are commonly referred to in a multitude of map files. For disambiguation, these are the coordinates that the game uses:
* A single X coordinate is equivalent to a single pixel within the provinces bitmap horizontally. The horizontal edges of the map are at 0, and it goes left-to-right (or west-to-east). Note that the map loops horizontally.
* A single Y coordinate is equivalent to a value of 10 (in decimal) within the heightmap. A Y position of 0 is equivalent to pure black on the heightmap, while a Y position of 25.5 is equivalent to pure white on the heightmap. The water level, for example, is located at 9.5 by the Y position<ref name = "water_height"><code>static const float  WATER_HEIGHT = 9.5f;</code> in {{path|gfx/FX/constants.fxh}}</ref>.
* A single Z coordinate is equivalent to a single pixel within the provinces bitmap vertically. The lower (or southern) edge of the map is at 0, and it goes down-to-up (or south-to-north). '''Note that most image editors have it the other way around''': the position at 0 by the axis would be at the top and it going up-to-down. When wanting to know the Z coordinate, it can be useful to change the coordinate system that the editor uses (if possible) or temporarily flip the image upside down.
 
== Quick overview ==
These files in the map folder are common to edit:
* {{path|map/provinces.bmp}} is used as a map assigning the province borders.
* {{path|map/definition.csv}} is used in order to assign in-game province information, including terrain, continent, and the coastal status. This does not change the graphical appearance.
* {{path|map/terrain.bmp}} is used as the terrain map, assigning textures to the specified positions. This does not change the actual province terrain, just the appearance.
* {{path|map/heightmap.bmp}} is used as the heightmap, assigning a height for each pixel on the map. This is also used to put areas underwater.
* {{path|map/world_normal.bmp}} is used as the normal mapping, assigning a slope to each pixel that gets used in lightning calculates. This is used to create more accurate shadows.
* {{path|map/terrain/colormap_rgb_cityemissivemask_a.dds}} is used to create an overall colouring of the world and to change the opacity of city lights. '''Oddities about the world's colouring typically come from this file not being adjusted'''.
* {{path|map/terrain/colormap_water_0.dds}} is used to create a colouring of the world oceans.
* {{path|map/buildings.txt}} is used to assign the positions of building models and to assign the neighbouring sea province to the buildings that require it, i.e. naval bases and floating harbours. '''This can cause a game crash if left unedited while adding new states or provinces.'''
* {{path|map/unitstacks.txt}} is used to assign the information regarding the position and rotation of unit models and positions of unit models.
* {{path|map/rivers.bmp}} is used to assign rivers that appear in the world.
* {{path|map/trees.bmp}} is used to assign tree models that appear in the world.
* {{path|map/airports.txt}} and {{path|map/rocketsites.txt}} are used to assign the province sites for each state where airports and rocket sites would be built. '''This will cause a game crash if left unedited while adding new states.'''
* {{path|map/supply_nodes.txt}} and {{path|map/railways.txt}} are used to assign the supply nodes and railways at the game's start.  '''This will cause a game crash if unedited on a new map.'''
* {{path|map/adjacencies.csv}} is used to create special relationships between pairs of provinces, whether it's making the border impassable or creating a passage without a border.
* {{path|map/adjacency_rules.txt}} is used to establish more complex rules for province relationships, primarily in regards to making straits that can be passable or not depending on circumstances.
* {{path|map/ambient_object.txt}} is used to create models that are constantly present on the world map. '''This includes the base game's world borders in the north and the south.'''
* {{path|map/cities.txt}} is used to assign different city models to different parts of the world, by default using {{path|map/cities.bmp}} as the map.
 
== State modding ==
{{Main|State modding}}
States are defined within {{path|history/states/*.txt}} files, with information about the states: provinces containing them, the state category, the starting buildings and owner.<br/>
The nudger works for editing states, however, there are several issues:
* If a state's name contains any special character requiring more than one byte to represent in UTF-8 (e.g. any letters outside of the English alphabet), the nudger will crash when trying to create one.
* Every quote within the state's history file will get removed if a nudger edits it. This can break DLC checks (e.g. <code>has_dlc = "Waking the Tiger"</code>), present in base game Turkish or Chinese states.
Additionally, note that the nudger dynamically updates strategic regions with states: a newly-created state will not have its provinces assigned to strategic regions and that will have to be done via the nudger. Since strategic regions are assigned for each province individually, deleting the strategic region outputs within the user directory's {{path|map/strategicregions/}} folder may work, as long as the strategic region borders don't need to be adjusted, as all provinces of one state must be within the same strategic region.
 
== Strategic regions ==
{{Main|Strategic region modding}}
[[Strategic region|Strategic regions]] are defined within {{path|map/strategicregions/*.txt}} files, where provinces are added to them individually. A province ''must'' have a strategic region. Otherwise, many interactions with that province can cause a game crash, sometimes appearing before the game can launch. The strategic regions are used for ships and airforce as regions where they can be assigned, but they also serve for assigning weather. A naval strategic region may also have [[#Provincial terrain|naval terrain]] assigned with <code>naval_terrain = terrain_name</code>.
=== Weather ===
{{See also|Nudger|Weather|section=1}}
Each strategic region has weather defined in periods, as
<pre>weather={
period={
between={ 0.0 30.11 }
temperature={ -6.0 12.0 }
no_phenomenon=0.500
rain_light=1.000
rain_heavy=0.150
snow=0.200
blizzard=0.000
arctic_water=0.000
mud=0.300
sandstorm=0.000
min_snow_level=0.000
}
   }
}</pre>
* <code>between = { ... }</code> decides in which period the weather applies: both dates within the definition of the period are included within the period; the first number is the day, the second is the month; the count for days and months starts from 0 rather than 1.
* <code>temperature = { ... }</code> assign the maximum and minimum temperatures for the period.
Most of the lines decide the chance for each province in the strategic region to have that weather type, assuming that the chance <code>no_phenomenon</code> evaluates as false. Multiple weather types can happen at the same time, and weather is calculated daily.<br/>
<code>min_snow_level</code> decides the visual appearance of snow in the region. Usually set to 0.1 in the particularly snowy periods such as winter in Northern Scandinavia.
 
Additionally, the {{path|map/weatherpositions.txt}} file decides the ''position'' of weather objects such as the clouds. A single entry in the file has the following layout:
<pre>strategic region ID;X position;Y position;Z position;size</pre>
For example, <code>1;2781.24;9.90;1571.49;small</code> means that the strategic region with the ID of 1 has a small weather object in the specified position.<br/>
The size only has 2 values: small and large. Multiple definitions or none at all may be present for the same strategic region, however, there should be at least one definition in the file for both large and small objects to avoid a game crash.
 
Weather is best generated with nudger in the strategic region menu.


# Define which indices in trees.bmp palette which should count as trees for automatic terrain assignment
== Provinces ==
tree = { 3 4 7 10 }
{{See also|Nudger|Database|section=1}}
</pre>
There are two files related to the province definitions:
* {{path|map/provinces.bmp}}, which decides how the provinces are placed on the map.
* {{path|map/definition.csv}}, which decides the exact details about the province: ID, RGB value to link to the map, coastal status, terrain.


所有的文件路径可以改变,但是需要与map/文件夹相关。接下来的部分中提到的都是默认文件路径。 '''default.map''' 的名字本身是硬编码的(不要改动)。
The provinces bitmap is saved as a 24-bit RGB file. Saving in 32-bit will result in a 'We do not support bitdepth at 32' error, resulting in a crash on startup. The province bitmap being saved wrong (Such as the prior 32 bitdepth or being the wrong format renamed to BMP) will result in 'X4008: floating point division by zero' errors. Due to proportions of other map files, '''both length and width have to be a multiple of 128'''. Due to the engine limitations, the total area of the file in pixels cannot exceed 13 107 200.


地图的宽度和高度由provinces.bmp决定,并且都要是256的倍数。下列文件也需要有相同的分辨率:
An unused colour for the bitmap can be picked by using the database menu within the nudger. However, considering the sheer amount of possible colours, randomising a colour using a site such as [https://www.random.org/colors/hex random.org] can also be used, with a chance of overlap being extremely low.<br/>
* heightmap.bmp
{{anchor|provincesfixed}}If the province definitions are incomplete or incorrect, the game creates a 'corrected' copy of this file in the [[Modding|user directory]] to replace the CSV table for province definitions, with any incomplete or missing province definitions filled in, as {{path|map/definition.csv.fixed}} and other copies of the file in that folder. It might be necessary to delete this copy after making changes to the original file.<ref>[[forum:1153223|HoI 4 - map/definition.csv in user dir is used without validation]]</ref><br/>
* provinces.bmp
Both of these can be used to speed up province creation by painting random colours on the map, then letting the game generate the CSV table which'll be adjusted manually once ported over to the mod.
* rivers.bmp
* terrain.bmp


==省份地图(Province Map)==
The previously-mentioned corrected copy of the province definition within the user directory would contain every province definition from the mod's definition.csv alongside every colour that's present on the bitmap but doesn't have a definition, which'll have a default entry as a land province with no continent and unknown terrain. This can be used with an image editor to locate any unintended colours in the provinces.bmp file. These can be the result of picking a wrong colour or of anti-aliasing being turned on when editing the map. To locate them, one can choose the colour that the newly-generated province has and paint it over a spot that's safe to paint (Such as a large sea province or a corner of the map), and then use the colour select tool with 0% tolerance/0 threshold (name for the option depends on the image editor) in order to select it. In image editors, this is commonly either a separate option (Such as in GIMP) or an option within the magic wand tool for it to have a global flood mode (Such as in Paint.net).<br/>
'''definition.csv''' 包括了游戏能够识别的[[省份]],它的内容以下列方式排列:
After having located the province in question, the question of what to do with it is left up to the modder: it can be made into a separate province entirely (and so should be assigned to a state and strategic region), possibly altering its borders to fit better, or it could be removed entirely from the provinces.bmp file. In either of these cases, the spot that has been made in order to find the province should be reverted to its initial state.


An entry within the {{path|map/definition.csv}} follows the specified format:
<pre>Province ID; R value; G value; B value; Province type (land|sea|lake); Coastal status (true/false); Terrain; Continent (integer)</pre>
Example definition of these include the following:
<pre>
<pre>
province id; r value; g value; b value; province type (land/sea/lake); coastal (true/false); terrain (plains/hills/urban/etc); continent (int)
7;212;179;179;sea;true;ocean;0
114;40;15;15;land;false;plains;1
260;170;235;235;land;true;urban;1
</pre>
</pre>
The RGB values for each province should be unique in order for them to be identifiable on the bitmap and are integers on the scale from 0 to 255. [[#Continents|The continent]] must be an integer that represents a continent. For sea provinces, it must be kept at 0, while for lakes it ''may'' be kept at 0.<br/>
[[#Terrain|Terrain]] is defined for each province individually here. This ''does not'' change the appearance of the province, just the terrain it's assigned, which changes naval or land combat. For lake provinces, terrain must be 'lakes' while for sea provinces it must be 'ocean'.<br/>
In here, the coastal status is used for both seas and land provinces. For land provinces, it means that a border with a sea province (not a lake), and for sea provinces it means that a border with a land province. This is used for determining, for example, where naval bases can be built and where they can't. If bitmap and province definition disagree on whether or not a province is coastal, such as if a land province is specified as non-coastal but still borders sea provinces or vise-versa, bitmap's results will be preferred. This does mean that there is no reason to specify the coastal status within the province definition, and it remains a leftover from before 1.11.
{{Anchor|provinceorder}}'''Province IDs should go in order'''. While a gap in province IDs will not necessarily crash the game, it will instead create a different problem: each province after the gap will take on the properties of the next province by ID other than the colour on the bitmap. For example, if province 23 doesn't exist, province 24 will take on the terrain, type (land|sea|lake), coastal status, and continent of province 25, which will copy from province 26 in turn and so on. This can cause highly unintended behaviour if not crashes, so it's best to not have any province gaps: if a province is to be deleted, another one must fill the gap, such as the last province by ID.
[[File:HOI4 NSB map explanation.jpg|frameless|right]] Hearts of Iron IV has a limit on province displaying. No more than 65536 different province borders can be displayed at the same time before an integer overflow causes the in-game engine to stop displaying any additional ones. In-game, this is usually hit at about 21000 provinces. In other words, '''province amount should be kept low''', with the base game's roughly 13000-14000 provinces being an amount to aim for. More can cause the game to run more slowly and unstably. If a province borders another province several times in a disjointed manner, such as in the attached image, each one counts as a separate border.<br/>
These disjointed island provinces may also cause a game crash if they're ''too'' disjoined with large distances between them. This is not anything to worry about with regular provinces, but if two share a colour by accident, this may happen.<br/>
Province borders are also not drawn between provinces that are on land and those that are in a sea or a lake, according to definition.csv. If there is a particular spot or series of spots where provinces don't work, it might also be caused by a wrong province type assignment in definition.csv.
Additionally, these errors are common to encounter:
* "Map invalid X crossing. Please fix pixels at coords": Four provinces share a common corner. The game connects the bottom left and the top right provinces but this situation is confusing to the player and should be avoided. Keep in mind that the map loops horizontally, so this X crossing may be right at the edge of the province bitmap. The coordinate system used in the coordinates is the more traditional left-to-right then down-to-up, rather than [[#Coordinate system|the one used by the game in other circumstances]].
* "Province X has TOO LARGE BOX. Perhaps pixels are spread around the world in provinces.bmp": The province has a width/height of more than 1/8th of the total map width/height. This might be an indication that two provinces inadvertently share a colour, but it may also be a large province. Large provinces aren't treated stably by the game and should be avoided.
* "Province X has only N pixels": The province consists of no more than NGraphics.MINIMUM_PROVINCE_SIZE_IN_PIXELS ({{Read define|NGraphics|MINIMUM_PROVINCE_SIZE_IN_PIXELS}} by default). This is likely too small to be easily usable by the player.
* "Prov 12345 has no continent": There are two common causes for the error.
** The province is a land province, yet its continent ID is left at zero. '''This also includes the auto-generated province definitions''', present if a colour is found that isn't present in the definition file. If the province doesn't exist in the regular provinces.csv file, [[#provincesfixed|check the "fixed" variant created by the game in user directory.]]
** The province entry doesn't end with the Windows-style CRLF line ending. If every single province continent is broken, this is a sign that the line break is improper in the file (The Unix LF format is a common cause, as certain programs will change it in .csv files). The exact process of conversion to CRLF depends on the text editor. For example: in Visual Studio Code, this is changed with the bottom bar; in Notepad++, this is changed with the "EOL conversion" in the Edit menu; in Sublime Text, this is changed with the "Line endings" in the View menu.
* "Bitmap and province definition disagree on whether or not province 12345 is coastal. Bitmap adjacency result will be prefered. ": This error has these common causes:
** Exactly what the error states: the province is a coastal land province yet it's marked as non-coastal within {{path|map/definition.csv}} or vise-versa. Adjust the province definition accordingly.
** There's a missing province ID somewhere earlier in the file, which offsets the province definitions from their intended colours later on in the file. This is typically the case if there is a large quantity of such errors and the province definition matches up with the coastal status. A broken-looking terrain map mode can also be an indicator of this issue. This can be checked by comparing the difference between the province ID and the line number where it is defined: if the definition for the province 0 exists, the line number and the province ID must have a difference of 1.
* "Province X has no pixels in provinces.bmp": There are two common causes for the error, depending on whether there are any pixels with that colour in the bitmap, [[#provincesfixed|which can be checked using a colour select tool within an image editor]].
** The colour within the province's definition has no pixels in the provinces.bmp. This may be a sign that the wrong colour has been used for the province or that the entry remains while the province has been erased. Ensure that there are no new provinces in the "fixed" definition generated by the game that may be intended to be the pixelless province; otherwise remove the province definition, with one another province definition to fill the gap since there can be no province ID gaps.
** There are several provinces with the same colour on the bitmap. If this is the case, the game will assign each pixel of the colour to only one of the provinces, leading the other with no pixels. If this is the case, change the colour of the second province if they're intended to be separate, otherwise remove one of the definitions while still making sure to have one another province definition to fill the gap. This may commonly, though not necessary, occur together with a TOO LARGE BOX error for the other province.
=== Continents ===
Continents are defined within the {{path|map/continent.txt}} file within the <code>continents = { ... }</code> table. The continents have several uses in-game:
* Used for a [[Conditions#is_on_continent|state-scoped trigger]] checking the continent.
* Used for assigning [[AI modding#AI areas|AI areas]] for a variety of AI strategies.
* Used for assigning a [[Portrait modding|set of randomly-generated portraits]] to a country if there is not a country-specific one defined.
The continents block is a simple list of continents. The IDs are assigned in the order defined.


省份id和RGB值必须是独一无二的。有效的地形类型定义在{{path|common/terrain}} 。大洲是一个从1起的到[[#Continents| 大洲列表]]的索引。例如:
All land provinces must belong to a continent to avoid errors. The continents are assigned in {{path|map/definition.csv}}, also possible to apply via the Database menu in nudger. Continents do not need to follow state borders. <br/>
<pre>
These continents exist in base game:
7;212;179;179;sea;true;ocean;1 - a coastal sea province
{| class="wikitable" width="100%"
114;40;15;15;land;false;plains;1 - an inland plains province
! width="3%" | ID
260;170;235;235;land;true;urban;1 - a coastal urban province
! width="10%" | Internal name
</pre>
! width="10%" | Localised name
如果省份定义不完全,游戏会在用户目录里创造一份此文件的拷贝,任何不完全的或者遗漏的省份定义都会写入。在对原来的内容进行修改之前,删除这个拷贝或许是必要的。<ref>[[forum:1153223]]</ref>
! width="77%" | Notes
|-id="europe"
|1
|europe
|Europe
|Includes Cyprus. The border between Europe and Asia runs in the Ural mountains, cutting states such as Kalmykia and Archangelsk in half.
|-id="north_america"
|2
|north_america
|North America
|Erroneously includes 2 provinces in Albania's North Epirus.
|-id="south_america"
|3
|south_america
|South America
|This also includes Central America (up to Guatemala/Belize, including these) and the Caribbean.
|-id="australia"
|4
|australia
|Australia
|This ''only'' includes the Australian mainland, New Zealand, as well as the islands and archipelagos of Papua, Tasmania, Bismarck, Solomon Islands, and French Polynesia. The rest of the Pacific islands are Asian.
|-id="africa"
|5
|africa
|Africa
|The Suez canal is considered the border: the entire state of Sinai is in the Middle East.
|-id="asia"
|6
|asia
|Asia
|The border with the Middle East runs cutting the states of Herat and Baluchistan in half, while others are almost entirely contained in one or the other.
|-id="middle_east"
|7
|middle_east
|Middle East
|The border with Europe in Caucasus Mountains cuts Abkhazia, Kabardino-Balkaria, North Ossetia, Azerbaijan, and Istanbul in half. The rest are entirely contained within one or the other.
|}


''' 文件必须是Windows样式的行结尾(CRLF)!'''
== Terrain ==
There are two primary types of terrain in the game: graphical and provincial. Both terrain types are defined within {{path|common/terrain/*.txt}} files.<br/>
Provincial terrain is assigned within {{path|map/definition.csv}} to each province for land provinces and within the [[#Strategic regions|strategic regions]] for sea provinces. This does not change the graphical appearance in any way (aside from the 'simple terrain' map mode), instead, this assigns modifiers to the province and details about land or naval combat.<br/>
Graphical terrain is assigned within {{path|map/terrain.bmp}} to the map itself. This file is a 8-bit indexed image with the same dimensions as the provinces bitmap. This is purely the visual appearance of the map and doesn't change it in any actual way. However, the database section in the nudger has a setting to auto-generate the provincial terrain based off the graphical terrain.


'''provinces.bmp'''控制了地图上省份的位置和形状。每一个像素都属于与它的RGB色值相对应的省份。有相同像素边缘的省份在游戏中彼此相邻并连接。在debug模式开启的时候,它可能会警告下列情况:
Provided are tables of base game terrain types.<br/>
* "Map invalid X crossing. Please fix pixels at coords":四个省份有共同的顶点。游戏会连接左下和右上的省份,但是这对于玩家来说是很迷惑的,应当避免。
Since the game decides the terrain based off the [[#BMP format|colourmap IDs]], the colours in the graphical terrain can be changed to anything as long as the colourmap ID (specified in the ID column) is the same and the file will be treated no different, so the colours here are merely the ones that the base game uses. 'Terrain type' in the graphical terrain table refers to the nudger-generated provincial terrain type. Appearance in the graphical terrain table is the specified segment of the [[#Graphical terrain|atlas file]] set to full opacity: in practice, the atlas file has transparency so that some parts of the terrain are more visible than others.
* "Province X has TOO LARGE BOX. Perhaps pixels are spread around the world in provinces.bmp":省份的宽度/高度超过了地图总宽度/高度的1/8。这可能表示有两个省份无意使用了相同的颜色。
* "Province X has only N pixels":省份的像素不多于NGraphics。MINIMUM_PROVINCE_SIZE_IN_PIXELS(默认为8)。这样的省份可能太小以致影响玩家的体验。


省份id应当尽可能地相邻,过大的间隔会让游戏崩溃。
{| class="wikitable sortable mw-collapsible mw-collapsed" style="display: inline-block; padding: 5px; float:left" width="49%"
|+ style="white-space:nowrap; test-align:left" | Graphical terrain:<br/>
! width="3%" |ID
! width="10%" |{{hover|Default within the base game: if the colourmap contains a different RGB code at the same index, that one will be used|Colour}}
! width="5%" |Appearance
! width="7%" |Terrain type
! width="20%" |Notes
|-id="type0"
| 0
| style="text-align: center; color: white; background:#567c1b" | (86, 124, 27)
| [[File:Atlas terrain 1.png|128px]]
| plains
|
|-id="type1"
| 1
| style="text-align: center; color: white; background:#005606" | (0, 86, 6)
| [[File:Atlas terrain 4.png|128px]]
| forest
| Typically used for the dense forests.
|-id="type2"
| 2
| style="text-align: center; color: white; background:#704a1f" | (112, 74, 31)
| [[File:Atlas terrain 3.png|128px]]
| hills
|
|-id="type3"
| 3
| style="text-align: center; background:#cea963" | (206, 169, 99)
| [[File:Atlas terrain 9.png|128px]]
| desert
|
|-id="type4"
| 4
| style="text-align: center; background:#06c80b" | (6, 200, 11)
| [[File:Atlas terrain 5.png|128px]]
| forest
| Typically used for the sparse forests.
|-id="type5"
| 5
| style="text-align: center; background:#ff0018" | (255, 0, 24)
| [[File:Atlas terrain 0.png|128px]]
| plains
| Typically used for farmland.
|-id="type6"
| 6
| style="text-align: center; background:#86541e" | (134, 84, 30)
| [[File:Atlas terrain 11.png|128px]]
| mountain
|
|-id="type7"
| 7
| style="text-align: center; background:#fcff00" | (252, 255, 0)
| [[File:Atlas terrain 12.png|128px]]
| desert
|
|-id="type8"
| 8
| style="text-align: center; color: white; background:#493b0f" | (73, 59, 15)
| [[File:Atlas terrain 14.png|128px]]
| desert
|
|-id="type9"
| 9
| style="text-align: center; background:#4b93ae" | (75, 147, 174)
| [[File:Atlas terrain 6.png|128px]]
| marsh
|
|-id="type10"
| 10
| style="text-align: center; background:#ae00ff" | (174, 0, 255)
| [[File:Atlas terrain 13.png|128px]]
| mountain
|
|-id="type11"
| 11
| style="text-align: center; color: white; background:#5c534c" | (92, 83. 76)
| [[File:Atlas terrain 11.png|128px]]
| mountain
|
|-id="type12"
| 12
| style="text-align: center; background:#ff00f0" | (255, 0, 240)
| [[File:Atlas terrain 8.png|128px]]
| desert
|
|-id="type13"
| 13
| style="text-align: center; background:#f0ff00" | (240, 255, 0)
| [[File:Atlas terrain 10.png|128px]]
| urban
| Automatically spawns [[#Cities|city models]].
|-id="type14"
| 14
| style="text-align: center; color: white; background:#375adc; height=128px" | (55, 90, 220)
|
| lakes
| Never used in-game, seems to refer to an invalid texture. Instead, the [[#type15|ocean terrain]] is used for lakes.
|-id="type15"
| 15
| style="text-align: center; color: white; background:#081f82" | (8, 31, 130)
| [[File:Atlas terrain 9.png|128px]]
| ocean
|
|-id="type16"
| 16
| style="text-align: center; background:#ffffff" | (255, 255, 255)
| [[File:Atlas terrain 11.png|128px]]
| mountain
| Is permamently covered in snow, unlike [[#type6|the other graphical terrain using the same appearance]]
|-id="type17"
| 17
| style="text-align: center; background:#84ff00" | (132, 255, 0)
| [[File:Atlas terrain 2.png|128px]]
| hills
|
|-id="type18"
| 18
| style="text-align: center; background:#ff7e00" | (255, 126, 0)
| [[File:Atlas terrain 7.png|128px]]
| mountain
| Never used in base game.
|-id="type19"
| 19
| style="text-align: center; background:#728969" | (114, 137, 105)
| [[File:Atlas terrain 0.png|128px]]
| plains
| Is permamently covered in snow, unlike [[#type5|the other graphical terrain using the same appearance]]
|-id="type20"
| 20
| style="text-align: center; background:#3a8353" | (58, 131, 82)
| [[File:Atlas terrain 7.png|128px]]
| mountain
|
|-id="type21"
| 21
| style="text-align: center; background:#ff007f" | (255, 0, 127)
| [[File:Atlas terrain 4.png|128px]]
| jungle
|
|-id="type22"
| 22
| style="text-align: center; color: white; background:#005252" | (0, 82, 82)
| [[File:Atlas terrain 5.png|128px]]
| jungle
| Never used in base game.
|-id="type27"
| 27
| style="text-align: center; background:#f3c793" | (243, 199, 147)
| [[File:Atlas terrain 7.png|128px]]
| mountain
|
|-id="type31"
| 31
| style="text-align: center; color: white; background:#1b1b1b" | (27, 27, 27)
| [[File:Atlas terrain 15.png|128px]]
| mountain
| Never used in base game.
|}
{| class="wikitable sortable mw-collapsible mw-collapsed" style="display: inline-block; padding: 5px; float:left" width="49%"
|+ style="white-space:nowrap; test-align:left" | Provincial terrain:<br/>
! width="8%" |Internal name
! width="8%" |Localised name
! width="8%" |Terrain type
! width="21%" |Notes
|-id="unknown"
|unknown
|Unknown
|land
|Default terrain for new provinces.
|-id="forest"
|forest
|Forest
|land
|84 optimal combat width, -15% division attack.
|-id="hills"
|hills
|Hills
|land
|80 optimal combat width, -25% division attack.
|-id="mountain"
|mountain
|Mountain
|land
|75 optimal combat width, -50% division attack.
|-id="plains"
|plains
|Plains
|land
|90 optimal combat width
|-id="urban"
|urban
|Urban
|land
|96 optimal combat width, -30% division attack.
|-id="jungle"
|jungle
|Jungle
|land
|84 optimal combat width, -30% division attack.
|-id="marsh"
|marsh
|Marsh
|land
|78 optimal combat width, -40% division attack.
|-id="desert"
|desert
|Desert
|land
|90 optimal combat width
|-id="ocean"
|ocean
|Ocean
|sea
|Default terrain for sea provinces.
|-id="lakes"
|lakes
|Lakes
|sea
|Default terrain for lake provinces.
|-id="water_fjords"
|water_fjords
|Fjords and Archipelagos
|naval
|Makes battlecruisers, battleships, heavy cruisers, and carriers less viable (-20% attack, defence, and movement), makes the navy harder to detect (-20% visibility), and removes 15% from positioning.
|-id="water_shallow_sea"
|water_shallow_sea
|Shallow Sea
|naval
|Makes submarines easier to detect (+100% visibility) and removes 5% from positioning.
|-id="water_deep_ocean"
|water_deep_ocean
|Deep Oceans
|naval
|Makes destroyers have 20% less of attack, movement, and defence; light cruisers have 10% less of attack, movement, and defence; makes the submarines harder to detect (-15% visibility) but slower by 25%. The chance to hit a naval mine is halved.
|}


文件'''provinces.bmp'''应当是RGB模式并且保存为24位位图文件(.BMP)并且没有色域信息。
{{clear}}
{{clear}}


== 地形地图(Terrain Map)==
=== Provincial terrain ===
'''terrain.bmp'''是一个控制地形分配和纹理的8位索引模式的BMP文件。地形的列表可以参考 {{path|common/terrain/00_terrain.txt}} 文件的底部。地形只影响地图和省份间[[Terrain#Paths| 路径]] 的视觉效果;省份本身的地形由[[#Province|definitions.csv]] 定义。
Provincial terrain types are defined within {{path|common/terrain/*.txt}} files in the <code>categories = { ... }</code> block. Each terrain is a code block, and the name of the block gets taken as the terrain's name, such as this creating terrains my_terrain_1 and my_terrain_2.
<pre>categories = {
   my_terrain_1 = {
     <...>
   }
   my_terrain_2 = {
     <...>
   }
}</pre>
The following arguments go into terrain:
* <code>color = { 100 120 140 }</code> assigns a colour to the terrain in the 'Simplified terrain' map mode. This is a RGB value, where each one goes on the scale from 0 to 255.
* <code>sound_type = forest</code> assigns the ambient sound played by the terrain. This appears to be unused.
* <code>movement_cost = 1.0</code> assigns the move speed for this terrain in particular. A higher value means that divisions or ships will move slower.
* <code>units = { ... }</code> assigns unit-scoped modifiers that would apply on every land division or ship within this province within battle, such as <code>attack = 0.1</code> or <code>defence = -0.1</code>.
* <code>my_subunit = { ... }</code> serves to make these apply to specific sub-units, with <code>units = { ... }</code> within being for combat and the rest for outside. For example,
<pre>carrier = {
   units = {
     attack = -0.2
   }
   navy_fuel_consumption_factor = 0.2
}</pre>
* Additionally, the terrain serves as a modifier block, allowing any provincial [[Modifiers|modifier]] to be used within. These include many combat-related and state-scoped modifiers.
* <code>is_water = yes</code> if set, will mark this as water terrain, making it only possible to use for seas and lakes. Additionally, <code>naval_terrain = yes</code> would be needed to mark it as a naval terrain which can be used in strategic regions.
The following arguments are '''only for land''' terrain:
* <code>combat_width = 78</code> assigns the base combat width. Up to this many units would be able to participate in the battle without penalties.
* <code>combat_support_width = 24</code> assigns the combat width ''on top'' of the combat_width. After combat_width is exceeded, combat_support_width more worth of troops can still engage in combat, but with penalties.
* <code>supply_flow_penalty_factor = 0.2</code> assigns a penalty to supply flow through provinces with this terrain.
* <code>match_value = 8</code> assigns a terrain value for this province. This is primarily used for the [[Conditions#state_and_terrain_strategic_value|state_and_terrain_strategic_value]] trigger/variable and to assign costs to the peace conference.
* <code>ai_terrain_importance_factor = 8.0</code> assigns a strategic importance value for AI on this terrain. A higher value means that AI would recognise this as a defensible province.
 
Some common [[modifiers]] to use include the following:
* <code>attrition = 0.1</code> sets the base attrition for the land province.
* <code>enemy_army_bonus_air_superiority_factor = -0.1</code> modifies the bonus that would be given to the attacker from air superiority.
* <code>sickness_chance = 1.0</code> makes combat on this province result in a possibility of the army leader becoming sick.
* <code>positioning = 0.1</code> modifies the navy positioning within this sea province.
* <code>navy_visibility = -0.2</code> modifies the visibility of navies within this sea province.


[[Localisation]] can be added with using the terrain's ID as the localisation key:
<pre> my_terrain_1: "My terrain"
my_terrain_1_desc: ""</pre>
For land provinces, there are 2 sprites: regular (with GFX_terrain_ prepended before the terrain's name) and winter (Additionally with _winter appended in the end). The winter sprite appears when the province is covered in snow, while the regular one appears regularly. These would be the following for <code>my_terrain_1</code>:
<pre>spriteType = {
   name = GFX_terrain_my_terrain_1
   textureFile = gfx/interface/terrains/terrain_my_terrain_1.dds
}
spriteType = {
   name = GFX_terrain_my_terrain_1_winter
   textureFile = gfx/interface/terrains/terrain_my_terrain_1_winter.dds
}</pre>
For naval terrain, there are 10 sprites: regular, rain, storm, snow, and snowstorm for both day and night.
{{VisibleCollapse
|<pre>
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_day
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_day_rain
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day_rain.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_day_storm
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day_storm.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_day_snow
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day_snow.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_day_snow_storm
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day_snow_storm.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_night
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_night_rain
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night_rain.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_night_storm
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night_storm.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_night_snow
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night_snow.dds
}
spriteType = {
   name = GFX_terrain_my_naval_terrain_1_night_snow_storm
   textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night_snow_storm.dds
}</pre>
|Examples of sprite definitions for a naval terrain named <code>my_naval_terrain_1</code>}}
=== Graphical terrain ===
Graphical terrain is defined within the {{path|common/terrain/*.txt}} files within the <code>terrain = { ... }</code> block. Each graphical terrain type is a separate block within that overarching block, with the name of the block being irrelevant, with overlaps possible. Example definitions include:
<pre>terrain = {
   my_terrain = {
     type = urban
     color = { 23 }
     texture = 1
     spawn_city = yes
   }
   my_terrain = { type = plains color = { 24 } texture = 2 }
}</pre>
In here, <code>type = urban</code> tells the [[#Provincial terrain|provincial terrain]] type that the nudger would assign to the graphical terrain of this type when auto-generating province terrains, <code>color = { ... }</code> is a list of [[#BMP format|colourmap indices]] that get used for the graphical texture, and <code>texture = 1</code> assigns the atlas definition, beginning with 0.<br/>
Optional arguments are <code>spawn_city = yes</code>, which automatically spawns [[#Cities|city models]], and <code>perm_snow = yes</code>, which makes the specified regions be covered in snow permamently.
The atlas files are {{path|map/terrain/atlas0.dds}} and {{path|map/terrain/atlas_normal0.dds}}. These must be squares. By default, each is a map of tiles in a 4x4<ref><code>static const float MAP_NUM_TILES = 4.0f;</code> in {{path|gfx/FX/constants.fxh}}</ref>, where each tile is 512x512 pixels large.<ref><code>static const float TEXELS_PER_TILE = 512.0f;</code> in {{path|gfx/FX/constants.fxh}}</ref><br/>
The tiles are arranged in the left-to-right then up-to-down order starting from 0, as in the attached table.
{|border=1 style="border-collapse: collapse; text-align: center; float: left; margin-right: 10px"
|-
|0
|1
|2
|3
|-
|4
|5
|6
|7
|-
|8
|9
|10
|11
|-
|12
|13
|14
|15
|}
This order means that, for example, <code>texture = 11</code> within a graphical definition will result in the rightmost lower-middle tile being chosed assuming the default 4x4 arrangement.<br/>
atlas0 is the regular texture map, for the textures that will get assigned on the terrain, while atlas_normal0 is [[wp:Normal mapping|a normal map]], which gets used to assign vectors perpendicular to each point on the texture which get used when shading the map.
The files atlas1 and atlas2, as well as atlas_normal1 and atlas_normal2 serve for farther zoom levels: the game uses lower-quality textures when the camera is more zoomed-out or with different graphics settings to save on performance. atlas1 has each of its dimensions at half-size of atlas0, and atlas2 has them at the quarter-size of atlas0.
For the game to read the file, mipmaps must be generated and DXT5 must be the compression algorithm used.
{{clear}}
{{clear}}


== 树木地图(Tree map)==
== Height map ==
'''trees.bmp'''控制地图上树木的摆放。文件'''trees.bmp'''的分辨率影响树的密度。
{{path|map/heightmap.bmp}} is used in order to determine the height of a given position on the map. A minimum value (or pure black) translates to a height of 0 by the Y axis, while the maximum value (or pure white) translates to a height of 25.5 by the Y axis.<br/>
The sea level is set at the height of 9.5 by default<ref name="water_height"/>, and so anything below the value of 95 (on the scale from 0 to 255) will be shown as underwater, while everything above 95 will be shown as above water. Water is always at the constant height.


文件'''trees.bmp'''应为索引模式并保存为8位位图(.BMP格式)。
It should be preferred to create smooth transitions in pixel's values in order to create more smooth-looking transitions. In addition to the heightmap, the [[#Normal map|Normal map]] also contributes to smoothness.


{{clear}}
Heightmap has the same image dimensions as the provinces bitmap and is saved as a 8-bit greyscale image.


== Normal map ==
{{path|map/world_normal.bmp}} is a [[wp:Normal mapping|a normal map]] saved in the 24-bit RGB format, deciding on the exact slope of each pixel within the 3D rendering of the map. This is used in the lighting calculations.<br/>
The red channel decides on the X value of the vector from -1 to 1: a value of 0 is pointing to the left (West) as much as possible while a value of 255 is pointing to the right (East) as much as possible.<br/>
The green channel decides on the Y value of the vector from -1 to 1: a value of 0 is pointing to the bottom (South) as much as possible, while a value of 255 is pointing to the top (North) as much as possible.<br/>
The blue channel decides on the Z value of the vector from 0 to -1: a value of 128 corresponds to 0, meaning it is not pointing at the viewer but rather perpendicularly depending on the X and Y values, while a value of 255 corresponds to -1, which means it's pointing at the viewer as much as possible.<br/>


==河流地图(River map)==
There are several tools that can be used in order to generate a normal map from a heightmap. Some include:
[[File:River Map Colour Scheme.png|thumb|500px|right]]
* NVidia's texture tools.
'''rivers.bmp'''控制地图上的河流。该文件中的河流应当只有1像素宽。
* Within Photoshop CC, Filter > 3D > Generate Normal Map.
* Within GIMP, using the normal map plugin: after downloading, opening the heightmap, changing image type to RGB, Filter > Map > Normal, and inverting the Y axis.


文件'''rivers.bmp''' 应为索引模式并保存为8位位图(.BMP格式)。
== Rivers ==
[[File:River Map Colour Scheme.png|thumb|500px|right]][[File:Example_rivers.png|thumb|right|An example of how rivers will look like in the bitmap. Each of the pixels has been resized to a 50x50 pixels large square and the rivers flow from right to left.]]
{{path|map/rivers.bmp}} is an 8-bit indexed bitmap file that decides the positioning of rivers. Rivers ''must'' be exactly one pixel thick and only go in orthogonal directions: pixels do not connect diagonally. As the river counts as a level 1 railway<ref>NDefines.NSupply.RIVER_RAILWAY_LEVEL = 1 in [[Defines]]</ref>, particularly long rivers can cause the game to slow down or run unstably. The river map is a 8-bit indexed bitmap with the same dimensions as the provinces bitmap.


{| class="wikitable"
To correctly render, each river must have exactly one, by default green, start marker. In this case a river is taken as a single contiguous block of river pixels: those connected with red flow-in or yellow flow-out sources count as the same river as the main flow. '''Only the 'main branch' of the river should have the green source pixel, any branch connected to it via the red flow-in shouldn't have it.'''
|+ '''rivers.bmp''' 文件中使用的颜色
{| class="wikitable" style="display: inline-block; padding: 5px"
|+ style="white-space:nowrap" | Colours used in '''rivers.bmp'''
|-
|-
! scope="col" | Index
! scope="col" | Index
! scope="col" | 颜色
! scope="col" | {{hover|Default within the base game: if the colourmap contains a different RGB code at the same index, that one will be used|Colour}}
! scope="col" | 意义
! scope="col" | Function
|-
|-
| 0
| 0
| style="background:#00ff00" | (0, 255, 0)
| style="text-align: center; background:#00ff00" | (0, 255, 0)
| 河流的源头
| The source of a river
|-
|-
| 1
| 1
| style="background:#ff0000" | (255, 0, 0)
| style="text-align: center; background:#ff0000" | (255, 0, 0)
| 流入源。用于把多条河流合并为一条干流。
| Flow-in source. Used to join multiple 'source' paths into one river.
|-
|-
| 2
| 2
| style="background:#fffc00" | (255, 252, 0)
| style="text-align: center; background:#fffc00" | (255, 252, 0)
| 流出源。用于把一条河流分流为多条支流。
| Flow-out source. Used to branch outwards from one river.
|-
|-
| 3
| 3
| style="background:#00e1ff" | (0, 225, 255)
| style="text-align: center; background:#00e1ff" | (0, 225, 255)
| 外观最窄的河流
| River with narrowest texture.
|-
|-
| 4
| 4
| style="background:#00c8ff" | (0, 200, 255)
| style="text-align: center; background:#00c8ff" | (0, 200, 255)
| 外观较窄的河流
| River with narrow texture
|-
|-
| 5
| 5
| style="background:#0096ff" | (0, 150, 255)
| style="text-align: center; background:#0096ff" | (0, 150, 255)
|
|
|-
|-
| 6
| 6
| style="background:#0064ff" | (0, 100, 255)
| style="text-align: center; background:#0064ff" | (0, 100, 255)
| 外观较宽的河流
| River with wide texture.
|-
|-
| 7
| 7
| style="background:#0000ff;color:white" | (0, 0, 255)
| style="text-align: center; background:#0000ff;color:white" | (0, 0, 255)
|
|
|-
|-
| 8
| 8
| style="background:#0000e1;color:white" | (0, 0, 225)
| style="text-align: center; background:#0000e1;color:white" | (0, 0, 225)
|
|
|-
|-
| 9
| 9
| style="background:#0000c8;color:white" | (0, 0, 200)
| style="text-align: center; background:#0000c8;color:white" | (0, 0, 200)
|
|
|-
|-
| 10
| 10
| style="background:#000096;color:white" | (0, 0, 150)
| style="text-align: center; background:#000096;color:white" | (0, 0, 150)
|
|
|-
|-
| 11
| 11
| style="background:#000064;color:white" | (0, 0, 100)
| style="text-align: center; background:#000064;color:white" | (0, 0, 100)
| 外观最宽的河流
| River with widest texture.
|}
|}
By default, indexes 0<ref>NDefines.NMilitary.RIVER_SMALL_START_INDEX = 0 in [[Defines]]</ref> up to including 6<ref>NDefines.NMilitary.RIVER_SMALL_STOP_INDEX = 6 in [[Defines]]</ref> are treated as small rivers for game mechanics, indexes up to including 11<ref>NDefines.NMilitary.RIVER_LARGE_STOP_INDEX = 11 in [[Defines]]</ref> as large rivers. Pixels with any other index within the file do not get read in-game and serve as 'comments', usually used to signify the land province outlines to make it easier to place rivers.


列表中的 0<ref>NMilitary.RIVER_SMALL_START_INDEX</ref> 到 6<ref>NMilitary.RIVER_SMALL_STOP_INDEX</ref> 在游戏机制中被识别为小河,后续直到 11<ref>NMilitary.RIVER_LARGE_STOP_INDEX</ref> 被识别为大河。为了正确渲染,每一条河都必须被唯一标识,即只有一个起点(绿色/黄色)或一个终点(红色)。
If the [[Terrain#Paths|path]] connecting the centres of two provinces overlaps at least one river pixel, it is considered a river crossing. If it intersects multiple river pixels of different types, the crossing type is implementation defined. To avoid player confusion, province paths should either clearly cut or stay clear of a river.


如果两个省份之间的 [[Terrain#Paths| 路径]] 与一条河流的像素重叠,将会被视为跨河。如果它与多条不同类型的河流的像素相交叉,行进类型将由游戏实际行为决定。为了避免玩家困惑,省份的路径应该明确的穿越或者远离河流。
A possible error to encounter is <code>MAP_ERROR: Palette in rivers.bmp is probably not correct</code>. This can ''entirely be ignored'': the rivers.bmp file will be loaded regardless and, unlike other map errors, this does not prevent the game from loading without debug mode.<br/>
{{clear}}
This error is caused by GIMP: editing in Photoshop does not produce this. By default, [[#BMP format|the DIB header]] is set to say that the colourmap has 0 colours despite the fact that the colourmap still contains 256 colours. This is to ensure that the game does not spend time reading colours within the BMP file and instead skips straight to the bitmap itself. GIMP instead sets the DIB header to say that there are 256 colours in the palette, which is unexpected by the game. This cannot be fixed within GIMP itself, however, assuming that the rivers bitmap is otherwise correct (Saved in 8-bit indexed mode with BITMAPINFOHEADER) this can also be fixed by opening the rivers bitmap within a hex editor and changing two values: addresses <code>00 00 00 2F</code> and <code>00 00 00 33</code> should both be <code>00</code> instead of <code>01</code> as set by GIMP.


== 高度地图(Height map)==
== Trees ==
'''heightmap.bmp''' 决定了地图的3D网格。''( 0, 0, 0 )'' 表示最低点,''(255, 255, 255)'' 表示最高点。海平面的高度为 ''(95, 95, 95)'',所以任何低于这个值的地形都会处于水下。
{{See also|Entity modding}}
{{path|map/trees.bmp}} is a 8-bit indexed bitmap that decides on the position of tree models on the map. The resolution of the map decides on the density of trees, by default each side is <math>\frac{75}{256}</math> of the provinces bitmap.


应当使高度平滑过渡,否则地图会出现锯齿状边缘。
The map decides on the positions of pdxmesh objects. A sprite with the ID of 14 will cause the pdxmesh with the name of <code>mapobject_14</code> to spawn on that location, for example:
<pre>pdxmesh = {
   name = "mapobject_14"
   file = "gfx/models/mapitems/trees/my_tree.mesh"
   scale = 0.5
}</pre>This definition would be within a {{path|gfx/entities/*.gfx}} file within the <code>objectTypes = { ... }</code> block. By default, these tree types exist within the base game:


'''heightmap.bmp''' 文件以灰度模式保存为一张8位的位图图片文件 (.BMP)
{| class="wikitable sortable" style="display: inline-block; padding: 5px" width="100%"
|+ style="white-space:nowrap; test-align:center" | List of trees:<br/>
! width="15%" style="text-align: right"|colourmap ID
! width="30%" |{{hover|Default within the base game: if the colourmap contains a different RGB code at the same index, that one will be used|Colour}}
! width="55%" |Tree Type/Density
|-id="palm_sparse"
|2
|style="text-align: center; background:#1e8b6d; color:white" | (30, 139, 109)
|Sparse Palm
|-id="palm_dense"
|3
|style="text-align: center; background:#12644e; color:white" | (18, 100, 78)
|Dense Palm
|-id="forest_sparse"
|5
|style="text-align: center; background:#4c9c33; color:white" | (76, 156, 51)
|Sparse Forest
|-id="forest_dense"
|6
|style="text-align: center; background:#2f7818; color:white" | (47, 120, 24)
|Dense Forest
|-id="jungle_sparse"
|28
|style="text-align: center; background:#9600ff; color:white" | (150, 0, 255)
|Sparse Jungle
|-id="jungle_dense"
|29
|style="text-align: center; background:#58008a; color:white" | (88, 0, 138)
|Dense Jungle
|}
== Colour maps ==


{{clear}}
The colourmap files define the overall colour tint applied to the map. Without a colourmap file, all land will appear the same overall colour, regardless of terrain type. They should be saved in the .DDS format, using the 8.8.8.8 ARGB 32-bit profile with no mipmaps.


== 法线贴图(Normal map) ==
=== Water ===
'''world_normal.bmp''' 定义了3D凹凸贴图,用于给高度贴图正常生成阴影。
{{path|map/terrain/colormap_water_0.dds}} is used to give tint to the ''water''. Each of its dimensions is halved compared to the provinces bitmap. Similarly applies for the water colourmaps 1 and 2: they are the same but with the dimensions halved compared to the previous level. This is for performance reasons as to make the game use lower-quality textures when zoomed out or with different graphics settings.
=== RGB and city lights ===
{{path|map/terrain/colormap_rgb_cityemissivemask_a.dds}} serves two purposes. The RGB channels define the default colouring of the map, which gets modified by terrain. When making changes to the terrain or height map, this colour map should be updated too to reflect the changes visually. The alpha channel is used for city lights at night: more opacity means stronger night lights. The file should use half of the vertical and horizontal resolution of the provinces bitmap.<br/>
Editing this colourmap in particular would be much easier if the alpha channel should be separated from the RGB channels, as these serve different purposes. The process to do so depends on the image editor. For example, in GIMP it is done by adding a layer mask with the setting of "Transfer layer's alpha channel" selected, which'll allow editing the alpha channel by editing the mask and the RGB channels by editing the now non-transparent layer. '''Paint.net cannot be used to edit this colourmap''', since it will reset the RGB channel values of each fully-transparent pixel to pure white upon saving.


法线贴图可以使用 '''Nvidia 纹理工具''' 根据heightmap.bmp生成,或者使用Photoshop CC的 滤镜>3D>生成法线贴图 功能。
== Buildings ==
{{See also|Nudger|Buildings|section=1}}
There are 3 primary files for buildings in the map folder: {{path|map/buildings.txt}}, which primarily decides the position of building models; {{path|map/airports.txt}}, which assigns the province within the state where the air base will be built; and {{path|map/rocketsites.txt}}, which assigns the province within the state where the rocket launch site will be built.


{{clear}}
The locations of building models for each state are defined in {{path|map/buildings.txt}}. An entry in that file is defined as such (If unspecified, assume a number with up to 2 decimal digits):
<pre>State ID (integer); building ID (string); X position; Y position; Z position; Rotation; Adjacent sea province (integer)</pre>
*State ID defines which state the building is located in. Even for provincial buildings, this is the ID of the state, not the province. Instead, provincial buildings have several entries per state, with the XYZ position being used by the game to know which province it's for.
*Building ID defines which model is being located. While this includes each building, this also includes floating harbours as floating_harbor.
*X, Y, and Z position represent the position on the map of the building model using the [[#Coordinate system|coordinate system]].
*Rotation is measured in radians. A rotation of 0 will result in the building model pointing in the same direction as the model is set, while positives will rotate it counter-clockwise and negatives will rotate it clockwise. A full rotation resulting in the same position as 0 is equal to the number π multiplied by 2, roughly 6.28.
*Adjacent sea province is only necessary to define for naval bases and floating harbours, in order to let the game know from which sea province ships or convoys can access the land province where it is located. If the building type is not a naval base, it should be left at 0.


== 颜色地图(Color maps) ==
It is preferable to generate the building models in the building section in the nudger, rather than filling it out manually. However, note that the game will crash if the currently-existing {{path|map/buildings.txt}} file is entirely empty. The content of the file doesn't matter for this, as long as it's not entirely empty.


'''colormap_x.dds''' 文件定义了应用于地图的整体颜色色调。如果没有colormap文件,所有的土地都会出现相同的整体颜色,不管地形类型如何。
'''If some naval base or floating harbour is missing a definition within this file, the game will crash''' once any province with one would be evaluated by AI or tried to be used as a naval base. This represents as a crash with the [[Troubleshooting#Crash data log|client_ping or hourly_ping last read file]] a few hours into the game, fixed by turning off AI. This is because the building definition is used not only for the model of the naval base, but also for assigning the sea province that the port goes out into. If there is no definition, the game fails at evaluating the spot where the navy would be placed, resulting in an infinite loop that eats the RAM and the CPU leading to a crash.


它们应该是RGB模式,以.DDS格式保存,使用8.8.8.8 ARGB 32 bpp配置文件,没有mipmaps。{{clear}}
An entry within {{path|map/airports.txt}} or {{path|map/rocketsites.txt}} looks like <code>123 = { 4321 }</code>. Within this, the first number that serves as the name of the block is the ID of the state, while the number within the block is the province containing the air base or rocket launch site.<br/>
This also can be generated via the nudger's building section.


== 水体地图(Water map) ==
== Unit model and victory point positions ==
'''colormap_water.dds''' 控制应用于水体的颜色。
{{See also|Nudger|Units|section=1}}
{{anchor|unitstacks|Unit model positions|Victory points positions}}
The {{path|map/unitstacks.txt}} file decides on the positions of unit models and victory points within each individual province. This is edited via the <code>Unit</code> menu in nudger.<br/>
In particular, this decides the position of the victory point on the map if one is present within the province. Whether one is present, how it's called, and how much it's worth is decided within [[State modding#History|state history files and localisation]].


'''colormap_water.dds''' 文件应该是RGB模式,以.DDS格式保存,使用8.8.8.8 ARGB 32 bpp配置文件,没有mipmaps。
An entry in the file has the following formatting:
<pre>Province ID; Type; X position; Y position; Z position; Rotation; Offset</pre>
* Province ID assigns to which province the model is aimed for.
* Rotation is done in radians, 0 being the default state and positives rotating it counterclockwise.
* The offset is used for the animation in order to make it so that the animations of units within provinces are not directly happening at the same time, but have a delay.
* Type is an integer from 0 to 38 assigning a purpose.
{| class="wikitable sortable mw-collapsible mw-collapsed" style="display: inline-block; padding: 5px" width="100%"
|+ style="text-align: left; white-space:nowrap;" | List of unitstacks types:<br/>
! width="3%" |ID
! width="12%" |Internal name
! width="85%" |Notes
|-
|0
|Standstill
|
|-
|1
|Moving 0
|Different numbers represent different needed levels of rotation
|-
|2
|Moving 1
|Different numbers represent different needed levels of rotation
|-
|3
|Moving 2
|Different numbers represent different needed levels of rotation
|-
|4
|Moving 3
|Different numbers represent different needed levels of rotation
|-
|5
|Moving 4
|Different numbers represent different needed levels of rotation
|-
|6
|Moving 5
|Different numbers represent different needed levels of rotation
|-
|7
|Moving 6
|Different numbers represent different needed levels of rotation
|-
|8
|Moving 7
|Different numbers represent different needed levels of rotation
|-
|9
|Attacking
|
|-
|10
|Defending
|
|-
|11
|Disembarck 0
|Different numbers represent different needed levels of rotation
|-
|12
|Disembarck 1
|Different numbers represent different needed levels of rotation
|-
|13
|Disembarck 2
|Different numbers represent different needed levels of rotation
|-
|14
|Disembarck 3
|Different numbers represent different needed levels of rotation
|-
|15
|Disembarck 4
|Different numbers represent different needed levels of rotation
|-
|16
|Disembarck 5
|Different numbers represent different needed levels of rotation
|-
|17
|Disembarck 6
|Different numbers represent different needed levels of rotation
|-
|18
|Disembarck 7
|Different numbers represent different needed levels of rotation
|-
|19
|Ship in port
|
|-
|20
|Ship in port moving
|
|-
|21
|Standstill RG
|RG stands for regrouping
|-
|22
|Moving 0 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|23
|Moving 1 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|24
|Moving 2 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|25
|Moving 3 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|26
|Moving 4 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|27
|Moving 5 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|28
|Moving 6 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|29
|Moving 7 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|30
|Disembarck 0 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|31
|Disembarck 1 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|32
|Disembarck 2 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|33
|Disembarck 3 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|34
|Disembarck 4 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|35
|Disembarck 5 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|36
|Disembarck 6 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|37
|Disembarck 7 RG
|Different numbers represent different needed levels of rotation. RG stands for regrouping
|-
|38
|Victory point
|
|}


{{clear}}
== Adjacencies ==
The adjacencies file is {{path|map/adjacencies.csv}}. This decides the relationships between borders of provinces, allowing to create borders between non-directly adjacent provinces (such as strait crossings), block the border between two directly adjacent provinces (making it impassable), or otherwise set up adjacency rules that make crossing the border limited (such as the Gibraltar strait).
 
The following format is used for adjacencies:
<pre>Start province ID;End province ID;Adjacency type;Through province ID;Starting X position;Starting Y position;Ending X position;Ending Y position;Adjacency rule;Comment</pre>
For example, these are valid adjacencies:
<pre>
6891;3838;sea;5579;-1;-1;-1;-1;;Sardinia-Corsica
10910;12807;impassable;-1;-1;-1;-1;-1;;Himalayas
# Comment
3314;6336;sea;2752;2885;1578;2890;1581;;Afsluitdijk
</pre>
There are 2 primary types of an adjacency: sea and impassable. 'Impassable' fully blocks the connection between two provinces, while 'sea' creates a conditional border between the provinces (using an adjacency rule or otherwise), not requiring these provinces to have a direct border. If a type is not specified, then it assumes to be sea. The sea connection must be between two provinces of the same type: sea or land. If the connection is between two land provinces, they can't directly border each other.<br/>
Since the impassable type can't go 'through' a province, does not have a start or ending positions for graphics, and can't have an adjacency rule set, these should remain unset. This is done by leaving the adjacency rule field completely blank and having the rest be left as -1.<br/>
'Through' marks a province that serves as a gateway for the adjacency for the sea type. If the two provinces do not directly border each other, it is ''mandatory'' to define a Through province. Enemy control of that province (such as an enemy ship in the sea province between the two land provinces) will prevent the adjacency from being possible to use. Additionally, it is possible to define an [[#Adjacency rules|adjacency rule]] in this case to apply to the provinces.


X and Y positions decide the start and end of the red line created with a strait crossing between two land provinces. These use [[#Coordinate system|the X and Z coordinates in the 3D coordinate system]]. If set to -1, then the position will be calculated automatically, as the middles of the starting and ending provinces.


The last line of the file must be <code>-1;-1;-1;-1;-1;-1;-1;-1;-1</code>. This is used as an indicator that the file should stop being read, and any adjacency entries later in the file would get ignored. Even if the file is otherwise empty, this line should still be present to avoid hangup on loading.


== Adjacencies ==
=== Adjacency rules ===
邻接文件位于 {{path|map/adjacencies.csv}} 。作为一个以逗号分隔的文件,你可以用Excel或其他类似的程序,或者文本编辑器来打开它。默认的编码是ANSI。


该文件在省和河流地图所定义的正常连接的基础上,修改和增加了省与省之间的自定义毗邻关系。例如,它可以控制几个陆路不相连的省份之间的连接状态。一个岛屿通常不会与任何其他陆地省份相连,因为有海洋省份挡住了去路。邻接文件告诉游戏连接这些省份,允许陆地单位在它们之间行走。它还允许改变现有连接的属性,例如,使它们无法通行,改变它们的类型,或定义哪些省份被海峡挡住。
Adjacency rules, found at {{path|map/adjacency_rules.txt}} are ways to establish more complex rules on who can access a specified adjacency, either a strait or a canal. In order to establish an adjacency rule, it must first specify the name in {{path|map/adjacency.csv}}. '''This file must be encoded in UTF-8''' without the byte order mark.


格式如下:
Determining what each type of relation has access to is next. Friends are any nation that is a subject, is given military access to, or in a faction with the controlling power of the specified adjacency. Contested is when two nations contest the adjacency by controlling different provinces within the required_provinces. Enemy is any nation at war with the controlling power, and neutral is any nation that has no specific relation. Each relation should specify whether armies can pass through (transports), navies can pass through, submarines can pass through, and whether you can use it to get trade through.
<pre>
From;To;Type;Through;start_x;start_y;stop_x;stop_y;adjacency_rule_name;Comment
<province id>;<province id>;<type>;<province id>;<map coordinate>;<map coordinate>;<map coordinate>;<map coordinate>;<comment>
-1;
</pre>


对于普通的陆地连接,类型可以是空的,对于相应类型的连接,类型可以是 "river"/"large_river"/"sea"/"impassable" 。"through"字段定义了一个可以阻挡邻接的省份。当一个敌方单位控制这个省时,连接将不可用。<code>-1</code>则禁用此功能。地图坐标用于调整显示相邻关系的图形的起点和终点。如果不需要调整,用<code>-1</code>来代替实际的坐标。可以选择引用一个邻接规则来控制通过邻接的访问。
After is the required provinces, these specify what a nation must control in order to be the owner of the adjacency. All of the provinces do not need to be within the same state or from the same country. A minimum of two provinces must be specified in this field.


即使在其他项为空的情况下,文件也必须以包含负值的 from字段 和分号的行来结束,以防止启动时出现无限的挂起。
<code>is_disabled</code> is a trigger block evaluated for the country trying to use the adjacency rule that blocks it entirely if true. <code>tooltip = localisation_key</code> serves as assigning a localisation key


== 战略区域(Strategic Regions) ==
<code>icon</code> specifies over which province the icon for the adjacency appears in the navy view. This should be a sea province.
每个省都必须属于一个战略区域。如果你在游戏中与一个省互动,而该省不属于一个战略区域,那么你会遇到崩溃到桌面的情况。


一个战略区域可以包含来自多个州的省份,但一个州不应该在多个战略区域拥有省份,因为这可能会导致不稳定,并在error.log中显示警告。
<code>offset</code> specifies where the icon should move graphically starting from the middle of the province specified as the icon ( in the order { X value Z value Y value } ).


战略区域的格式如下,例如:
{{VisibleCollapse|
<pre>
<pre>
strategic_region={
adjacency_rule =
id=18
{
name="STRATEGICREGION_18"
name = "BOSPHORUS_STRAIT"
provinces={
  
2775 2799 2824 2847 2871 2895 2977 3528 4370 5929 7242 8450 8621 11748 12389 13004 13006 13007
contested =
{
army = no
navy = no
submarine = no
trade = no
}
}
enemy =
{
army = no
navy = no
submarine = no
trade = no
}
friend =
{
army = yes
navy = yes
submarine = yes
trade = yes
}
neutral =
{
army = no
navy = no
submarine = no
trade = yes
}
required_provinces = { 9833 11829 }
is_disabled = {
has_country_flag = BOSPHORUS_STRAIT_BLOCKED_FOR_COUNTRY
tooltip = bosporus_strait_blocked_tt
}
icon = 9833
offset = { -2 0 -9 }
}
}
</pre>
</pre>
|Example adjacency rule}}
== Supply ==
{{Anchor|Supply nodes and railways}}
{{See also|Nudger|Supply|section=1}}
Starting positions of supply nodes and railways are defined within {{path|map/supply_nodes.txt}} and {{path|map/railways.txt}} respectively. '''An invalid definition can cause crashes''' when trying to open singleplayer or when trying to open the 'Supply' section in nudger. An invalid definition in this case is one that's going over non-existing or stateless provinces or a very disjointed railway definition.<br/>
It is recommended to use the nudger's Supply section to assign supply nodes and railways.


战略区域的颜色是随机的。不过,你可以手动定义一个区域的颜色:
An entry in the supply nodes file has this formatting, without the semicolon:
<pre>Level; Province</pre>
The level represents the level of the supply node. By default, supply nodes have the max level of 1<ref>As defined within {{path|common/buildings/00_buildings.txt}}</ref>, so this is limited to 1.<br/>
The province represents the ID of the province in which the supply node is located.
Example entry is <code>1 1234</code>


<pre>
An entry in the railways file has this formatting, without the semicolons:
   color = { <r>, <g>, <b> }
<pre>Level; Amount of provinces; List of provinces</pre>
</pre>
The level represents the level of the railway. By default, this is no more than 5.<ref>NDefines.NSupply.MAX_RAILWAY_LEVEL = 5 in [[Defines]]</ref><br/>
The amount of provinces is how many provinces the railway lasts.<br/>
The list of provinces is a whitespace character-separated list of province IDs on which this railway goes.<br/>
A valid railway definition is the following: <code>4 4 693 1444 12 11</code>


The color definition used the default RGB values, which range from 0 to 255 (i.e. not decimal RGB).
=== Supply areas (For versions prior to 1.11) ===
'''Note: With the release of 1.11 and No Step Back, supply areas are deprecated and instead the initial logistics/supply system is defined through supply_nodes.txt and railways.txt; see previous section. For further information on updating your map from 1.10 to 1.11, see [https://www.reddit.com/r/hoi4modding/comments/r2876d/updating_custom_map_mods_to_work_with_nsb/ this post].'''


== 补给区域(Supply areas) ==
All states must be associated with a supply area. Each supply area can take any number of states, and each state should be in only one supply area.
所有的地区都必须与一个补给区域相关联。每个补给区域可以包含任何数量的地区,而一个地区只能在一个补给区域中。


Supply areas are formatted as follows:
Supply areas are formatted as follows:
第224行: 第1,043行:
</pre>
</pre>


== 大陆(Continent) ==
== Ambient objects ==
可以在"map"文件夹的"continent.txt"文件中找到。大陆被用来定义AI区域。
{{See also|Entity modding}}
 
The {{path|map/ambient_object.txt}} file is used to define the cosmetic 3D objects found in the map that are always generated, such as the map frame or winds.<br/>
所有地块必须属于某一个大陆,否则会遇到错误/ 崩溃。
Each ambient object is a separate definition within the file of <code>type = { ... }</code>. The following arguments go inside of an ambient object definition:
 
* <code>type = object_type</code> refers to an entity defined within a {{path|gfx/entities/*.asset}} file.
原版游戏中的大陆是 (大陆后的数字是它们的ID):
* <code>use_animation = no</code> sets whether the ambient object has an animation that should be used or not.
 
* <code>time_duration = 300</code> sets the time for how long the animation takes place.
欧洲(1)
* <code>scale = 100.0</code> sets the size of the ambient object. The default size is 1.
 
* <code>always_visible = yes</code>, if set, enforces the ambient object to be permamently visible such as the frames.
北美洲(2)
* <code>object = { ... }</code> decides each instance of the entity. Multiple can exist in the same ambient object. In particular, these arguments are used:
 
** <code>name = my_entity_name</code> is the name of the object. This does not have to be unique and only shows up within the nudge.
南美洲(3)
** <code>position = { ... }</code> is the [[#Coordinate system|XYZ position]] of the object.
 
** <code>rotation = { ... }</code> is the rotation of the object by XYZ axes.
大洋洲(4)
This is an example of an ambient object definition:
 
<pre>type = {
非洲(5)
   type = my_entity
 
   use_animation = no
亚洲(6)
    scale = 1000
 
   always_visible = yes
中东(7)
    object = {
 
     name = my_entity_name
(修改原因:原大陆和其ID可能有错误)
position={
 
420.090 10.000 382.670
== Ambient Objects ==
}
The ''ambient_object.txt'' is used to define the cosmetic 3D objects found in the map. This includes the map frame, so don't simply empty the file if you want to remove the other objects.
rotation={
 
0.000 0.000 0.000
The format for an ambient object is as follows:
}
<pre>
   }
# Used once for each graphical asset
type = {
   type = <string>      # Refers to the graphical asset in ambient_object.gfx
   use_animation= <yes/no> # Used set set if an object is animated or not
   scale = <float>      # Sets the scale of the asset. 1.0 is default size.
   time_duration=300.000  # Always set to 300 for animated objects, may be redundant
  
   always_visible = <yes>        # Used to force visibility
   visible_in_all_map_modes = <yes>   # Used to show is non-terrain mapmodes
    
    # Each instances is a separate object
    object = {
    object = {
      name = <string>         # Name does not have to be unique
      name = my_entity_name
     hidden_on_start = <yes/no>    # Whether the object is hidden (can be revealed with show_ambient_object)
position={
     position = {
1234.890 10.000 407.440
       <x>   # Horizontal coordinate
}
       <z>   # Height coordinate - 0.0 is base
rotation={
       <y>   # Vertical coordinate
0.000 0.000 0.000
     }
}
     rotation = {
       <x>   # Horizontal rotation
       <z>   # Height rotation - this is used for most rotations
       <y>   # Vertical rotation
     }
    }
    }
  
}</pre>
}
</pre>
 
You can use the Nudge tool to place new instances and move objects, but if you want to add a new type, you must add it to the file first, then use the Nudge tool.
 
The ambient objects for the canals are found here. To link them to the canal definition in ''default.map'', you need to make sure they share the same name (i.e. panama_canal).
 
== Terrain Atlas ==
The terrain textures used for specific terrains are found in ''atlas0.dds'' and ''atlas_normal0.dds''.
 
The association between the texture and terrain is found in {{path|common/terrain/00_terrain.txt}}. Within this file is the ''terrain'' scope which defines the terrain objects used by the game to interpret the terrain.bmp.
 
* ''type'' is the terrain category assigned to provinces that are covered by the specified terrain in the terrain.bmp.
* ''color'' is the indexed color from the terrain.bmp that represents this terrain object.
* ''texture'' is the tile from the terrain atlas textures that this terrain object uses.
 
When the game automatically generates terrain (i.e. using the Nudger) these terrain objects are what control the assignment of terrain categories to provinces.
 
The ''atlas0.dds'' and ''atlas_normal0.dds'' must be saved in DXT5 with Mipmaps enabled.
 
It is possible to increase the size of the texture atlas. In ''constants.fxh'' in {{path|gfx/FX/}}, edit the ''MAP_NUM_TILES'' variable to match your new number of columns and rows (a setting of 5.0 will result in 5 x 5 = 25 texture indices, as opposed to the vanilla 4 x 4).
 
It is possible to increase the size of the texture tiles within the texture atlas. In ''pdxmap.shader'' in {{path|gfx/FX/}}, edit the ''TEXELS_PER_TILE'' variable to your new size.
 
== Seasons ==
The ''seasons.txt'' file is used to define the color adjustments during the four seasons that pass in game. There are four seasons: winter, spring, summer and autumn.
 
The format for each is as follows:
<pre>
<season> = {
   start_date = <date>    # 00.<month>.<day>, in numeric form, i.e. 00.12.01
   end_date = <date>
  
   # Applies to the northern hemisphere
   hsv_north = { <hsv> }  
   colorbalance_north = { <hsv> }
  
   # Applies to the equator
   hsv_center = { <hsv> }  
   colorbalance_center = { <hsv> }
  
   # Applies to the southern hemisphere
   hsv_south = { <hsv> }  
   colorbalance_south = { <hsv> }
}
</pre>
 
The color format used is decimal HSV (Hue, Saturation, Value).
 
The ''seasons.txt'' file also controls the tree models visual appearance over the year.
 
== Color map and city lights ==
{{path|map/terrain/colormap_rgb_cityemissivemask_a.dds}} serves two purposes. The RGB channels define the default coloring of the map, which gets modified by terrain. When making changes to the terrain or height map, this color map should be updated too to reflect the changes visually. The alpha channel is used for city lights at night. More opacity means stronger lights.
 
The file should have half the vertical and horizontal resolution of the map.
 
== Sizes ==
It is possible to change the size of the map, with the majority of bitmap files requiring the same resolution.
 
* The vertical and horizontal resolution should be a multiple of 256
* '''world_normal.bmp''' should have half the vertical and horizontal resolution of the map
* '''trees.bmp''' should have the vertical and horizontal resolution of the map at a ratio of 0.29296875
* The maximum area of pixels does not exceed 13,107,200


It will be necessary to use the Nudge tool to adjust any ambient objects to suit the new map.
The nudge can edit existing ambient objects, but it is unable to create new ones: they have to be created manually first.


== References ==
<references/>
When editing [[Defines]], make sure to use an override file rather than copying the entire file, as that can cause game crashes when new defines get added, which can happen even in 'minor' updates.
{{Modding navbox}}
{{Modding navbox}}
[[分类:Modding]]
[[分类:Modding]]

2024年8月31日 (六) 21:06的最新版本

The map of the game is primarily changed within the /Hearts of Iron IV/map/ folder. This includes provinces and details about them as well as the cosmetic appearance of the map: trees, terrain, cities.

/Hearts of Iron IV/map/*.bmp files are referred to as bitmaps. Commonly these are used for the cosmetic appearance of the map, aside from the provinces bitmap.
/Hearts of Iron IV/map/*.csv files are CSV tables. These may be edited within a text editor or a table editor such as Excel or OpenOffice. It can be preferable to open these with text editors for greater performance.

Notes

  • Due to how the game reads BMP files, many image editors such as Paint.net or Microsoft Paint can't be used for most bitmap files, with only provinces and world_normal working. Photoshop and GIMP are alternatives that will always work, but the mode should never be changed from indexed when using them. If a map was saved incorrectly, the later section on details of the BMP format provides an easy way to correct the map.
  • When exporting the map in GIMP, "do not write color space information" must be checked on.
  • Debug mode turned on via launch settings is essentially necessary for map modding. Without debug mode, any error marked with MAP_ERROR will cause the game to fail to load and it wouldn't be possible to open the nudger within the main menu: some map errors may lead to the game being impossible to open in singleplayer.
  • Some of the errors marked with MAP_ERROR may not appear in the error log when it opens during the main menu loading. The error log after selecting a country in singleplayer will contain all of the map errors for sure.
  • Using the nudger can make the map editing much easier, but the tool is still unstable. At times it can be better to do manual editing, but the nudge is still important to know of and use.
  • The nudger will export files in the User directory directly, such as the Documents/Paradox Interactive/Hearts of Iron IV/ folder (Default location within Windows), with the folders of /history/, /map/, and /localisation/ potentially being created inside of that folder. These will be loaded by default in base game as well if left there. Additionally, these have lower priority than the mod files: if a mod is set to unload previously-loaded files within a generated folder via replace_path or contains a copy of the edited file, editing via the nudger may appear to not show changes. However, the outputs will still be created, and moving the files to the mod files and making them get loaded – such as via the 'update'/'load' button in the nudger, depending on the menu, or by restarting the game – will still work as intended.
  • replace_path can be used to fully unload the contents of a single folder (but not subfolders) that get indexed at the main menu loading. This can be used to ensure that none of the base game's strategic regions or states will appear in the loaded files when the mod is enabled.
  • /Hearts of Iron IV/map/default.map can be used in order to change the file used for a certain purpose, such as the name of the provinces bitmap. Within this article, it'll be assumed that /Hearts of Iron IV/map/default.map is unchanged, with the filenames being the same as in base game.

BMP format

This section is primarily the technical details on why the first two notes are necessary to be followed, as well as explaining some terminology used later in the article such as 'colourmaps' and '8-bit'/'8 bitdepth'/'8 bpp'.

There are 3 primary types of BMP files used in Hearts of Iron IV: 8-bit greyscale, 8-bit indexed, and 24-bit RGB. A BMP file may have compression, but Hearts of Iron IV requires that absolutely none is present and the rest here will assume it being off. No compression means that each pixel is assigned the same amount of bits.
Bitdepth is the amount of bits per pixel, sometimes shortened as -bit (e.g. 8-bit) or bpp. The amount of bits per pixel assigns the total amount of possible colours in the file: bitdepth of 8 means [math]\displaystyle{ 2^8 = 256 }[/math] colours in the file, while bitdepth of 24 means [math]\displaystyle{ 2^{24} = 16777216 }[/math] different possible colours. As the amount of bits per pixel, wrong bitdepth on a file can be detected due to a large filesize difference between the mod's and base game's versions of an image.
Some image editors, e.g. GIMP, don't explicitly have bitdepth as an option. In those, the bitdepth can be set by limiting the amount of possible colours. The RGB image mode allows each pixel to have 256 values for red, green, and blue colours, for a total of [math]\displaystyle{ 256^3 = 2^{24} }[/math], making a bitdepth of 24. If the image or a layer contains an alpha channel (i.e. making transparency allowed), which can be toggled on accidentally when creating a second layer as an overlay, the option of transparency adds even more possible colours, up to [math]\displaystyle{ 256^4 = 2^{32} }[/math], making a bitdepth of 32. If the image mode is set to Greyscale, then there are a total of 256 possible colours each pixel can be, making [math]\displaystyle{ 2^8 }[/math] total colours and a bitdepth of 8. With the indexed image mode, the amount of possible colours depends on the size of the colourmap/colour table and can be anything from 2 to 256.

In more detail on each image mode used:

  • 24-bit RGB is used for provinces and world_normal bitmaps. Every pixel is assigned a direct colour value in each of the three colour channels, which gets read by the game to interpret it; either to assign province IDs in case of the former or to assign the vector proportions in case of the latter.
  • 8-bit greyscale is used for the heightmap bitmap. Every pixel is assigned a value from 00 to FF that decides on the brightness of it and directly translates to height by the game. Paint.net and MS Paint cannot be used to edit this bitmap, instead saving in 8-bit generates a colourmap as in the mode below, where the values don't strictly correspond to the brightness.
  • 8-bit indexed is used for every other bitmap: cities, rivers, terrain, and trees. This mode creates a colourmap (called colour table in Photoshop), which is a list of 256 colours arranged in order from 00 to FF. Each pixel is assigned a value from 00 to FF, which directly corresponds to an entry on the colourmap. The game checks this value on each pixel rather than the colour and picks an entry based on the numeric value of that ID. Due to this, in order for the file to work correctly, the colourmap cannot be altered in any shape or form. For example, the image mode cannot be changed from Indexed to another one, since the image editor will not be able to preserve the order in memory, generating a new order after the image mode is set back to Indexed. For the same reason, Paint.net and MS Paint cannot be used to edit these bitmaps, since they generate a completely new colourmap when saving rather than preserving it for the entirety of editing.[1]

Since neither bitmap supports 32-bit, especially for 8-bit Indexed ones that cannot be easily converted back to how they're intended to be, adding a new layer may break how the map will be interpreted. Instead, it's possible to keep another image within the mod files as a backup and, when needed to use a layer as an overlay, edit the backup rather than the one interpreted by the game. After finishing the edits, it's possible to copy the contents of the backup inside of the image editor and paste them into the file interpreted by the game: that way it's possible to copy the colour of each pixel without copying over the rest of the file's format.

BMP files contain a DIB header at the beginning that assigns image file information. The game is set-up to expect BITMAPINFOHEADER as the format of the header for all BMP files. This depends on the image editor and most should save within this one by default.
However, other formats for the header exist: the most common one to accidentally save in is BITMAPV5HEADER, written by the GIMP foundation. This is used in order to add the ICC information, characterizing in which colour space the image has to be read in. Hearts of Iron IV's engine is not set to recognise this header. For this reason, when exporting in GIMP, "do not write colour space information" must be checked on in order to save with BITMAPINFOHEADER rather than BITMAPV5HEADER.

Correcting a broken map

As it's possible to edit an 8-bit file without palette restrictions by keeping a separate 24-bit copy of the file, the same can also be used to correct a file which had its colourmap reset or which was erroneously saved in a higher bitdepth. To do so, this checklist can be followed:

  • Change the filename of the mod's broken bitmap. For this example, map/terrain_broken.bmp will be used (with map/terrain.bmp as the original file), but the same can be applied to every other bitmap.
  • Copy the base game's according map/terrain.bmp file into the mod. If the mod's map had its dimensions changed, this image should be resized to the proper ones, otherwise it shouldn't be touched.
  • Open both map/terrain_broken.bmp and map/terrain.bmp within GIMP or Photoshop. Paint.net or MS Paint will not work.
  • Within the image editor, select everything in map/terrain_broken.bmp (using ctrl+A or Select -> All) and copy it to the clipboard.
  • Paste the contents of the file into map/terrain.bmp.
  • Export the opened map/terrain.bmp file with correct settings, disabling writing colour space information if using GIMP.
  • Optionally delete the map/terrain_broken.bmp file.

Coordinate system

Since the map is a 3D object, there are X, Y, and Z positions using a typical Cartesian coordinate system, which are commonly referred to in a multitude of map files. For disambiguation, these are the coordinates that the game uses:

  • A single X coordinate is equivalent to a single pixel within the provinces bitmap horizontally. The horizontal edges of the map are at 0, and it goes left-to-right (or west-to-east). Note that the map loops horizontally.
  • A single Y coordinate is equivalent to a value of 10 (in decimal) within the heightmap. A Y position of 0 is equivalent to pure black on the heightmap, while a Y position of 25.5 is equivalent to pure white on the heightmap. The water level, for example, is located at 9.5 by the Y position[2].
  • A single Z coordinate is equivalent to a single pixel within the provinces bitmap vertically. The lower (or southern) edge of the map is at 0, and it goes down-to-up (or south-to-north). Note that most image editors have it the other way around: the position at 0 by the axis would be at the top and it going up-to-down. When wanting to know the Z coordinate, it can be useful to change the coordinate system that the editor uses (if possible) or temporarily flip the image upside down.

Quick overview

These files in the map folder are common to edit:

  • /Hearts of Iron IV/map/provinces.bmp is used as a map assigning the province borders.
  • /Hearts of Iron IV/map/definition.csv is used in order to assign in-game province information, including terrain, continent, and the coastal status. This does not change the graphical appearance.
  • /Hearts of Iron IV/map/terrain.bmp is used as the terrain map, assigning textures to the specified positions. This does not change the actual province terrain, just the appearance.
  • /Hearts of Iron IV/map/heightmap.bmp is used as the heightmap, assigning a height for each pixel on the map. This is also used to put areas underwater.
  • /Hearts of Iron IV/map/world_normal.bmp is used as the normal mapping, assigning a slope to each pixel that gets used in lightning calculates. This is used to create more accurate shadows.
  • /Hearts of Iron IV/map/terrain/colormap_rgb_cityemissivemask_a.dds is used to create an overall colouring of the world and to change the opacity of city lights. Oddities about the world's colouring typically come from this file not being adjusted.
  • /Hearts of Iron IV/map/terrain/colormap_water_0.dds is used to create a colouring of the world oceans.
  • /Hearts of Iron IV/map/buildings.txt is used to assign the positions of building models and to assign the neighbouring sea province to the buildings that require it, i.e. naval bases and floating harbours. This can cause a game crash if left unedited while adding new states or provinces.
  • /Hearts of Iron IV/map/unitstacks.txt is used to assign the information regarding the position and rotation of unit models and positions of unit models.
  • /Hearts of Iron IV/map/rivers.bmp is used to assign rivers that appear in the world.
  • /Hearts of Iron IV/map/trees.bmp is used to assign tree models that appear in the world.
  • /Hearts of Iron IV/map/airports.txt and /Hearts of Iron IV/map/rocketsites.txt are used to assign the province sites for each state where airports and rocket sites would be built. This will cause a game crash if left unedited while adding new states.
  • /Hearts of Iron IV/map/supply_nodes.txt and /Hearts of Iron IV/map/railways.txt are used to assign the supply nodes and railways at the game's start. This will cause a game crash if unedited on a new map.
  • /Hearts of Iron IV/map/adjacencies.csv is used to create special relationships between pairs of provinces, whether it's making the border impassable or creating a passage without a border.
  • /Hearts of Iron IV/map/adjacency_rules.txt is used to establish more complex rules for province relationships, primarily in regards to making straits that can be passable or not depending on circumstances.
  • /Hearts of Iron IV/map/ambient_object.txt is used to create models that are constantly present on the world map. This includes the base game's world borders in the north and the south.
  • /Hearts of Iron IV/map/cities.txt is used to assign different city models to different parts of the world, by default using /Hearts of Iron IV/map/cities.bmp as the map.

State modding

主条目:State modding

States are defined within /Hearts of Iron IV/history/states/*.txt files, with information about the states: provinces containing them, the state category, the starting buildings and owner.
The nudger works for editing states, however, there are several issues:

  • If a state's name contains any special character requiring more than one byte to represent in UTF-8 (e.g. any letters outside of the English alphabet), the nudger will crash when trying to create one.
  • Every quote within the state's history file will get removed if a nudger edits it. This can break DLC checks (e.g. has_dlc = "Waking the Tiger"), present in base game Turkish or Chinese states.

Additionally, note that the nudger dynamically updates strategic regions with states: a newly-created state will not have its provinces assigned to strategic regions and that will have to be done via the nudger. Since strategic regions are assigned for each province individually, deleting the strategic region outputs within the user directory's /Hearts of Iron IV/map/strategicregions/ folder may work, as long as the strategic region borders don't need to be adjusted, as all provinces of one state must be within the same strategic region.

Strategic regions

Strategic regions are defined within /Hearts of Iron IV/map/strategicregions/*.txt files, where provinces are added to them individually. A province must have a strategic region. Otherwise, many interactions with that province can cause a game crash, sometimes appearing before the game can launch. The strategic regions are used for ships and airforce as regions where they can be assigned, but they also serve for assigning weather. A naval strategic region may also have naval terrain assigned with naval_terrain = terrain_name.

Weather

参见:Nudger

Each strategic region has weather defined in periods, as

weather={
		period={
			between={ 0.0 30.11 }
			temperature={ -6.0 12.0 }
			no_phenomenon=0.500
			rain_light=1.000
			rain_heavy=0.150
			snow=0.200
			blizzard=0.000
			arctic_water=0.000
			mud=0.300
			sandstorm=0.000
			min_snow_level=0.000
		}
    }
}
  • between = { ... } decides in which period the weather applies: both dates within the definition of the period are included within the period; the first number is the day, the second is the month; the count for days and months starts from 0 rather than 1.
  • temperature = { ... } assign the maximum and minimum temperatures for the period.

Most of the lines decide the chance for each province in the strategic region to have that weather type, assuming that the chance no_phenomenon evaluates as false. Multiple weather types can happen at the same time, and weather is calculated daily.
min_snow_level decides the visual appearance of snow in the region. Usually set to 0.1 in the particularly snowy periods such as winter in Northern Scandinavia.

Additionally, the /Hearts of Iron IV/map/weatherpositions.txt file decides the position of weather objects such as the clouds. A single entry in the file has the following layout:

strategic region ID;X position;Y position;Z position;size

For example, 1;2781.24;9.90;1571.49;small means that the strategic region with the ID of 1 has a small weather object in the specified position.
The size only has 2 values: small and large. Multiple definitions or none at all may be present for the same strategic region, however, there should be at least one definition in the file for both large and small objects to avoid a game crash.

Weather is best generated with nudger in the strategic region menu.

Provinces

参见:Nudger

There are two files related to the province definitions:

  • /Hearts of Iron IV/map/provinces.bmp, which decides how the provinces are placed on the map.
  • /Hearts of Iron IV/map/definition.csv, which decides the exact details about the province: ID, RGB value to link to the map, coastal status, terrain.

The provinces bitmap is saved as a 24-bit RGB file. Saving in 32-bit will result in a 'We do not support bitdepth at 32' error, resulting in a crash on startup. The province bitmap being saved wrong (Such as the prior 32 bitdepth or being the wrong format renamed to BMP) will result in 'X4008: floating point division by zero' errors. Due to proportions of other map files, both length and width have to be a multiple of 128. Due to the engine limitations, the total area of the file in pixels cannot exceed 13 107 200.

An unused colour for the bitmap can be picked by using the database menu within the nudger. However, considering the sheer amount of possible colours, randomising a colour using a site such as random.org can also be used, with a chance of overlap being extremely low.
If the province definitions are incomplete or incorrect, the game creates a 'corrected' copy of this file in the user directory to replace the CSV table for province definitions, with any incomplete or missing province definitions filled in, as /Hearts of Iron IV/map/definition.csv.fixed and other copies of the file in that folder. It might be necessary to delete this copy after making changes to the original file.[3]
Both of these can be used to speed up province creation by painting random colours on the map, then letting the game generate the CSV table which'll be adjusted manually once ported over to the mod.

The previously-mentioned corrected copy of the province definition within the user directory would contain every province definition from the mod's definition.csv alongside every colour that's present on the bitmap but doesn't have a definition, which'll have a default entry as a land province with no continent and unknown terrain. This can be used with an image editor to locate any unintended colours in the provinces.bmp file. These can be the result of picking a wrong colour or of anti-aliasing being turned on when editing the map. To locate them, one can choose the colour that the newly-generated province has and paint it over a spot that's safe to paint (Such as a large sea province or a corner of the map), and then use the colour select tool with 0% tolerance/0 threshold (name for the option depends on the image editor) in order to select it. In image editors, this is commonly either a separate option (Such as in GIMP) or an option within the magic wand tool for it to have a global flood mode (Such as in Paint.net).
After having located the province in question, the question of what to do with it is left up to the modder: it can be made into a separate province entirely (and so should be assigned to a state and strategic region), possibly altering its borders to fit better, or it could be removed entirely from the provinces.bmp file. In either of these cases, the spot that has been made in order to find the province should be reverted to its initial state.

An entry within the /Hearts of Iron IV/map/definition.csv follows the specified format:

Province ID; R value; G value; B value; Province type (land|sea|lake); Coastal status (true/false); Terrain; Continent (integer)

Example definition of these include the following:

7;212;179;179;sea;true;ocean;0
114;40;15;15;land;false;plains;1
260;170;235;235;land;true;urban;1

The RGB values for each province should be unique in order for them to be identifiable on the bitmap and are integers on the scale from 0 to 255. The continent must be an integer that represents a continent. For sea provinces, it must be kept at 0, while for lakes it may be kept at 0.
Terrain is defined for each province individually here. This does not change the appearance of the province, just the terrain it's assigned, which changes naval or land combat. For lake provinces, terrain must be 'lakes' while for sea provinces it must be 'ocean'.
In here, the coastal status is used for both seas and land provinces. For land provinces, it means that a border with a sea province (not a lake), and for sea provinces it means that a border with a land province. This is used for determining, for example, where naval bases can be built and where they can't. If bitmap and province definition disagree on whether or not a province is coastal, such as if a land province is specified as non-coastal but still borders sea provinces or vise-versa, bitmap's results will be preferred. This does mean that there is no reason to specify the coastal status within the province definition, and it remains a leftover from before 1.11.

Province IDs should go in order. While a gap in province IDs will not necessarily crash the game, it will instead create a different problem: each province after the gap will take on the properties of the next province by ID other than the colour on the bitmap. For example, if province 23 doesn't exist, province 24 will take on the terrain, type (land|sea|lake), coastal status, and continent of province 25, which will copy from province 26 in turn and so on. This can cause highly unintended behaviour if not crashes, so it's best to not have any province gaps: if a province is to be deleted, another one must fill the gap, such as the last province by ID.

HOI4 NSB map explanation.jpg

Hearts of Iron IV has a limit on province displaying. No more than 65536 different province borders can be displayed at the same time before an integer overflow causes the in-game engine to stop displaying any additional ones. In-game, this is usually hit at about 21000 provinces. In other words, province amount should be kept low, with the base game's roughly 13000-14000 provinces being an amount to aim for. More can cause the game to run more slowly and unstably. If a province borders another province several times in a disjointed manner, such as in the attached image, each one counts as a separate border.

These disjointed island provinces may also cause a game crash if they're too disjoined with large distances between them. This is not anything to worry about with regular provinces, but if two share a colour by accident, this may happen.
Province borders are also not drawn between provinces that are on land and those that are in a sea or a lake, according to definition.csv. If there is a particular spot or series of spots where provinces don't work, it might also be caused by a wrong province type assignment in definition.csv.

Additionally, these errors are common to encounter:

  • "Map invalid X crossing. Please fix pixels at coords": Four provinces share a common corner. The game connects the bottom left and the top right provinces but this situation is confusing to the player and should be avoided. Keep in mind that the map loops horizontally, so this X crossing may be right at the edge of the province bitmap. The coordinate system used in the coordinates is the more traditional left-to-right then down-to-up, rather than the one used by the game in other circumstances.
  • "Province X has TOO LARGE BOX. Perhaps pixels are spread around the world in provinces.bmp": The province has a width/height of more than 1/8th of the total map width/height. This might be an indication that two provinces inadvertently share a colour, but it may also be a large province. Large provinces aren't treated stably by the game and should be avoided.
  • "Province X has only N pixels": The province consists of no more than NGraphics.MINIMUM_PROVINCE_SIZE_IN_PIXELS (NDefines.NGraphics.MINIMUM_PROVINCE_SIZE_IN_PIXELS = 8 by default). This is likely too small to be easily usable by the player.
  • "Prov 12345 has no continent": There are two common causes for the error.
    • The province is a land province, yet its continent ID is left at zero. This also includes the auto-generated province definitions, present if a colour is found that isn't present in the definition file. If the province doesn't exist in the regular provinces.csv file, check the "fixed" variant created by the game in user directory.
    • The province entry doesn't end with the Windows-style CRLF line ending. If every single province continent is broken, this is a sign that the line break is improper in the file (The Unix LF format is a common cause, as certain programs will change it in .csv files). The exact process of conversion to CRLF depends on the text editor. For example: in Visual Studio Code, this is changed with the bottom bar; in Notepad++, this is changed with the "EOL conversion" in the Edit menu; in Sublime Text, this is changed with the "Line endings" in the View menu.
  • "Bitmap and province definition disagree on whether or not province 12345 is coastal. Bitmap adjacency result will be prefered. ": This error has these common causes:
    • Exactly what the error states: the province is a coastal land province yet it's marked as non-coastal within /Hearts of Iron IV/map/definition.csv or vise-versa. Adjust the province definition accordingly.
    • There's a missing province ID somewhere earlier in the file, which offsets the province definitions from their intended colours later on in the file. This is typically the case if there is a large quantity of such errors and the province definition matches up with the coastal status. A broken-looking terrain map mode can also be an indicator of this issue. This can be checked by comparing the difference between the province ID and the line number where it is defined: if the definition for the province 0 exists, the line number and the province ID must have a difference of 1.
  • "Province X has no pixels in provinces.bmp": There are two common causes for the error, depending on whether there are any pixels with that colour in the bitmap, which can be checked using a colour select tool within an image editor.
    • The colour within the province's definition has no pixels in the provinces.bmp. This may be a sign that the wrong colour has been used for the province or that the entry remains while the province has been erased. Ensure that there are no new provinces in the "fixed" definition generated by the game that may be intended to be the pixelless province; otherwise remove the province definition, with one another province definition to fill the gap since there can be no province ID gaps.
    • There are several provinces with the same colour on the bitmap. If this is the case, the game will assign each pixel of the colour to only one of the provinces, leading the other with no pixels. If this is the case, change the colour of the second province if they're intended to be separate, otherwise remove one of the definitions while still making sure to have one another province definition to fill the gap. This may commonly, though not necessary, occur together with a TOO LARGE BOX error for the other province.

Continents

Continents are defined within the /Hearts of Iron IV/map/continent.txt file within the continents = { ... } table. The continents have several uses in-game:

The continents block is a simple list of continents. The IDs are assigned in the order defined.

All land provinces must belong to a continent to avoid errors. The continents are assigned in /Hearts of Iron IV/map/definition.csv, also possible to apply via the Database menu in nudger. Continents do not need to follow state borders.
These continents exist in base game:

ID Internal name Localised name Notes
1 europe Europe Includes Cyprus. The border between Europe and Asia runs in the Ural mountains, cutting states such as Kalmykia and Archangelsk in half.
2 north_america North America Erroneously includes 2 provinces in Albania's North Epirus.
3 south_america South America This also includes Central America (up to Guatemala/Belize, including these) and the Caribbean.
4 australia Australia This only includes the Australian mainland, New Zealand, as well as the islands and archipelagos of Papua, Tasmania, Bismarck, Solomon Islands, and French Polynesia. The rest of the Pacific islands are Asian.
5 africa Africa The Suez canal is considered the border: the entire state of Sinai is in the Middle East.
6 asia Asia The border with the Middle East runs cutting the states of Herat and Baluchistan in half, while others are almost entirely contained in one or the other.
7 middle_east Middle East The border with Europe in Caucasus Mountains cuts Abkhazia, Kabardino-Balkaria, North Ossetia, Azerbaijan, and Istanbul in half. The rest are entirely contained within one or the other.

Terrain

There are two primary types of terrain in the game: graphical and provincial. Both terrain types are defined within /Hearts of Iron IV/common/terrain/*.txt files.
Provincial terrain is assigned within /Hearts of Iron IV/map/definition.csv to each province for land provinces and within the strategic regions for sea provinces. This does not change the graphical appearance in any way (aside from the 'simple terrain' map mode), instead, this assigns modifiers to the province and details about land or naval combat.
Graphical terrain is assigned within /Hearts of Iron IV/map/terrain.bmp to the map itself. This file is a 8-bit indexed image with the same dimensions as the provinces bitmap. This is purely the visual appearance of the map and doesn't change it in any actual way. However, the database section in the nudger has a setting to auto-generate the provincial terrain based off the graphical terrain.

Provided are tables of base game terrain types.
Since the game decides the terrain based off the colourmap IDs, the colours in the graphical terrain can be changed to anything as long as the colourmap ID (specified in the ID column) is the same and the file will be treated no different, so the colours here are merely the ones that the base game uses. 'Terrain type' in the graphical terrain table refers to the nudger-generated provincial terrain type. Appearance in the graphical terrain table is the specified segment of the atlas file set to full opacity: in practice, the atlas file has transparency so that some parts of the terrain are more visible than others.

Graphical terrain:
ID Colour Appearance Terrain type Notes
0 (86, 124, 27) Atlas terrain 1.png plains
1 (0, 86, 6) Atlas terrain 4.png forest Typically used for the dense forests.
2 (112, 74, 31) Atlas terrain 3.png hills
3 (206, 169, 99) Atlas terrain 9.png desert
4 (6, 200, 11) Atlas terrain 5.png forest Typically used for the sparse forests.
5 (255, 0, 24) Atlas terrain 0.png plains Typically used for farmland.
6 (134, 84, 30) Atlas terrain 11.png mountain
7 (252, 255, 0) Atlas terrain 12.png desert
8 (73, 59, 15) Atlas terrain 14.png desert
9 (75, 147, 174) Atlas terrain 6.png marsh
10 (174, 0, 255) Atlas terrain 13.png mountain
11 (92, 83. 76) Atlas terrain 11.png mountain
12 (255, 0, 240) Atlas terrain 8.png desert
13 (240, 255, 0) Atlas terrain 10.png urban Automatically spawns city models.
14 (55, 90, 220) lakes Never used in-game, seems to refer to an invalid texture. Instead, the ocean terrain is used for lakes.
15 (8, 31, 130) Atlas terrain 9.png ocean
16 (255, 255, 255) Atlas terrain 11.png mountain Is permamently covered in snow, unlike the other graphical terrain using the same appearance
17 (132, 255, 0) Atlas terrain 2.png hills
18 (255, 126, 0) Atlas terrain 7.png mountain Never used in base game.
19 (114, 137, 105) Atlas terrain 0.png plains Is permamently covered in snow, unlike the other graphical terrain using the same appearance
20 (58, 131, 82) Atlas terrain 7.png mountain
21 (255, 0, 127) Atlas terrain 4.png jungle
22 (0, 82, 82) Atlas terrain 5.png jungle Never used in base game.
27 (243, 199, 147) Atlas terrain 7.png mountain
31 (27, 27, 27) Atlas terrain 15.png mountain Never used in base game.
Provincial terrain:
Internal name Localised name Terrain type Notes
unknown Unknown land Default terrain for new provinces.
forest Forest land 84 optimal combat width, -15% division attack.
hills Hills land 80 optimal combat width, -25% division attack.
mountain Mountain land 75 optimal combat width, -50% division attack.
plains Plains land 90 optimal combat width
urban Urban land 96 optimal combat width, -30% division attack.
jungle Jungle land 84 optimal combat width, -30% division attack.
marsh Marsh land 78 optimal combat width, -40% division attack.
desert Desert land 90 optimal combat width
ocean Ocean sea Default terrain for sea provinces.
lakes Lakes sea Default terrain for lake provinces.
water_fjords Fjords and Archipelagos naval Makes battlecruisers, battleships, heavy cruisers, and carriers less viable (-20% attack, defence, and movement), makes the navy harder to detect (-20% visibility), and removes 15% from positioning.
water_shallow_sea Shallow Sea naval Makes submarines easier to detect (+100% visibility) and removes 5% from positioning.
water_deep_ocean Deep Oceans naval Makes destroyers have 20% less of attack, movement, and defence; light cruisers have 10% less of attack, movement, and defence; makes the submarines harder to detect (-15% visibility) but slower by 25%. The chance to hit a naval mine is halved.

Provincial terrain

Provincial terrain types are defined within /Hearts of Iron IV/common/terrain/*.txt files in the categories = { ... } block. Each terrain is a code block, and the name of the block gets taken as the terrain's name, such as this creating terrains my_terrain_1 and my_terrain_2.

categories = {
    my_terrain_1 = {
        <...>
    }
    my_terrain_2 = {
        <...>
    }
}

The following arguments go into terrain:

  • color = { 100 120 140 } assigns a colour to the terrain in the 'Simplified terrain' map mode. This is a RGB value, where each one goes on the scale from 0 to 255.
  • sound_type = forest assigns the ambient sound played by the terrain. This appears to be unused.
  • movement_cost = 1.0 assigns the move speed for this terrain in particular. A higher value means that divisions or ships will move slower.
  • units = { ... } assigns unit-scoped modifiers that would apply on every land division or ship within this province within battle, such as attack = 0.1 or defence = -0.1.
  • my_subunit = { ... } serves to make these apply to specific sub-units, with units = { ... } within being for combat and the rest for outside. For example,
carrier = {
    units = {
        attack = -0.2
    }
    navy_fuel_consumption_factor = 0.2
}
  • Additionally, the terrain serves as a modifier block, allowing any provincial modifier to be used within. These include many combat-related and state-scoped modifiers.
  • is_water = yes if set, will mark this as water terrain, making it only possible to use for seas and lakes. Additionally, naval_terrain = yes would be needed to mark it as a naval terrain which can be used in strategic regions.

The following arguments are only for land terrain:

  • combat_width = 78 assigns the base combat width. Up to this many units would be able to participate in the battle without penalties.
  • combat_support_width = 24 assigns the combat width on top of the combat_width. After combat_width is exceeded, combat_support_width more worth of troops can still engage in combat, but with penalties.
  • supply_flow_penalty_factor = 0.2 assigns a penalty to supply flow through provinces with this terrain.
  • match_value = 8 assigns a terrain value for this province. This is primarily used for the state_and_terrain_strategic_value trigger/variable and to assign costs to the peace conference.
  • ai_terrain_importance_factor = 8.0 assigns a strategic importance value for AI on this terrain. A higher value means that AI would recognise this as a defensible province.

Some common modifiers to use include the following:

  • attrition = 0.1 sets the base attrition for the land province.
  • enemy_army_bonus_air_superiority_factor = -0.1 modifies the bonus that would be given to the attacker from air superiority.
  • sickness_chance = 1.0 makes combat on this province result in a possibility of the army leader becoming sick.
  • positioning = 0.1 modifies the navy positioning within this sea province.
  • navy_visibility = -0.2 modifies the visibility of navies within this sea province.

Localisation can be added with using the terrain's ID as the localisation key:

 my_terrain_1: "My terrain"
 my_terrain_1_desc: ""

For land provinces, there are 2 sprites: regular (with GFX_terrain_ prepended before the terrain's name) and winter (Additionally with _winter appended in the end). The winter sprite appears when the province is covered in snow, while the regular one appears regularly. These would be the following for my_terrain_1:

spriteType = {
    name = GFX_terrain_my_terrain_1
    textureFile = gfx/interface/terrains/terrain_my_terrain_1.dds
}
spriteType = {
    name = GFX_terrain_my_terrain_1_winter
    textureFile = gfx/interface/terrains/terrain_my_terrain_1_winter.dds
}

For naval terrain, there are 10 sprites: regular, rain, storm, snow, and snowstorm for both day and night.

Examples of sprite definitions for a naval terrain named my_naval_terrain_1
	
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_day
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_day_rain
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day_rain.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_day_storm
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day_storm.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_day_snow
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day_snow.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_day_snow_storm
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_day_snow_storm.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_night
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_night_rain
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night_rain.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_night_storm
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night_storm.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_night_snow
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night_snow.dds
}
spriteType = {
    name = GFX_terrain_my_naval_terrain_1_night_snow_storm
    textureFile = gfx/interface/terrains/terrain_my_naval_terrain_1_night_snow_storm.dds
}


Graphical terrain

Graphical terrain is defined within the /Hearts of Iron IV/common/terrain/*.txt files within the terrain = { ... } block. Each graphical terrain type is a separate block within that overarching block, with the name of the block being irrelevant, with overlaps possible. Example definitions include:

terrain = {
    my_terrain = {
        type = urban
        color = { 23 }
        texture = 1
        spawn_city = yes
    }
    my_terrain = { type = plains color = { 24 } texture = 2 }
}

In here, type = urban tells the provincial terrain type that the nudger would assign to the graphical terrain of this type when auto-generating province terrains, color = { ... } is a list of colourmap indices that get used for the graphical texture, and texture = 1 assigns the atlas definition, beginning with 0.
Optional arguments are spawn_city = yes, which automatically spawns city models, and perm_snow = yes, which makes the specified regions be covered in snow permamently.

The atlas files are /Hearts of Iron IV/map/terrain/atlas0.dds and /Hearts of Iron IV/map/terrain/atlas_normal0.dds. These must be squares. By default, each is a map of tiles in a 4x4[4], where each tile is 512x512 pixels large.[5]
The tiles are arranged in the left-to-right then up-to-down order starting from 0, as in the attached table.

0 1 2 3
4 5 6 7
8 9 10 11
12 13 14 15

This order means that, for example, texture = 11 within a graphical definition will result in the rightmost lower-middle tile being chosed assuming the default 4x4 arrangement.
atlas0 is the regular texture map, for the textures that will get assigned on the terrain, while atlas_normal0 is a normal map, which gets used to assign vectors perpendicular to each point on the texture which get used when shading the map.

The files atlas1 and atlas2, as well as atlas_normal1 and atlas_normal2 serve for farther zoom levels: the game uses lower-quality textures when the camera is more zoomed-out or with different graphics settings to save on performance. atlas1 has each of its dimensions at half-size of atlas0, and atlas2 has them at the quarter-size of atlas0.

For the game to read the file, mipmaps must be generated and DXT5 must be the compression algorithm used.

Height map

/Hearts of Iron IV/map/heightmap.bmp is used in order to determine the height of a given position on the map. A minimum value (or pure black) translates to a height of 0 by the Y axis, while the maximum value (or pure white) translates to a height of 25.5 by the Y axis.
The sea level is set at the height of 9.5 by default[2], and so anything below the value of 95 (on the scale from 0 to 255) will be shown as underwater, while everything above 95 will be shown as above water. Water is always at the constant height.

It should be preferred to create smooth transitions in pixel's values in order to create more smooth-looking transitions. In addition to the heightmap, the Normal map also contributes to smoothness.

Heightmap has the same image dimensions as the provinces bitmap and is saved as a 8-bit greyscale image.

Normal map

/Hearts of Iron IV/map/world_normal.bmp is a a normal map saved in the 24-bit RGB format, deciding on the exact slope of each pixel within the 3D rendering of the map. This is used in the lighting calculations.
The red channel decides on the X value of the vector from -1 to 1: a value of 0 is pointing to the left (West) as much as possible while a value of 255 is pointing to the right (East) as much as possible.
The green channel decides on the Y value of the vector from -1 to 1: a value of 0 is pointing to the bottom (South) as much as possible, while a value of 255 is pointing to the top (North) as much as possible.
The blue channel decides on the Z value of the vector from 0 to -1: a value of 128 corresponds to 0, meaning it is not pointing at the viewer but rather perpendicularly depending on the X and Y values, while a value of 255 corresponds to -1, which means it's pointing at the viewer as much as possible.

There are several tools that can be used in order to generate a normal map from a heightmap. Some include:

  • NVidia's texture tools.
  • Within Photoshop CC, Filter > 3D > Generate Normal Map.
  • Within GIMP, using the normal map plugin: after downloading, opening the heightmap, changing image type to RGB, Filter > Map > Normal, and inverting the Y axis.

Rivers

River Map Colour Scheme.png
An example of how rivers will look like in the bitmap. Each of the pixels has been resized to a 50x50 pixels large square and the rivers flow from right to left.

/Hearts of Iron IV/map/rivers.bmp is an 8-bit indexed bitmap file that decides the positioning of rivers. Rivers must be exactly one pixel thick and only go in orthogonal directions: pixels do not connect diagonally. As the river counts as a level 1 railway[6], particularly long rivers can cause the game to slow down or run unstably. The river map is a 8-bit indexed bitmap with the same dimensions as the provinces bitmap.

To correctly render, each river must have exactly one, by default green, start marker. In this case a river is taken as a single contiguous block of river pixels: those connected with red flow-in or yellow flow-out sources count as the same river as the main flow. Only the 'main branch' of the river should have the green source pixel, any branch connected to it via the red flow-in shouldn't have it.

Colours used in rivers.bmp
Index Colour Function
0 (0, 255, 0) The source of a river
1 (255, 0, 0) Flow-in source. Used to join multiple 'source' paths into one river.
2 (255, 252, 0) Flow-out source. Used to branch outwards from one river.
3 (0, 225, 255) River with narrowest texture.
4 (0, 200, 255) River with narrow texture
5 (0, 150, 255)
6 (0, 100, 255) River with wide texture.
7 (0, 0, 255)
8 (0, 0, 225)
9 (0, 0, 200)
10 (0, 0, 150)
11 (0, 0, 100) River with widest texture.

By default, indexes 0[7] up to including 6[8] are treated as small rivers for game mechanics, indexes up to including 11[9] as large rivers. Pixels with any other index within the file do not get read in-game and serve as 'comments', usually used to signify the land province outlines to make it easier to place rivers.

If the path connecting the centres of two provinces overlaps at least one river pixel, it is considered a river crossing. If it intersects multiple river pixels of different types, the crossing type is implementation defined. To avoid player confusion, province paths should either clearly cut or stay clear of a river.

A possible error to encounter is MAP_ERROR: Palette in rivers.bmp is probably not correct. This can entirely be ignored: the rivers.bmp file will be loaded regardless and, unlike other map errors, this does not prevent the game from loading without debug mode.
This error is caused by GIMP: editing in Photoshop does not produce this. By default, the DIB header is set to say that the colourmap has 0 colours despite the fact that the colourmap still contains 256 colours. This is to ensure that the game does not spend time reading colours within the BMP file and instead skips straight to the bitmap itself. GIMP instead sets the DIB header to say that there are 256 colours in the palette, which is unexpected by the game. This cannot be fixed within GIMP itself, however, assuming that the rivers bitmap is otherwise correct (Saved in 8-bit indexed mode with BITMAPINFOHEADER) this can also be fixed by opening the rivers bitmap within a hex editor and changing two values: addresses 00 00 00 2F and 00 00 00 33 should both be 00 instead of 01 as set by GIMP.

Trees

/Hearts of Iron IV/map/trees.bmp is a 8-bit indexed bitmap that decides on the position of tree models on the map. The resolution of the map decides on the density of trees, by default each side is [math]\displaystyle{ \frac{75}{256} }[/math] of the provinces bitmap.

The map decides on the positions of pdxmesh objects. A sprite with the ID of 14 will cause the pdxmesh with the name of mapobject_14 to spawn on that location, for example:

pdxmesh = {
    name = "mapobject_14"
    file = "gfx/models/mapitems/trees/my_tree.mesh"
    scale = 0.5
}

This definition would be within a /Hearts of Iron IV/gfx/entities/*.gfx file within the objectTypes = { ... } block. By default, these tree types exist within the base game:

List of trees:
colourmap ID Colour Tree Type/Density
2 (30, 139, 109) Sparse Palm
3 (18, 100, 78) Dense Palm
5 (76, 156, 51) Sparse Forest
6 (47, 120, 24) Dense Forest
28 (150, 0, 255) Sparse Jungle
29 (88, 0, 138) Dense Jungle

Colour maps

The colourmap files define the overall colour tint applied to the map. Without a colourmap file, all land will appear the same overall colour, regardless of terrain type. They should be saved in the .DDS format, using the 8.8.8.8 ARGB 32-bit profile with no mipmaps.

Water

/Hearts of Iron IV/map/terrain/colormap_water_0.dds is used to give tint to the water. Each of its dimensions is halved compared to the provinces bitmap. Similarly applies for the water colourmaps 1 and 2: they are the same but with the dimensions halved compared to the previous level. This is for performance reasons as to make the game use lower-quality textures when zoomed out or with different graphics settings.

RGB and city lights

/Hearts of Iron IV/map/terrain/colormap_rgb_cityemissivemask_a.dds serves two purposes. The RGB channels define the default colouring of the map, which gets modified by terrain. When making changes to the terrain or height map, this colour map should be updated too to reflect the changes visually. The alpha channel is used for city lights at night: more opacity means stronger night lights. The file should use half of the vertical and horizontal resolution of the provinces bitmap.
Editing this colourmap in particular would be much easier if the alpha channel should be separated from the RGB channels, as these serve different purposes. The process to do so depends on the image editor. For example, in GIMP it is done by adding a layer mask with the setting of "Transfer layer's alpha channel" selected, which'll allow editing the alpha channel by editing the mask and the RGB channels by editing the now non-transparent layer. Paint.net cannot be used to edit this colourmap, since it will reset the RGB channel values of each fully-transparent pixel to pure white upon saving.

Buildings

参见:Nudger

There are 3 primary files for buildings in the map folder: /Hearts of Iron IV/map/buildings.txt, which primarily decides the position of building models; /Hearts of Iron IV/map/airports.txt, which assigns the province within the state where the air base will be built; and /Hearts of Iron IV/map/rocketsites.txt, which assigns the province within the state where the rocket launch site will be built.

The locations of building models for each state are defined in /Hearts of Iron IV/map/buildings.txt. An entry in that file is defined as such (If unspecified, assume a number with up to 2 decimal digits):

State ID (integer); building ID (string); X position; Y position; Z position; Rotation; Adjacent sea province (integer)
  • State ID defines which state the building is located in. Even for provincial buildings, this is the ID of the state, not the province. Instead, provincial buildings have several entries per state, with the XYZ position being used by the game to know which province it's for.
  • Building ID defines which model is being located. While this includes each building, this also includes floating harbours as floating_harbor.
  • X, Y, and Z position represent the position on the map of the building model using the coordinate system.
  • Rotation is measured in radians. A rotation of 0 will result in the building model pointing in the same direction as the model is set, while positives will rotate it counter-clockwise and negatives will rotate it clockwise. A full rotation resulting in the same position as 0 is equal to the number π multiplied by 2, roughly 6.28.
  • Adjacent sea province is only necessary to define for naval bases and floating harbours, in order to let the game know from which sea province ships or convoys can access the land province where it is located. If the building type is not a naval base, it should be left at 0.

It is preferable to generate the building models in the building section in the nudger, rather than filling it out manually. However, note that the game will crash if the currently-existing /Hearts of Iron IV/map/buildings.txt file is entirely empty. The content of the file doesn't matter for this, as long as it's not entirely empty.

If some naval base or floating harbour is missing a definition within this file, the game will crash once any province with one would be evaluated by AI or tried to be used as a naval base. This represents as a crash with the client_ping or hourly_ping last read file a few hours into the game, fixed by turning off AI. This is because the building definition is used not only for the model of the naval base, but also for assigning the sea province that the port goes out into. If there is no definition, the game fails at evaluating the spot where the navy would be placed, resulting in an infinite loop that eats the RAM and the CPU leading to a crash.

An entry within /Hearts of Iron IV/map/airports.txt or /Hearts of Iron IV/map/rocketsites.txt looks like 123 = { 4321 }. Within this, the first number that serves as the name of the block is the ID of the state, while the number within the block is the province containing the air base or rocket launch site.
This also can be generated via the nudger's building section.

Unit model and victory point positions

参见:Nudger

The /Hearts of Iron IV/map/unitstacks.txt file decides on the positions of unit models and victory points within each individual province. This is edited via the Unit menu in nudger.
In particular, this decides the position of the victory point on the map if one is present within the province. Whether one is present, how it's called, and how much it's worth is decided within state history files and localisation.

An entry in the file has the following formatting:

Province ID; Type; X position; Y position; Z position; Rotation; Offset
  • Province ID assigns to which province the model is aimed for.
  • Rotation is done in radians, 0 being the default state and positives rotating it counterclockwise.
  • The offset is used for the animation in order to make it so that the animations of units within provinces are not directly happening at the same time, but have a delay.
  • Type is an integer from 0 to 38 assigning a purpose.
List of unitstacks types:
ID Internal name Notes
0 Standstill
1 Moving 0 Different numbers represent different needed levels of rotation
2 Moving 1 Different numbers represent different needed levels of rotation
3 Moving 2 Different numbers represent different needed levels of rotation
4 Moving 3 Different numbers represent different needed levels of rotation
5 Moving 4 Different numbers represent different needed levels of rotation
6 Moving 5 Different numbers represent different needed levels of rotation
7 Moving 6 Different numbers represent different needed levels of rotation
8 Moving 7 Different numbers represent different needed levels of rotation
9 Attacking
10 Defending
11 Disembarck 0 Different numbers represent different needed levels of rotation
12 Disembarck 1 Different numbers represent different needed levels of rotation
13 Disembarck 2 Different numbers represent different needed levels of rotation
14 Disembarck 3 Different numbers represent different needed levels of rotation
15 Disembarck 4 Different numbers represent different needed levels of rotation
16 Disembarck 5 Different numbers represent different needed levels of rotation
17 Disembarck 6 Different numbers represent different needed levels of rotation
18 Disembarck 7 Different numbers represent different needed levels of rotation
19 Ship in port
20 Ship in port moving
21 Standstill RG RG stands for regrouping
22 Moving 0 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
23 Moving 1 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
24 Moving 2 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
25 Moving 3 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
26 Moving 4 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
27 Moving 5 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
28 Moving 6 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
29 Moving 7 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
30 Disembarck 0 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
31 Disembarck 1 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
32 Disembarck 2 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
33 Disembarck 3 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
34 Disembarck 4 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
35 Disembarck 5 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
36 Disembarck 6 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
37 Disembarck 7 RG Different numbers represent different needed levels of rotation. RG stands for regrouping
38 Victory point

Adjacencies

The adjacencies file is /Hearts of Iron IV/map/adjacencies.csv. This decides the relationships between borders of provinces, allowing to create borders between non-directly adjacent provinces (such as strait crossings), block the border between two directly adjacent provinces (making it impassable), or otherwise set up adjacency rules that make crossing the border limited (such as the Gibraltar strait).

The following format is used for adjacencies:

Start province ID;End province ID;Adjacency type;Through province ID;Starting X position;Starting Y position;Ending X position;Ending Y position;Adjacency rule;Comment

For example, these are valid adjacencies:

6891;3838;sea;5579;-1;-1;-1;-1;;Sardinia-Corsica
10910;12807;impassable;-1;-1;-1;-1;-1;;Himalayas
# Comment
3314;6336;sea;2752;2885;1578;2890;1581;;Afsluitdijk

There are 2 primary types of an adjacency: sea and impassable. 'Impassable' fully blocks the connection between two provinces, while 'sea' creates a conditional border between the provinces (using an adjacency rule or otherwise), not requiring these provinces to have a direct border. If a type is not specified, then it assumes to be sea. The sea connection must be between two provinces of the same type: sea or land. If the connection is between two land provinces, they can't directly border each other.
Since the impassable type can't go 'through' a province, does not have a start or ending positions for graphics, and can't have an adjacency rule set, these should remain unset. This is done by leaving the adjacency rule field completely blank and having the rest be left as -1.
'Through' marks a province that serves as a gateway for the adjacency for the sea type. If the two provinces do not directly border each other, it is mandatory to define a Through province. Enemy control of that province (such as an enemy ship in the sea province between the two land provinces) will prevent the adjacency from being possible to use. Additionally, it is possible to define an adjacency rule in this case to apply to the provinces.

X and Y positions decide the start and end of the red line created with a strait crossing between two land provinces. These use the X and Z coordinates in the 3D coordinate system. If set to -1, then the position will be calculated automatically, as the middles of the starting and ending provinces.

The last line of the file must be -1;-1;-1;-1;-1;-1;-1;-1;-1. This is used as an indicator that the file should stop being read, and any adjacency entries later in the file would get ignored. Even if the file is otherwise empty, this line should still be present to avoid hangup on loading.

Adjacency rules

Adjacency rules, found at /Hearts of Iron IV/map/adjacency_rules.txt are ways to establish more complex rules on who can access a specified adjacency, either a strait or a canal. In order to establish an adjacency rule, it must first specify the name in /Hearts of Iron IV/map/adjacency.csv. This file must be encoded in UTF-8 without the byte order mark.

Determining what each type of relation has access to is next. Friends are any nation that is a subject, is given military access to, or in a faction with the controlling power of the specified adjacency. Contested is when two nations contest the adjacency by controlling different provinces within the required_provinces. Enemy is any nation at war with the controlling power, and neutral is any nation that has no specific relation. Each relation should specify whether armies can pass through (transports), navies can pass through, submarines can pass through, and whether you can use it to get trade through.

After is the required provinces, these specify what a nation must control in order to be the owner of the adjacency. All of the provinces do not need to be within the same state or from the same country. A minimum of two provinces must be specified in this field.

is_disabled is a trigger block evaluated for the country trying to use the adjacency rule that blocks it entirely if true. tooltip = localisation_key serves as assigning a localisation key

icon specifies over which province the icon for the adjacency appears in the navy view. This should be a sea province.

offset specifies where the icon should move graphically starting from the middle of the province specified as the icon ( in the order { X value Z value Y value } ).


Example adjacency rule
adjacency_rule =
{
	name = "BOSPHORUS_STRAIT"
    
	contested =
	{
		army = no
		navy = no
		submarine = no
		trade = no
	}
	enemy =
	{
		army = no
		navy = no
		submarine = no
		trade = no
	}
	friend =
	{
		army = yes
		navy = yes
		submarine = yes
		trade = yes
	}
	neutral =
	{
		army = no
		navy = no
		submarine = no
		trade = yes
	}
	
	required_provinces = { 9833 11829 }

	is_disabled = {
		has_country_flag = BOSPHORUS_STRAIT_BLOCKED_FOR_COUNTRY
		tooltip = bosporus_strait_blocked_tt
	}
	
	icon = 9833
	offset = { -2 0 -9 }
}


Supply

参见:Nudger

Starting positions of supply nodes and railways are defined within /Hearts of Iron IV/map/supply_nodes.txt and /Hearts of Iron IV/map/railways.txt respectively. An invalid definition can cause crashes when trying to open singleplayer or when trying to open the 'Supply' section in nudger. An invalid definition in this case is one that's going over non-existing or stateless provinces or a very disjointed railway definition.
It is recommended to use the nudger's Supply section to assign supply nodes and railways.

An entry in the supply nodes file has this formatting, without the semicolon:

Level; Province

The level represents the level of the supply node. By default, supply nodes have the max level of 1[10], so this is limited to 1.
The province represents the ID of the province in which the supply node is located. Example entry is 1 1234

An entry in the railways file has this formatting, without the semicolons:

Level; Amount of provinces; List of provinces

The level represents the level of the railway. By default, this is no more than 5.[11]
The amount of provinces is how many provinces the railway lasts.
The list of provinces is a whitespace character-separated list of province IDs on which this railway goes.
A valid railway definition is the following: 4 4 693 1444 12 11

Supply areas (For versions prior to 1.11)

Note: With the release of 1.11 and No Step Back, supply areas are deprecated and instead the initial logistics/supply system is defined through supply_nodes.txt and railways.txt; see previous section. For further information on updating your map from 1.10 to 1.11, see this post.

All states must be associated with a supply area. Each supply area can take any number of states, and each state should be in only one supply area.

Supply areas are formatted as follows:

supply_area={
	id=1
	name="SUPPLYAREA_1"
	value=12
	states={
		5 85 
	}
}

Ambient objects

The /Hearts of Iron IV/map/ambient_object.txt file is used to define the cosmetic 3D objects found in the map that are always generated, such as the map frame or winds.
Each ambient object is a separate definition within the file of type = { ... }. The following arguments go inside of an ambient object definition:

  • type = object_type refers to an entity defined within a /Hearts of Iron IV/gfx/entities/*.asset file.
  • use_animation = no sets whether the ambient object has an animation that should be used or not.
  • time_duration = 300 sets the time for how long the animation takes place.
  • scale = 100.0 sets the size of the ambient object. The default size is 1.
  • always_visible = yes, if set, enforces the ambient object to be permamently visible such as the frames.
  • object = { ... } decides each instance of the entity. Multiple can exist in the same ambient object. In particular, these arguments are used:
    • name = my_entity_name is the name of the object. This does not have to be unique and only shows up within the nudge.
    • position = { ... } is the XYZ position of the object.
    • rotation = { ... } is the rotation of the object by XYZ axes.

This is an example of an ambient object definition:

type = {
    type = my_entity
    use_animation = no
    scale = 1000
    always_visible = yes
    object = {
        name = my_entity_name
		position={
			420.090 10.000 382.670 
		}
		rotation={
			0.000 0.000 0.000 
		}
    }
    object = {
        name = my_entity_name
		position={
			1234.890 10.000 407.440 
		}
		rotation={
			0.000 0.000 0.000 
		}
    }
}

The nudge can edit existing ambient objects, but it is unable to create new ones: they have to be created manually first.

References

  1. Paint.net automatically generates the colourmap: https://forums.getpaint.net/topic/10989-bitmap-colormap-editing/?do=findComment&comment=181320
  2. 2.0 2.1 static const float WATER_HEIGHT = 9.5f; in /Hearts of Iron IV/gfx/FX/constants.fxh
  3. HoI 4 - map/definition.csv in user dir is used without validation
  4. static const float MAP_NUM_TILES = 4.0f; in /Hearts of Iron IV/gfx/FX/constants.fxh
  5. static const float TEXELS_PER_TILE = 512.0f; in /Hearts of Iron IV/gfx/FX/constants.fxh
  6. NDefines.NSupply.RIVER_RAILWAY_LEVEL = 1 in Defines
  7. NDefines.NMilitary.RIVER_SMALL_START_INDEX = 0 in Defines
  8. NDefines.NMilitary.RIVER_SMALL_STOP_INDEX = 6 in Defines
  9. NDefines.NMilitary.RIVER_LARGE_STOP_INDEX = 11 in Defines
  10. As defined within /Hearts of Iron IV/common/buildings/00_buildings.txt
  11. NDefines.NSupply.MAX_RAILWAY_LEVEL = 5 in Defines

When editing Defines, make sure to use an override file rather than copying the entire file, as that can cause game crashes when new defines get added, which can happen even in 'minor' updates.