git commit -m "first commit"

This commit is contained in:
2026-05-28 10:29:58 +07:00
commit 167c52aeb6
2048 changed files with 740251 additions and 0 deletions

View File

@@ -0,0 +1,144 @@
#!/usr/bin/env python
#
# @author Jorge Santos
# License: 3-Clause BSD
import actionlib
import copy
import rospy
import nav_msgs.srv as nav_srvs
import mbf_msgs.msg as mbf_msgs
import move_base_msgs.msg as mb_msgs
from dynamic_reconfigure.client import Client
from dynamic_reconfigure.server import Server
from geometry_msgs.msg import PoseStamped
from move_base.cfg import MoveBaseConfig
"""
move_base legacy relay node:
Relays old move_base actions to the new mbf move_base action, similar but with richer result and feedback.
We also relay the simple goal topic published by RViz, the make_plan service and dynamic reconfiguration
calls (note that some parameters have changed names; see http://wiki.ros.org/move_base_flex for details)
"""
# keep configured base local and global planners to send to MBF
bgp = None
blp = None
def simple_goal_cb(msg):
mbf_mb_ac.send_goal(mbf_msgs.MoveBaseGoal(target_pose=msg, planner=bgp, controller=blp))
rospy.logdebug("Relaying move_base_simple/goal pose to mbf")
def mb_execute_cb(msg):
mbf_mb_ac.send_goal(mbf_msgs.MoveBaseGoal(target_pose=msg.target_pose, planner=bgp, controller=blp),
feedback_cb=mbf_feedback_cb)
rospy.logdebug("Relaying legacy move_base goal to mbf")
mbf_mb_ac.wait_for_result()
status = mbf_mb_ac.get_state()
result = mbf_mb_ac.get_result()
rospy.logdebug("MBF execution completed with result [%d]: %s", result.outcome, result.message)
if result.outcome == mbf_msgs.MoveBaseResult.SUCCESS:
mb_as.set_succeeded(mb_msgs.MoveBaseResult(), "Goal reached.")
else:
mb_as.set_aborted(mb_msgs.MoveBaseResult(), result.message)
def make_plan_cb(request):
mbf_gp_ac.send_goal(mbf_msgs.GetPathGoal(start_pose=request.start, target_pose=request.goal,
use_start_pose=bool(request.start.header.frame_id), planner=bgp,
dist_tolerance=request.tolerance, angle_tolerance=request.tolerance,
tolerance_from_action=bool(request.tolerance > 0.0)))
rospy.logdebug("Relaying legacy make_plan service to mbf get_path action server")
mbf_gp_ac.wait_for_result()
status = mbf_gp_ac.get_state()
result = mbf_gp_ac.get_result()
rospy.logdebug("MBF get_path execution completed with result [%d]: %s", result.outcome, result.message)
if result.outcome == mbf_msgs.GetPathResult.SUCCESS:
return nav_srvs.GetPlanResponse(plan=result.path)
def mbf_feedback_cb(feedback):
mb_as.publish_feedback(mb_msgs.MoveBaseFeedback(base_position=feedback.current_pose))
def mb_reconf_cb(config, level):
rospy.logdebug("Relaying legacy move_base reconfigure request to mbf")
if not hasattr(mb_reconf_cb, "default_config"):
mb_reconf_cb.default_config = copy.deepcopy(config)
if config.get('restore_defaults'):
config = mb_reconf_cb.default_config
mbf_config = copy.deepcopy(config)
# Map move_base legacy parameters to new mbf ones, and drop those not supported
# mbf doesn't allow changing plugins dynamically, but we can provide them in the
# action goal, so we keep both base_local_planner and base_global_planner
if 'base_local_planner' in mbf_config:
global blp
blp = mbf_config.pop('base_local_planner')
if 'controller_frequency' in mbf_config:
mbf_config['controller_frequency'] = mbf_config.pop('controller_frequency')
if 'controller_patience' in mbf_config:
mbf_config['controller_patience'] = mbf_config.pop('controller_patience')
if 'max_controller_retries' in mbf_config:
mbf_config['controller_max_retries'] = mbf_config.pop('max_controller_retries')
if 'base_global_planner' in mbf_config:
global bgp
bgp = mbf_config.pop('base_global_planner')
if 'planner_frequency' in mbf_config:
mbf_config['planner_frequency'] = mbf_config.pop('planner_frequency')
if 'planner_patience' in mbf_config:
mbf_config['planner_patience'] = mbf_config.pop('planner_patience')
if 'max_planning_retries' in mbf_config:
mbf_config['planner_max_retries'] = mbf_config.pop('max_planning_retries')
if 'recovery_behavior_enabled' in mbf_config:
mbf_config['recovery_enabled'] = mbf_config.pop('recovery_behavior_enabled')
if 'conservative_reset_dist' in mbf_config:
mbf_config.pop('conservative_reset_dist') # no mbf equivalent for this!
if 'clearing_rotation_allowed' in mbf_config:
mbf_config.pop('clearing_rotation_allowed') # no mbf equivalent for this!
if 'make_plan_add_unreachable_goal' in mbf_config:
mbf_config.pop('make_plan_add_unreachable_goal') # no mbf equivalent for this!
if 'make_plan_clear_costmap' in mbf_config:
mbf_config.pop('make_plan_clear_costmap') # no mbf equivalent for this!
mbf_drc.update_configuration(mbf_config)
return config
if __name__ == '__main__':
rospy.init_node("move_base")
# TODO what happens with malformed target goal??? FAILURE or INVALID_POSE
# txt must be: "Aborting on goal because it was sent with an invalid quaternion"
# move_base_flex get_path and move_base action clients
mbf_mb_ac = actionlib.SimpleActionClient("move_base_flex/move_base", mbf_msgs.MoveBaseAction)
mbf_gp_ac = actionlib.SimpleActionClient("move_base_flex/get_path", mbf_msgs.GetPathAction)
mbf_mb_ac.wait_for_server(rospy.Duration(20))
mbf_gp_ac.wait_for_server(rospy.Duration(10))
# move_base_flex dynamic reconfigure client
mbf_drc = Client("move_base_flex", timeout=10)
# move_base simple topic and action server
mb_sg = rospy.Subscriber('move_base_simple/goal', PoseStamped, simple_goal_cb)
mb_as = actionlib.SimpleActionServer('move_base', mb_msgs.MoveBaseAction, mb_execute_cb, auto_start=False)
mb_as.start()
# move_base make_plan service
mb_mps = rospy.Service('~make_plan', nav_srvs.GetPlan, make_plan_cb)
# move_base dynamic reconfigure server
mb_drs = Server(MoveBaseConfig, mb_reconf_cb)
rospy.spin()