Skip to content
Snippets Groups Projects
Commit 38a36653 authored by Raphael's avatar Raphael
Browse files

add a function to get all sensors of a robot with a given type

parent fd162946
No related branches found
No related tags found
No related merge requests found
......@@ -370,6 +370,21 @@ namespace VirtualRobot
*/
virtual std::vector<SensorPtr> getSensors();
template<class SensorType>
std::vector<boost::shared_ptr<SensorType>> getSensors()
{
std::vector<boost::shared_ptr<SensorType>> result;
std::vector<SensorPtr> sensors = getSensors();
result.reserve(sensors.size());
for(SensorPtr& sensor:sensors)
{
if(dynamic_cast<SensorType*>(sensor.get()))
{
result.emplace_back(boost::static_pointer_cast<SensorType>(sensor));
}
}
return result;
}
/*!
Creates an XML string that defines the complete robot. Filenames of all visualization models are set to modelPath/RobotNodeName_visu and/or modelPath/RobotNodeName_colmodel.
@see RobotIO::saveXML.
......
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