Added layer support
This commit is contained in:
parent
5f75f765f0
commit
c687b5fc6f
@ -109,6 +109,7 @@ void processFile(std::string filename,
|
|||||||
bool geoTransformSet,
|
bool geoTransformSet,
|
||||||
bool geoTransformScale,
|
bool geoTransformScale,
|
||||||
bool minmaxLevelSet, unsigned int min_level, unsigned int max_level,
|
bool minmaxLevelSet, unsigned int min_level, unsigned int max_level,
|
||||||
|
unsigned int layerNum,
|
||||||
osg::ref_ptr<osgTerrain::DataSet> dataset) {
|
osg::ref_ptr<osgTerrain::DataSet> dataset) {
|
||||||
|
|
||||||
if(filename.empty()) return;
|
if(filename.empty()) return;
|
||||||
@ -138,6 +139,10 @@ void processFile(std::string filename,
|
|||||||
source->setMinMaxLevel(min_level, max_level);
|
source->setMinMaxLevel(min_level, max_level);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
source->setLayer(layerNum);
|
||||||
|
|
||||||
|
std::cout<<"Reading as layer = "<<layerNum<<std::endl;
|
||||||
|
|
||||||
dataset->addSource(source);
|
dataset->addSource(source);
|
||||||
}
|
}
|
||||||
} else if (osgDB::fileType(filename) == osgDB::DIRECTORY) {
|
} else if (osgDB::fileType(filename) == osgDB::DIRECTORY) {
|
||||||
@ -153,6 +158,7 @@ void processFile(std::string filename,
|
|||||||
processFile(fullfilename, type, currentCS,
|
processFile(fullfilename, type, currentCS,
|
||||||
geoTransform, geoTransformSet, geoTransformScale,
|
geoTransform, geoTransformSet, geoTransformScale,
|
||||||
minmaxLevelSet, min_level, max_level,
|
minmaxLevelSet, min_level, max_level,
|
||||||
|
layerNum,
|
||||||
dataset);
|
dataset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -176,6 +182,8 @@ int main( int argc, char **argv )
|
|||||||
arguments.getApplicationUsage()->addCommandLineOption("-a <archivename>","Specify the archive to place the generated database");
|
arguments.getApplicationUsage()->addCommandLineOption("-a <archivename>","Specify the archive to place the generated database");
|
||||||
arguments.getApplicationUsage()->addCommandLineOption("-o <outputfile>","Specify the output master file to generate");
|
arguments.getApplicationUsage()->addCommandLineOption("-o <outputfile>","Specify the output master file to generate");
|
||||||
arguments.getApplicationUsage()->addCommandLineOption("-l <numOfLevels>","Specify the number of PagedLOD levels to generate");
|
arguments.getApplicationUsage()->addCommandLineOption("-l <numOfLevels>","Specify the number of PagedLOD levels to generate");
|
||||||
|
arguments.getApplicationUsage()->addCommandLineOption("--levels <begin_level> <end_level>","Specify the range of lavels that the next source Texture or DEM will contribute to.");
|
||||||
|
arguments.getApplicationUsage()->addCommandLineOption("--layer <layer_num>","Specify the layer that the next source Texture will contribute to..");
|
||||||
arguments.getApplicationUsage()->addCommandLineOption("-e <x> <y> <w> <h>","Extents of the model to generate");
|
arguments.getApplicationUsage()->addCommandLineOption("-e <x> <y> <w> <h>","Extents of the model to generate");
|
||||||
arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information");
|
arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information");
|
||||||
arguments.getApplicationUsage()->addCommandLineOption("--cs <coordinates system string>","Set the coordinates system of source imagery, DEM or destination database. The string may be any of the usual GDAL/OGR forms, complete WKT, PROJ.4, EPS");
|
arguments.getApplicationUsage()->addCommandLineOption("--cs <coordinates system string>","Set the coordinates system of source imagery, DEM or destination database. The string may be any of the usual GDAL/OGR forms, complete WKT, PROJ.4, EPS");
|
||||||
@ -321,6 +329,7 @@ int main( int argc, char **argv )
|
|||||||
double xMin, xMax, yMin, yMax;
|
double xMin, xMax, yMin, yMax;
|
||||||
bool minmaxLevelSet = false;
|
bool minmaxLevelSet = false;
|
||||||
unsigned int min_level=0, max_level=maximumPossibleLevel;
|
unsigned int min_level=0, max_level=maximumPossibleLevel;
|
||||||
|
unsigned int currentLayerNum = 0;
|
||||||
|
|
||||||
int pos = 1;
|
int pos = 1;
|
||||||
while(pos<arguments.argc())
|
while(pos<arguments.argc())
|
||||||
@ -490,21 +499,29 @@ int main( int argc, char **argv )
|
|||||||
std::cout<<"--levels, min_level="<<min_level<<" max_level="<<max_level<<std::endl;
|
std::cout<<"--levels, min_level="<<min_level<<" max_level="<<max_level<<std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (arguments.read(pos, "--layer", currentLayerNum))
|
||||||
|
{
|
||||||
|
std::cout<<"--layer layeNumber="<<currentLayerNum<<std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
else if (arguments.read(pos, "-d",filename))
|
else if (arguments.read(pos, "-d",filename))
|
||||||
{
|
{
|
||||||
std::cout<<"-d "<<filename<<std::endl;
|
std::cout<<"-d "<<filename<<std::endl;
|
||||||
processFile(filename, osgTerrain::DataSet::Source::HEIGHT_FIELD, currentCS,
|
processFile(filename, osgTerrain::DataSet::Source::HEIGHT_FIELD, currentCS,
|
||||||
geoTransform, geoTransformSet, geoTransformScale,
|
geoTransform, geoTransformSet, geoTransformScale,
|
||||||
minmaxLevelSet, min_level, max_level,
|
minmaxLevelSet, min_level, max_level,
|
||||||
|
currentLayerNum,
|
||||||
dataset);
|
dataset);
|
||||||
|
|
||||||
minmaxLevelSet = false;
|
minmaxLevelSet = false;
|
||||||
min_level=0; max_level=maximumPossibleLevel;
|
min_level=0; max_level=maximumPossibleLevel;
|
||||||
|
currentLayerNum = 0;
|
||||||
|
|
||||||
currentCS = "";
|
currentCS = "";
|
||||||
geoTransformSet = false;
|
geoTransformSet = false;
|
||||||
geoTransformScale = false;
|
geoTransformScale = false;
|
||||||
geoTransform.makeIdentity();
|
geoTransform.makeIdentity();
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (arguments.read(pos, "-t",filename))
|
else if (arguments.read(pos, "-t",filename))
|
||||||
{
|
{
|
||||||
@ -512,10 +529,12 @@ int main( int argc, char **argv )
|
|||||||
processFile(filename, osgTerrain::DataSet::Source::IMAGE, currentCS,
|
processFile(filename, osgTerrain::DataSet::Source::IMAGE, currentCS,
|
||||||
geoTransform, geoTransformSet, geoTransformScale,
|
geoTransform, geoTransformSet, geoTransformScale,
|
||||||
minmaxLevelSet, min_level, max_level,
|
minmaxLevelSet, min_level, max_level,
|
||||||
|
currentLayerNum,
|
||||||
dataset);
|
dataset);
|
||||||
|
|
||||||
minmaxLevelSet = false;
|
minmaxLevelSet = false;
|
||||||
min_level=0; max_level=maximumPossibleLevel;
|
min_level=0; max_level=maximumPossibleLevel;
|
||||||
|
currentLayerNum = 0;
|
||||||
|
|
||||||
currentCS = "";
|
currentCS = "";
|
||||||
geoTransformSet = false;
|
geoTransformSet = false;
|
||||||
@ -525,10 +544,15 @@ int main( int argc, char **argv )
|
|||||||
else if (arguments.read(pos, "-m",filename))
|
else if (arguments.read(pos, "-m",filename))
|
||||||
{
|
{
|
||||||
std::cout<<"-m "<<filename<<std::endl;
|
std::cout<<"-m "<<filename<<std::endl;
|
||||||
processFile(filename, osgTerrain::DataSet::Source::MODEL, currentCS, geoTransform, geoTransformSet, geoTransformScale, minmaxLevelSet, min_level, max_level, dataset);
|
processFile(filename, osgTerrain::DataSet::Source::MODEL, currentCS,
|
||||||
|
geoTransform, geoTransformSet, geoTransformScale,
|
||||||
|
minmaxLevelSet, min_level, max_level,
|
||||||
|
currentLayerNum,
|
||||||
|
dataset);
|
||||||
|
|
||||||
minmaxLevelSet = false;
|
minmaxLevelSet = false;
|
||||||
min_level=0; max_level=maximumPossibleLevel;
|
min_level=0; max_level=maximumPossibleLevel;
|
||||||
|
currentLayerNum = 0;
|
||||||
|
|
||||||
currentCS = "";
|
currentCS = "";
|
||||||
geoTransformSet = false;
|
geoTransformSet = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user