hlrc / client / python / hlrc_client / RobotController.py @ 96a1894b
History | View | Annotate | Download (4.963 KB)
1 | 0c286af0 | Simon Schulz | """
|
---|---|---|---|
2 | This file is part of hlrc
|
||
3 |
|
||
4 | Copyright(c) sschulz <AT> techfak.uni-bielefeld.de
|
||
5 | http://opensource.cit-ec.de/projects/hlrc
|
||
6 |
|
||
7 | This file may be licensed under the terms of the
|
||
8 | GNU General Public License Version 3 (the ``GPL''),
|
||
9 | or (at your option) any later version.
|
||
10 |
|
||
11 | Software distributed under the License is distributed
|
||
12 | on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
|
||
13 | express or implied. See the GPL for the specific language
|
||
14 | governing rights and limitations.
|
||
15 |
|
||
16 | You should have received a copy of the GPL along with this
|
||
17 | program. If not, go to http://www.gnu.org/licenses/gpl.html
|
||
18 | or write to the Free Software Foundation, Inc.,
|
||
19 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
20 |
|
||
21 | The development of this software was supported by the
|
||
22 | Excellence Cluster EXC 277 Cognitive Interaction Technology.
|
||
23 | The Excellence Cluster EXC 277 is a grant of the Deutsche
|
||
24 | Forschungsgemeinschaft (DFG) in the context of the German
|
||
25 | Excellence Initiative.
|
||
26 | """
|
||
27 | |||
28 | import logging |
||
29 | ba6302b1 | Simon Schulz | try:
|
30 | import rsb |
||
31 | except ImportError: |
||
32 | RSB_SUPPORT = False
|
||
33 | else:
|
||
34 | from MiddlewareRSB import * |
||
35 | RSB_SUPPORT = True
|
||
36 | |||
37 | 0c286af0 | Simon Schulz | from MiddlewareROS import * |
38 | ba6302b1 | Simon Schulz | import sys |
39 | 0c286af0 | Simon Schulz | |
40 | class RobotController: |
||
41 | def __init__(self, mw_name, scope, loglevel=logging.WARNING): |
||
42 | f8fa1217 | Simon Schulz | """initialise
|
43 | :param mw_name: which mw to use, currentyl ROS and RSB are supported
|
||
44 | :param scope: base scope we want to listen on
|
||
45 | :param loglevel: optional log level
|
||
46 | """
|
||
47 | 0c286af0 | Simon Schulz | self.logger = logging.getLogger(__name__)
|
48 | |||
49 | # create nice and actually usable formatter and add it to the handler
|
||
50 | self.config_logger(loglevel)
|
||
51 | |||
52 | f8fa1217 | Simon Schulz | #store
|
53 | 0c286af0 | Simon Schulz | self.scope = scope
|
54 | f8fa1217 | Simon Schulz | self.mw = mw_name
|
55 | self.loglevel = loglevel
|
||
56 | 0c286af0 | Simon Schulz | |
57 | f8fa1217 | Simon Schulz | self.middleware = None |
58 | |||
59 | |||
60 | if (self.mw.upper() == "RSB"): |
||
61 | ba6302b1 | Simon Schulz | if (not RSB_SUPPORT): |
62 | self.logger.error("ERROR: no RSB support detected") |
||
63 | sys.exit(errno.EINVAL) |
||
64 | else:
|
||
65 | self.logger.info("creating new middleware connection via RSB") |
||
66 | self.middleware = MiddlewareRSB(self.scope, self.loglevel) |
||
67 | f8fa1217 | Simon Schulz | elif (self.mw.upper() == "ROS"): |
68 | 0c286af0 | Simon Schulz | self.logger.info("creating new middleware connection via ROS") |
69 | f8fa1217 | Simon Schulz | self.middleware = MiddlewareROS(self.scope, self.loglevel) |
70 | 0c286af0 | Simon Schulz | else:
|
71 | f8fa1217 | Simon Schulz | self.logger.error("invalid middleware requested (%s). supported: {ROS, RSB}\n\n" % (self.mw)) |
72 | 0c286af0 | Simon Schulz | sys.exit(errno.EINVAL) |
73 | |||
74 | f8fa1217 | Simon Schulz | def __del__(self): |
75 | """destructor
|
||
76 | """
|
||
77 | self.logger.debug("destructor of RobotController called") |
||
78 | |||
79 | 0c286af0 | Simon Schulz | def config_logger(self, level): |
80 | f8fa1217 | Simon Schulz | """initialise a nice logger formatting
|
81 | :param level: log level
|
||
82 | """
|
||
83 | 0c286af0 | Simon Schulz | formatter = logging.Formatter('%(asctime)s %(name)-30s %(levelname)-8s > %(message)s')
|
84 | ch = logging.StreamHandler() |
||
85 | #ch.setLevel(level)
|
||
86 | ch.setFormatter(formatter) |
||
87 | self.logger.setLevel(level)
|
||
88 | self.logger.addHandler(ch)
|
||
89 | |||
90 | def set_current_emotion(self, robot_emotion, blocking = False): |
||
91 | f8fa1217 | Simon Schulz | """set the current emotion
|
92 | :param robot_emotion: a RobotEmotion object
|
||
93 | :param blocking: should this call block during execution?
|
||
94 | """
|
||
95 | 0c286af0 | Simon Schulz | self.logger.debug("set_current_emotion(%s) %s" % (robot_emotion, ("BLOCKING" if blocking else "NON_BLOCKING"))) |
96 | self.middleware.set_current_emotion(robot_emotion, blocking)
|
||
97 | |||
98 | def set_default_emotion(self, robot_emotion, blocking = False): |
||
99 | f8fa1217 | Simon Schulz | """set the default emotion
|
100 | :param robot_emotion: a RobotEmotion object
|
||
101 | :param blocking: should this call block during execution?
|
||
102 | """
|
||
103 | 0c286af0 | Simon Schulz | self.logger.debug("set_default_emotion(%s) %s" % (robot_emotion, ("BLOCKING" if blocking else "NON_BLOCKING"))) |
104 | self.middleware.set_default_emotion(robot_emotion, blocking)
|
||
105 | |||
106 | def set_gaze_target(self, robot_gaze, blocking = False): |
||
107 | f8fa1217 | Simon Schulz | """set a gaze target
|
108 | :param robot_gaze: a RobotGaze object
|
||
109 | :param blocking: should this call block during execution?
|
||
110 | """
|
||
111 | |||
112 | 0c286af0 | Simon Schulz | self.logger.debug("set_gaze_target(%s) %s" % (robot_gaze, ("BLOCKING" if blocking else "NON_BLOCKING"))) |
113 | self.middleware.set_gaze_target(robot_gaze, blocking)
|
||
114 | |||
115 | def set_mouth_target(self, robot_mouth, blocking = False): |
||
116 | f8fa1217 | Simon Schulz | """set a mouth target
|
117 | :param robot_mouth: a RobotMouth object
|
||
118 | :param blocking: should this call block during execution?
|
||
119 | """
|
||
120 | 0c286af0 | Simon Schulz | self.logger.debug("set_mouth_target(%s) %s" % (robot_mouth, ("BLOCKING" if blocking else "NON_BLOCKING"))) |
121 | self.middleware.set_mouth_target(robot_mouth, blocking)
|
||
122 | |||
123 | def set_head_animation(self, robot_animation, blocking = False): |
||
124 | f8fa1217 | Simon Schulz | """set a head animation
|
125 | :param robot_animation: a RobotAnimation object
|
||
126 | :param blocking: should this call block during execution?
|
||
127 | """
|
||
128 | 0c286af0 | Simon Schulz | self.logger.debug("set_head_animation(%s) %s" % (robot_animation, ("BLOCKING" if blocking else "NON_BLOCKING"))) |
129 | self.middleware.set_head_animation(robot_animation, blocking)
|
||
130 | |||
131 | def set_speak(self, text, blocking = False): |
||
132 | f8fa1217 | Simon Schulz | """request the robot to say something using tts
|
133 | :param text: text to synthesize
|
||
134 | :param blocking: should this call block during execution?
|
||
135 | """
|
||
136 | 0c286af0 | Simon Schulz | self.logger.debug("set_speak(%s) %s" % (text, ("BLOCKING" if blocking else "NON_BLOCKING"))) |
137 | self.middleware.set_speak(text, blocking)
|
||
138 | |||
139 | f8fa1217 | Simon Schulz | #def get_gaze_target(self):
|
140 | # result = self.middleware.get_gaze_target()
|
||
141 | # self.logger.debug("get_gaze_target() returned %s" % (result))
|
||
142 | # return self.middleware.get_gaze_target() |