OSG三维场景中拾取鼠标在模型表面的点击点
创作时间:
作者:
@小白创作中心
OSG三维场景中拾取鼠标在模型表面的点击点
引用
1
来源
1.
https://www.cnblogs.com/herd/p/18555625
在三维图形编程中,鼠标拾取(Picking)是一个常见的需求,它允许用户通过鼠标点击来选择场景中的对象或位置。本文将详细介绍如何在OpenSceneGraph(OSG)中实现这一功能,具体来说,就是如何获取鼠标点击在模型表面的具体位置,并在该位置显示一个红色球体作为标记。
在OSG中实现鼠标拾取功能主要涉及以下几个关键步骤:
- 创建一个继承自
osgGA::GUIEventHandler的类,用于处理鼠标事件 - 在事件处理函数中获取鼠标点击位置
- 使用
osgUtil::LineSegmentIntersector进行射线相交检测 - 处理相交结果并在场景中显示标记
下面是完整的代码实现:
#include <osg/Group>
#include <osg/Geode>
#include <osg/ShapeDrawable>
#include <osgDB/ReadFile>
#include <osgViewer/Viewer>
#include <osgGA/GUIEventHandler>
#include <osgGA/TrackballManipulator>
#include <osg/Material>
#include <osg/StateSet>
#include <osgUtil/LineSegmentIntersector>
#include <osgUtil/IntersectVisitor>
#include <iostream>
class PickHandler : public osgGA::GUIEventHandler {
public:
PickHandler() {}
virtual bool handle(const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter& aa) {
osgViewer::View* view = dynamic_cast<osgViewer::View*>(&aa);
if (!view) return false;
// 检查是否为鼠标左键点击事件
if (ea.getEventType() == osgGA::GUIEventAdapter::RELEASE && ea.getButton() == osgGA::GUIEventAdapter::LEFT_MOUSE_BUTTON) {
performPick(ea, *view);
return true;
}
return false;
}
osg::ref_ptr<osg::Geode> createRedSphere(const osg::Vec3f& position, float radius) {
// 创建一个球体形状
osg::ref_ptr<osg::Sphere> sphere = new osg::Sphere(position, radius);
// 创建一个形状绘制对象,并设置其颜色为红色
osg::ref_ptr<osg::ShapeDrawable> sphereDrawable = new osg::ShapeDrawable(sphere);
sphereDrawable->setColor(osg::Vec4(1.0f, 0.0f, 0.0f, 1.0f)); // 红色(RGBA)
// 创建一个地理节点(Geode),并将形状绘制对象添加到其中
osg::ref_ptr<osg::Geode> sphereGeode = new osg::Geode();
sphereGeode->addDrawable(sphereDrawable);
return sphereGeode;
}
private:
void performPick(const osgGA::GUIEventAdapter& ea, osgViewer::View& view) {
// 将鼠标位置转换为窗口坐标
int x = ea.getX();
int y = ea.getY();
// 执行相交检测
osgUtil::IntersectionVisitor iv;
osgUtil::LineSegmentIntersector::Intersections intersections;
// 执行相交检测
if (view.computeIntersections(x, y, intersections)) {
// 检查是否有相交点
if (!intersections.empty()) {
for (const auto& intersection : intersections) {
const osg::Vec3& point = intersection.getWorldIntersectPoint();
std::cout << "Intersection point: " << point.x() << " " << point.y() << " " << point.z() << std::endl;
osg::ref_ptr<osg::Geode> redSphere = createRedSphere(point, 10.1f); // 半径为1的红色球体
view.getSceneData()->asGroup()->addChild(redSphere);
break; // 只处理第一个相交点
}
}
else {
std::cout << "No intersection found." << std::endl;
}
}
else {
std::cout << "No intersection found." << std::endl;
}
}
};
int main(int argc, char** argv) {
osg::ref_ptr<osgViewer::Viewer> viewer = new osgViewer::Viewer;
// 加载场景 cow.osg excavator.OSGB library.OSGB
osg::Node* root = osgDB::readNodeFile("library.OSGB");
if (!root) {
std::cerr << "Error loading model" << std::endl;
return 1;
}
viewer->setSceneData(root);
// 添加鼠标拾取事件处理器
viewer->addEventHandler(new PickHandler());
// 开始运行
return viewer->run();
}
通过以上代码,你可以在OSG场景中实现基本的鼠标拾取功能。当用户在模型表面点击时,程序会计算出点击位置对应的三维坐标,并在该位置显示一个红色球体作为标记。这在许多三维应用中都是非常实用的功能,例如游戏开发、虚拟现实应用等。
热门推荐
怎样增加大脑血清素
如何通过八字分析流年对命运的影响
得了血栓怎么办?
框架结构的特点及适用范围
林雪:香港实力派演员的演艺生涯
API接入微信的完整指南
关羽早期形象与神话的历史脉络
香格里拉独克宗古城:古老与现代建筑的和谐交响
维修洗衣机时才知道,“快洗”模式不能随便用,我却一直做错了
如何研读《易经》:解锁古代智慧的钥匙
400ml等于多少克?100ml等于多少克?详解液体体积与质量换算
关于合理健身可以改善脱发的研究分析和运动推荐
怎么确认自己感染了寄生虫
劳动监察大队对企业违规行为有哪些处罚措施?
区域冠军是怎样炼成的②丨 “小巨人”亮国科技带给邵东“好眼力
盘山风景区旅游攻略:踏古寻幽,一探自然与文化的交融
别再混淆了!医生告诉你健脾丸与归脾丸的两大区别
殡葬从业者真实的收入情况
孩子耳朵堵塞怎么办?5种专业疏通方法详解
心理学:一个人遇到正缘的3种反应,很明显
宽带带宽升级为1000兆,需要更换哪些东西?
摆脱困境,儒家有解
反胶选手应对直拍长胶倒板打法的实战指南
70后夫妻选择丁克引起争议:第一代丁克夫妻,如今后悔了吗?
简单5招,教你拍出唯美花季古风人像
电脑前解说游戏收入虚高的背后
餐后一小时血糖原来这么重要
老年人怎样养生保健?
如果你喜欢《小林家的龙女仆》,那么这 10 部动画值得一看
窗帘计算公式最简单的方法