2003-01-22 00:45:36 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 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.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
#ifndef OSGUTIL_INTERSECTVISITOR
|
|
|
|
#define OSGUTIL_INTERSECTVISITOR 1
|
|
|
|
|
|
|
|
#include <osg/NodeVisitor>
|
2001-09-20 05:08:56 +08:00
|
|
|
#include <osg/LineSegment>
|
2001-01-11 00:32:10 +08:00
|
|
|
#include <osg/Geode>
|
|
|
|
#include <osg/Matrix>
|
|
|
|
|
|
|
|
#include <osgUtil/Export>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace osgUtil {
|
|
|
|
|
|
|
|
|
2002-01-30 20:09:18 +08:00
|
|
|
class OSGUTIL_EXPORT Hit
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
|
|
|
public:
|
2002-01-30 20:09:18 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
Hit();
|
|
|
|
Hit(const Hit& hit);
|
|
|
|
~Hit();
|
|
|
|
|
|
|
|
Hit& operator = (const Hit& hit);
|
|
|
|
|
|
|
|
typedef std::vector<int> VecIndexList;
|
|
|
|
|
|
|
|
bool operator < (const Hit& hit) const
|
|
|
|
{
|
2001-09-20 05:08:56 +08:00
|
|
|
if (_originalLineSegment<hit._originalLineSegment) return true;
|
|
|
|
if (_originalLineSegment>hit._originalLineSegment) return false;
|
2001-01-11 00:32:10 +08:00
|
|
|
return _ratio<hit._ratio;
|
|
|
|
}
|
|
|
|
|
2002-01-30 20:09:18 +08:00
|
|
|
|
|
|
|
const osg::Vec3& getLocalIntersectPoint() const { return _intersectPoint; }
|
|
|
|
const osg::Vec3& getLocalIntersectNormal() const { return _intersectNormal; }
|
|
|
|
|
|
|
|
const osg::Vec3 getWorldIntersectPoint() const { if (_matrix.valid()) return _intersectPoint*(*_matrix); else return _intersectPoint; }
|
|
|
|
const osg::Vec3 getWorldIntersectNormal() const ;
|
|
|
|
|
|
|
|
float _ratio;
|
|
|
|
osg::ref_ptr<osg::LineSegment> _originalLineSegment;
|
|
|
|
osg::ref_ptr<osg::LineSegment> _localLineSegment;
|
|
|
|
osg::NodePath _nodePath;
|
|
|
|
osg::ref_ptr<osg::Geode> _geode;
|
2002-06-26 04:27:51 +08:00
|
|
|
osg::ref_ptr<osg::Drawable> _drawable;
|
2003-01-10 17:25:42 +08:00
|
|
|
osg::ref_ptr<osg::RefMatrix> _matrix;
|
|
|
|
osg::ref_ptr<osg::RefMatrix> _inverse;
|
2002-01-30 20:09:18 +08:00
|
|
|
|
|
|
|
VecIndexList _vecIndexList;
|
|
|
|
int _primitiveIndex;
|
|
|
|
osg::Vec3 _intersectPoint;
|
|
|
|
osg::Vec3 _intersectNormal;
|
|
|
|
|
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-05-28 18:24:43 +08:00
|
|
|
/** Basic visitor for ray based collisions of a scene.*/
|
2001-01-11 00:32:10 +08:00
|
|
|
class OSGUTIL_EXPORT IntersectVisitor : public osg::NodeVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
IntersectVisitor();
|
|
|
|
virtual ~IntersectVisitor();
|
|
|
|
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
/** Add a line segment to use for intersection testing during scene traversal.*/
|
2001-09-20 05:08:56 +08:00
|
|
|
void addLineSegment(osg::LineSegment* seg);
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
//typedef std::multiset<Hit> HitList;
|
|
|
|
typedef std::vector<Hit> HitList;
|
2001-09-20 05:08:56 +08:00
|
|
|
typedef std::map<osg::LineSegment*,HitList > LineSegmentHitListMap;
|
|
|
|
HitList& getHitList(osg::LineSegment* seg) { return _segHitList[seg]; }
|
|
|
|
int getNumHits(osg::LineSegment* seg) { return _segHitList[seg].size(); }
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
bool hits();
|
|
|
|
|
|
|
|
virtual void apply(osg::Node&);
|
|
|
|
virtual void apply(osg::Geode& node);
|
|
|
|
virtual void apply(osg::Billboard& node);
|
|
|
|
|
|
|
|
virtual void apply(osg::Group& node);
|
2001-09-20 05:08:56 +08:00
|
|
|
virtual void apply(osg::Transform& node);
|
2001-01-11 00:32:10 +08:00
|
|
|
virtual void apply(osg::Switch& node);
|
|
|
|
virtual void apply(osg::LOD& node);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2002-01-30 20:09:18 +08:00
|
|
|
class IntersectState : public osg::Referenced
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
IntersectState();
|
|
|
|
|
2003-01-10 17:25:42 +08:00
|
|
|
osg::ref_ptr<osg::RefMatrix> _matrix;
|
|
|
|
osg::ref_ptr<osg::RefMatrix> _inverse;
|
2002-01-30 20:09:18 +08:00
|
|
|
|
|
|
|
typedef std::pair<osg::ref_ptr<osg::LineSegment>,osg::ref_ptr<osg::LineSegment> > LineSegmentPair;
|
|
|
|
typedef std::vector< LineSegmentPair > LineSegmentList;
|
|
|
|
LineSegmentList _segList;
|
|
|
|
|
2002-11-08 19:00:16 +08:00
|
|
|
typedef unsigned int LineSegmentMask;
|
|
|
|
typedef std::vector<LineSegmentMask> LineSegmentMaskStack;
|
|
|
|
LineSegmentMaskStack _segmentMaskStack;
|
2002-01-30 20:09:18 +08:00
|
|
|
|
2002-11-08 19:00:16 +08:00
|
|
|
bool isCulled(const osg::BoundingSphere& bs,LineSegmentMask& segMaskOut);
|
|
|
|
bool isCulled(const osg::BoundingBox& bb,LineSegmentMask& segMaskOut);
|
2002-01-30 20:09:18 +08:00
|
|
|
|
|
|
|
void addLineSegmentPair(osg::LineSegment* first,osg::LineSegment* second)
|
|
|
|
{
|
|
|
|
_segList.push_back(LineSegmentPair(first,second));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
~IntersectState();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2002-06-26 04:27:51 +08:00
|
|
|
bool intersect(osg::Drawable& gset);
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
void pushMatrix(const osg::Matrix& matrix);
|
|
|
|
void popMatrix();
|
|
|
|
|
|
|
|
bool enterNode(osg::Node& node);
|
|
|
|
void leaveNode();
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
typedef std::vector<osg::ref_ptr<IntersectState> > IntersectStateStack;
|
2002-01-30 20:09:18 +08:00
|
|
|
|
|
|
|
IntersectStateStack _intersectStateStack;
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
osg::NodePath _nodePath;
|
|
|
|
LineSegmentHitListMap _segHitList;
|
2001-01-11 00:32:10 +08:00
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|