Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include <rve_render_client/urdf.h>
00031 #include <rve_render_client/mesh_instance.h>
00032
00033 #include <urdf/model.h>
00034 #include <rve_common/eigen_conversions.h>
00035
00036 #include <Eigen/Geometry>
00037
00038 namespace rve_render_client
00039 {
00040
00041 URDFPtr createURDF(const urdf::Model& model)
00042 {
00043 URDFPtr urdf(new URDF(model), destroySceneObject);
00044 return urdf;
00045 }
00046
00047 URDFLink::URDFLink(const urdf::Model& model, const urdf::Link& link)
00048 {
00049 name_ = link.name;
00050
00051 if (link.visual)
00052 {
00053 loadInfo(visual_, model, link, *link.visual->geometry, link.visual->origin);
00054 }
00055 }
00056
00057 URDFLink::~URDFLink()
00058 {
00059 }
00060
00061 void URDFLink::loadInfo(VisualInfo& info, const urdf::Model& model, const urdf::Link& link, const urdf::Geometry& geom, const urdf::Pose& origin)
00062 {
00063 rve_msgs::Vector3 p;
00064 p.x = origin.position.x;
00065 p.y = origin.position.y;
00066 p.z = origin.position.z;
00067 rve_msgs::Quaternion q;
00068 q.x = origin.rotation.x;
00069 q.y = origin.rotation.y;
00070 q.z = origin.rotation.z;
00071 q.w = origin.rotation.w;
00072 info.offset_position_ = p;
00073 info.offset_orientation_ = q;
00074
00075 if (geom.type == urdf::Geometry::MESH)
00076 {
00077 const urdf::Mesh& mesh = static_cast<const urdf::Mesh&>(geom);
00078 if (!mesh.filename.empty())
00079 {
00080 MeshInstancePtr m = createMeshInstance(mesh.filename);
00081 addObject(m);
00082
00083
00084 set_position_ = boost::bind(&MeshInstance::setPosition, m.get(), _1);
00085 set_orientation_ = boost::bind(&MeshInstance::setOrientation, m.get(), _1);
00086 }
00087 }
00088
00089
00090 }
00091
00092 void URDFLink::setTransform(const rve_msgs::Vector3& pos, const rve_msgs::Quaternion& orient)
00093 {
00094 if (set_position_)
00095 {
00096 Eigen::Vector3f v(pos.x, pos.y, pos.z);
00097 Eigen::Quaternionf q(orient.w, orient.x, orient.y, orient.z);
00098 v += rve_common::msgToEigen(visual_.offset_position_);
00099 q *= rve_common::msgToEigen(visual_.offset_orientation_);
00100
00101 set_position_(rve_common::eigenToMsg(v));
00102 set_orientation_(rve_common::eigenToMsg(q));
00103 }
00104 }
00105
00106 URDF::URDF(const urdf::Model& model)
00107 {
00108 load(model);
00109 }
00110
00111 URDF::~URDF()
00112 {
00113 }
00114
00115 void URDF::load(const urdf::Model& model)
00116 {
00117 clear();
00118
00119 urdf::Model m;
00120 m.initParam("robot_description");
00121 typedef std::vector<boost::shared_ptr<urdf::Link> > V_Link;
00122 V_Link links;
00123 m.getLinks(links);
00124 V_Link::iterator it = links.begin();
00125 V_Link::iterator end = links.end();
00126 for (; it != end; ++it)
00127 {
00128 const boost::shared_ptr<urdf::Link>& l = *it;
00129 URDFLinkPtr link(new URDFLink(model, *l));
00130 addObject(link);
00131 links_.push_back(link);
00132 }
00133 }
00134
00135 void URDF::clear()
00136 {
00137 LinkIterator it = links_.begin();
00138 LinkIterator end = links_.end();
00139 for (; it != end; ++it)
00140 {
00141 const URDFLinkPtr& link = *it;
00142 removeObject(link);
00143 }
00144
00145 links_.clear();
00146 }
00147
00148 }