Difference between revisions of "Development:Orbital Planet Surfaces"

From VsWiki
Jump to: navigation, search
(Some Thoughts)
m (Some Thoughts)
Line 172: Line 172:
  
 
And of course, push your tools to their limits.
 
And of course, push your tools to their limits.
 +
 +
Once you have chosen a replacement candidate and have one or more proposals...
  
 
===The Process===
 
===The Process===

Revision as of 01:06, 3 August 2007

General

This page summarizes concepts and approaches to creating planet surfaces as seen from orbit. Topics of atmospheric entry and close-to-surface planetary topology and atmospheric effects or planetary flight should be covered in a separate document.

Two main topics are covered in this document:

  • Development of textured surfaces
  • Development of procedural surfaces

References

References apply both to textured and procedural approaches if not stated otherwise.

Wiki References

Planets and Systems

Development Roadmap

Forum References

Texture Requirements

Development Tools

Examples, Including, Testing

Submission Process

Development Needs and Tasks

Improvement Proposals

External References

Gas Giant Surfaces

Image References

Textured Surfaces

Texture Requirements

Summary of Texture Requirements

Textures ready for submission should fulfill:

  • Format: png or jpg
  • Ratio (horizontal:vertical): 2:1
  • Size: following the POT rule (power-of-two)
  • Resolution: min 2048x1024
  • Tilable (seamless): horizontally and vertically
  • Quality: RQ or CQ

Image Resolution, Formats, and Quality

The planet surface graphics format currently recommended for the game is either png (preferred) or jpg (alternative) format.

The image ratio horizontal:vertical must be 2:1 (assuming pixel ratio of the map is 1:1), since the texture is wrapped aroud the planet sphere horizontaly around 360 degrees and vertically around 180 degrees. Necesserily, in order for the surface not to appear distorted, your pixel ratio of the generated texture must be 1.0, i.e. a circle must show as a circle when viewing the texture in an image viewer.

The vertical and horizontal sizes should be a power of two (POT). Really, NPOT (non-power-of-two) textures are possible, but really, really, really troublesome. Don't use them. Just use POT. Love the POT. The POT is the mother, the POT is the father. Trust the POT.

That leaves few options:

  • 1024x512
  • 2048x1024
  • 4096x2048
  • 8192x4096

Keeping original high resolution image (e.g. 8192x4096 or 4096x2048) versions in stock helps maintaining quality and scalability as game development progresses or typical screen resolutions rise in the future with better hardware available to the players.

Most of the surface textures included in data4.x have a horizontal resolution of 1024 or below. Committed textures are classified as:

  • DQ - Development Quality: textures with horizontal resolution of 1024 or below and low degree of realism
  • RQ - Release Quality: textures with horizontal resolution of 2048 or above and medium degree of realsim
  • CQ - Cinematographic Quality: textures with horizontal resolution of 2048 or above and high degree of realism

Image Properties

Naturally, the images should be seamless (tilable) so that seams are not visible on the rotating planet, neither on the stitch nor at the poles.

3d rendering software with unwrap functions is recommended, since it is extremely inefficient and troublesome to create seamless textures in 2d programs.

Planet textures required

[source: klauss]

  • Diffuse color map as usual.
  • Specular map as usual.
  • Night map (with city lights) as usual.
  • Cloudmap... not so usual. The cloudmap contains color in the color data - but base, unlit color. Until now, I couldn't find a case where the color portion of the texture wasn't uniform, so I might drop color "texture" for a uniform color "parameter" - but in any case, the texture contains the cloud's basic color in the color portion (fully white for earthish textures), and "thickness" in the alpha channel. What I did to create the current cloudmaps: transfer the color (grayscale) channel to the alpha channel, adjust its "dynamic distribution", kind-of gamma correction, to avoid saturation of the alpha channel as much as possible (it looks bad), and filled the color channel with white. Thickness means that - the thickness of clouds. It indirectly translates to their height. All clouds are based on the same level (they usually are in reality, minus some exceptions), and grow upwards as much as the alpha channel tells it to.
  • Normalmap as usual (though normalmaps are presently not required, they aren't any different from unit normalmaps: RGB with normal data, Alpha with height data).
  • Replacement of existing textures with a resolution below 2048x1024
  • Replacement of existing textures that are ugly

Development Tools

2D Image Manipulation Programs

GIMP

Gimp is the GNU Image Manipulation Program. It is a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring. It works on many operating systems, in many languages.

Gimp already comes with a great variety of scripts and the library can be extended with your own C, Perl, Python, or Script-Fu plug-ins.

A good starting point for e.g. gas giant texture maps is the 'Solid Noise' filter.

There is a way to make planetary twisters like Uranius or so, using the Gimp. First you must create the gas texture, and then apply the distort filter into Filters>Distortions>Deformation. Then set the deformation type to "counterclockwise swirl", and the make one or two swirls. This will geneare swirls at the surface.

On the other hand, if you like a huricane zone, like some gas planets at solar sistem, for example like the great red one at jupiter, you can do it very simply: first select a ecliptic small zone, who will be the future hurricane. Then apply the filter Filters>Distortions>Lens Crystal, and apply a bit crystal lens distortion. Then, deselect that selected zone, and apply Filters>Distortions>Deformation, and set the deformation to "move", and move the left and right sides of the eliptical form a bit, just to make the effect of undercloud.

3D Rendering Free / Open Source Software

POV-Ray

POV-Ray (Persistence of Vision Raytracer) is a high-quality, totally free tool for creating stunning three-dimensional graphics. It is available in official versions for Windows, Mac OS/Mac OS X and i86 Linux. The source code is available for those wanting to do their own ports.

With its unique scripting approach and through a large base of available texture, pigment, and material functions there are almost unlimited possibilities to creating surface maps.

Maps can be exported by using a spherical camera setting: camera {spherical angle 360}

Blender

Blender is the open source software for 3D modeling, animation, rendering, post-production, interactive creation and playback. Available for all major operating systems under the GNU General Public License.

Scripts for blender can be created using Python. No application of blender for creation of planet surfaces is known to the author. Subissions are appreciated.

3D Rendering Commercial Software

LunarCell

LunarCell is a Photoshop compatible plugin that allows you to create instant planets. Create fractal, reality-based, or just strange worlds in seconds. It includes real clouds downloaded from weather satellites and comes with dozens of presets, and you can design your own planets too. LunarCell also generates maps for 3D animation, fantasy mapmaking, and QuickTime 5 cubic VR.

Including and Testing

Systems Substitution Testing

In the .systems file of the systems where you saved the game (data4.x/sectors/SectorName/), search for the planet that you want to test your texture on and replace the current texture in the 'file' statement with your texture, e.g.

  • Take: <Planet name="Wiley" file="planets/rock.png" ...>
  • Replace with: <Planet name="Wiley" file="planets/rocky_wiley.png" ...>

Selection and Vetting Process

Some Thoughts

While many textures are still with the DQ (development quality) status, it is important to quickly raise the quality of all textures to release status and beyond. In this stage, following the selection (or vetting) process might not be of the highest importance. However when replacing visually appealing textures or raising the overall quality to CQ (cinematographic) it is of advantage to share your decisions with the whole community. This is exactly the purpose of the selection and vetting process.

Enthusiasm, the strong motivation to contribute his own work, see it published in a release, and be part of the community, often brings the danger along of falling into the pitfall and want to contribute and replace too many textures at the same time. The more advanced in quality and visual appeal the textures become the more important it becomes to create a very distinct and personal look to the particular texture or even planet, since the ultimate goal is to have an individual surface for each planet.

Ultimately, nobody really knows how extra-solar planets look like but here are some references that might inspire you to create an individual, unique, and personal texture:

  • The planet name might give you some hints
  • The planet type says something about possible surface type
  • Analyze the essence of the existing texture in color, structure, area division
  • Inspire yourself by other works of art (paintings, computer generated art, astronomical sites, science-fiction movies)

And of course, push your tools to their limits.

Once you have chosen a replacement candidate and have one or more proposals...

The Process

If you are not sure that your texture meets the basic requirements, then please open a forum topic posting your textures. Here's a summary of requirements:

  • Format: png or jpg
  • Ratio (horizontal:vertical): 2:1 (if pixel ratio is 1:1)
  • Size: following the POT rule (power-of-two)
  • Resolution: min 2048x1024
  • Tilable (seamless): horizontally and vertically
  • Quality: RQ or CQ

If a texture that you have created meets the above described requirements, then:

  • Open a poll for a reasonable period of time (e.g. 2 weeks) and describe:
    • which texture(s) you'd like to replace
    • show which are the candidates
    • describe briefly the method of creation
    • If you'd like to replace more than one texture, describe how you would assign the favorites of the poll to the individual textures
  • After a set period of time
    • announce the winners
    • and call the poll closed
  • Then
    • Submit the textures to svn
    • or ask somebody with write access to submit them.

Submission Process

If you have write access to svn then submit the textures after going through the community selection process.

Otherwise, please call through a forum topic a developer with write access to submit them.

Development Needs and Tasks

Proposed near-term development roadmap:

  • Phase 1: Replace existing textures with at least 2048x1024 textures (release quality)
  • Phase 2: Expand the set of textures to include more variety in milky_way.xml
  • Phase 3: Develop cinematographic quality surface and atmosphere (cloud, weather) maps

List of tasks for textured surfaces: Development:2D_Images#Orbital_Planet_Surfaces

Procedural Surfaces

At the time of writing (July 2007) no known implementation of procedural orbital planet surfaces exists in Vega Strike.

Author: pyramid