forked from rtv/Stage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathp_driver.h
296 lines (227 loc) · 9.34 KB
/
p_driver.h
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
#ifndef _STAGE_PLAYER_DRIVER_H
#define _STAGE_PLAYER_DRIVER_H
#include <unistd.h>
#include <string.h>
#include <math.h>
#include <libplayercore/playercore.h>
#include "../libstage/stage.hh"
#define DRIVER_ERROR(X) printf("Stage driver error: %s\n", X)
// foward declare;
class Interface;
class StgTime;
class StgDriver : public Driver {
public:
// Constructor; need that
StgDriver(ConfigFile *cf, int section);
// Destructor
~StgDriver(void);
// Must implement the following methods.
virtual int Setup();
virtual int Shutdown();
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
virtual int Subscribe(QueuePointer &queue, player_devaddr_t addr);
virtual int Unsubscribe(QueuePointer &queue, player_devaddr_t addr);
/// The server thread calls this method frequently. We use it to
/// check for new commands and configs
virtual void Update();
/// all player devices share the same Stage world (for now)
static Stg::World *world;
static StgDriver *master_driver;
static bool usegui;
/// find the device record with this Player id
Interface *LookupInterface(player_devaddr_t addr);
Stg::Model *LocateModel(char *basename, player_devaddr_t *addr, const std::string &type);
protected:
/// an array of pointers to Interface objects, defined below
std::vector<Interface *> ifaces;
};
class Interface {
public:
Interface(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~Interface(void){ /* TODO: clean up*/ };
player_devaddr_t addr;
StgDriver *driver; // the driver instance that created this device
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data)
{
return (-1);
} // empty implementation
virtual void Publish(void){}; // do nothing
virtual void StageSubscribe(void){}; // do nothing
virtual void StageUnsubscribe(void){}; // do nothing
virtual void Subscribe(QueuePointer &queue){}; // do nothing
virtual void Unsubscribe(QueuePointer &queue){}; // do nothing};
};
class InterfaceSimulation : public Interface {
public:
InterfaceSimulation(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceSimulation(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data);
};
// base class for all interfaces that are associated with a model
class InterfaceModel
: public Interface {
public:
InterfaceModel(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section,
const std::string &type);
virtual ~InterfaceModel(void) { StageUnsubscribe(); };
virtual void StageSubscribe(void);
virtual void StageUnsubscribe(void);
protected:
Stg::Model *mod;
private:
bool subscribed;
};
class InterfacePosition : public InterfaceModel {
public:
InterfacePosition(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfacePosition(void){ /* TODO: clean up*/ };
virtual void Publish(void);
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data);
};
class InterfaceGripper : public InterfaceModel {
public:
InterfaceGripper(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceGripper(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data);
virtual void Publish(void);
};
class InterfaceWifi : public InterfaceModel {
public:
InterfaceWifi(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceWifi(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data);
virtual void Publish(void);
};
class InterfaceSpeech : public InterfaceModel {
public:
InterfaceSpeech(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceSpeech(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data);
virtual void Publish(void);
};
class InterfaceRanger : public InterfaceModel {
private:
int scan_id;
public:
InterfaceRanger(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceRanger(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data);
virtual void Publish(void);
};
/* class InterfaceAio : public InterfaceModel */
/* { */
/* public: */
/* InterfaceAio( player_devaddr_t addr, StgDriver* driver, ConfigFile* cf, int section ); */
/* virtual ~InterfaceAio( void ){ /\* TODO: clean up*\/ }; */
/* virtual int ProcessMessage(QueuePointer & resp_queue, */
/* player_msghdr_t* hdr, */
/* void* data); */
/* virtual void Publish( void ); */
/* }; */
/* class InterfaceDio : public InterfaceModel */
/* { */
/* public: */
/* InterfaceDio(player_devaddr_t addr, StgDriver* driver, ConfigFile* cf, int section); */
/* virtual ~InterfaceDio(); */
/* virtual int ProcessMessage(QueuePointer & resp_queue, player_msghdr_t* hdr, void* data); */
/* virtual void Publish(); */
/* }; */
class InterfacePower : public InterfaceModel {
public:
InterfacePower(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfacePower(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
virtual void Publish(void);
};
class InterfaceFiducial : public InterfaceModel {
public:
InterfaceFiducial(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceFiducial(void){ /* TODO: clean up*/ };
virtual void Publish(void);
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data);
};
class InterfaceActArray : public InterfaceModel {
public:
InterfaceActArray(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceActArray(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
virtual void Publish(void);
};
class InterfaceBlobfinder : public InterfaceModel {
public:
InterfaceBlobfinder(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceBlobfinder(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
virtual void Publish(void);
};
class InterfaceCamera : public InterfaceModel {
public:
InterfaceCamera(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceCamera(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
virtual void Publish(void);
};
class InterfacePtz : public InterfaceModel {
public:
InterfacePtz(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfacePtz(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
virtual void Publish(void);
};
class InterfaceBumper : public InterfaceModel {
public:
InterfaceBumper(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceBumper(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
virtual void Publish(void);
};
class InterfaceLocalize : public InterfaceModel {
public:
InterfaceLocalize(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceLocalize(void){ /* TODO: clean up*/ };
virtual void Publish(void);
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr_t *hdr, void *data);
};
class InterfaceMap : public InterfaceModel {
public:
InterfaceMap(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceMap(void){ /* TODO: clean up*/ };
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
// called by ProcessMessage to handle individual messages
int HandleMsgReqInfo(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
int HandleMsgReqData(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
};
class PlayerGraphics2dVis;
class InterfaceGraphics2d : public InterfaceModel {
public:
InterfaceGraphics2d(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceGraphics2d(void);
virtual void Subscribe(QueuePointer &queue);
virtual void Unsubscribe(QueuePointer &queue);
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
PlayerGraphics2dVis *vis;
};
class PlayerGraphics3dVis;
class InterfaceGraphics3d : public InterfaceModel {
public:
InterfaceGraphics3d(player_devaddr_t addr, StgDriver *driver, ConfigFile *cf, int section);
virtual ~InterfaceGraphics3d(void);
virtual void Subscribe(QueuePointer &queue);
virtual void Unsubscribe(QueuePointer &queue);
virtual int ProcessMessage(QueuePointer &resp_queue, player_msghdr *hdr, void *data);
PlayerGraphics3dVis *vis;
};
/** Replaces Player's real time clock object */
class StTime : public PlayerTime {
private:
StgDriver *driver;
public:
// Constructor
explicit StTime(StgDriver *driver);
// Destructor
virtual ~StTime();
// Get the simulator time
int GetTime(struct timeval *time);
int GetTimeDouble(double *time);
};
#endif