mirror of
https://github.com/moveit/moveit_task_constructor.git
synced 2025-11-04 14:49:57 +08:00
137 lines
4.4 KiB
C++
137 lines
4.4 KiB
C++
/*********************************************************************
|
|
* Software License Agreement (BSD License)
|
|
*
|
|
* Copyright (c) 2015, University of Colorado, Boulder
|
|
* 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 the Univ of CO, Boulder 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: Dave Coleman
|
|
Desc: Wraps a task_solution_visualization playback class for Rviz into a stand alone display
|
|
*/
|
|
|
|
#include "task_display.h"
|
|
|
|
#include <moveit_task_constructor/visualization_tools/task_solution_visualization.h>
|
|
#include <moveit/rdf_loader/rdf_loader.h>
|
|
#include <moveit/robot_model/robot_model.h>
|
|
|
|
#include <rviz/properties/string_property.h>
|
|
|
|
namespace moveit_rviz_plugin
|
|
{
|
|
TaskDisplay::TaskDisplay() : Display(), load_robot_model_(false)
|
|
{
|
|
// The robot description property is only needed when using the trajectory playback standalone (not within motion
|
|
// planning plugin)
|
|
robot_description_property_ = new rviz::StringProperty(
|
|
"Robot Description", "robot_description", "The name of the ROS parameter where the URDF for the robot is loaded",
|
|
this, SLOT(changedRobotDescription()), this);
|
|
|
|
trajectory_visual_.reset(new TaskSolutionVisualization(this, this));
|
|
}
|
|
|
|
TaskDisplay::~TaskDisplay()
|
|
{
|
|
}
|
|
|
|
void TaskDisplay::onInitialize()
|
|
{
|
|
Display::onInitialize();
|
|
|
|
trajectory_visual_->onInitialize(scene_node_, context_, update_nh_);
|
|
}
|
|
|
|
void TaskDisplay::loadRobotModel()
|
|
{
|
|
load_robot_model_ = false;
|
|
rdf_loader_.reset(new rdf_loader::RDFLoader(robot_description_property_->getStdString()));
|
|
|
|
if (!rdf_loader_->getURDF())
|
|
{
|
|
this->setStatus(rviz::StatusProperty::Error, "Robot Model",
|
|
"Failed to load from parameter " + robot_description_property_->getString());
|
|
return;
|
|
}
|
|
this->setStatus(rviz::StatusProperty::Ok, "Robot Model", "Successfully loaded");
|
|
|
|
const srdf::ModelSharedPtr& srdf =
|
|
rdf_loader_->getSRDF() ? rdf_loader_->getSRDF() : srdf::ModelSharedPtr(new srdf::Model());
|
|
robot_model_.reset(new robot_model::RobotModel(rdf_loader_->getURDF(), srdf));
|
|
|
|
// Send to child class
|
|
trajectory_visual_->onRobotModelLoaded(robot_model_);
|
|
trajectory_visual_->onEnable();
|
|
}
|
|
|
|
void TaskDisplay::reset()
|
|
{
|
|
Display::reset();
|
|
loadRobotModel();
|
|
trajectory_visual_->reset();
|
|
}
|
|
|
|
void TaskDisplay::onEnable()
|
|
{
|
|
Display::onEnable();
|
|
load_robot_model_ = true; // allow loading of robot model in update()
|
|
}
|
|
|
|
void TaskDisplay::onDisable()
|
|
{
|
|
Display::onDisable();
|
|
trajectory_visual_->onDisable();
|
|
}
|
|
|
|
void TaskDisplay::update(float wall_dt, float ros_dt)
|
|
{
|
|
Display::update(wall_dt, ros_dt);
|
|
|
|
if (load_robot_model_)
|
|
loadRobotModel();
|
|
|
|
trajectory_visual_->update(wall_dt, ros_dt);
|
|
}
|
|
|
|
void TaskDisplay::setName(const QString& name)
|
|
{
|
|
BoolProperty::setName(name);
|
|
trajectory_visual_->setName(name);
|
|
}
|
|
|
|
void TaskDisplay::changedRobotDescription()
|
|
{
|
|
if (isEnabled())
|
|
reset();
|
|
else
|
|
loadRobotModel();
|
|
}
|
|
|
|
} // namespace moveit_rviz_plugin
|