Skip to content
Snippets Groups Projects
Commit 2c9a1df4 authored by Florent Lamiraux's avatar Florent Lamiraux Committed by olivier stasse
Browse files

Add a command to get the joint names of the robot.

parent 8c0f6b28
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,31 @@ class GetDimension : public Command {
}
}; // class GetDimension
// Command getJointNames
class GetJointNames : public Command {
public:
/// Create command and store it in Entity
/// \param entity instance of Entity owning this command
/// \param docstring documentation of the command
GetJointNames(DynamicPinocchio& entity, const std::string& docstring)
: Command(entity, std::vector<Value::Type>(), docstring){}
virtual Value doExecute() {
DynamicPinocchio& robot = static_cast<DynamicPinocchio&>(owner());
if (robot.m_model == 0x0){
SOT_THROW ExceptionDynamic(ExceptionDynamic::GENERIC,
"model has not been initialized.");
}
const std::vector<std::string>& jointNames = robot.m_model->names;
// Remove first joint names 'universe'
std::size_t n (jointNames.size());
assert(n >= 1);
std::vector<Value> res;
for (std::size_t i=1; i<jointNames.size(); ++i) {
res.push_back(Value(jointNames[i]));
}
return Value(res);
}
};
} // namespace command
} /* namespace sot */
} /* namespace dynamicgraph */
......
......@@ -202,6 +202,9 @@ DynamicPinocchio::DynamicPinocchio(const std::string& name)
"string (joint name)");
addCommand("createAcceleration",
makeCommandVoid2(*this, &DynamicPinocchio::cmd_createAccelerationSignal, docstring));
docstring="\n"
" Return robot joint names.\n\n";
addCommand("getJointNames", new command::GetJointNames(*this, docstring));
}
sphericalJoints.clear();
......
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