Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / libscout / src / SonarControl.cpp @ 4dcab71d

History | View | Annotate | Download (6.28 KB)

1 65c7f52b pdeo
/**
2
 * Copyright (c) 2011 Colony Project
3
 * 
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use,
8
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the
10
 * Software is furnished to do so, subject to the following
11
 * conditions:
12
 * 
13
 * The above copyright notice and this permission notice shall be
14
 * included in all copies or substantial portions of the Software.
15
 * 
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
 * OTHER DEALINGS IN THE SOFTWARE.
24 c492be62 Alex Zirbel
 */
25 65c7f52b pdeo
26
/**
27
 * @file SonarControl.cpp
28 c492be62 Alex Zirbel
 * @brief Contains sonar function implementation
29 65c7f52b pdeo
 * 
30 3a73516c Alex
 * @defgroup sonarcontrol SonarControl
31
 * @brief Functions which a behavior can use to control the sonar.
32
 * @ingroup behavior
33 65c7f52b pdeo
 *
34
 * @author Colony Project, CMU Robotics Club
35
 * @author Priyanka Deo
36 c492be62 Alex Zirbel
 * @author Alex Zirbel
37 3a73516c Alex
 *
38
 * @{
39 65c7f52b pdeo
 **/
40
41
#include "SonarControl.h"
42
43 b00761a0 Alex Zirbel
#define MAX_ATTEMPTS 10
44
45 c492be62 Alex Zirbel
using namespace std;
46
47 65c7f52b pdeo
/**
48
 * @brief Initialize the sonar module of libscout.
49
 *
50
 * Initialize the libscout node as a publisher of sonar_set_scan and 
51
 * sonar_toggle and a client of query_sonar.
52
 */
53 c492be62 Alex Zirbel
SonarControl::SonarControl(const ros::NodeHandle& libscout_node,
54
                           string scoutname)
55 65c7f52b pdeo
    : node(libscout_node)
56
{
57 b00761a0 Alex Zirbel
    sonar_set_scan_client =
58 071926c2 Alex
        node.serviceClient< ::messages::sonar_set_scan>(scoutname+"/set_sonar_scan");
59 b00761a0 Alex Zirbel
    sonar_toggle_client = 
60 071926c2 Alex
        node.serviceClient< ::messages::sonar_toggle>(scoutname + "/toggle_sonar");
61 b00761a0 Alex Zirbel
    sonar_distance_sub = node.subscribe(scoutname + "/sonar_distance",
62
                                        QUEUE_SIZE,
63
                                        &SonarControl::distance_callback,
64
                                        this);
65 c492be62 Alex Zirbel
66
    // Initialize all the sonar readings to 0 and timestamps to undefined
67
    for (int i = 0; i < 48; i++)
68
    {
69
        readings[i] = 0;
70
        timestamps[i] = ros::Time::now(); // A common shortcut for no reading
71
    }
72 b00761a0 Alex Zirbel
73 9d9e04ba Alex
    ROS_INFO("Readings at 0, ready to go.");
74
75 b00761a0 Alex Zirbel
    /// @todo Test, and replace 10 with a const int
76
    num_attempts = MAX_ATTEMPTS;
77 c492be62 Alex Zirbel
}
78
79
/**
80
 * Update the array of sonar values, and the last read timestamps,
81
 * to reflect the new reading received.
82
 */
83 071926c2 Alex
void SonarControl::distance_callback(const ::messages::sonar_distance::ConstPtr& msg)
84 c492be62 Alex Zirbel
{
85
    // Error checking so that the array doesn't cause a segfault
86
    if (msg->pos < 0 || msg-> pos > 23)
87
    {
88
        ROS_ERROR("SonarControl received an invalid sonar position.");
89
        return;
90
    }
91
92
    readings[msg->pos] = msg->distance0;
93
    readings[msg->pos + 24] = msg->distance1;
94 1cb59616 Hui Jun Tay
95 c06735bb Hui Jun Tay
    timestamps[msg->pos] = msg->stamp;
96
    timestamps[msg->pos + 24] = msg->stamp;
97 1cb59616 Hui Jun Tay
    
98
99 65c7f52b pdeo
}
100
101
/**
102
 * @brief Sets the sonar to a position.
103
 *
104
 * @param position Value between 0-180 of degree position to set sonar
105
 */
106 c492be62 Alex Zirbel
void SonarControl::set_single(int position)
107 65c7f52b pdeo
{
108
    set_range(position, position);
109
}
110
111
/**
112
 * @brief Sets the sonar to scan between two positions
113
 *
114
 * @param start_pos The leftmost (smallest) value that the sonar can take
115
 * @param end_pos The rightmost (largest) value that the sonar can take
116
 */
117
void SonarControl::set_range(int start_pos, int end_pos)
118
{
119 c492be62 Alex Zirbel
    // Check that the range is valid
120
    if (start_pos < 0 || end_pos < 0 || start_pos > 23 || end_pos > 23)
121
    {
122
        ROS_ERROR("Commanded SonarControl::set_range to a bad value.");
123
        return;
124
    }
125
126
    // Sort the start and end positions into increasing order
127
    if (start_pos > end_pos)
128
    {
129
        int temp = start_pos;
130
        start_pos = end_pos;
131
        end_pos = temp;
132
    }
133
134 b00761a0 Alex Zirbel
    // Make sure sonar is on
135
    set_on();
136 15b7e607 pdeo
137 c492be62 Alex Zirbel
    // Set scan range
138 071926c2 Alex
    ::messages::sonar_set_scan srv;
139 b00761a0 Alex Zirbel
    srv.request.stop_l = start_pos;
140
    srv.request.stop_r = end_pos;
141
142
    // Check if the service call failed or if the response was false
143
    if (!sonar_set_scan_client.call(srv) || srv.response.ack == false)
144
    {
145
        if (--num_attempts == 0)
146
        {
147
            ROS_ERROR("SonarControl::set_range() failed permanently.");
148
        }
149 65c7f52b pdeo
150 b00761a0 Alex Zirbel
        ROS_WARN("SonarControl::set_range() failed once.");
151
    }
152
}
153
154
/**
155
 * @brief Turn on sonar readings
156
 *
157
 * (Re)starts sonar panning and taking readings.
158
 */
159
void SonarControl::set_on()
160
{
161
    set_power(true);
162 65c7f52b pdeo
}
163
164
/**
165 15b7e607 pdeo
 * @brief Turn off sonar readings
166
 *
167
 * Stops sonar from panning and taking readings.
168 b00761a0 Alex Zirbel
 */
169
void SonarControl::set_off()
170
{
171
    set_power(false);
172
}
173
174
/**
175
 * @brief Turn sonar readings either off or on.
176
 *
177
 * Attempts to turn the readings off or on, num_attempts times.
178 15b7e607 pdeo
 *
179 b00761a0 Alex Zirbel
 * @param is_on True if power should be set on, false if should be off.
180 15b7e607 pdeo
 */
181 b00761a0 Alex Zirbel
void SonarControl::set_power(bool is_on)
182 15b7e607 pdeo
{
183 071926c2 Alex
    ::messages::sonar_toggle srv;
184 b00761a0 Alex Zirbel
    srv.request.set_on = is_on;
185
186
    // Check if the service call failed or if the response was false
187
    if (!sonar_toggle_client.call(srv) || srv.response.ack == false)
188
    {
189
        if (--num_attempts == 0)
190
        {
191
            ROS_ERROR("SonarControl::set_power() failed permanently.");
192
        }
193
194
        ROS_WARN("SonarControl::set_power() failed once.");
195
    }
196 9d9e04ba Alex
    ROS_INFO("SonarControl::set_power() succeeded.");
197 b00761a0 Alex Zirbel
198
    // Reset num_attempts
199
    num_attempts = MAX_ATTEMPTS;
200 15b7e607 pdeo
}
201 65c7f52b pdeo
202 3db79f25 Priya
int* SonarControl::get_sonar_readings()
203
{
204
  return readings;
205
}
206
207 65c7f52b pdeo
/**
208
 * @brief Converts value returne by sonar to physical distances.
209
 *
210
 * @param sonar_value The returned value of the sonar
211
 * @return The physical distance measured by the sonar.
212
 **/
213 c492be62 Alex Zirbel
//float sonar_to_dist(float sonar_value)
214
//{
215 7db6cf9f Priya
    //@todo impelement later based on sonar readings
216 c492be62 Alex Zirbel
//    return sonar_value;
217
//}
218 65c7f52b pdeo
219
/**
220
 * @brief Converts values from physical distances to values read by sonar
221
 *
222
 * @param distance The physical distance as measured.
223
 * @return The value read by the sonar that corresponds to the given distance
224
 **/
225 c492be62 Alex Zirbel
//float dist_to_sonar(float distance)
226
//{
227 7db6cf9f Priya
    //@todo implement later based on sonar readings
228 c492be62 Alex Zirbel
//    return distance;
229
//}
230 3a73516c Alex
231
/** @} */