86 lines
2.4 KiB
C++
86 lines
2.4 KiB
C++
/*
|
|
* Copyright (C) 2012 Open Source Robotics Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
#ifndef _GAZEBO_SENSORS_RFIDSENSOR_HH_
|
|
#define _GAZEBO_SENSORS_RFIDSENSOR_HH_
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "gazebo/sensors/Sensor.hh"
|
|
#include "gazebo/util/system.hh"
|
|
|
|
namespace gazebo
|
|
{
|
|
/// \ingroup gazebo_sensors
|
|
/// \brief Sensors namespace
|
|
namespace sensors
|
|
{
|
|
class RFIDTag;
|
|
|
|
// Forward declare private data class.
|
|
class RFIDSensorPrivate;
|
|
|
|
/// \addtogroup gazebo_sensors
|
|
/// \{
|
|
|
|
/// \class RFIDSensor RFIDSensor.hh sensors/sensors.hh
|
|
/// \brief Sensor class for RFID type of sensor
|
|
class GAZEBO_VISIBLE RFIDSensor: public Sensor
|
|
{
|
|
/// \brief Constructor
|
|
public: RFIDSensor();
|
|
|
|
/// \brief Destructor
|
|
public: virtual ~RFIDSensor();
|
|
|
|
// Documentation inherited
|
|
public: virtual void Load(const std::string &_worldName,
|
|
sdf::ElementPtr _sdf);
|
|
|
|
// Documentation inherited
|
|
public: virtual void Load(const std::string &_worldName);
|
|
|
|
// Documentation inherited
|
|
public: virtual void Init();
|
|
|
|
// Documentation inherited
|
|
public: void AddTag(RFIDTag *_tag);
|
|
|
|
// Documentation inherited.
|
|
protected: virtual bool UpdateImpl(const bool _force);
|
|
|
|
// Documentation inherited
|
|
public: virtual void Fini();
|
|
|
|
/// \brief Iterates through all the RFID tags, and finds the ones which
|
|
/// are in range of the sensor.
|
|
private: void EvaluateTags();
|
|
|
|
/// \brief Check the range for one RFID tag.
|
|
/// \param[in] _pose Pose of a tag.
|
|
/// \return Checks if tag is in range
|
|
private: bool CheckTagRange(const ignition::math::Pose3d &_pose);
|
|
|
|
/// \internal
|
|
/// \brief Private data pointer
|
|
private: std::unique_ptr<RFIDSensorPrivate> dataPtr;
|
|
};
|
|
/// \}
|
|
}
|
|
}
|
|
#endif
|