Jump to content

Basic Questions on Terrain and Object Perimeters


photo

Recommended Posts

I'm starting something in a new area (for me) and looking for a little help getting started.
Process: Game - Land Selection
Environment: World/Planet
Scenario: Player is selecting a "build zone".
The world is a low-res terrain with procedural "fill".

1. Player claims an area by placing a group of markers.
2. On "OK", the makers convert to a "high-res terrain mesh" matching the perimeter of the hex group.
    Each mesh/area is a mine, farm, city, etc. that gets altered during the game.

Actions:
Player selects a location on the planet and clicks
This places a hex "marker". Clicking a hex edge adds another hex.

image.png.1782fa2b4a2100993d71136ebb8fa3ae.png

Each hex can "drill down" and look at the planet - soils composition, water tables, resources, etc.

Planning/Approach Questions:
1. Is the inserting of (much) higher res mesh a good approach? There may be a couple hundred of them.
2. The terrain has layers of topology (water, resources, etc.). Many of the distributions are density/concentration driven.
    There are resource density ("height") maps with gradual changes and "vein masks".
    Can I "stack" these on the layers of a Terrain and take a vertical core somehow?
3. Are there any tools/tricks for finding the (top-down 2d) perimeter (points or edges) on groups of objects?

I'm not tied to these ideas. Hoping Oil and Gas users may have an industry approach to the layers. Any help appreciated.

 

 

 

 


 

 

 

Link to comment
Quote

1. Is the inserting of (much) higher res mesh a good approach? There may be a couple hundred of them.

It maybe suboptimal, but that's the only way to make an internals of the terrain without writing a complex voxel systems. If your camera would not see all of them at once I guess you are safe in terms of performance. Maybe you would need to create LODs if you will have GPU bottleneck somehow. Do a quick stress test to find out how these meshes affects the performance.

Quote

 Can I "stack" these on the layers of a Terrain and take a vertical core somehow?

Not sure that I understand the exact question. You can use LandscapeLayerMaps with different data density and stack them in that way that high-quality heightmaps would be blended on top of the low quality basic terrain. There are some samples available in Art Samples that demonstrates this approach. 

How to submit a good bug report
---
FTP server for test scenes and user uploads:

Link to comment

The layers idea is based on using LandscapeLayerMap and interpolation.

Conceptually I have a "crust" (top plane). The normal "surface" terrain.
Each mesh below it represents data at points on the world XY.

Below this could be water table and bedrock.
A player can take a core of this to determine things like top-soil depth. Other layers have value data (e.g., silver gm/m3).
The point resolution varies, but all of these cover the same area.

image.png.f17e37e647b7fb71541d979cc7507c47.png 

 

I can survey and "core" areas to see what is there.
Manually, I can keep a collection of meshes, iterate the collection and interpolate values at any point.
But this is unchanging world structure, so I would like to keep it in the world and not on the backend.
Taking the term "Terrain Layer" literally, lazy me thought I might be able to use TerrainLayers.
This would handle alignment, locating, and (I think) interpolation.
I could extend LandscapeTerrain: [] core = landscapeTerrain.LayersAt(x, y);

 

Edited by Tessalator
Link to comment
×
×
  • Create New...