|
| 1 | +#!/usr/bin/env python |
| 2 | + |
| 3 | +# Software License Agreement (BSD License) |
| 4 | +# |
| 5 | +# Copyright (c) 2021, Lucas Walter |
| 6 | +# All rights reserved. |
| 7 | +# |
| 8 | +# Redistribution and use in source and binary forms, with or without |
| 9 | +# modification, are permitted provided that the following conditions |
| 10 | +# are met: |
| 11 | +# |
| 12 | +# * Redistributions of source code must retain the above copyright |
| 13 | +# notice, this list of conditions and the following disclaimer. |
| 14 | +# * Redistributions in binary form must reproduce the above |
| 15 | +# copyright notice, this list of conditions and the following |
| 16 | +# disclaimer in the documentation and/or other materials provided |
| 17 | +# with the distribution. |
| 18 | +# * Neither the name of Willow Garage, Inc. nor the names of its |
| 19 | +# contributors may be used to endorse or promote products derived |
| 20 | +# from this software without specific prior written permission. |
| 21 | +# |
| 22 | +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 23 | +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 24 | +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 25 | +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 26 | +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 27 | +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 28 | +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 29 | +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 30 | +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 31 | +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 32 | +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 33 | +# POSSIBILITY OF SUCH DAMAGE. |
| 34 | + |
| 35 | +import random |
| 36 | + |
| 37 | +import rospy |
| 38 | +from ddynamic_reconfigure_python.ddynamic_reconfigure import DDynamicReconfigure |
| 39 | + |
| 40 | +import joint_state_publisher |
| 41 | + |
| 42 | + |
| 43 | +class JointStatePublisherDR(): |
| 44 | + def __init__(self, jsp): |
| 45 | + self.jsp = jsp |
| 46 | + self.ddynrec = DDynamicReconfigure("") |
| 47 | + |
| 48 | + for name in self.jsp.joint_list: |
| 49 | + if name not in self.jsp.free_joints: |
| 50 | + continue |
| 51 | + joint = self.jsp.free_joints[name] |
| 52 | + |
| 53 | + if joint['min'] == joint['max']: |
| 54 | + continue |
| 55 | + |
| 56 | + self.ddynrec.add_variable(name, "", float(joint['zero']), |
| 57 | + float(joint['min']), float(joint['max'])) |
| 58 | + |
| 59 | + # there cannot be a joint named 'center' or 'randomize' |
| 60 | + self.ddynrec.add_variable("center", "Set all joints to zero positions", False) |
| 61 | + # Set zero positions read from parameters |
| 62 | + # self.center() |
| 63 | + |
| 64 | + self.ddynrec.add_variable("randomize", "Set all joints to random positions", False) |
| 65 | + |
| 66 | + self.jsp.set_source_update_cb(self.source_update_cb) |
| 67 | + |
| 68 | + self.config = None |
| 69 | + self.ddynrec.start(self.dyn_rec_callback) |
| 70 | + |
| 71 | + def source_update_cb(self): |
| 72 | + rospy.logwarn("TBD handle jsp updates") |
| 73 | + |
| 74 | + def dyn_rec_callback(self, config, level): |
| 75 | + if config.center: |
| 76 | + config = self.center(config) |
| 77 | + config.center = False |
| 78 | + if config.randomize: |
| 79 | + config = self.randomize(config) |
| 80 | + config.randomize = False |
| 81 | + for name in self.jsp.free_joints.keys(): |
| 82 | + if name not in config.keys(): |
| 83 | + rospy.logerr(name + " not in config: " + str(config.keys())) |
| 84 | + continue |
| 85 | + self.jsp.free_joints[name]['position'] = config[name] |
| 86 | + |
| 87 | + self.config = config |
| 88 | + return config |
| 89 | + |
| 90 | + def update_config(self): |
| 91 | + config = {} |
| 92 | + for name in self.jsp.free_joints.keys(): |
| 93 | + config[name] = self.jsp.free_joints[name]['position'] |
| 94 | + self.ddynrec.dyn_rec_srv.update_configuration(config) |
| 95 | + |
| 96 | + def center(self, config): |
| 97 | + rospy.loginfo("Centering") |
| 98 | + for name in self.jsp.free_joints.keys(): |
| 99 | + if name in config.keys(): |
| 100 | + config[name] = self.jsp.free_joints[name]['zero'] |
| 101 | + return config |
| 102 | + |
| 103 | + def randomize(self, config): |
| 104 | + rospy.loginfo("Randomizing") |
| 105 | + for name in self.jsp.free_joints.keys(): |
| 106 | + if name in config.keys(): |
| 107 | + config[name] = random.uniform(self.jsp.free_joints[name]['min'], |
| 108 | + self.jsp.free_joints[name]['max']) |
| 109 | + return config |
| 110 | + |
| 111 | + |
| 112 | +if __name__ == '__main__': |
| 113 | + try: |
| 114 | + rospy.init_node('joint_state_publisher_dr') |
| 115 | + jsp_dr = JointStatePublisherDR(joint_state_publisher.JointStatePublisher()) |
| 116 | + # TODO(lucasw) threading.Thread here? |
| 117 | + jsp_dr.jsp.loop() |
| 118 | + except rospy.ROSInterruptException: |
| 119 | + pass |
0 commit comments