// Copyright (c) FIRST and other WPILib contributors. // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. #pragma once #include #include #include "simulation/gz_msgs/msgs.h" /** * \brief Plugin for reading the range of obstacles. * * This plugin publishes the range of obstacles detected by a sonar * rangefinder every physics update. * * To add a rangefinder to your robot, add the following XML to your * robot model: * * * Sensor Name * ~/my/topic * * * - `sensor`: Name of the sonar sensor that this rangefinder uses. * - `topic`: Optional. Message will be published as a gazebo.msgs.Float64. */ class Rangefinder : public gazebo::ModelPlugin { public: /// \brief Load the rangefinder and configures it according to the sdf. void Load(gazebo::physics::ModelPtr model, sdf::ElementPtr sdf); /// \brief Sends out the rangefinder reading each timestep. void Update(const gazebo::common::UpdateInfo& info); private: /// \brief Publish the range on this topic. std::string topic; /// \brief The sonar sensor that this rangefinder uses gazebo::sensors::SonarSensorPtr sensor; /// \brief The model to which this is attached. gazebo::physics::ModelPtr model; /// \brief Pointer to the world update function. gazebo::event::ConnectionPtr updateConn; /// \brief The node on which we're advertising. gazebo::transport::NodePtr node; /// \brief Publisher handle. gazebo::transport::PublisherPtr pub; };