forked from moveit/moveit2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added plugin for ruckig trajectory smoothing (#6)
* set robot state positions/velocities/accelerations from ruckig outout * updated file name for ruckig traj smoothing * added plugin for ruckig trajectory smoothing * removed extra space * added ruckig to file name and update authors * deleted unnesessary lines Co-authored-by: Wyatt Rees <wyatt.rees@gmail.com>
- Loading branch information
1 parent
24908fb
commit e4edc10
Showing
1 changed file
with
88 additions
and
0 deletions.
There are no files selected for viewing
88 changes: 88 additions & 0 deletions
88
moveit_ros/planning/planning_request_adapter_plugins/src/add_ruckig_traj_smoothing.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/********************************************************************* | ||
* Software License Agreement (BSD License) | ||
* | ||
* Copyright (c) 2012, Willow Garage, Inc. | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials provided | ||
* with the distribution. | ||
* * Neither the name of Willow Garage nor the names of its | ||
* contributors may be used to endorse or promote products derived | ||
* from this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
*********************************************************************/ | ||
|
||
/* Author: Jack Center, Wyatt Rees, Andy Zelenak */ | ||
|
||
#include <moveit/planning_request_adapter/planning_request_adapter.h> | ||
#include <moveit/trajectory_processing/ruckig_traj_smoothing.h> | ||
#include <class_loader/class_loader.hpp> | ||
|
||
namespace default_planner_request_adapters | ||
{ | ||
using namespace trajectory_processing; | ||
|
||
static const rclcpp::Logger LOGGER = rclcpp::get_logger("moveit_ros.add_traj_smoothing"); | ||
|
||
/** @brief This adapter uses the time-optimal trajectory generation method */ | ||
class AddTrajectorySmoothing : public planning_request_adapter::PlanningRequestAdapter | ||
{ | ||
public: | ||
AddTrajSmoothing() : planning_request_adapter::PlanningRequestAdapter() | ||
{ | ||
} | ||
|
||
void initialize(const rclcpp::Node::SharedPtr& node, const std::string& parameter_namespace) override | ||
{ | ||
} | ||
|
||
std::string getDescription() const override | ||
{ | ||
return "Add Trajectory Smoothing"; | ||
} | ||
|
||
bool adaptAndPlan(const PlannerFn& planner, const planning_scene::PlanningSceneConstPtr& planning_scene, | ||
const planning_interface::MotionPlanRequest& req, planning_interface::MotionPlanResponse& res, | ||
std::vector<std::size_t>& /*added_path_index*/) const override | ||
{ | ||
bool result = planner(planning_scene, req, res); | ||
if (result && res.trajectory_) | ||
{ | ||
RCLCPP_DEBUG(LOGGER, " Running '%s'", getDescription().c_str()); | ||
RuckigSmoothing smoother; | ||
if (!smoother.computeTimeStamps(*res.trajectory_, req.max_velocity_scaling_factor, | ||
req.max_acceleration_scaling_factor)) | ||
{ | ||
RCLCPP_WARN(LOGGER, " Trajectory smoothing for the solution path failed."); | ||
result = false; | ||
} | ||
} | ||
|
||
return result; | ||
} | ||
}; | ||
|
||
} // namespace default_planner_request_adapters | ||
|
||
CLASS_LOADER_REGISTER_CLASS(default_planner_request_adapters::AddTrajectorySmoothing, | ||
planning_request_adapter::PlanningRequestAdapter) |