diff --git a/idl/hpp/corbaserver/rbprm/rbprmbuilder.idl b/idl/hpp/corbaserver/rbprm/rbprmbuilder.idl index 82210bf73b437e2dc629ef9a2cd779ca8865dbc4..b6e9f6de8bdf06d22bbb89af0754c8cbff897127 100644 --- a/idl/hpp/corbaserver/rbprm/rbprmbuilder.idl +++ b/idl/hpp/corbaserver/rbprm/rbprmbuilder.idl @@ -110,6 +110,10 @@ module hpp void setPostureWeights(in floatSeq postureWeights) raises (Error); + /// If true, optimize the orientation of all the newly created contact using a postural task + void usePosturalTaskContactCreation(in boolean use) + raises (Error); + /// set a reference position of the end effector for the given ROM void setReferenceEndEffector(in string romName, in floatSeq ref) raises (Error); diff --git a/src/hpp/corbaserver/rbprm/rbprmfullbody.py b/src/hpp/corbaserver/rbprm/rbprmfullbody.py index 50b604cbeda72b5727bc3e86097688373706bada..5a19c18804b592241500d33be890e3087764b61e 100755 --- a/src/hpp/corbaserver/rbprm/rbprmfullbody.py +++ b/src/hpp/corbaserver/rbprm/rbprmfullbody.py @@ -875,6 +875,11 @@ class FullBody (Robot): def setPostureWeights(self,postureWeights): return self.clientRbprm.rbprm.setPostureWeights(postureWeights) + ## If true, optimize the orientation of all the newly created contact using a postural task + # \param use bool + def usePosturalTaskContactCreation(self,use): + return self.clientRbprm.rbprm.usePosturalTaskContactCreation(use) + ## return the time at the given state index (in the path computed during the first phase) # \param stateId : index of the state def getTimeAtState(self,stateId): diff --git a/src/rbprmbuilder.impl.cc b/src/rbprmbuilder.impl.cc index 4528ca4265645cee4d01c1f9f287707a588ee249..7ba83a4198617bcc91bc94bbcb24d937e84ea62a 100644 --- a/src/rbprmbuilder.impl.cc +++ b/src/rbprmbuilder.impl.cc @@ -651,7 +651,11 @@ namespace hpp { device->setEffectorReference(name,config); } - + void RbprmBuilder::usePosturalTaskContactCreation(const bool usePosturalTaskContactCreation) throw (hpp::Error){ + if(!fullBodyLoaded_) + throw Error ("No full body robot was loaded"); + fullBody()->usePosturalTaskContactCreation(usePosturalTaskContactCreation); + } void RbprmBuilder::setFilter(const hpp::Names_t& roms) throw (hpp::Error) { diff --git a/src/rbprmbuilder.impl.hh b/src/rbprmbuilder.impl.hh index 25d2ca5b23ab5e3dc848cff02273fffff4531063..79b8ec80698d5a5cc200c19cf71a8db01b94e49d 100644 --- a/src/rbprmbuilder.impl.hh +++ b/src/rbprmbuilder.impl.hh @@ -198,6 +198,7 @@ namespace hpp { void setReferenceConfig(const hpp::floatSeq &referenceConfig) throw (hpp::Error); void setPostureWeights(const hpp::floatSeq &postureWeights) throw (hpp::Error); void setReferenceEndEffector(const char* romName, const hpp::floatSeq &ref) throw(hpp::Error); + void usePosturalTaskContactCreation(const bool usePosturalTaskContactCreation) throw (hpp::Error); virtual void setFilter(const hpp::Names_t& roms) throw (hpp::Error); virtual void setAffordanceFilter(const char* romName, const hpp::Names_t& affordances) throw (hpp::Error);