forked from robocomp/robocomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDSR.idsl
33 lines (27 loc) · 970 Bytes
/
DSR.idsl
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
module RoboCompDSR{
struct StatePelea{
string startingArea; // Idetificador o etiqueta del area de inicio
string chargingArea; // Identificador o etiqueta del area de carga
bool personDetected;
bool userAtSocialDistance;
bool userWithRobot;
bool userClassified;
bool productTopicDefined;
bool userIntentionDefined;
bool interestedUser;
bool userInPanel;
bool userOutPanelArea;
bool userShowPanel;
string atRobot; // Identificar o etiqueta de donde se encuentra el robot
string atUser; // Identificador o etiqueta de donde se encuentra el usuario
};
interface DSR{
StatePelea getState();
/// Generic node pose modification and access
// All get/sets and adds return false if an item or base doesn't exist.
/// This methods transforms FROM item TO base
bool setPosePersona(float x, float z, float angle);
bool setPoseRobot(float x, float z, float angle);
bool setPosePanel(float x, float z, float angle);
};
};