00001 /********************************************************************* 00002 * Software License Agreement (BSD License) 00003 * 00004 * Copyright (c) 2008, Willow Garage, Inc. 00005 * All rights reserved. 00006 * 00007 * Redistribution and use in source and binary forms, with or without 00008 * modification, are permitted provided that the following conditions 00009 * are met: 00010 * 00011 * * Redistributions of source code must retain the above copyright 00012 * notice, this list of conditions and the following disclaimer. 00013 * * Redistributions in binary form must reproduce the above 00014 * copyright notice, this list of conditions and the following 00015 * disclaimer in the documentation and/or other materials provided 00016 * with the distribution. 00017 * * Neither the name of Willow Garage, Inc. nor the names of its 00018 * contributors may be used to endorse or promote products derived 00019 * from this software without specific prior written permission. 00020 * 00021 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00022 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00023 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00024 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00025 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00027 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00028 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00029 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00031 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00032 * POSSIBILITY OF SUCH DAMAGE. 00033 *********************************************************************/ 00034 00037 #include <ompl_ros_interface/ompl_ros_state_validity_checker.h> 00038 00039 namespace ompl_ros_interface 00040 { 00041 void OmplRosStateValidityChecker::configureOnRequest(planning_models::KinematicState *kinematic_state, 00042 planning_models::KinematicState::JointStateGroup *joint_state_group, 00043 const arm_navigation_msgs::GetMotionPlan::Request &request) 00044 { 00045 kinematic_state_ = kinematic_state; 00046 joint_state_group_ = joint_state_group; 00047 00048 goal_constraint_evaluator_set_.clear(); 00049 path_constraint_evaluator_set_.clear(); 00050 00051 //Get the valid set of constraints that correspond to constraints on the physical joints and links of the robot 00052 arm_navigation_msgs::Constraints goal_constraints = getPhysicalConstraints(request.motion_plan_request.goal_constraints); 00053 arm_navigation_msgs::Constraints path_constraints = getPhysicalConstraints(request.motion_plan_request.path_constraints); 00054 00055 goal_constraint_evaluator_set_.add(goal_constraints.joint_constraints); 00056 goal_constraint_evaluator_set_.add(goal_constraints.position_constraints); 00057 goal_constraint_evaluator_set_.add(goal_constraints.orientation_constraints); 00058 goal_constraint_evaluator_set_.add(goal_constraints.visibility_constraints); 00059 00060 path_constraint_evaluator_set_.add(path_constraints.joint_constraints); 00061 path_constraint_evaluator_set_.add(path_constraints.position_constraints); 00062 path_constraint_evaluator_set_.add(path_constraints.orientation_constraints); 00063 path_constraint_evaluator_set_.add(path_constraints.visibility_constraints); 00064 } 00065 00066 arm_navigation_msgs::Constraints OmplRosStateValidityChecker::getPhysicalConstraints(const arm_navigation_msgs::Constraints &constraints) 00067 { 00068 arm_navigation_msgs::Constraints result_constraints; 00069 for(unsigned int i=0; i < constraints.joint_constraints.size(); i++) 00070 if(collision_models_interface_->getKinematicModel()->hasJointModel(constraints.joint_constraints[i].joint_name)) 00071 result_constraints.joint_constraints.push_back(constraints.joint_constraints[i]); 00072 00073 for(unsigned int i=0; i < constraints.position_constraints.size(); i++) 00074 if(collision_models_interface_->getKinematicModel()->hasLinkModel(constraints.position_constraints[i].link_name)) 00075 result_constraints.position_constraints.push_back(constraints.position_constraints[i]); 00076 00077 for(unsigned int i=0; i < constraints.orientation_constraints.size(); i++) 00078 if(collision_models_interface_->getKinematicModel()->hasLinkModel(constraints.orientation_constraints[i].link_name)) 00079 result_constraints.orientation_constraints.push_back(constraints.orientation_constraints[i]); 00080 00081 for(unsigned int i=0; i < constraints.visibility_constraints.size(); i++) 00082 if(collision_models_interface_->getKinematicModel()->hasLinkModel(constraints.visibility_constraints[i].sensor_pose.header.frame_id)) 00083 result_constraints.visibility_constraints.push_back(constraints.visibility_constraints[i]); 00084 00085 return result_constraints; 00086 } 00087 00088 void OmplRosStateValidityChecker::printSettings(std::ostream &out) const 00089 { 00090 out << "ROS State Validity Checker" << std::endl; 00091 } 00092 00093 }