source: experimental/TerrainTest/rampedEllipsoidTechnique.cpp @ 279

Last change on this file since 279 was 275, checked in by Torben Dannhauer, 13 years ago
File size: 5.8 KB
Line 
1/* -*-c++-*- osgVisual - Copyright (C) 2009-2011 Torben Dannhauer
2 *
3 * This library is based on OpenSceneGraph, open source and may be redistributed and/or modified under
4 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
5 * (at your option) any later version.  The full license is in LICENSE file
6 * included with this distribution, and on the openscenegraph.org website.
7 *
8 * osgVisual requires for some proprietary modules a license from the correspondig manufacturer.
9 * You have to aquire licenses for all used proprietary modules.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * OpenSceneGraph Public License for more details.
15*/
16
17#include "rampedEllipsoidTechnique.h"
18
19
20rampedEllipsoidTechnique::rampedEllipsoidTechnique()
21{
22        _height = 0.0;
23        _rampWidthFactor = 0.4; // 10% of ROI is ramp.
24}
25
26rampedEllipsoidTechnique::~rampedEllipsoidTechnique()
27{
28}
29
30void rampedEllipsoidTechnique::modifyHeightfield(region& modificationROI, osg::HeightField* h, region tileExtends)
31{
32        OSG_NOTIFY( osg::ALWAYS ) << "rampedEllipsoidTechnique::modifyHeightfield()" << std::endl;
33        //OSG_NOTIFY( osg::ALWAYS ) << "LAT: " << tileExtends._lat_min << " | " << tileExtends._lat_max << std::endl;
34        //OSG_NOTIFY( osg::ALWAYS ) << "LON: " << tileExtends._lon_min << " | " << tileExtends._lon_max << std::endl;
35
36        // Determine modificationROI without ramp
37        double deltaLatPerSide = modificationROI.delta_lat() * _rampWidthFactor / 2.0;
38        double deltaLonPerSide = modificationROI.delta_lon() * _rampWidthFactor / 2.0;
39        region coreROI = modificationROI;
40        coreROI._lat_min+=deltaLatPerSide;
41        coreROI._lat_max-=deltaLatPerSide;
42        coreROI._lon_min+=deltaLonPerSide;
43        coreROI._lon_max-=deltaLonPerSide;
44
45        // Calculate colum start/end and row start/end of affected vertices
46        int Y_start=0, Y_startRamp=0, Y_startCore=0, Y_endCore=0, Y_endRamp=0, Y_end=h->getNumRows();           // Lat
47        int X_start=0, X_startRamp=0, X_startCore=0, X_endCore=0, X_endRamp=0, X_end=h->getNumColumns();        // Lon
48
49        // Lat
50        Y_startRamp = round((modificationROI._lat_min-tileExtends._lat_min) / h->getYInterval());
51        Y_startCore = round((coreROI._lat_min-tileExtends._lat_min) / h->getYInterval());
52        Y_endCore   = round((coreROI._lat_max-tileExtends._lat_min) / h->getYInterval());
53        Y_endRamp   = round((modificationROI._lat_max-tileExtends._lat_min) / h->getYInterval());
54
55        clampValue(Y_startRamp, Y_start, Y_end);
56        clampValue(Y_startCore, Y_start, Y_end);
57        clampValue(Y_endCore, Y_start, Y_end);
58        clampValue(Y_endRamp, Y_start, Y_end);
59        //OSG_NOTIFY( osg::ALWAYS ) << "Y_startRamp:" << Y_startRamp << " Y_startCore:" << Y_startCore << " Y_endCore:" << Y_endCore << " Y_endRamp:" << Y_endRamp << std::endl;
60
61        // Lon
62        X_startRamp = round((modificationROI._lon_min-tileExtends._lon_min) / h->getXInterval());
63        X_startCore = round((coreROI._lon_min-tileExtends._lon_min) / h->getXInterval());
64        X_endCore   = round((coreROI._lon_max-tileExtends._lon_min) / h->getXInterval());
65        X_endRamp   = round((modificationROI._lon_max-tileExtends._lon_min) / h->getXInterval());
66
67        clampValue(X_startRamp, X_start, X_end);
68        clampValue(X_startCore, X_start, X_end);
69        clampValue(X_endCore, X_start, X_end);
70        clampValue(X_endRamp, X_start, X_end);
71        //OSG_NOTIFY( osg::ALWAYS ) << "X_startRamp:" << X_startRamp << " X_startCore:" << X_startCore << " X_endCore:" << X_endCore << " X_endRamp:" << X_endRamp << std::endl;
72
73        // Modify height value of affected vertices in the core ROI
74        for(int x=X_startRamp;x<X_endRamp;x++)
75        {
76                for(int y=Y_startRamp;y<Y_endRamp;y++)
77                {
78                        // Calculate vertex position in global coordinate system (lat/lon)
79                        double vertex_lat = y*h->getYInterval()+tileExtends._lat_min;
80                        double vertex_lon = x*h->getXInterval()+tileExtends._lon_min;
81                        // Calculate vertex delta h: h_dest - h_org
82                        double height_org = h->getHeight(x,y);
83                        double delta_h = _height - height_org;
84                        // preset offsetvalue to max and let every region try to lower it...
85                        double destination_height = std::numeric_limits<double>::max();
86
87                        // Calculate vertex height according to the region it is in.
88                        if( Y_startCore<=y && y<Y_endCore && X_startCore<=x && x<X_endCore )    // If vertex is inside core: Apply final height
89                        {
90                                        if(_height<destination_height)
91                                        destination_height = _height;
92                        }
93                        if(Y_startRamp<=y && y<Y_startCore) // Vertex is inside Y start ramp
94                        {
95                                double delta_s = abs(modificationROI._lat_min-vertex_lat);
96                                double gradient = delta_h/deltaLatPerSide;
97                                double dest = delta_s*gradient + height_org;
98                                if(dest<destination_height)
99                                        destination_height = dest;                     
100                        }
101                        if(X_startRamp<=x && x<X_startCore)     // Vertex is inside X start ramp
102                        {
103                                double delta_s = abs(modificationROI._lon_min-vertex_lon);
104                                double gradient = delta_h/deltaLonPerSide;
105                                double dest = delta_s*gradient + height_org;
106                                if(dest<destination_height)
107                                        destination_height = dest;
108                        }
109                        if(Y_endCore<=y && y<Y_endRamp)  // Vertex is inside Y end ramp
110                        {
111                                double delta_s = abs(modificationROI._lat_max-vertex_lat);
112                                double gradient = delta_h/deltaLatPerSide;
113                                double dest = delta_s*gradient + height_org;
114                                if(dest<destination_height)
115                                        destination_height = dest;
116                        }
117                        if (X_endCore<=x && x<X_endRamp) // Vertex is inside X end ramp
118                        {
119                                double delta_s = abs(modificationROI._lon_max-vertex_lon);
120                                double gradient = delta_h/deltaLonPerSide;
121                                double dest = delta_s*gradient + height_org;
122                                if(dest<destination_height)
123                                        destination_height = dest;
124                        }
125                       
126                        // Set height to calculated value
127                        //OSG_NOTIFY( osg::ALWAYS ) << "rampedEllipsoidTechnique: destination_height=" << destination_height << std::endl;
128                        h->setHeight( x, y, destination_height);
129                }
130        }
131}
132
Note: See TracBrowser for help on using the repository browser.