Difference between revisions of "Terragen"

From Sirikata Wiki
Jump to navigation Jump to search
(added illustrative images)
Line 11: Line 11:
 
====Scale====
 
====Scale====
 
The Scale parameter must be greater than 0.  A large Scale results in a zoomed-in, detailed map of a small area, while a small Scale produces a zoomed-out view of a large region.
 
The Scale parameter must be greater than 0.  A large Scale results in a zoomed-in, detailed map of a small area, while a small Scale produces a zoomed-out view of a large region.
 +
{|
 +
|-
 +
|[[Image:Terragen_scale_0.5.png|thumb|none|upright=1|left|alt=Scale = 0.5|Scale = 0.5]]
 +
|[[Image:Terragen_scale_2.png|thumb|none|upright=1|left|alt=Scale = 2|Scale = 2]]
 +
|-
 +
|}
  
 
====Continental Shelf Height====
 
====Continental Shelf Height====
 
The Continental Shelf Height must be between 0 and 10, inclusive.  It specifies how high the continents are above the sea floor.  More accurately, it controls the maximum amplitude of the function that determines the continental shelf height at every point on the plane.  See the section on Algorithms for a description of this function.
 
The Continental Shelf Height must be between 0 and 10, inclusive.  It specifies how high the continents are above the sea floor.  More accurately, it controls the maximum amplitude of the function that determines the continental shelf height at every point on the plane.  See the section on Algorithms for a description of this function.
 +
{|
 +
|-
 +
|[[Image:Terragen_shelf_1.png|thumb|none|upright=1|left|alt=Shelf height = 1|Shelf height = 1]]
 +
|[[Image:Terragen_shelf_1.5.png|thumb|none|upright=1|left|alt=Shelf height = 1.5|Shelf height = 1.5]]
 +
|[[Image:Terragen_shelf_2.png|thumb|none|upright=1|left|alt=Shelf height = 2|Shelf height = 2]]
 +
|[[Image:Terragen_shelf_3.png|thumb|none|upright=1|left|alt=Shelf height = 3|Shelf height = 3]]
 +
|-
 +
|}
  
 
====Noise====
 
====Noise====
 
The Noise parameter controls the amount of random noise that is added to the heightmap.  Its value must be between 0 and 10, inclusive.
 
The Noise parameter controls the amount of random noise that is added to the heightmap.  Its value must be between 0 and 10, inclusive.
 +
 +
  
 
====Altitude Compression====
 
====Altitude Compression====

Revision as of 00:01, 31 August 2011

Terragen is a web-based terrain generation utility created by Ben Christel. It can be found here. It is designed to produce very-large-scale terrain (large islands and small continents) suitable for virtual worlds. It uses a pseudo-random noise algorithm based on series of sine functions.

Using Terragen

Terragen has several parameters that can be set by the user to produce different types of terrain. After setting the parameters, the user clicks a button to generate a 2D map of the terrain which doubles as the texture if the user wishes to create a mesh of the terrain. Terragen can output Collada (.dae) meshes, albeit hackishly. The Terragen page contains instructions for exporting Collada.

Parameters

The key function of Terragen is to produce a heightmap, which is essentially a 2D grid, each vertex of which has a numeric value which represents the height of the terrain at that point. Once the heightmap has been produced, it is relatively simple to draw the terrain map and create the 3D model of the terrain. The algorithm that produces the heightmap can take several parameters as input. Following is a description of each of them.

Scale

The Scale parameter must be greater than 0. A large Scale results in a zoomed-in, detailed map of a small area, while a small Scale produces a zoomed-out view of a large region.

Error creating thumbnail: Unable to save thumbnail to destination
Scale = 0.5
Error creating thumbnail: Unable to save thumbnail to destination
Scale = 2

Continental Shelf Height

The Continental Shelf Height must be between 0 and 10, inclusive. It specifies how high the continents are above the sea floor. More accurately, it controls the maximum amplitude of the function that determines the continental shelf height at every point on the plane. See the section on Algorithms for a description of this function.

Error creating thumbnail: Unable to save thumbnail to destination
Shelf height = 1
Error creating thumbnail: Unable to save thumbnail to destination
Shelf height = 1.5
Error creating thumbnail: Unable to save thumbnail to destination
Shelf height = 2
Error creating thumbnail: Unable to save thumbnail to destination
Shelf height = 3

Noise

The Noise parameter controls the amount of random noise that is added to the heightmap. Its value must be between 0 and 10, inclusive.


Altitude Compression

The Altitude Compression parameter controls the degree to which the height of the terrain tends toward the extremes. A value of 0 (the lowest) does not modify the terrain in any way; a value of 5 (the highest) raises high terrain and flattens low terrain. Higher Altitude Compression values tend to result in more dramatic mountains and rougher coastlines. Altitude Compression must be an integer between 0 and 5, inclusive.

Detail

The terrain heightmap is generated by summing several 2D functions at various scales and rotations. The Detail parameter controls how many of these functions are used. A high value results in rough terrain; low values produce smooth "blobby" terrain. If the detail level is set below 3, the underlying regularity of the noise algorithm begins to be apparent. Detail must be an integer between 0 and 10, inclusive.

Biome Size

Biomes are continuous regions with a single prevailing climate. In Terragen, there are really only two characteristics that determine the general type of a region: whether the region is a continent or an ocean, and whether it is flat or mountainous. These are not really binary variables; there are degrees of both mountainousness and continentality. In Terragen, these characteristics are independent of each other and the value of each at any given point is determined by a large-scale noise function. The Biome Size parameter thus determines the approximate size of continents and mountainous regions.

Position (X, Z)

The X and Z position parameters denote the location of the upper-left corner of the map on the infinite 2D plane that is the domain of the Terragen noise function. This is useful if you want to create several chunks of terrain that tile together nicely. The units for the XZ coordinates are pixels on the map when drawn at a scale of 1. The X and Z coordinates can be any real numbers.

Map Dimensions (Width and Height)

The Map Width and Height parameters control the size of the map that is drawn on the screen. They do not change the scale (zoom level) at which the map is drawn; instead they show more or less of the terrain. Map Width and Height are specified in pixels; they can be any positive integer up to 700, although it is not recommended to draw maps larger than 400x400 pixels (the rendering time is linear in the number of pixels drawn, as is the size of the terrain mesh).

Polygon Count Reduction

Polygon Count Reduction does not change the actual terrain heightmap in any way. It merely specifies an error tolerance to use when simplifying the terrain mesh. Setting Polygon Count Reduction to 0 results in no polygon reduction relative to the original mesh.