gazebo_lidar_plugin.cpp
6.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
* Copyright (C) 2012-2014 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.
*
*/
/*
* Desc: Contact plugin
* Author: Nate Koenig mod by John Hsu
*/
#include "gazebo_lidar_plugin.h"
#include <chrono>
#include <cmath>
#include <iostream>
#include <memory>
#include <stdio.h>
#include <boost/algorithm/string.hpp>
#include <common.h>
#include <ignition/math/Rand.hh>
using namespace gazebo;
using namespace std;
// Register this plugin with the simulator
GZ_REGISTER_SENSOR_PLUGIN(LidarPlugin)
/////////////////////////////////////////////////
LidarPlugin::LidarPlugin()
{
}
/////////////////////////////////////////////////
LidarPlugin::~LidarPlugin()
{
newLaserScansConnection_->~Connection();
newLaserScansConnection_.reset();
parentSensor_.reset();
world_->Reset();
}
/////////////////////////////////////////////////
void LidarPlugin::Load(sensors::SensorPtr _parent, sdf::ElementPtr _sdf)
{
// Get then name of the parent sensor
parentSensor_ = std::dynamic_pointer_cast<sensors::RaySensor>(_parent);
if (!parentSensor_)
gzthrow("LidarPlugin requires a Ray Sensor as its parent");
world_ = physics::get_world(parentSensor_->WorldName());
newLaserScansConnection_ = parentSensor_->LaserShape()->ConnectNewLaserScans(
boost::bind(&LidarPlugin::OnNewLaserScans, this));
if (_sdf->HasElement("robotNamespace"))
namespace_ = _sdf->GetElement("robotNamespace")->Get<std::string>();
else
gzwarn << "[gazebo_lidar_plugin] Please specify a robotNamespace.\n";
if (_sdf->HasElement("simulate_fog")) {
simulate_fog_ = _sdf->GetElement("simulate_fog")->Get<bool>();
} else {
simulate_fog_ = false;
}
// get minimum distance
if (_sdf->HasElement("min_distance")) {
min_distance_ = _sdf->GetElement("min_distance")->Get<double>();
if (min_distance_ < kSensorMinDistance) {
min_distance_ = kSensorMinDistance;
}
} else {
gzwarn << "[gazebo_lidar_plugin] Using default minimum distance: " << kDefaultMinDistance << "\n";
min_distance_ = kDefaultMinDistance;
}
// get maximum distance
if (_sdf->HasElement("max_distance")) {
max_distance_ = _sdf->GetElement("max_distance")->Get<double>();
if (max_distance_ > kSensorMaxDistance) {
max_distance_ = kSensorMaxDistance;
}
} else {
gzwarn << "[gazebo_lidar_plugin] Using default maximum distance: " << kDefaultMaxDistance << "\n";
max_distance_ = kDefaultMaxDistance;
}
// Set high and low signal strength
// The considered relationship of distance to returned signal strength is an
// inverse square.
low_signal_strength_ = sqrt(min_distance_);
high_signal_strength_ = sqrt(max_distance_ + 0.02); // extend the threshold so there is still quality at max distance
node_handle_ = transport::NodePtr(new transport::Node());
node_handle_->Init(namespace_);
// Get the root model name
const string scopedName = _parent->ParentName();
vector<string> names_splitted;
boost::split(names_splitted, scopedName, boost::is_any_of("::"));
names_splitted.erase(std::remove_if(begin(names_splitted), end(names_splitted),
[](const string& name)
{ return name.size() == 0; }), end(names_splitted));
std::string rootModelName = names_splitted.front(); // The first element is the name of the root model
// the second to the last name is the model name
const std::string parentSensorModelName = names_splitted.rbegin()[1];
// get lidar topic name
if(_sdf->HasElement("topic")) {
lidar_topic_ = parentSensor_->Topic();
} else {
// if not set by parameter, get the topic name from the model name
lidar_topic_ = parentSensorModelName;
gzwarn << "[gazebo_lidar_plugin]: " + names_splitted.front() + "::" + names_splitted.rbegin()[1] +
" using lidar topic \"" << parentSensorModelName << "\"\n";
}
// Calculate parent sensor rotation WRT `base_link`
const ignition::math::Quaterniond q_ls = parentSensor_->Pose().Rot();
// Set the orientation
orientation_.set_x(q_ls.X());
orientation_.set_y(q_ls.Y());
orientation_.set_z(q_ls.Z());
orientation_.set_w(q_ls.W());
// start lidar topic publishing
lidar_pub_ = node_handle_->Advertise<sensor_msgs::msgs::Range>("~/" + names_splitted[0] + "/link/" + lidar_topic_, 10);
}
/////////////////////////////////////////////////
void LidarPlugin::OnNewLaserScans()
{
// Get the current simulation time.
#if GAZEBO_MAJOR_VERSION >= 9
common::Time now = world_->SimTime();
#else
common::Time now = world_->GetSimTime();
#endif
lidar_message_.set_time_usec(now.Double() * 1e6);
lidar_message_.set_min_distance(min_distance_);
lidar_message_.set_max_distance(max_distance_);
// get current distance measured from the sensor
double current_distance = parentSensor_->Range(0);
// set distance to min/max if actual value is smaller/bigger
if (simulate_fog_ && current_distance > 2.0f) {
double whiteNoise = ignition::math::Rand::DblNormal(0.0f, 0.1f);
current_distance = 2.0f + whiteNoise;
} else if (current_distance < min_distance_ || std::isinf(current_distance)) {
current_distance = min_distance_;
} else if (current_distance > max_distance_) {
current_distance = max_distance_;
}
lidar_message_.set_current_distance(current_distance);
lidar_message_.set_h_fov(kDefaultFOV);
lidar_message_.set_v_fov(kDefaultFOV);
lidar_message_.set_allocated_orientation(new gazebo::msgs::Quaternion(orientation_));
// Compute signal strength
// Other effects like target size, shape or reflectivity are not considered
const double signal_strength = sqrt(current_distance);
// Compute and set the signal quality
// The signal quality is normalized between 1 and 100 using the absolute
// signal strength (DISTANCE_SENSOR signal_quality value of 0 means invalid)
uint8_t signal_quality = 1;
if (signal_strength > low_signal_strength_) {
signal_quality = static_cast<uint8_t>(99 * ((high_signal_strength_ - signal_strength) /
(high_signal_strength_ - low_signal_strength_)) + 1);
}
lidar_message_.set_signal_quality(signal_quality);
lidar_pub_->Publish(lidar_message_);
}