#include #include #include #include #include #include #include #include #include #include #include bool Locator_readLocalData(osg::Object &obj, osgDB::Input &fr); bool Locator_writeLocalData(const osg::Object &obj, osgDB::Output &fw); osgDB::RegisterDotOsgWrapperProxy Locator_Proxy ( new osgTerrain::Locator, "Locator", "Object Locator", Locator_readLocalData, Locator_writeLocalData ); bool Locator_readLocalData(osg::Object& obj, osgDB::Input &fr) { osgTerrain::Locator& locator = static_cast(obj); bool itrAdvanced = false; if (fr.matchSequence("Format %w") || fr.matchSequence("Format %s") ) { locator.setFormat(fr[1].getStr()); fr += 2; itrAdvanced = true; } if (fr.matchSequence("CoordinateSystemType %w")) { if (fr[1].matchWord("GEOCENTRIC")) locator.setCoordinateSystemType(osgTerrain::Locator::GEOCENTRIC); else if (fr[1].matchWord("GEOGRAPHIC")) locator.setCoordinateSystemType(osgTerrain::Locator::GEOGRAPHIC); else locator.setCoordinateSystemType(osgTerrain::Locator::PROJECTED); fr += 2; itrAdvanced = true; } if (fr.matchSequence("CoordinateSystem %w") || fr.matchSequence("CoordinateSystem %s") ) { locator.setCoordinateSystem(fr[1].getStr()); fr += 2; itrAdvanced = true; } if (fr.matchSequence("TransformScaledByResolution %w")) { locator.setTransformScaledByResolution(fr[1].matchWord("TRUE") || fr[1].matchWord("True") || fr[1].matchWord("true")); fr += 2; itrAdvanced = true; } if (fr.matchSequence("Transform {")) { int tansform_entry = fr[0].getNoNestedBrackets(); fr += 2; int row=0; int col=0; double v; osg::Matrixd matrix; while (!fr.eof() && fr[0].getNoNestedBrackets()>tansform_entry) { if (fr[0].getFloat(v)) { matrix(row,col)=v; ++col; if (col>=4) { col = 0; ++row; } ++fr; } else fr.advanceOverCurrentFieldOrBlock(); } locator.setTransform(matrix); ++fr; itrAdvanced = true; } if (fr.matchSequence("Extents %f %f %f %f")) { double minX,minY,maxX,maxY; fr[1].getFloat(minX); fr[2].getFloat(minY); fr[3].getFloat(maxX); fr[4].getFloat(maxY); locator.setTransformAsExtents(minX, minY, maxX, maxY); fr += 5; itrAdvanced = true; } return itrAdvanced; } bool Locator_writeLocalData(const osg::Object& obj, osgDB::Output& fw) { const osgTerrain::Locator& locator = static_cast(obj); if (!locator.getFormat().empty()) fw.indent()<<"Format "<