Skip to content
Snippets Groups Projects
Commit f1380e5d authored by Francois Keith's avatar Francois Keith
Browse files

Remove useless IndexInVRML vector.

parent 37b7c727
No related branches found
No related tags found
No related merge requests found
...@@ -108,13 +108,11 @@ RegisterMethods() ...@@ -108,13 +108,11 @@ RegisterMethods()
void ComAndFootRealizationByGeometry:: void ComAndFootRealizationByGeometry::
InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint, InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint,
std::vector<CjrlJoint *> &ActuatedJoints, std::vector<CjrlJoint *> &ActuatedJoints,
std::vector<int> &IndexInVRML,
std::vector<int> &IndexinConfiguration ) std::vector<int> &IndexinConfiguration )
{ {
if (FromRootToJoint.size()!=0) if (FromRootToJoint.size()!=0)
{ {
ODEBUG("Enter 6.0 " << this); ODEBUG("Enter 6.0 " << this);
IndexInVRML.resize(FromRootToJoint.size());
IndexinConfiguration.resize(FromRootToJoint.size()); IndexinConfiguration.resize(FromRootToJoint.size());
ODEBUG("Enter 6.1 " ); ODEBUG("Enter 6.1 " );
...@@ -123,15 +121,6 @@ InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint, ...@@ -123,15 +121,6 @@ InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint,
// Here we assume that they are in a decending order. // Here we assume that they are in a decending order.
for(unsigned int i=0;i<FromRootToJoint.size();i++) for(unsigned int i=0;i<FromRootToJoint.size();i++)
{ {
for(unsigned int j=0;j<ActuatedJoints.size();j++)
{
if (FromRootToJoint[i]==ActuatedJoints[j])
{
IndexInVRML[lindex] = j;
break;
}
}
IndexinConfiguration[lindex] = FromRootToJoint[i]->rankInConfiguration(); IndexinConfiguration[lindex] = FromRootToJoint[i]->rankInConfiguration();
lindex++; lindex++;
} }
...@@ -141,7 +130,6 @@ InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint, ...@@ -141,7 +130,6 @@ InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint,
void ComAndFootRealizationByGeometry:: void ComAndFootRealizationByGeometry::
InitializeMapsForAHand(CjrlHand * aHand, InitializeMapsForAHand(CjrlHand * aHand,
std::vector<CjrlJoint *> &ActuatedJoints, std::vector<CjrlJoint *> &ActuatedJoints,
vector<int> & IndexesInVRML,
vector<int> & IndexesInConfiguration, vector<int> & IndexesInConfiguration,
CjrlJoint * & associateShoulder) CjrlJoint * & associateShoulder)
{ {
...@@ -181,7 +169,7 @@ InitializeMapsForAHand(CjrlHand * aHand, ...@@ -181,7 +169,7 @@ InitializeMapsForAHand(CjrlHand * aHand,
} }
associateShoulder = FromRootToJoint2[0]; associateShoulder = FromRootToJoint2[0];
InitializationMaps(FromRootToJoint2,ActuatedJoints, InitializationMaps(FromRootToJoint2,ActuatedJoints,
IndexesInVRML, IndexesInConfiguration); IndexesInConfiguration);
} }
void ComAndFootRealizationByGeometry:: void ComAndFootRealizationByGeometry::
...@@ -212,7 +200,7 @@ InitializeMapForChest(std::vector<CjrlJoint *> &ActuatedJoints) ...@@ -212,7 +200,7 @@ InitializeMapForChest(std::vector<CjrlJoint *> &ActuatedJoints)
} }
itJoint++; itJoint++;
} }
InitializationMaps(FromRootToJoint2,ActuatedJoints,m_ChestIndexInVRML,m_ChestIndexinConfiguration); InitializationMaps(FromRootToJoint2,ActuatedJoints,m_ChestIndexinConfiguration);
} }
void ComAndFootRealizationByGeometry:: void ComAndFootRealizationByGeometry::
...@@ -286,23 +274,23 @@ Initialization() ...@@ -286,23 +274,23 @@ Initialization()
// Remove the first element // Remove the first element
FromRootToJoint.erase(FromRootToJoint.begin()); FromRootToJoint.erase(FromRootToJoint.begin());
InitializationMaps(FromRootToJoint,ActuatedJoints, InitializationMaps(FromRootToJoint,ActuatedJoints,
m_RightLegIndexInVRML,m_RightLegIndexinConfiguration); m_RightLegIndexinConfiguration);
FromRootToJoint.clear(); FromRootToJoint.clear();
FromRootToJoint = LeftFoot->associatedAnkle()->jointsFromRootToThis(); FromRootToJoint = LeftFoot->associatedAnkle()->jointsFromRootToThis();
FromRootToJoint.erase(FromRootToJoint.begin()); FromRootToJoint.erase(FromRootToJoint.begin());
InitializationMaps(FromRootToJoint,ActuatedJoints, InitializationMaps(FromRootToJoint,ActuatedJoints,
m_LeftLegIndexInVRML,m_LeftLegIndexinConfiguration); m_LeftLegIndexinConfiguration);
// Create maps for the left hand. // Create maps for the left hand.
InitializeMapsForAHand(getHumanoidDynamicRobot()->leftHand(), InitializeMapsForAHand(getHumanoidDynamicRobot()->leftHand(),
ActuatedJoints, ActuatedJoints,
m_LeftArmIndexInVRML, m_LeftArmIndexinConfiguration, m_LeftArmIndexinConfiguration,
m_LeftShoulder); m_LeftShoulder);
// Create maps for the right hand. // Create maps for the right hand.
InitializeMapsForAHand(getHumanoidDynamicRobot()->rightHand(), InitializeMapsForAHand(getHumanoidDynamicRobot()->rightHand(),
ActuatedJoints, ActuatedJoints,
m_RightArmIndexInVRML, m_RightArmIndexinConfiguration, m_RightArmIndexinConfiguration,
m_RightShoulder); m_RightShoulder);
FromRootToJoint.clear(); FromRootToJoint.clear();
...@@ -311,12 +299,6 @@ Initialization() ...@@ -311,12 +299,6 @@ Initialization()
ODEBUG("RightLegIndex: " ODEBUG("RightLegIndex: "
<< m_RightLegIndexInVRML[0] << " "
<< m_RightLegIndexInVRML[1] << " "
<< m_RightLegIndexInVRML[2] << " "
<< m_RightLegIndexInVRML[3] << " "
<< m_RightLegIndexInVRML[4] << " "
<< m_RightLegIndexInVRML[5] << " "
<< m_RightLegIndexinConfiguration[0] << " " << m_RightLegIndexinConfiguration[0] << " "
<< m_RightLegIndexinConfiguration[1] << " " << m_RightLegIndexinConfiguration[1] << " "
<< m_RightLegIndexinConfiguration[2] << " " << m_RightLegIndexinConfiguration[2] << " "
...@@ -324,12 +306,6 @@ Initialization() ...@@ -324,12 +306,6 @@ Initialization()
<< m_RightLegIndexinConfiguration[4] << " " << m_RightLegIndexinConfiguration[4] << " "
<< m_RightLegIndexinConfiguration[5] ); << m_RightLegIndexinConfiguration[5] );
ODEBUG("LeftLegIndex: " ODEBUG("LeftLegIndex: "
<< m_LeftLegIndexInVRML[0] << " "
<< m_LeftLegIndexInVRML[1] << " "
<< m_LeftLegIndexInVRML[2] << " "
<< m_LeftLegIndexInVRML[3] << " "
<< m_LeftLegIndexInVRML[4] << " "
<< m_LeftLegIndexInVRML[5] << " "
<< m_LeftLegIndexinConfiguration[0] << " " << m_LeftLegIndexinConfiguration[0] << " "
<< m_LeftLegIndexinConfiguration[1] << " " << m_LeftLegIndexinConfiguration[1] << " "
<< m_LeftLegIndexinConfiguration[2] << " " << m_LeftLegIndexinConfiguration[2] << " "
......
...@@ -253,7 +253,6 @@ namespace PatternGeneratorJRL ...@@ -253,7 +253,6 @@ namespace PatternGeneratorJRL
/*! \brief Initialization of internal maps of indexes */ /*! \brief Initialization of internal maps of indexes */
void InitializationMaps(std::vector<CjrlJoint *> &FromRootToFoot, void InitializationMaps(std::vector<CjrlJoint *> &FromRootToFoot,
std::vector<CjrlJoint *> &ActuatedJoints, std::vector<CjrlJoint *> &ActuatedJoints,
std::vector<int> &IndexInVRML,
std::vector<int> &IndexinConfiguration); std::vector<int> &IndexinConfiguration);
/*! Map shoulders and wrist /*! Map shoulders and wrist
...@@ -268,7 +267,6 @@ namespace PatternGeneratorJRL ...@@ -268,7 +267,6 @@ namespace PatternGeneratorJRL
*/ */
void InitializeMapsForAHand(CjrlHand * aHand, void InitializeMapsForAHand(CjrlHand * aHand,
std::vector<CjrlJoint *> &ActuatedJoints, std::vector<CjrlJoint *> &ActuatedJoints,
vector<int> & IndexesInVRML,
vector<int> & IndexesInConfiguration, vector<int> & IndexesInConfiguration,
CjrlJoint * & associateShoulder); CjrlJoint * & associateShoulder);
...@@ -367,13 +365,6 @@ namespace PatternGeneratorJRL ...@@ -367,13 +365,6 @@ namespace PatternGeneratorJRL
/*! Conversion between the index of the plan and the robot DOFs. */ /*! Conversion between the index of the plan and the robot DOFs. */
std::vector<int> m_ConversionForUpperBodyFromLocalIndexToRobotDOFs; std::vector<int> m_ConversionForUpperBodyFromLocalIndexToRobotDOFs;
/*! Keep the indexes for the legs of the robot in the VRML numbering system. */
std::vector<int> m_LeftLegIndexInVRML;
std::vector<int> m_RightLegIndexInVRML;
std::vector<int> m_LeftArmIndexInVRML;
std::vector<int> m_RightArmIndexInVRML;
std::vector<int> m_ChestIndexInVRML;
/*! \name Keep the indexes into the Configuration numbering system. /*! \name Keep the indexes into the Configuration numbering system.
@{ @{
......
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