/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield * * This library is open source and may be redistributed and/or modified under * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or * (at your option) any later version. The full license is in LICENSE file * included with this distribution, and on the openscenegraph.org website. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * OpenSceneGraph Public License for more details. */ #include #include #include #include #include #include #include using namespace osg; class ApplyMatrixVisitor : public NodeVisitor { public: ApplyMatrixVisitor(const osg::Matrix& matrix): _matrix(matrix) {} virtual void apply(Camera& camera) { camera.setViewMatrix(_matrix); } virtual void apply(CameraView& cv) { cv.setPosition(_matrix.getTrans()); cv.setAttitude(_matrix.getRotate()); } virtual void apply(MatrixTransform& mt) { mt.setMatrix(_matrix); } virtual void apply(PositionAttitudeTransform& pat) { pat.setPosition(_matrix.getTrans()); pat.setAttitude(_matrix.getRotate()); } osg::Matrix _matrix; }; void NodeTrackerCallback::setTrackNode(osg::Node* node) { if (!node) { OSG_NOTICE<<"NodeTrackerCallback::setTrackNode(Node*): Unable to set tracked node due to null Node*"<getParentalNodePaths(); if (!parentNodePaths.empty()) { OSG_INFO<<"NodeTrackerCallback::setTrackNode(Node*): Path set"<getVisitorType()==NodeVisitor::UPDATE_VISITOR) { update(*node); } traverse(node,nv); } void NodeTrackerCallback::update(osg::Node& node) { osg::NodePath nodePath; if (_trackNodePath.getNodePath(nodePath)) { ApplyMatrixVisitor applyMatrix(computeWorldToLocal(nodePath)); node.accept(applyMatrix); } }