Improved the handling of the -p path option
This commit is contained in:
parent
c79a7e7ad5
commit
8dd2c34e4d
@ -277,6 +277,9 @@ int main(int argc, char **argv)
|
|||||||
unsigned int screenNum = 0;
|
unsigned int screenNum = 0;
|
||||||
while (arguments.read("--screen", screenNum) || arguments.read("-s", screenNum)) viewer.setUpViewOnSingleScreen(screenNum);
|
while (arguments.read("--screen", screenNum) || arguments.read("-s", screenNum)) viewer.setUpViewOnSingleScreen(screenNum);
|
||||||
|
|
||||||
|
std::string pathfile;
|
||||||
|
while (arguments.read("-p",pathfile)) {}
|
||||||
|
|
||||||
|
|
||||||
// if user request help write it out to cout.
|
// if user request help write it out to cout.
|
||||||
if (arguments.read("-h") || arguments.read("--help"))
|
if (arguments.read("-h") || arguments.read("--help"))
|
||||||
@ -385,8 +388,7 @@ int main(int argc, char **argv)
|
|||||||
keyswitchManipulator->addMatrixManipulator( '3', "Drive", new osgGA::DriveManipulator() );
|
keyswitchManipulator->addMatrixManipulator( '3', "Drive", new osgGA::DriveManipulator() );
|
||||||
keyswitchManipulator->addMatrixManipulator( '4', "Terrain", new osgGA::TerrainManipulator() );
|
keyswitchManipulator->addMatrixManipulator( '4', "Terrain", new osgGA::TerrainManipulator() );
|
||||||
|
|
||||||
std::string pathfile;
|
if (!pathfile.empty())
|
||||||
while (arguments.read("-p",pathfile))
|
|
||||||
{
|
{
|
||||||
osgGA::AnimationPathManipulator* apm = new osgGA::AnimationPathManipulator(pathfile);
|
osgGA::AnimationPathManipulator* apm = new osgGA::AnimationPathManipulator(pathfile);
|
||||||
if (apm || !apm->valid())
|
if (apm || !apm->valid())
|
||||||
|
Loading…
Reference in New Issue
Block a user