diff --git a/idl/hpp/corbaserver/rbprm/rbprmbuilder.idl b/idl/hpp/corbaserver/rbprm/rbprmbuilder.idl index ec9cc9769ba72b957cd5e956bebfb749008ac6d2..eb7d853afb04db0c6cb4c57cd499eb9d75d72981 100755 --- a/idl/hpp/corbaserver/rbprm/rbprmbuilder.idl +++ b/idl/hpp/corbaserver/rbprm/rbprmbuilder.idl @@ -681,8 +681,9 @@ module hpp /// \param config configuration tested on the robot /// \param contacts name of the limbs in contact /// \param robustnessTreshold robustness treshold used + /// \param CoM optional, if specified use this CoM position instead of the one computed from the configuration /// \return whether the configuration is quasi-statically balanced - short isConfigBalanced(in floatSeq config, in Names_t contacts, in double robustnessTreshold) raises (Error); + short isConfigBalanced(in floatSeq config, in Names_t contacts, in double robustnessTreshold,in floatSeq CoM) raises (Error); /// run and store an analysis on all limb databases /// \param analysis name of the analysis existing if analysis ="all", diff --git a/src/hpp/corbaserver/rbprm/rbprmfullbody.py b/src/hpp/corbaserver/rbprm/rbprmfullbody.py index 77557602fa6444f1b55d93e43f6afa1dbdade437..342a5886cd363c2ca855f08f20ecb775848197d0 100755 --- a/src/hpp/corbaserver/rbprm/rbprmfullbody.py +++ b/src/hpp/corbaserver/rbprm/rbprmfullbody.py @@ -757,8 +757,8 @@ class FullBody (object): # # \param stepSize discretization step # \param pathId Id of the path to compute from - def isConfigBalanced(self, config, names, robustness = 0): - if (self.client.rbprm.rbprm.isConfigBalanced(config, names, robustness) == 1): + def isConfigBalanced(self, config, names, robustness = 0,CoM = [0,0,0]): + if (self.client.rbprm.rbprm.isConfigBalanced(config, names, robustness,CoM) == 1): return True else: return False diff --git a/src/rbprmbuilder.impl.cc b/src/rbprmbuilder.impl.cc index 1d1a6d69e4408dcb2bf34a3f69cdc6763796ba3b..88a7f951cdb61afe929573e198bd00db165ff2bb 100755 --- a/src/rbprmbuilder.impl.cc +++ b/src/rbprmbuilder.impl.cc @@ -3007,12 +3007,13 @@ assert(s2 == s1 +1); } } - CORBA::Short RbprmBuilder::isConfigBalanced(const hpp::floatSeq& configuration, const hpp::Names_t& contactLimbs, double robustnessTreshold) throw (hpp::Error) + CORBA::Short RbprmBuilder::isConfigBalanced(const hpp::floatSeq& configuration, const hpp::Names_t& contactLimbs, double robustnessTreshold, const hpp::floatSeq &CoM) throw (hpp::Error) { try{ rbprm::State testedState; model::Configuration_t config = dofArrayToConfig (fullBody()->device_, configuration); model::Configuration_t save = fullBody()->device_->currentConfiguration(); + fcl::Vec3f comFCL((double)CoM[(_CORBA_ULong)0],(double)CoM[(_CORBA_ULong)1],(double)CoM[(_CORBA_ULong)2]); std::vector<std::string> names = stringConversion(contactLimbs); fullBody()->device_->currentConfiguration(config); fullBody()->device_->computeForwardKinematics(); @@ -3030,7 +3031,7 @@ assert(s2 == s1 +1); } fullBody()->device_->currentConfiguration(save); fullBody()->device_->computeForwardKinematics(); - if (stability::IsStable(fullBody(), testedState) >= robustnessTreshold) + if (stability::IsStable(fullBody(), testedState,fcl::Vec3f(0,0,0),comFCL) >= robustnessTreshold) { return (CORBA::Short)(1); } diff --git a/src/rbprmbuilder.impl.hh b/src/rbprmbuilder.impl.hh index 9e1e102a1f2a736fecdb81e83e687c627a6ad296..367427dbd50ed6430fbf032352861c97504d3c3f 100755 --- a/src/rbprmbuilder.impl.hh +++ b/src/rbprmbuilder.impl.hh @@ -346,7 +346,7 @@ namespace hpp { virtual CORBA::Short computeIntermediary(unsigned short state1, unsigned short state2) throw (hpp::Error); virtual hpp::floatSeqSeq* getOctreeBoxes(const char* limbName, const hpp::floatSeq& configuration) throw (hpp::Error); virtual hpp::floatSeq* getOctreeTransform(const char* limbName, const hpp::floatSeq& configuration) throw (hpp::Error); - virtual CORBA::Short isConfigBalanced(const hpp::floatSeq& config, const hpp::Names_t& contactLimbs, double robustnessTreshold) throw (hpp::Error); + virtual CORBA::Short isConfigBalanced(const hpp::floatSeq& config, const hpp::Names_t& contactLimbs, double robustnessTreshold,const hpp::floatSeq& CoM) throw (hpp::Error); virtual double isStateBalanced(unsigned short stateId) throw (hpp::Error); virtual void runSampleAnalysis(const char* analysis, double isstatic) throw (hpp::Error); virtual hpp::floatSeq* runLimbSampleAnalysis(const char* limbname, const char* analysis, double isstatic) throw (hpp::Error);