Difference between revisions of "Orulex"

From OrbiterWiki
Jump to navigation Jump to search
m
(Added category.)
 
(8 intermediate revisions by 7 users not shown)
Line 4: Line 4:
 
}}
 
}}
 
[[Image:Oru-080401-1.jpg|200px|thumb|right|Earth in Orulex 1.0]]
 
[[Image:Oru-080401-1.jpg|200px|thumb|right|Earth in Orulex 1.0]]
[[Image:Oru-080401-2.jpg|200px|thumb|right|Brighton Beach Crafter on the Moon in Orulex 1.0]]
+
[[Image:Oru-080401-2.jpg|200px|thumb|right|Brighton Beach Crater on the Moon in Orulex 1.0]]
 
[[Image:Oru-080401-3.jpg|200px|thumb|right|Venus in Orulex 1.0]]
 
[[Image:Oru-080401-3.jpg|200px|thumb|right|Venus in Orulex 1.0]]
 
[[Image:Oru-080401-7.jpg|200px|thumb|right|Nereid in Orulex 1.0]]
 
[[Image:Oru-080401-7.jpg|200px|thumb|right|Nereid in Orulex 1.0]]
  
'''Orulex''' is a dynamic landscape generator add-on for Orbiter which allows you to add a global landable mesh to the planets.
+
'''Orulex''' is a dynamic landscape generator add-on for Orbiter which allows users to add a global landable mesh to planets.
 
Simply said, it turns flat planets into mountainous planets.
 
Simply said, it turns flat planets into mountainous planets.
 +
 +
Latest stable version is 1.0
 +
Latest development version is 1.2_080527
  
 
==Basic features (1.0)==
 
==Basic features (1.0)==
Line 64: Line 67:
 
World Studio is both the Orulex terrain config system and the versatile planet editor. It was first released on April 1, 2008 same with Orulex 1.0.
 
World Studio is both the Orulex terrain config system and the versatile planet editor. It was first released on April 1, 2008 same with Orulex 1.0.
  
==Generator ideas and Function desciption==
+
==Generator ideas and function description==
'''Configuration'''
+
===Configuration===
  
 
Orulex system configuration are done by World Studio program and config files editing, with options ranging from terrain polygon count to shapes of the worlds.
 
Orulex system configuration are done by World Studio program and config files editing, with options ranging from terrain polygon count to shapes of the worlds.
 
2 PDF's with full description of world studio and file configuration can be found in the release package.
 
2 PDF's with full description of world studio and file configuration can be found in the release package.
  
'''Planet functions''' (Function string in config\terrain\planet_name.cfg)
 
  
'''Basic ideas'''
+
 
 +
 
 +
===Basic ideas===
 +
 
 +
Function string in config\terrain\planet_name.cfg
  
 
* Planet functions is written in postfix notation.
 
* Planet functions is written in postfix notation.
Line 80: Line 86:
 
* Functions specified the same way - f(x,y,z+w) is x y z w + f.
 
* Functions specified the same way - f(x,y,z+w) is x y z w + f.
  
'''Terrain function'''
+
===Terrain function===
  
 
The terrain is represented by a 3 to 1 function with arguments being the position on the planet and output being the altitude at this position. The concept is similar to the plotting of 1D functions, like sine and cosine - the X axis represents the position, and Y axis represents the altitude:
 
The terrain is represented by a 3 to 1 function with arguments being the position on the planet and output being the altitude at this position. The concept is similar to the plotting of 1D functions, like sine and cosine - the X axis represents the position, and Y axis represents the altitude:
Line 86: Line 92:
 
[[Image:Functions in Orulex 1.jpg|800px|thumb|center|Imagine the same thing in 4D, and that's how it is done in Orulex.]]
 
[[Image:Functions in Orulex 1.jpg|800px|thumb|center|Imagine the same thing in 4D, and that's how it is done in Orulex.]]
  
'''Terrain Functions:'''
+
===List of terrain functions===
  
[[Image:Terrain Functions.jpg|200px|thumb|left|'''perlin'''(xd,yd,zd,band,scale)]]
+
====Perlin noise====
 +
[[Image:Terrain Functions.jpg|100px|thumb|left|Classic perlin noise ground function.]]
 +
;Syntax:<nowiki>perlin(xd,yd,zd,band,scale)</nowiki>
 +
;xd,yd,zd:Distortion values for x,y,and z coordinates respectively.
 +
;band: The amount of noise bands to be used - the more of them the more detailed terrain is, but slower.
 +
;scale: The horizontal scale of the thing. It is roughly equivalent to the size of the pattern shown in viewer on the actual planet, i.e. if scale is 10000 then the pattern will be spread across 10 kilometers.
  
Classic perlin noise ground function.
+
Output is in -1..1 range.
  
'''xd,yd,zd''' is distortion values for x,y,and z coordinates respectively.
+
====Ridge noise====
 +
[[Image:Terrain Functions 2.jpg|100px|thumb|left|Ridged perlin noise ground function. ]]
  
'''band''' is the amount of noise bands to be used - the more of them the
+
;Syntax:<nowiki>ridge(xd,yd,zd,band,scale)</nowiki>
more detailed terrain is, but slower.
 
  
'''scale''' is the horizontal scale of the thing. It is roughly equivalent to the
+
;Syntax:<nowiki>perlin(xd,yd,zd,band,scale)</nowiki>
size of the pattern shown in viewer on the actuall planet, i.e. if scale is
+
;xd,yd,zd:Distortion values for x,y,and z coordinates respectively.
10000 then the pattern will be spread across 10 kilometers.
+
;band: The amount of noise bands to be used - the more of them the more detailed terrain is, but slower.
 +
;scale: The horizontal scale of the thing. It is roughly equivalent to the size of the pattern shown in viewer on the actual planet, i.e. if scale is 10000 then the pattern will be spread across 10 kilometers.
  
 
Output is in -1..1 range.
 
Output is in -1..1 range.
  
[[Image:Terrain Functions 2.jpg|200px|thumb|left|'''ridge'''(xd,yd,zd,band,scale)]]
+
====Sea level====
 +
[[Image:Terrain Functions 3.jpg|100px|thumb|left|Sea level function with Perlin noise]]
  
Ridged perlin noise ground function. Same parameters as above.
+
;Syntax:<nowiki>sealevel(f,min)</nowiki>
  
Output is in -1..1 range.
+
Same as <nowiki>min2(min,f)</nowiki>. Returns <math>f</math> if <math>f>=min</math> and <math>min</math> if <math>f<min</math>.
  
[[Image:Terrain Functions 3.jpg|200px|thumb|left|'''sealevel'''(f,min)]]
+
Useful to truncate below the sphere part of the terrain function into flat valleys. Almost always should be removed if planet have ocean. If your planet have an ocean, make sure thet the underwater part of the function is not truncated!
  
Same as min2('''min,f'''). Returns '''f''' if '''f>=min''' and '''min''' if '''f<min'''.
+
====Sinusoidal terrain====
 +
[[Image:Terrain Functions 4.jpg|100px|thumb|left|Sinusoidal terrain]]
  
Useful to truncate below the sphere part of the terrain function into
+
;Syntax:
flat valleys.
+
<nowiki>sintf(xd,yd,zd,scale)</nowiki>
  
Almost always should be removed if planet have ocean.
+
;xd,yd,zd:Distortion values for x,y,and z coordinates respectively.
 +
;scale: The horizontal scale of the thing. It is roughly equivalent to the size of the pattern shown in viewer on the actual planet, i.e. if scale is 10000 then the pattern will be spread across 10 kilometers.
  
<-(example with perlin)
+
Output is in -1..1 range.
  
If your planet have an ocean, make sure thet the underwater part
+
====Cosinusoidal terrain====
of the function is not truncated!
+
[[Image:Terrain Functions 5.jpg|100px|thumb|left|Cosinusoidal terrain]]
  
[[Image:Terrain Functions 4.jpg|200px|thumb|left|'''sintf'''(xd,yd,zd,scale)]]
+
;Syntax:<nowiki>costf(xd,yd,zd,scale)</nowiki>
  
Sinusoidal terrain.
+
;xd,yd,zd:Distortion values for x,y,and z coordinates respectively.
 +
;scale: The horizontal scale of the thing. It is roughly equivalent to the size of the pattern shown in viewer on the actual planet, i.e. if scale is 10000 then the pattern will be spread across 10 kilometers.
  
'''xd,yd,zd''' is distortion values for x,y,and z coordinates respectively.
+
Output is in -1..1 range.
'''scale''' is the horizontal scale of the thing.
 
 
 
 
 
[[Image:Terrain Functions 5.jpg|200px|thumb|left|'''costf'''(xd,yd,zd,scale)]]
 
Cosinusoidal terrain.
 
 
 
'''xd,yd,zd''' is distortion values for x,y,and z coordinates respectively.
 
 
 
'''scale''' is the horizontal scale of the thing.
 
  
* '''curv'''(n,f,x1,y1,x2,y2,...,x(n-1)/2,y(n-1)/2) - Input/Output curve for f by points of xi,yi, lagrange interpolated. It is a very powerfull tool, allowing to map the inputs to according to specific curve to the output, changing gradients and similar things. The I/O curve is too big a topic for this manual. Example: Callisto
+
====Curve function====
 +
;Syntax:<nowiki>curv(n,f,x1,y1,x2,y2,...,x(n-1)/2,y(n-1)/2)</nowiki>
  
  
Other operators/functions:
+
Input/Output curve for f by points of xi,yi, lagrange interpolated. It is a very powerful tool, allowing to map the inputs to according to specific curve to the output, changing gradients and similar things. The I/O curve is too big a topic for this manual.
* '''ax,ay,az''' - world coordinates.
+
For example: Callisto
  
* '''+, -, --, *, /, sin, cos, tan, ln, pow, round, trunc, sqr, sqrt max2, max3, min2, min3''' - arithmetics and basic math.
 
  
* '''trim'''(f,min,max) - trims f into min<f<max.
+
====Other operators/functions====
 +
;ax,ay,az:world coordinates
 +
;+, -, --, *, /, sin, cos, tan, ln, pow, round, trunc, sqr, sqrt max2, max3, min2, min3: Arithmetics and basic math
 +
;trim(f,min,max): trims f into <math>min<f<max</math>
  
 
==See Also==
 
==See Also==
[[World Studio]]
+
[[Meshland]]
  
[[Meshland]]
+
==Download Links==
 +
[http://orbides.1gb.ru/orulex.php Orulex's Homepage by Artlav]
  
==Links==
+
[http://www.orbiter-forum.com/showthread.php?t=2007 Development version Orbiter forum thread]
'''Main'''
 
  
[http://orbides.1gb.ru/orulex.php Orulex's Homepage by Artlav]
+
[https://www.orbiter-forum.com/resources/orulex_land_gen-v1-2.2390/ Orulex_Land_Gen-v1.2] Orbiter Forum/Resources.
  
[http://www.orbithangar.com/searchid.php?ID=2686 Download at OrbiterHangar]
+
[http://www.orbiter-forum.com/showthread.php?t=999 1.0 Orbiter forum thread]
  
[http://www.orbiter-forum.com/showthread.php?t=999 Orbiter forum thread]
+
==Additional links==
  
'''Additionals'''
+
'''Extensions'''
  
 
[http://orbides.1gb.ru/orbf/MLVS-WIP-080327.zip WIP MeshLand 2, Collision Detection support for Orulex, Unstable]
 
[http://orbides.1gb.ru/orbf/MLVS-WIP-080327.zip WIP MeshLand 2, Collision Detection support for Orulex, Unstable]
Line 186: Line 196:
 
[http://orbides.1gb.ru/orbf/oru-flight-080321-xvid.avi China flying in Gregburch's Swift1 (xVid, 31 MB)]
 
[http://orbides.1gb.ru/orbf/oru-flight-080321-xvid.avi China flying in Gregburch's Swift1 (xVid, 31 MB)]
  
 +
[[Category: Articles]]
 
[[Category:Add-ons]]
 
[[Category:Add-ons]]
[[Category:Celestial body add-ons]]
 

Latest revision as of 11:49, 15 October 2022

Project home: http://orbides.1gb.ru
Author: Artyom "Artlav" Litvinovich
Current version: Unknown
Compatibility: Unknown


Earth in Orulex 1.0
Brighton Beach Crater on the Moon in Orulex 1.0
Venus in Orulex 1.0
Nereid in Orulex 1.0

Orulex is a dynamic landscape generator add-on for Orbiter which allows users to add a global landable mesh to planets. Simply said, it turns flat planets into mountainous planets.

Latest stable version is 1.0 Latest development version is 1.2_080527

Basic features (1.0)[edit]

  • Generates planet terrain in Orbiter on the fly, using real data or fractal functions.
  • Easily downloadable textures and heightmaps data for Earth, and other planets.
  • Lv11 global Orbiter and Lv6-Lv22 local downloaded textures (LandSat, USGS) support.
  • Collision detection support possibilities and SDK interface

System Requirements:[edit]

Out of the box:

  • 256Mb RAM + what Orbiter and OS takes.
  • 1.5+Ghz CPU, good video card (if it runs Orbiter Lv10+NASSP with good FPS it will run Orulex as if nothing is here).

Hi-quality:

  • 1Gb RAM + what Orbiter and OS takes + what local maps you will download.
  • 2-3Ghz CPU, ~1Gb of disk space, Fast Cheap internet (Lv9 heightmap is 466Mb download).

Performance Guidelines (1.0)[edit]

  • If you got a multi-core CPU, it is almost always better to keep multithread mode on.
  • If you got single-core CPU and Orulex feels slow on response or pre-computation takes longer than 10-15 seconds, try turning multithread mode off.
  • Reducing polygon count may help if you got an old video card.
  • Reducing LevLimit may give a more stable-looking landscape, but dropping quality exponentially.
  • If you got FPS jerks on older/single-core PC's, look on texture timings.

TexGen-H defines time slice allocated when there is a lot to generate, TexGen-L defines time slice allocated when there are only small changes, like when you are flying around. Reducing them make Orbiter more responsive and terrain less responsive. Timings are not defined in multithread mode.

Known bugs/issues (1.0)[edit]

  • Windows Vista random CTD.
  • Dislocated patches when flying with multithreaded mode on.
  • Textures getting colorfully random on some machines (probably Orbiter/DirectX bug on older systems).

Data download Servers List[edit]

Earth

  • SRTM global Earth terrain
  • NASA derived global 30 meters per pixel satellite image mosaic
  • NASA derived global 15 meters per pixel satellite image mosaic, donated and processed by I-Cubed using equipment from Isilon Systems.
  • USGS Digital Ortho
  • USGS Urban Area Ortho
  • Pseudo color 15m Landsat mosaic provided by MDA Federal, scenes comprised from early 2000s

Moon

  • Clementine global Moon terrain
  • Clementine 40xx
  • Clementine 30xx

Mars

  • MOLA global Mars terrain
  • Mars THEMIS Color

Venus

  • Magellan Imaging Radar (Color)
  • Magellan Imaging Radar (Grey)

World Studio[edit]

World Studio is both the Orulex terrain config system and the versatile planet editor. It was first released on April 1, 2008 same with Orulex 1.0.

Generator ideas and function description[edit]

Configuration[edit]

Orulex system configuration are done by World Studio program and config files editing, with options ranging from terrain polygon count to shapes of the worlds. 2 PDF's with full description of world studio and file configuration can be found in the release package.



Basic ideas[edit]

Function string in config\terrain\planet_name.cfg

  • Planet functions is written in postfix notation.
  • In postfix, the sign of operation goes after the operands, so a+b will be ab+.
  • It have a significant comprehensive advantage, since there is no ()'s.
  • a+((b+f)*c+d/e) will be written as a b f+c*d e/++.
  • Functions specified the same way - f(x,y,z+w) is x y z w + f.

Terrain function[edit]

The terrain is represented by a 3 to 1 function with arguments being the position on the planet and output being the altitude at this position. The concept is similar to the plotting of 1D functions, like sine and cosine - the X axis represents the position, and Y axis represents the altitude:

Imagine the same thing in 4D, and that's how it is done in Orulex.

List of terrain functions[edit]

Perlin noise[edit]

Classic perlin noise ground function.
Syntax
perlin(xd,yd,zd,band,scale)
xd,yd,zd
Distortion values for x,y,and z coordinates respectively.
band
The amount of noise bands to be used - the more of them the more detailed terrain is, but slower.
scale
The horizontal scale of the thing. It is roughly equivalent to the size of the pattern shown in viewer on the actual planet, i.e. if scale is 10000 then the pattern will be spread across 10 kilometers.

Output is in -1..1 range.

Ridge noise[edit]

Ridged perlin noise ground function.
Syntax
ridge(xd,yd,zd,band,scale)
Syntax
perlin(xd,yd,zd,band,scale)
xd,yd,zd
Distortion values for x,y,and z coordinates respectively.
band
The amount of noise bands to be used - the more of them the more detailed terrain is, but slower.
scale
The horizontal scale of the thing. It is roughly equivalent to the size of the pattern shown in viewer on the actual planet, i.e. if scale is 10000 then the pattern will be spread across 10 kilometers.

Output is in -1..1 range.

Sea level[edit]

Sea level function with Perlin noise
Syntax
sealevel(f,min)

Same as min2(min,f). Returns if and if .

Useful to truncate below the sphere part of the terrain function into flat valleys. Almost always should be removed if planet have ocean. If your planet have an ocean, make sure thet the underwater part of the function is not truncated!

Sinusoidal terrain[edit]

Sinusoidal terrain
Syntax

sintf(xd,yd,zd,scale)

xd,yd,zd
Distortion values for x,y,and z coordinates respectively.
scale
The horizontal scale of the thing. It is roughly equivalent to the size of the pattern shown in viewer on the actual planet, i.e. if scale is 10000 then the pattern will be spread across 10 kilometers.

Output is in -1..1 range.

Cosinusoidal terrain[edit]

Cosinusoidal terrain
Syntax
costf(xd,yd,zd,scale)
xd,yd,zd
Distortion values for x,y,and z coordinates respectively.
scale
The horizontal scale of the thing. It is roughly equivalent to the size of the pattern shown in viewer on the actual planet, i.e. if scale is 10000 then the pattern will be spread across 10 kilometers.

Output is in -1..1 range.

Curve function[edit]

Syntax
curv(n,f,x1,y1,x2,y2,...,x(n-1)/2,y(n-1)/2)


Input/Output curve for f by points of xi,yi, lagrange interpolated. It is a very powerful tool, allowing to map the inputs to according to specific curve to the output, changing gradients and similar things. The I/O curve is too big a topic for this manual. For example: Callisto


Other operators/functions[edit]

ax,ay,az
world coordinates
+, -, --, *, /, sin, cos, tan, ln, pow, round, trunc, sqr, sqrt max2, max3, min2, min3
Arithmetics and basic math
trim(f,min,max)
trims f into

See Also[edit]

Meshland

Download Links[edit]

Orulex's Homepage by Artlav

Development version Orbiter forum thread

Orulex_Land_Gen-v1.2 Orbiter Forum/Resources.

1.0 Orbiter forum thread

Additional links[edit]

Extensions

WIP MeshLand 2, Collision Detection support for Orulex, Unstable

Interface SDK (Delta-Glider samples included)

Pre-composed heightmaps

Earth Lv8 heightmap (84Mb)

Mars Lv8 heightmap (82Mb)

Moon Lv8 heightmap (81Mb)

Everest Lv11 textures and heightmaps (5.3Mb)

Grand Canyon Lv13 textures and heightmaps (9Mb)

Demonstaration video

China flying in Gregburch's Swift1 (x264, 21 MB)

China flying in Gregburch's Swift1 (xVid, 31 MB)