Skip to content
Snippets Groups Projects
Commit 6605e17a authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Update to changes in hpp-core regarding Container class

parent ecfaff1b
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,13 @@ namespace hpp {
return core::Container <Element>::get (name);
}
/// Check if a Container has a key.
template <typename Element>
bool has (const std::string& name) const
{
return core::Container <Element>::has (name);
}
/// Get the keys of a container
template <typename Element, typename ReturnType>
ReturnType getKeys () const
......
......@@ -136,6 +136,13 @@ namespace hpp {
return Container <Element>::get (name);
}
/// Check if a Container has a key.
template <typename Element>
bool has (const std::string& name) const
{
return core::Container <Element>::has (name);
}
/// Add an element to a container
template <typename Element>
void add (const std::string& name, const Element& element)
......
......@@ -161,21 +161,21 @@ namespace hpp {
ConvexShapeContactComplementPtr_t > constraints
(ConvexShapeContactComplement::createPair
(name, complementName, robot_));
JointAndShapes_t l = robot_->get <JointAndShapes_t> (surface1);
if (l.empty ()) throw std::runtime_error
("First list of triangles not found.");
if (!robot_->has <JointAndShapes_t> (surface1))
throw std::runtime_error ("First list of triangles not found.");
JointAndShapes_t l = robot_->get <JointAndShapes_t> (surface1);
for (JointAndShapes_t::const_iterator it = l.begin ();
it != l.end(); ++it) {
constraints.first->addObject (ConvexShape (it->second, it->first));
}
// Search first robot triangles
l = robot_->get <JointAndShapes_t> (surface2);
if (l.empty ()) {
if (robot_->has <JointAndShapes_t> (surface2))
l = robot_->get <JointAndShapes_t> (surface2);
// and then environment triangles.
else if (has <JointAndShapes_t> (surface2))
l = get <JointAndShapes_t> (surface2);
if (l.empty ()) throw std::runtime_error
("Second list of triangles not found.");
}
else throw std::runtime_error ("Second list of triangles not found.");
for (JointAndShapes_t::const_iterator it = l.begin ();
it != l.end(); ++it) {
constraints.first->addFloor (ConvexShape (it->second, it->first));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment