-
Notifications
You must be signed in to change notification settings - Fork 2
/
py_actusensor_wrapper_footbot.cpp
324 lines (290 loc) · 7.56 KB
/
py_actusensor_wrapper_footbot.cpp
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
#include "py_actusensor_wrapper_footbot.h"
#include "py_wrapper.h"
using namespace argos;
/****************************************/
/****************************************/
CGripperWrapper::CGripperWrapper()
{
}
void CGripperWrapper::Lock()
{
if (m_bGripper)
{
m_pcGripper->LockPositive();
}
else
{
ActusensorsWrapper::Logprint("Gripper Actuator not implemented or not stated in XML config.");
}
}
void CGripperWrapper::Unlock()
{
if (m_bGripper)
{
m_pcGripper->Unlock();
}
else
{
ActusensorsWrapper::Logprint("Gripper Actuator not implemented or not stated in XML config.");
}
}
/****************************************/
/****************************************/
CFootBotProximitySensorWrapper::CFootBotProximitySensorWrapper()
{
}
boost::python::list CFootBotProximitySensorWrapper::GetReadings() const
{
if (m_bProximity)
{
return ActusensorsWrapper::ToPythonList(m_pcProximity->GetReadings());
}
else
{
ActusensorsWrapper::Logprint("Proximity sensor not implemented or not stated in XML config.");
// TODO: add exception?
}
}
/****************************************/
/****************************************/
CGroundSensorWrapper::CGroundSensorWrapper()
{
}
boost::python::list CGroundSensorWrapper::GetReadings() const
{
if (m_bGround)
{
return ActusensorsWrapper::ToPythonList(m_pcGround->GetReadings());
}
else
{
ActusensorsWrapper::Logprint("Motor Ground Sensor not implemented or not stated in XML config.");
// TODO: add exception?
}
}
/****************************************/
/****************************************/
CBaseGroundSensorWrapper::CBaseGroundSensorWrapper()
{
}
boost::python::list CBaseGroundSensorWrapper::GetReadings() const
{
if (m_bBaseGround)
{
return ActusensorsWrapper::ToPythonList(m_pcBaseGround->GetReadings());
}
else
{
ActusensorsWrapper::Logprint("Base Ground Sensor not implemented or not stated in XML config.");
// TODO: add exception?
}
}
/****************************************/
/****************************************/
CLightSensorWrapper::CLightSensorWrapper()
{
}
boost::python::list CLightSensorWrapper::GetReadings() const
{
if (m_bLight)
{
return ActusensorsWrapper::ToPythonList(m_pcLight->GetReadings());
}
else
{
ActusensorsWrapper::Logprint("Light Sensor not implemented or not stated in XML config.");
// TODO: add exception?
}
}
/****************************************/
/****************************************/
CDistanceScannerWrapper::CDistanceScannerWrapper()
{
}
void CDistanceScannerWrapper::Enable()
{
if (m_bScannerActuator)
{
m_pcScannerActuator->Enable();
}
else
{
ActusensorsWrapper::Logprint("Distance Scanner Actuator not implemented or not stated in XML config.");
}
}
void CDistanceScannerWrapper::Disable()
{
if (m_bScannerActuator)
{
m_pcScannerActuator->Disable();
}
else
{
ActusensorsWrapper::Logprint("Distance Scanner Actuator not implemented or not stated in XML config.");
}
}
void CDistanceScannerWrapper::SetRPM(const Real f_rpm)
{
if (m_bScannerActuator)
{
if (f_rpm < 0)
m_pcScannerActuator->SetRPM(0);
m_pcScannerActuator->SetRPM(f_rpm);
}
else
{
ActusensorsWrapper::Logprint("Distance Scanner Actuator not implemented or not stated in XML config.");
}
}
void CDistanceScannerWrapper::SetAngle(const Real f_angle)
{
if (m_bScannerActuator)
{
m_pcScannerActuator->SetAngle(CRadians(f_angle));
}
else
{
ActusensorsWrapper::Logprint("Distance Scanner Actuator not implemented or not stated in XML config.");
}
}
std::map<CRadians, Real> CDistanceScannerWrapper::GetReadings() const
{
if (m_bScannerSensor)
{
return m_pcScannerSensor->GetReadingsMap();
}
else
{
ActusensorsWrapper::Logprint("Distance Scanner Sensor not implemented or not stated in XML config.");
}
}
std::map<CRadians, Real> CDistanceScannerWrapper::GetShortReadings() const
{
if (m_bScannerSensor)
{
return m_pcScannerSensor->GetShortReadingsMap();
}
else
{
ActusensorsWrapper::Logprint("Distance Scanner Sensor not implemented or not stated in XML config.");
}
}
std::map<CRadians, Real> CDistanceScannerWrapper::GetLongReadings() const
{
if (m_bScannerSensor)
{
return m_pcScannerSensor->GetLongReadingsMap();
}
else
{
ActusensorsWrapper::Logprint("Distance Scanner Sensor not implemented or not stated in XML config.");
}
}
/****************************************/
/****************************************/
CTurretWrapper::CTurretWrapper()
{
}
CRadians CTurretWrapper::GetRotation() const
{
if (m_bTurretSensor)
{
return m_pcTurretSensor->GetRotation();
}
else
{
ActusensorsWrapper::Logprint("Turret Sensor not implemented or not stated in XML config.");
}
}
void CTurretWrapper::SetRotation(const Real f_angle)
{
if (m_bTurretActuator)
{
m_pcTurretActuator->SetRotation(argos::CRadians(f_angle));
}
else
{
ActusensorsWrapper::Logprint("Turret Actuator not implemented or not stated in XML config.");
}
}
void CTurretWrapper::SetRotationSpeed(const UInt32 n_speed_pulses)
{
if (m_bTurretActuator)
{
m_pcTurretActuator->SetRotationSpeed(n_speed_pulses);
}
else
{
ActusensorsWrapper::Logprint("Turret Actuator not implemented or not stated in XML config.");
}
}
void CTurretWrapper::SetMode(const std::string str_mode_name)
{
if (m_bTurretActuator)
{
if (str_mode_name == "off")
{
m_pcTurretActuator->SetMode(argos::CCI_FootBotTurretActuator::ETurretModes::MODE_OFF);
}
if (str_mode_name == "passive")
{
m_pcTurretActuator->SetMode(argos::CCI_FootBotTurretActuator::ETurretModes::MODE_PASSIVE);
}
if (str_mode_name == "speed_control")
{
m_pcTurretActuator->SetMode(argos::CCI_FootBotTurretActuator::ETurretModes::MODE_SPEED_CONTROL);
}
if (str_mode_name == "position_control")
{
m_pcTurretActuator->SetMode(argos::CCI_FootBotTurretActuator::ETurretModes::MODE_POSITION_CONTROL);
}
}
else
{
ActusensorsWrapper::Logprint("Turret Actuator not implemented or not stated in XML config.");
}
}
void CTurretWrapper::SetActiveWithRotation(const Real f_angle)
{
if (m_bTurretActuator)
{
m_pcTurretActuator->SetActiveWithRotation(argos::CRadians(f_angle));
}
else
{
ActusensorsWrapper::Logprint("Turret Actuator not implemented or not stated in XML config.");
}
}
void CTurretWrapper::SetSpeedControlMode()
{
if (m_bTurretActuator)
{
m_pcTurretActuator->SetSpeedControlMode();
}
else
{
ActusensorsWrapper::Logprint("Turret Actuator not implemented or not stated in XML config.");
}
}
void CTurretWrapper::SetPositionControlMode()
{
if (m_bTurretActuator)
{
m_pcTurretActuator->SetPositionControlMode();
}
else
{
ActusensorsWrapper::Logprint("Turret Actuator not implemented or not stated in XML config.");
}
}
void CTurretWrapper::SetPassiveMode()
{
if (m_bTurretActuator)
{
m_pcTurretActuator->SetPassiveMode();
}
else
{
ActusensorsWrapper::Logprint("Turret Actuator not implemented or not stated in XML config.");
}
}