Terrain Generation/ru: Difference between revisions

From Vintage Story Wiki
(Created page with "Система генерации ландшафта чрезвычайно сложна и запутана. «Генерация ландшафта» — это термин...")
(Created page with "__TOC__ == Этапы генерации ландшафта == Следующие шаги являются обзором, в следующем разделе будет б...")
Line 3: Line 3:


__TOC__
__TOC__
== Stages of terrain generation ==
== Этапы генерации ландшафта ==
The following steps are an overview, the next section will have a much more in depth explanation of these stages.
Следующие шаги являются обзором, в следующем разделе будет более подробное объяснение этих этапов.
# generate noise maps for various properties.
# генерирование карты шума для различных свойств.
# landforms, these are chosen based on a landform noise map.
# landforms, они выбираются на основе карты шума форм рельефа.
# rock strata, this is the stage where the type of rock in a region is chosen partly based on a geologic province noise map.
# rock strata, это этап, на котором тип горных пород в регионе выбирается частично на основе карты шума геологической провинции.
# caves, chunks are populated with caves.
# caves, чанки заполнены пещерами.
# block layers, layers placed on top of the current ground, e.g. soil, snow, and grass.
# block layers, слои, размещенные поверх текущей земли, например. почва, снег и трава.
# deposits, ores and other things in the stone are placed.
# deposits, руды и прочее в размещаются в породе.
# structures, this adds ruins, trader carts, treasure chests, and more.
# structures, добавляет руины, тележки торговцев, сундуки с сокровищами и многое другое.
# ponds, bodies of water.
# ponds, водоемы.
# vegetation and patches, plants that are randomly found in groups, cattails, horsetail, and flowers. It also adds trees.
# vegetation and patches, случайно встречающиеся группами, рогоз, хвощ, цветы. Он также добавляет деревья.
# finalize, this finishes the process, processing light in a chunk, spawning animals, and adding snow.
# finalize, это завершает процесс, обрабатывая свет в куске, создавая животных и добавляя снег.


== Technical ==
== Technical ==

Revision as of 10:26, 18 February 2022

Other languages:

Система генерации ландшафта чрезвычайно сложна и запутана.

«Генерация ландшафта» — это термин, обозначающий все части мира, созданные игрой, которые представляют собой блоки. Это включает, помимо прочего, почву, горы, озера, деревья и руины.

Этапы генерации ландшафта

Следующие шаги являются обзором, в следующем разделе будет более подробное объяснение этих этапов.

  1. генерирование карты шума для различных свойств.
  2. landforms, они выбираются на основе карты шума форм рельефа.
  3. rock strata, это этап, на котором тип горных пород в регионе выбирается частично на основе карты шума геологической провинции.
  4. caves, чанки заполнены пещерами.
  5. block layers, слои, размещенные поверх текущей земли, например. почва, снег и трава.
  6. deposits, руды и прочее в размещаются в породе.
  7. structures, добавляет руины, тележки торговцев, сундуки с сокровищами и многое другое.
  8. ponds, водоемы.
  9. vegetation and patches, случайно встречающиеся группами, рогоз, хвощ, цветы. Он также добавляет деревья.
  10. finalize, это завершает процесс, обрабатывая свет в куске, создавая животных и добавляя снег.

Technical

Each stage is defined in the Survival base mod.

Noise maps

VS utilizes three methods for generating noise: weighted octave, Perlin, and normalized simplex noise. Each one behaves differently. In total, seven [1] noise maps are created at this stage.

  • Climate
  • Flower
  • Bush
  • Forest
  • Beach
  • Geologic province
  • Landform

These maps are utilized by later stages to provide randomness to terrain.

Landforms

These are the shapes the land takes. There are many different landforms that can generate and some utilize more than one noise map, mostly the climate map. Each landform's properties are defined in the game assets. There are several optional properties, but all landforms must specify:

  • Octaves
  • Octave thresholds
  • Terrain Y key positions
  • Terrain Y key thresholds

Octaves defines how rough or smooth terrain is.

Rock strata

Rocks are generated in layers and those layers are grouped by their type: sedimentary, metamorphic and igneous.

Sedimentary group doesn't have to be generated. If it does, sedimentary stones lie above all metamorphic and igneous stones.

Metamorphic group doesn't have to be generated. If it does, metamorphic stones rest below all sedimentary layers and above all igneous layers.

Igneous group will always be generated. Igneous stones always start at the mantle, at the bottom of the map, and stretch upwards until it reaches metamorphic or sedimentary layers, or the surface.

Certain kinds of rocks have special spawning rules.

  • Basalt, despite being an igneous stone, can be generated above any layer, including sedimentary and metamorphic stones.
  • Halite spawns in underground domes of substantial size.
  • Marble spawns in veins in phyllite and slate.
  • Obsidian spawns in veins in basalt.
  • Suevite is found only in craters, surrounding meteoric iron veins.

Caves

Caves

Block layers

Layers of blocks.

Deposits

Deposits are handled in GenDeposits.cs in the Survival Mod. The code for deposits handles more than just ores in rocks. There are many steps in the process of generating ores.

  1. All assets in worldgen/deposits/ are loaded and parsed.
    1. The generator goes over all deposits and adds them to a list.
    2. If there are any child deposits, they are registered.
  2. A deposit shape distortion map is created. This is used when initializing deposits.
  3. The generator goes over all registered deposits.
    1. Each deposit variant is initialized with a random seed and the deposit shape distortion map. This init process is the same for all deposits and is used only to simplify the code.
    2. If the deposit variant uses an ore map, one is created for it. Each kind of deposit gets its own ore map.
    3. If there are any child deposits that also use an ore map, one is created for the child deposit.

This is the end of what is done in GenDeposits. When a new world region is generated, GenDeposits calls .OnMapRegionGen on each deposit variant.

  1. Region generation begins by updating the vertical distortion ore maps for the region.
  2. Each deposit variant then generates ore in the region.

GenDeposits.OnMapRegionGen is relatively simple because most of the generation work is given to each variant. What actually happens when a variant generates a region is dependent on which ore generator is used, of which there are several.

Structures

Trader carts, ruins, vugs.

Ponds

Vegetation and patches