diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..aac4a5070 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,97 @@ +FROM ros:iron + +# Basic Utilities +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get update -y \ + && apt-get install -y apt-utils auto-apt-proxy \ + && apt-get install -y \ + build-essential \ + curl \ + ffmpeg \ + gdb \ + gnupg2 \ + htop \ + iproute2 \ + iputils-ping \ + ipython3 \ + jq \ + less \ + libncurses5-dev \ + locales \ + python3-pip \ + radeontop \ + ranger \ + rsync \ + screen \ + ssh \ + sudo \ + synaptic \ + tig \ + tmux \ + tree \ + uvcdynctrl \ + vim \ + vlc \ + wget \ + x11-apps \ + zsh + +# Setup locale +RUN echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen \ + && locale-gen \ + && update-locale LANG=en_US.UTF-8 \ + && ln -s /usr/bin/python3 /usr/bin/python + +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8 + +# Setup and prioritize packages.bit-bots.de repository +RUN apt update -y \ + && apt upgrade -y --allow-downgrades + +# Additional robotics related packages +RUN apt-get install -y \ + python3-rosdep \ + python3-vcstool \ + ros-iron-camera-calibration \ + ros-iron-desktop \ + ros-iron-joint-state-publisher-gui \ + # ros-iron-plotjuggler-ros containing plotjuggler ros plugins + # build currently fails and is not available as a package so we + # have to manually install plotjuggler and plotjuggler-msgs + # https://github.com/PlotJuggler/plotjuggler-ros-plugins/issues/59 + ros-iron-plotjuggler \ + ros-iron-plotjuggler-msgs \ + ros-iron-rmw-cyclonedds-cpp \ + ros-iron-rqt-robot-monitor \ + ros-iron-soccer-vision-3d-rviz-markers + +# Update pip and install colcon-clean +RUN pip3 install pip -U + +# Install colcon extensions / patches +RUN python3 -m pip install \ + git+https://github.com/ruffsl/colcon-clean \ + git+https://github.com/timonegk/colcon-core.git@colors \ + git+https://github.com/timonegk/colcon-notification.git@colors \ + git+https://github.com/timonegk/colcon-output.git@colors + +# Set zsh as default shell +SHELL ["/bin/zsh", "-c"] + +# Create home directory and colcon workspace +RUN mkdir -p "/root/colcon_ws" + +# Install oh-my-zsh for pretty terminal +RUN sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" && \ + git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions + +# Add zshrc +COPY zshrc "/root/.zshrc" + +# This is required for sharing Xauthority +ENV QT_X11_NO_MITSHM=1 + +# Switch to the workspace directory +WORKDIR "/root/colcon_ws" diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..53990ce81 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,43 @@ +{ + "name": "Bit-Bots Iron Dev", + + "build": { "dockerfile": "Dockerfile" }, + + "containerEnv": { + "DISPLAY": "${localEnv:DISPLAY}", + "LIBGL_ALWAYS_SOFTWARE": "1", + "QT_X11_NO_MITSHM": "1", + "DOCKER": "1" + }, + + "customizations": { + "vscode": { + "settings": { + "terminal.integrated.defaultProfile.linux": "zsh", + "terminal.integrated.profiles.linux": { "zsh": { "path": "/bin/zsh" } } + }, + "extensions": [ + "ms-iot.vscode-ros" + ] + } + }, + + "workspaceMount": "type=bind,source=${localWorkspaceFolder},target=/root/colcon_ws/src/bitbots_main", + "workspaceFolder": "/root/colcon_ws/src/bitbots_main", + + "mounts": [ + "type=bind,source=${localEnv:HOME},target=/srv/host_home,consistency=cached", + ], + + "runArgs": [ + "--tmpfs", "/tmp:exec,mode=01777", + "--privileged", + "--net=host", + "--device=/dev/dri:/dev/dri", + "--volume=/tmp/.X11-unix:/tmp/.X11-unix", + "--cap-add=SYS_PTRACE", + "--security-opt", "seccomp=unconfined" + ], + + "postCreateCommand": "git config --global --add safe.directory '*'" + } diff --git a/.devcontainer/zshrc b/.devcontainer/zshrc new file mode 100644 index 000000000..f89126264 --- /dev/null +++ b/.devcontainer/zshrc @@ -0,0 +1,120 @@ +# If you come from bash you might have to change your $PATH. +export PATH=$HOME/bin:/usr/local/bin:$HOME/.local/bin:$PATH + +# Path to your oh-my-zsh installation. +export ZSH=$HOME/.oh-my-zsh + +# Set name of the theme to load. +ZSH_THEME="agnoster" + +# Set list of +plugins=( + git + zsh-autosuggestions +) + +# Setups for oh-my-zsh +source $ZSH/oh-my-zsh.sh + +# User configuration + +# You may need to manually set your language environment +export LANG=en_US.UTF-8 +export LANGUAGE=en_US:en + +# Set personal aliases, overriding those provided by oh-my-zsh libs, +# plugins, and themes. Aliases can be placed here, though oh-my-zsh +# users are encouraged to define aliases within the ZSH_CUSTOM folder. +# For a full list of active aliases, run `alias`. +# +# Example aliases +# alias zshconfig="mate ~/.zshrc" +# alias ohmyzsh="mate ~/.oh-my-zsh" +function mkcd(){ + mkdir -p $1 + cd $1 +} + +function mksh(){ + vim $1.sh + chmod 744 $1.sh +} + + +# Settings for the terminal +bindkey "^H" backward-kill-word +bindkey "^[[1;5C" forward-word +bindkey "^[[1;5D" backward-word + + +# Settings for the prompt to show that we are in a docker container +export PROMPT="%K{black} 🐋 %K{blue}%F{black}%/ %f%k%F{blue}%f " # Prefix the prompt with DOCKER + +# Do ros2 specific things +source /opt/ros/iron/setup.zsh &> /dev/null + +# Ignore some deprecation warnings +export PYTHONWARNINGS=ignore:::setuptools.command.install,ignore:::setuptools.command.easy_install,ignore:::pkg_resources + +# Limit ROS 2 communication to localhost (can be overridden when needed) +export ROS_DOMAIN_ID=24 +export ROS_AUTOMATIC_DISCOVERY_RANGE=LOCALHOST + +# Set the default colcon workspace +export COLCON_WS="$HOME/colcon_ws" + +# Set the default log level for colcon +export COLCON_LOG_LEVEL=30 + +# Define a log layout +export RCUTILS_COLORIZED_OUTPUT=1 +export RCUTILS_CONSOLE_OUTPUT_FORMAT="[{severity}] [{name}]: {message}" + +# Set the default Middleware +export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp + +# Create a function to update the argcomplete so tab completion works +# This needs to be called every time we source something ROS 2 related +function update_ros2_argcomplete() { + eval "$(register-python-argcomplete3 colcon)" + eval "$(register-python-argcomplete3 ros2)" +} + +# Update the tab completion +update_ros2_argcomplete + +alias rr='ros2 run' +alias rl='ros2 launch' + +alias rte='ros2 topic echo' +alias rtl='ros2 topic list' +alias rth='ros2 topic hz' +alias rtp='ros2 topic pub' + +alias rpl='ros2 param list' +alias rpg='ros2 param get' + +alias cdc='cd $COLCON_WS' + +alias cba='cdc && colcon build --symlink-install --continue-on-error' +alias cb='cdc && colcon build --symlink-install --continue-on-error --packages-up-to' +alias cbs='cdc && colcon build --symlink-install --packages-select' +alias cc='cdc && colcon clean packages --packages-select' +alias cca='cdc && colcon clean packages' + +alias sr='source /opt/ros/iron/setup.zsh && update_ros2_argcomplete' +alias sc='source $COLCON_WS/install/setup.zsh && update_ros2_argcomplete' +alias sa='sr && sc' + +# Set default editor +export VISUAL="vim" + +# Some user instructions +echo "Hello there! Welcome to the Bit-Bots ROS 2 development environment!" +echo "If you just (re)build this container a few manual steps are nessessary:" +echo "Create a ssh key with 'ssh-keygen -q -f $HOME/.ssh/id_rsa -N \"\" && cat $HOME/.ssh/id_rsa.pub'." +echo "Copy the commands output and add it to your GitHub account ('https://github.com/settings/keys') (ctrl+click to open in browser)." +echo "Now you can install the rest of the workspace and compile everything with 'make install && cba'." +echo "To update an existing workspace you can use 'make update && cba'." +echo "To compile all packages in the workspace use 'cba'. If you want to compile only a specific package use 'cbs '." +echo "Run 'xhost local:root' in a terminal on the host machine to enable GUI applications (e.g. rviz2) in the container. This needs to be done after every restart of the host machine." diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 41cf5a85f..d377bf3a9 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,7 +13,7 @@ - [ ] Run `colcon build` - [ ] Write documentation -- [ ] Create issues for future work - [ ] Test on your machine - [ ] Test on the robot -- [ ] This PR is on our `Software` project board +- [ ] Create issues for future work +- [ ] Triage this PR and label it diff --git a/.github/workflows/build.yml b/.github/workflows/ci.yml similarity index 82% rename from .github/workflows/build.yml rename to .github/workflows/ci.yml index 298a97411..6b352bc39 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Test if all packages build +name: Build & Test on: schedule: - cron: '0 0 * * *' @@ -20,8 +20,13 @@ jobs: - name: Configure git to trust repository run: git config --global --add safe.directory /__w/bitbots_main/bitbots_main + - name: Add '$HOME/.local/bin' to PATH + run: | + mkdir -p $HOME/.local/bin + echo "PATH=$PATH:/github/home/.local/bin" >> "$GITHUB_ENV" + - name: Pull source code for libraries and install dependencies - run: make install HTTPS=true ARGS="-ci" + run: make install HTTPS=true ARGS="--ci" - name: Set up colcon workspace run: | @@ -33,7 +38,7 @@ jobs: . /opt/ros/iron/setup.sh colcon build --symlink-install working-directory: /colcon_ws - + - name: Test packages run: | # Source workspace diff --git a/.gitignore b/.gitignore index 314ea06dc..be8ecd54c 100644 --- a/.gitignore +++ b/.gitignore @@ -221,5 +221,7 @@ doku/* /lib/ # Path to the protocol buffer definitions, which are a diffrerent repository and managed by vcstool -/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/RobocupProtocol +/bitbots_team_communication/bitbots_team_communication/RobocupProtocol +# Protobuf generated file +/bitbots_team_communication/bitbots_team_communication/robocup_extension_pb2.py diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b6d200d59..ff2fbd628 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,10 +6,7 @@ repos: args: - "--fix" - "--exit-non-zero-on-fix" - - repo: https://github.com/psf/black - rev: 23.10.0 # keep this version for Ubuntu support - hooks: - - id: black + - id: ruff-format - repo: https://github.com/pocc/pre-commit-hooks rev: v1.3.5 hooks: @@ -28,3 +25,11 @@ repos: hooks: - id: cmake-format - id: cmake-lint + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.5.0 + hooks: + - id: check-merge-conflict + - id: check-toml + - id: check-xml + - id: check-yaml + - id: detect-private-key diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index a65b559c5..c08288577 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -11,6 +11,9 @@ "${env:COLCON_WS}/install/*/include/**", "${env:COLCON_WS}/build/**/include/**", "${env:COLCON_WS}/build/**/rosidl_generator_cpp/**", + "/root/colcon_ws/install/*/include/**", + "/root/colcon_ws/build/**/include/**", + "/root/colcon_ws/build/**/rosidl_generator_cpp/**", "${workspaceFolder}/**/include/**", "/opt/ros/${env:ROS_DISTRO}/include/**", "/usr/include/**" diff --git a/.vscode/settings.json b/.vscode/settings.json index e54bbe668..ebd13ae25 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,6 @@ { - "autoDocstring.docstringFormat": "sphinx", + "autoDocstring.docstringFormat": "sphinx-notypes", + "autoDocstring.startOnNewLine": true, "cSpell.language": "en,de-de,lorem", "cSpell.words": [ "ansible", @@ -72,6 +73,7 @@ "rclpy", "rhoban", "robocup", + "rory", "rosbag", "rosbags", "rosdep", @@ -199,7 +201,5 @@ "python.analysis.extraPaths": [ "/opt/ros/iron/lib/python3.10/site-packages" ], - - - + "cmake.configureOnOpen": false, } diff --git a/Makefile b/Makefile index 2f825c909..f0af605dd 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ install-no-root: pull-init update-no-root pip: # Install and upgrade pip dependencies - pip install --upgrade -r requirements/dev.txt + pip install --upgrade -r requirements/dev.txt --user pre-commit: # Install pre-commit hooks for all submodules that have a .pre-commit-config.yaml file @@ -24,7 +24,7 @@ install-git-filters: # The vscode settings file gets updated by the ros extension and contains the full path to the current user's home directory. # We don't want to commit this path, so we use a git filter to remove it when git adds the file to the staging area. # This does not affect the file on disk, so vscode will still work as expected. - git config filter.removeFullHomePath.clean "sed '/\/home.*\(install\|build\)/d'" + git config filter.removeFullHomePath.clean "sed '/\/\(home\|root\).*\(install\|build\)/d'" format: # Format all files in the repository diff --git a/README.md b/README.md index 5c155159a..c04f8132d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ - - # Bit-Bots Software Stack -[![Test if all packages build](https://github.com/bit-bots/bitbots_main/actions/workflows/build.yml/badge.svg)](https://github.com/bit-bots/bitbots_main/actions/workflows/build.yml) +[![Build & Test](https://github.com/bit-bots/bitbots_main/actions/workflows/ci.yml/badge.svg)](https://github.com/bit-bots/bitbots_main/actions/workflows/ci.yml) +[![Code style checks](https://github.com/bit-bots/bitbots_main/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/bit-bots/bitbots_main/actions/workflows/pre-commit.yml) [![ROS Version Iron](https://img.shields.io/badge/ROS%20Version-Iron-ab8c71)](https://docs.ros.org/en/iron/index.html) This git repository contains all RoboCup-related code and documentation from the Hamburg Bit-Bots team. @@ -21,15 +20,15 @@ Full step-by-step instructions for installing the Bit-Bots software stack and RO If you want to update this repo, all third party source files as well as the supplementing files, run -``` bash +``` shell make pull-all ``` If you encounter any problems consider cleaning the third party source files (the `lib` folder) first: -**THIS DELETES ALL CHANGES YOU MADE TO THE THIRD PARTY SOURCE FILES** +**THIS DELETES ALL CHANGES YOU MADE TO THE THIRD PARTY SOURCE FILES!** -``` bash +``` shell make fresh-libs ``` @@ -37,7 +36,7 @@ make fresh-libs To format all code in the repository, run -``` bash +``` shell make format ``` diff --git a/bitbots_behavior/bitbots_blackboard/package.xml b/bitbots_behavior/bitbots_blackboard/package.xml index a11552d94..b055003b3 100644 --- a/bitbots_behavior/bitbots_blackboard/package.xml +++ b/bitbots_behavior/bitbots_blackboard/package.xml @@ -15,10 +15,12 @@ Niklas Fiedler Hamburg Bit-Bots - Hamburg Bit-Bots MIT + Hamburg Bit-Bots + + bitbots_docs bitbots_tf_listener bitbots_utils diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/dribble_forward.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/dribble_forward.py index 5ace4c208..818b4a4b0 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/dribble_forward.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/dribble_forward.py @@ -7,7 +7,7 @@ class DribbleForward(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.max_speed_x = self.blackboard.config["dribble_max_speed_x"] self.min_speed_x = -0.1 diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/get_walkready.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/get_walkready.py index 97b703d3a..9988367f0 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/get_walkready.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/get_walkready.py @@ -8,7 +8,7 @@ class GetWalkready(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.direction = "walkready" self.first_perform = True diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to.py index 6db3aa621..f9a3f32e6 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to.py @@ -52,7 +52,7 @@ def perform(self, reevaluate=False): class GoToAbsolutePosition(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): """Go to an absolute position on the field""" super().__init__(blackboard, dsd) self.point = parameters @@ -71,7 +71,7 @@ def perform(self, reevaluate=False): class GoToOwnGoal(GoToAbsolutePosition): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): """Go to the own goal""" super().__init__(blackboard, dsd, parameters) self.point = ( @@ -82,7 +82,7 @@ def __init__(self, blackboard, dsd, parameters=None): class GoToEnemyGoal(GoToAbsolutePosition): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): """Go to the enemy goal""" super().__init__(blackboard, dsd, parameters) self.point = ( @@ -93,7 +93,7 @@ def __init__(self, blackboard, dsd, parameters=None): class GoToCenterpoint(GoToAbsolutePosition): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): """Go to the center of the field and look towards the enemy goal""" super().__init__(blackboard, dsd, parameters) self.point = 0, 0, 0 diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_ball.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_ball.py index c448bf8bd..758b06dbb 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_ball.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_ball.py @@ -10,7 +10,7 @@ class GoToBall(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) if "target" not in parameters.keys(): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_block_position.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_block_position.py index ce9342aa9..b0a6aef75 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_block_position.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_block_position.py @@ -10,7 +10,7 @@ class GoToBlockPosition(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.block_position_goal_offset = self.blackboard.config["block_position_goal_offset"] self.block_radius = self.blackboard.config["block_radius_robot"] diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_corner_kick_position.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_corner_kick_position.py index f9e3c7a33..582ac4115 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_corner_kick_position.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_corner_kick_position.py @@ -10,7 +10,7 @@ class GoToCornerKickPosition(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) # optional parameter which goes into the block position at a certain distance to the ball diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_defense_position.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_defense_position.py index 7deaca286..67077702d 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_defense_position.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_defense_position.py @@ -11,7 +11,7 @@ class GoToDefensePosition(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) # Also apply offset from the ready positions to the defense positions diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_pass_position.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_pass_position.py index 0c28b0fc8..303d3e610 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_pass_position.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_pass_position.py @@ -7,7 +7,7 @@ class AbstractGoToPassPosition(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, accept, parameters=None): + def __init__(self, blackboard, dsd, accept, parameters): super().__init__(blackboard, dsd, parameters) self.max_x = self.blackboard.config["supporter_max_x"] self.pass_pos_x = self.blackboard.config["pass_position_x"] @@ -52,7 +52,7 @@ class GoToPassPreparePosition(AbstractGoToPassPosition): Go to a position 1m left or right from the ball (whichever is closer) as preparation for a pass """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, False, parameters) @@ -61,5 +61,5 @@ class GoToPassAcceptPosition(AbstractGoToPassPosition): Go to a position forward of the ball to accept a pass from another robot. """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, True, parameters) diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_role_position.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_role_position.py index 40da7c1b3..b42d6a848 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_role_position.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/go_to_role_position.py @@ -6,7 +6,7 @@ class GoToRolePosition(AbstractActionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) role_positions = self.blackboard.config["role_positions"] kickoff_type = "active" if self.blackboard.gamestate.has_kickoff() else "passive" diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/head_modes.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/head_modes.py index 1fa669c49..f801e55c8 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/head_modes.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/head_modes.py @@ -15,7 +15,7 @@ class AbstractHeadModeElement(AbstractActionElement): class LookAtBall(AbstractHeadModeElement): """Search for Ball and track it if found""" - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/kick_ball.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/kick_ball.py index 1b6bfb344..b372d28ec 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/kick_ball.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/kick_ball.py @@ -14,7 +14,7 @@ def pop(self): class KickBallStatic(AbstractKickAction): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) if "foot" not in parameters.keys(): # usually, we kick with the right foot @@ -38,7 +38,7 @@ class KickBallDynamic(AbstractKickAction): Kick the ball using bitbots_dynamic_kick """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) if parameters.get("type", None) == "penalty": self.penalty_kick = True diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/play_animation.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/play_animation.py index 9fda96342..280a68435 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/play_animation.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/play_animation.py @@ -9,8 +9,8 @@ class AbstractPlayAnimation(AbstractActionElement, ABC): Abstract class to create actions for playing animations """ - def __init__(self, blackboard, dsd, parameters=None): - super().__init__(blackboard, dsd, parameters=None) + def __init__(self, blackboard, dsd, parameters): + super().__init__(blackboard, dsd, parameters) self.blackboard: BodyBlackboard self.first_perform = True diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/stand.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/stand.py index 07d1784fd..e3e50d0d6 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/stand.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/stand.py @@ -18,7 +18,7 @@ def perform(self, reevaluate=False): class WalkInPlace(AbstractActionElement): """This keeps walking in place and optionally pops itself after a given time""" - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: BodyBlackboard self.duration = parameters.get("duration", None) @@ -41,7 +41,7 @@ def perform(self, reevaluate=False): class Stand(WalkInPlace): """This stops the robot's walking and optionally pops itself after a given time""" - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) # Cancel the path planning if it is running self.blackboard.pathfinding.cancel_goal() @@ -59,7 +59,7 @@ def perform(self, reevaluate=False): class StandAndWaitRandom(Stand): """This stops the robot's walking for a random amount of time""" - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.min = parameters.get("min", None) self.max = parameters.get("max", None) diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/timer.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/timer.py index 0b72bc167..c25d3fe11 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/timer.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/timer.py @@ -3,7 +3,7 @@ class StartTimer(AbstractActionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: BodyBlackboard @@ -20,7 +20,7 @@ def perform(self, reevaluate=False): class EndTimer(AbstractActionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: BodyBlackboard diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/turn.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/turn.py index e20774a79..b3e09a150 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/turn.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/turn.py @@ -8,7 +8,7 @@ class TurnAround(AbstractActionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: BodyBlackboard @@ -52,7 +52,7 @@ class Turn(AbstractActionElement): The sign of max speed indicates the direction (positive = left, negative = right). """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: BodyBlackboard self.current_rotation_vel = 0.0 diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/walk.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/walk.py index bfa34c56e..210891d36 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/walk.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/actions/walk.py @@ -4,7 +4,7 @@ class WalkForward(AbstractActionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd) self.time = parameters.get("time", 0.5) self.start_time = self.blackboard.node.get_clock().now() diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/aligned_to_goal.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/aligned_to_goal.py index 2db84c508..0ab56dab3 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/aligned_to_goal.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/aligned_to_goal.py @@ -7,7 +7,7 @@ class AlignedToGoal(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.goalpost_safety_distance = self.blackboard.config["goalpost_safety_distance"] self.field_length = self.blackboard.world_model.field_length diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/avoid_ball.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/avoid_ball.py index 20d56b2ed..440007dbf 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/avoid_ball.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/avoid_ball.py @@ -5,7 +5,7 @@ class AvoidBall(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_close.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_close.py index 141523db2..44e7b8aac 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_close.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_close.py @@ -7,7 +7,7 @@ class BallClose(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.ball_close_distance = parameters.get("distance", self.blackboard.config["ball_close_distance"]) self.ball_close_angle = parameters.get("angle", math.pi) diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_dangerous.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_dangerous.py index d4d79fe49..13164f498 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_dangerous.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_dangerous.py @@ -5,7 +5,7 @@ class BallDangerous(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.goal_radius = parameters.get("radius", self.blackboard.config["ball_dangerous_goal_radius"]) self.center_width = self.blackboard.config["ball_dangerous_center"] diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_in_defensive_area.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_in_defensive_area.py index ffd41e45c..c805ede22 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_in_defensive_area.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_in_defensive_area.py @@ -5,7 +5,7 @@ class BallInDefensiveArea(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.defensive_area = self.blackboard.config["defensive_area"] @@ -31,7 +31,7 @@ def get_reevaluate(self): class BallInOwnPercent(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.percent = parameters["p"] diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_kick_area.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_kick_area.py index 19002cc0a..bb88554b6 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_kick_area.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_kick_area.py @@ -5,7 +5,7 @@ class BallKickArea(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.kick_x_enter = self.blackboard.config["kick_x_enter"] self.kick_y_enter = self.blackboard.config["kick_y_enter"] diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_seen.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_seen.py index 76548bac0..a77f5f76c 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_seen.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/ball_seen.py @@ -6,7 +6,7 @@ class BallSeen(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.ball_lost_time = Duration(seconds=self.blackboard.config["ball_lost_time"]) diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/closest_to_ball.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/closest_to_ball.py index 3cc27eb55..31943693b 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/closest_to_ball.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/closest_to_ball.py @@ -5,7 +5,7 @@ class ClosestToBallNoGoalie(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): @@ -24,7 +24,7 @@ def get_reevaluate(self): class ClosestToBall(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): @@ -43,7 +43,7 @@ def get_reevaluate(self): class RankToBallNoGoalie(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/config_role.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/config_role.py index fa7a46885..6f198d2b9 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/config_role.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/config_role.py @@ -9,7 +9,7 @@ class ConfigRole(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.role = self.blackboard.team_data.role diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/current_score.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/current_score.py index fd7416bf4..3b540640d 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/current_score.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/current_score.py @@ -5,7 +5,7 @@ class CurrentScore(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/do_once.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/do_once.py index 6b1c3cbd5..b118fe8e2 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/do_once.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/do_once.py @@ -2,7 +2,7 @@ class DoOnce(AbstractDecisionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.done = False diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/dribble_or_kick.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/dribble_or_kick.py index a2d5f6953..5e52b7132 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/dribble_or_kick.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/dribble_or_kick.py @@ -5,7 +5,7 @@ class DribbleOrKick(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.orient_threshold = self.blackboard.config["dribble_orient_threshold"] self.goal_distance_threshold = self.blackboard.config["dribble_goal_distance_threshold"] diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/game_state_decider.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/game_state_decider.py index 648d6db5c..a4bb18c91 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/game_state_decider.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/game_state_decider.py @@ -6,7 +6,7 @@ class GameStateDecider(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/goal_scored.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/goal_scored.py index 9db958676..ab2f9dcd5 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/goal_scored.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/goal_scored.py @@ -5,7 +5,7 @@ class GoalScoreRecently(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.time = parameters.get("time", 2) @@ -27,7 +27,7 @@ def get_reevaluate(self): class AnyGoalScoreRecently(GoalScoreRecently): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/goalie_handling_ball.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/goalie_handling_ball.py index e984509b4..4fdcb0804 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/goalie_handling_ball.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/goalie_handling_ball.py @@ -5,7 +5,7 @@ class GoalieHandlingBall(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/is_penalized.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/is_penalized.py index dbdf45fd7..84af08e1f 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/is_penalized.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/is_penalized.py @@ -5,7 +5,7 @@ class IsPenalized(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/kick_off_time_up.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/kick_off_time_up.py index 9cc89ec96..1291dd797 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/kick_off_time_up.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/kick_off_time_up.py @@ -5,7 +5,7 @@ class KickOffTimeUp(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.kickoff_min_ball_movement = self.blackboard.config["kickoff_min_ball_movement"] diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/last_player.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/last_player.py index a8b1f1b3d..e4ffbcbb6 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/last_player.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/last_player.py @@ -5,7 +5,7 @@ class LastPlayer(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/pass_started.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/pass_started.py index 7d5ae939e..14a7f5f02 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/pass_started.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/pass_started.py @@ -5,7 +5,7 @@ class PassStarted(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/reached_goal.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/reached_goal.py index 06aa5b07c..ad17e98c0 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/reached_goal.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/reached_goal.py @@ -10,7 +10,7 @@ class ReachedPathPlanningGoalPosition(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.frame_id = parameters.get("frame_id", self.blackboard.map_frame) self.threshold = parameters.get("threshold") @@ -40,7 +40,7 @@ def get_reevaluate(self): class AlignedToPathPlanningGoal(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.orientation_threshold = self.blackboard.config["goal_alignment_orientation_threshold"] # [deg] self.frame_id = parameters.get("frame_id", self.blackboard.map_frame) diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/secondary_state_decider.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/secondary_state_decider.py index f4d3bee0d..e54762cf0 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/secondary_state_decider.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/secondary_state_decider.py @@ -11,7 +11,7 @@ class SecondaryStateDecider(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self, reevaluate=False): @@ -52,7 +52,7 @@ class SecondaryStateTeamDecider(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd) self.team_id = self.blackboard.gamestate.get_team_id() @@ -82,7 +82,7 @@ class SecondaryStateModeDecider(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd) def perform(self, reevaluate=False): diff --git a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/timer.py b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/timer.py index ee9df2c93..8b50402cd 100644 --- a/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/timer.py +++ b/bitbots_behavior/bitbots_body_behavior/bitbots_body_behavior/decisions/timer.py @@ -5,7 +5,7 @@ class TimerRunning(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) if "name" not in parameters: raise KeyError("TimerRunning: Name parameter is missing!") @@ -37,7 +37,7 @@ def get_reevaluate(self): class TimerEnded(AbstractDecisionElement): blackboard: BodyBlackboard - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) if "name" not in parameters: diff --git a/bitbots_behavior/bitbots_body_behavior/package.xml b/bitbots_behavior/bitbots_body_behavior/package.xml index 3fee89f51..b660e9c5a 100644 --- a/bitbots_behavior/bitbots_body_behavior/package.xml +++ b/bitbots_behavior/bitbots_body_behavior/package.xml @@ -7,14 +7,16 @@ behavior of the robot including strategy decisions and kick or walk actions. The node controls the walking indirectly via /navigation_goal or directly via /cmd_vel and the head behavior - via /head_duty. + via /head_duty. + Niklas Fiedler Hamburg Bit-Bots - Hamburg Bit-Bots MIT + Hamburg Bit-Bots + bitbots_blackboard bitbots_msgs bitbots_utils diff --git a/bitbots_lowlevel/bitbots_buttons/CMakeLists.txt b/bitbots_lowlevel/bitbots_buttons/CMakeLists.txt index 6cd593859..5699cd0f5 100644 --- a/bitbots_lowlevel/bitbots_buttons/CMakeLists.txt +++ b/bitbots_lowlevel/bitbots_buttons/CMakeLists.txt @@ -6,13 +6,13 @@ if(NOT CMAKE_CXX_STANDARD) set(CMAKE_CXX_STANDARD 17) endif() -find_package(std_msgs REQUIRED) find_package(ament_cmake REQUIRED) find_package(backward_ros REQUIRED) find_package(bitbots_docs REQUIRED) find_package(bitbots_msgs REQUIRED) -find_package(bitbots_localization REQUIRED) +find_package(game_controller_hl_interfaces REQUIRED) find_package(rclcpp REQUIRED) +find_package(std_msgs REQUIRED) find_package(std_srvs REQUIRED) find_package(test_msgs REQUIRED) @@ -22,7 +22,7 @@ ament_target_dependencies( ament_cmake backward_ros bitbots_msgs - bitbots_localization + game_controller_hl_interfaces rclcpp std_msgs std_srvs diff --git a/bitbots_lowlevel/bitbots_buttons/config/buttons.yaml b/bitbots_lowlevel/bitbots_buttons/config/buttons.yaml index ec7389b84..a511544cc 100644 --- a/bitbots_lowlevel/bitbots_buttons/config/buttons.yaml +++ b/bitbots_lowlevel/bitbots_buttons/config/buttons.yaml @@ -1,7 +1,6 @@ bitbots_buttons: ros__parameters: manual_penalty: True - in_game: True speak_active: True short_time: 2.0 #[s] debounce_time: 0.1 #[s] diff --git a/bitbots_lowlevel/bitbots_buttons/package.xml b/bitbots_lowlevel/bitbots_buttons/package.xml index f8ccdefa6..0deeed624 100644 --- a/bitbots_lowlevel/bitbots_buttons/package.xml +++ b/bitbots_lowlevel/bitbots_buttons/package.xml @@ -7,9 +7,11 @@ Jasper Güldenstein Hamburg Bit-Bots + + MIT + Marc Bestmann Hamburg Bit-Bots - MIT ament_cmake rosidl_default_generators @@ -17,8 +19,8 @@ backward_ros bitbots_docs - bitbots_localization bitbots_msgs + game_controller_hl_interfaces rclcpp std_msgs std_srvs diff --git a/bitbots_lowlevel/bitbots_buttons/src/button_node.cpp b/bitbots_lowlevel/bitbots_buttons/src/button_node.cpp index 0e36a0e57..92e8c1225 100644 --- a/bitbots_lowlevel/bitbots_buttons/src/button_node.cpp +++ b/bitbots_lowlevel/bitbots_buttons/src/button_node.cpp @@ -1,9 +1,10 @@ #include -#include #include #include #include +#include +#include #include #include #include @@ -21,38 +22,25 @@ class ButtonNode : public rclcpp::Node { this->declare_parameter("speak_active", true); this->declare_parameter("short_time", 2.0); this->declare_parameter("manual_penalty", true); - this->declare_parameter("in_game", true); this->declare_parameter("debounce_time", 0.1); this->declare_parameter("speak", true); this->get_parameter("speak_active", speaking_active_); this->get_parameter("short_time", short_time_); this->get_parameter("manual_penalty", manual_penalty_mode_); - this->get_parameter("in_game", in_game_); this->get_parameter("debounce_time", debounce_time_); this->get_parameter("speak", speak_); - // --- Class variables --- - button1_ = false; - button2_ = false; - button3_ = false; - button1_time_ = 0.0; - button2_time_ = 0.0; - button3_time_ = 0.0; - // --- Initialize Topics --- speak_pub_ = this->create_publisher("/speak", 1); - shoot_publisher_ = this->create_publisher("/shoot_button", 1); if (manual_penalty_mode_) { manual_penalize_client_ = this->create_client("manual_penalize"); manual_penalty_mode_ = manual_penalize_client_->wait_for_service(3s); } - if (!in_game_) { - foot_zero_client_ = this->create_client("set_foot_zero"); - foot_zero_available_ = foot_zero_client_->wait_for_service(3s); - } + foot_zero_client_ = this->create_client("set_foot_zero"); + foot_zero_available_ = foot_zero_client_->wait_for_service(3s); power_client_ = this->create_client("/core/switch_power"); while (!power_client_->wait_for_service(3s)) { @@ -63,12 +51,16 @@ class ButtonNode : public rclcpp::Node { RCLCPP_INFO(this->get_logger(), "service switch_power not available, waiting again..."); } - localization_client_ = this->create_client("reset_localization"); - localization_available_ = localization_client_->wait_for_service(3s); + teaching_mode_client_ = this->create_client("set_teaching_mode"); buttons_sub_ = this->create_subscription( "/buttons", 1, std::bind(&bitbots_buttons::ButtonNode::buttonCb, this, _1)); + gamestate_sub_ = this->create_subscription( + "gamestate", 1, std::bind(&bitbots_buttons::ButtonNode::gamestateCb, this, _1)); } + // Sets the in_game_ variable to true, if a Gamestate message from the Gamecontroller arrives. + void gamestateCb(const game_controller_hl_interfaces::msg::GameState::SharedPtr msg) { in_game_ = true; } + void buttonCb(const bitbots_msgs::msg::Buttons::SharedPtr msg) { // button1 - red // button2 - green @@ -90,12 +82,11 @@ class ButtonNode : public rclcpp::Node { if (current_time - button1_time_ > debounce_time_) { if (current_time - button1_time_ < short_time_ || in_game_) { // button 1 short - speak("1 short"); - setPower(false); + speak("Red button pressed short. Turning motor power off."); + setPower(false); // this can not be reversed because the button cuts the power of himself } else { // button 1 long - speak("1 long"); - setPower(true); + speak("Red button pressed long. No action implemented."); } } button1_time_ = 0; @@ -105,12 +96,12 @@ class ButtonNode : public rclcpp::Node { double current_time = this->get_clock()->now().seconds(); if (current_time - button2_time_ > debounce_time_) { if (current_time - button2_time_ < short_time_ || in_game_) { - speak("2 short"); + speak("Green button pressed short. Try deactivating Penalty mode"); setPenalty(false); - resetLocalization(); } else { - speak("2 long"); - setPenalty(false); + speak("Green button pressed long. Try deactivating teaching mode"); + // Turn teaching mode off + setTeachingMode(false); } } button2_time_ = 0; @@ -120,17 +111,30 @@ class ButtonNode : public rclcpp::Node { double current_time = this->get_clock()->now().seconds(); if (current_time - button3_time_ > debounce_time_) { if (current_time - button3_time_ < short_time_ || in_game_) { - speak("3 short"); + speak("Blue button pressed short. Try activating Penalty mode"); setPenalty(true); } else { - speak("3 long"); - setPenalty(true); + speak("Blue button pressed long. Try switching teaching mode state"); + // Turn teaching mode on or switch between HOLD and TEACH + setTeachingMode(true); } } button3_time_ = 0; } } + void setTeachingMode(bool state) { + auto request = std::make_shared(); + if (state) { + // switch teaching mode state to SWITCH + request->state = bitbots_msgs::srv::SetTeachingMode::Request::SWITCH; + } else { + // switch teaching mode state to OFF + request->state = bitbots_msgs::srv::SetTeachingMode::Request::OFF; + } + teaching_mode_client_->async_send_request(request); + } + void setPenalty(bool penalize) { // Penalizes the robot, if it is not penalized and manual penalty mode is true. if (manual_penalty_mode_) { @@ -160,16 +164,6 @@ class ButtonNode : public rclcpp::Node { power_client_->async_send_request(request); } - void resetLocalization() { - if (localization_available_) { - auto request = std::make_shared(); - request->init_mode = 0; - localization_client_->async_send_request(request); - } else { - RCLCPP_WARN(this->get_logger(), "service not available"); - } - } - private: void speak(const std::string& text) { /** @@ -186,26 +180,25 @@ class ButtonNode : public rclcpp::Node { bool speaking_active_; double short_time_; bool manual_penalty_mode_; - bool in_game_; + bool in_game_ = false; double debounce_time_; bool speak_; - bool button1_; - bool button2_; - bool button3_; - bool localization_available_; + bool button1_ = false; + bool button2_ = false; + bool button3_ = false; bool foot_zero_available_; - double button1_time_; - double button2_time_; - double button3_time_; + double button1_time_ = 0.0; + double button2_time_ = 0.0; + double button3_time_ = 0.0; rclcpp::Publisher::SharedPtr speak_pub_; - rclcpp::Publisher::SharedPtr shoot_publisher_; rclcpp::Client::SharedPtr manual_penalize_client_; + rclcpp::Client::SharedPtr teaching_mode_client_; rclcpp::Client::SharedPtr foot_zero_client_; rclcpp::Client::SharedPtr power_client_; - rclcpp::Client::SharedPtr localization_client_; rclcpp::Subscription::SharedPtr buttons_sub_; + rclcpp::Subscription::SharedPtr gamestate_sub_; }; } // namespace bitbots_buttons diff --git a/bitbots_lowlevel/bitbots_ros_control/launch/ros_control.launch b/bitbots_lowlevel/bitbots_ros_control/launch/ros_control.launch index 0391567a2..072944150 100644 --- a/bitbots_lowlevel/bitbots_ros_control/launch/ros_control.launch +++ b/bitbots_lowlevel/bitbots_ros_control/launch/ros_control.launch @@ -27,7 +27,7 @@ - + diff --git a/bitbots_lowlevel/bitbots_ros_control/package.xml b/bitbots_lowlevel/bitbots_ros_control/package.xml index d1eaee3fe..e7362bfed 100644 --- a/bitbots_lowlevel/bitbots_ros_control/package.xml +++ b/bitbots_lowlevel/bitbots_ros_control/package.xml @@ -27,7 +27,7 @@ controller_manager dynamixel_workbench_toolbox hardware_interface - humanoid_league_speaker + bitbots_tts pluginlib rclcpp realtime_tools diff --git a/bitbots_misc/bitbots_basler_camera/package.xml b/bitbots_misc/bitbots_basler_camera/package.xml index a055f247b..b08289f66 100644 --- a/bitbots_misc/bitbots_basler_camera/package.xml +++ b/bitbots_misc/bitbots_basler_camera/package.xml @@ -7,9 +7,11 @@ Marc Bestmann Hamburg Bit-Bots - Hamburg Bit-Bots + MIT + Hamburg Bit-Bots + bitbots_docs pylon_ros2_camera_wrapper image_proc diff --git a/bitbots_misc/bitbots_bringup/launch/highlevel.launch b/bitbots_misc/bitbots_bringup/launch/highlevel.launch index bf87c6d92..78b0b0624 100644 --- a/bitbots_misc/bitbots_bringup/launch/highlevel.launch +++ b/bitbots_misc/bitbots_bringup/launch/highlevel.launch @@ -40,7 +40,7 @@ - + diff --git a/bitbots_misc/bitbots_bringup/launch/rosbag_record.launch.py b/bitbots_misc/bitbots_bringup/launch/rosbag_record.launch.py index d1bf8c168..f8ee7d929 100644 --- a/bitbots_misc/bitbots_bringup/launch/rosbag_record.launch.py +++ b/bitbots_misc/bitbots_bringup/launch/rosbag_record.launch.py @@ -23,13 +23,19 @@ "/core/power_switch_status", "/debug/approach_point", "/debug/ball_twist", - "/debug/dsd/body_behavior", - "/debug/dsd/hcm", - "/debug/dsd/localization", + "/debug/dsd/body_behavior/dsd_current_action", + "/debug/dsd/body_behavior/dsd_stack", + "/debug/dsd/body_behavior/dsd_tree", + "/debug/dsd/hcm/dsd_current_action", + "/debug/dsd/hcm/dsd_stack", + "/debug/dsd/hcm/dsd_tree", + "/debug/dsd/localization/dsd_current_action", + "/debug/dsd/localization/dsd_stack", + "/debug/dsd/localization/dsd_tree", "/debug/used_ball", "/debug/which_ball_is_used", - "/diagnostics", "/diagnostics_agg", + "/diagnostics", "/DynamixelController/command", "/field_boundary_relative", "/game_controller_connected", @@ -43,16 +49,16 @@ "/move_base/current_goal", "/pose_with_covariance", "/robot_state", - "/robots_relative", "/robots_relative_filtered", + "/robots_relative", "/rosout", "/server_time_clock", "/speak", "/strategy", "/system_workload", "/team_data", - "/tf", "/tf_static", + "/tf", "/time_to_ball", ] diff --git a/bitbots_misc/bitbots_bringup/launch/visualization.launch b/bitbots_misc/bitbots_bringup/launch/visualization.launch index fc9f3bead..ef1afa501 100644 --- a/bitbots_misc/bitbots_bringup/launch/visualization.launch +++ b/bitbots_misc/bitbots_bringup/launch/visualization.launch @@ -34,10 +34,7 @@ - - - - + diff --git a/bitbots_misc/bitbots_bringup/package.xml b/bitbots_misc/bitbots_bringup/package.xml index aee782dc4..77a64f15a 100644 --- a/bitbots_misc/bitbots_bringup/package.xml +++ b/bitbots_misc/bitbots_bringup/package.xml @@ -7,9 +7,11 @@ Finn-Thorben Sell Hamburg Bit-Bots - Hamburg Bit-Bots + MIT + Hamburg Bit-Bots + ament_cmake bitbots_docs diff --git a/bitbots_misc/bitbots_ceiling_cam/package.xml b/bitbots_misc/bitbots_ceiling_cam/package.xml index 97f1aa827..cf140617e 100644 --- a/bitbots_misc/bitbots_ceiling_cam/package.xml +++ b/bitbots_misc/bitbots_ceiling_cam/package.xml @@ -7,9 +7,11 @@ Marc Bestmann Hamburg Bit-Bots - Hamburg Bit-Bots + MIT + Hamburg Bit-Bots + bitbots_docs pylon_ros2_camera_wrapper image_proc diff --git a/bitbots_misc/bitbots_containers/hlvs/Dockerfile b/bitbots_misc/bitbots_containers/hlvs/Dockerfile index 73015f7f7..2affe1c26 100644 --- a/bitbots_misc/bitbots_containers/hlvs/Dockerfile +++ b/bitbots_misc/bitbots_containers/hlvs/Dockerfile @@ -61,7 +61,7 @@ ADD https://www.timeapi.io/api/Time/current/zone?timeZone=UTC /tmp/build-time RUN cd src/bitbots_main && \ make pull-all && \ rm -rf lib/udp_bridge bitbots_misc/bitbots_containers \ - humanoid_league_visualization dynamic_stack_decider/dynamic_stack_decider_visualization bitbots_lowlevel \ + lib/dynamic_stack_decider/dynamic_stack_decider_visualization bitbots_lowlevel \ bitbots_wolfgang/wolfgang_pybullet_sim lib/DynamixelSDK lib/dynamixel-workbench \ bitbots_misc/bitbots_basler_camera lib/pylon-ros-camera && \ sed -i '/plotjuggler/d' bitbots_motion/bitbots_quintic_walk/package.xml && \ diff --git a/bitbots_misc/bitbots_docs/docs/manual/testing/testing.rst b/bitbots_misc/bitbots_docs/docs/manual/testing/testing.rst index 0353a6b01..e3990f5f3 100644 --- a/bitbots_misc/bitbots_docs/docs/manual/testing/testing.rst +++ b/bitbots_misc/bitbots_docs/docs/manual/testing/testing.rst @@ -59,47 +59,6 @@ Starting (starts) The next step is to check if the package actually starts without crashing instantly with an obvious error. A part of this is that a launch file exists. -Testing in Visualization (tested_viz) ----------------------------------------- - -The easiest real test if the software works is in visualization with fake data/commands and then to look at the output. -For this you can also use real data that was recorded in a rosbag. - -For this, it is important to be aware of your own testing bias. -Humans tend to test their own software for exactly the use cases they had in mind during programming. -However it is important to explicitly check all possibilities. -This means especially to test for edge cases and on robustness, e.g., testing with wrong data and against other parts of the software stack that crash. -A good method for this is to let someone else test your software, someone who was not involved in the programming of it. - -This method is essentially used to prevent errors from happening and less to see how well something works. -The tests in this stage can be done via multiple methods: - -Input -^^^^^^^^^^^ - -1. ros2 topic pub -2. RViz interactive marker - 1. Path planning: inbuilt Navigation goal in RViz - 2. behavior: humanoid_league_interactive_marker -3. special test scripts: - 1. walking: bitbots_teleop - 2. behavior: sim_gamestate (in gamecontroller package) -4. rosbags - -Output -^^^^^^^^^^^^ - -1. ros2 topic echo -2. RViz marker - 1. Object detection: humanoid_league_rviz_marker - 2. Walking: published its own markers -3. RViz robot model - 1. you might need to make the joint commands into joint_state (bitbots_bringup motor_goals_viz_helper.py) -4. special visualization tools for rqt - 1. DSD: dynamic_stack_decider_visualization - 2. Object Detection: humanoid_league_relative_rqt - 3. Vision: bitbots_vision_tools - Testing in Simulation ------------------------------------------------ @@ -139,8 +98,7 @@ Conclusion 1. Each package has to be tested on its own 1. compiles 2. starts - 3. using visualization - 4. using simulation - 5. on the real robot + 3. using simulation + 4. on the real robot 2. test packages pairwise 3. test the complete stack (integration) diff --git a/bitbots_misc/bitbots_docs/docs/manual/tutorials/vscode-dev-container.rst b/bitbots_misc/bitbots_docs/docs/manual/tutorials/vscode-dev-container.rst new file mode 100644 index 000000000..ced14e11f --- /dev/null +++ b/bitbots_misc/bitbots_docs/docs/manual/tutorials/vscode-dev-container.rst @@ -0,0 +1,41 @@ +========================== +VSCode Dev Container Setup +========================== + +If you don't use the correct Ubuntu version this setup is probably the way to go. +It should work with most other Linux distributions. +Windows users might need to delete the home directory mount from `.devcontainer/devcontainer.json` and are not officially supported. +Also make sure docker is installed and setup. + +Install Docker +-------------- + +To install docker visit https://docs.docker.com/engine/install/ and follow the instructions for your OS. + +Install VSCode +-------------- + +To install VSCode visit https://code.visualstudio.com/ and follow the instructions for your OS. + +Setup VSCode Dev Container +-------------------------- + +1. Clone the repository: `git clone git@github.com:bit-bots/bitbots_main.git` or `git clone https://github.com/bit-bots/bitbots_main.git && git remote set-url origin git@github.com:bit-bots/bitbots_main.git` if you don't have an SSH key setup yet. +2. Open the repository in VSCode +3. Install the "Remote - Containers" extension +4. Click on the green icon in the bottom left corner of the window and select "Reopen in Container" +5. Wait for the container to build and start +6. Open a terminal in VSCode, you should see a number of instructions on how to setup the container. Follow them. +7. Install recommended extensions for the repository + +You should now have a fully working development environment (IntelliSense, Build, ...) for the repository. You can source the workspace by running `sa`. Now all the commands should be available to you. + + +Known issues +------------ + +- Rebuilding the container results in all modifications to the container being lost. This does not include the repository, which itself is persisted in the container. +- Sometimes `make install` results in an `mktemp: failed to create file via template ‘/tmp/tmp.XXXXXXXXXX’: Permission denied`. I spend some time trying to fix this but couldn't find a solution. The workaround is to run `make install` again. This time it should work. +- I did everything as stated, but my python IntelliSense does not pick up bit-bots related packages. To solve this open the command palette (Ctrl+Shift+P) and run `ROS: Update Python Path`. This should fix the issue. +- GUI applications do not start. Run `xhost local:root` on the **host** machine to fix this. +- I can not find my files in the home directory. The home directory is mounted at `/srv/host_home` in the container. You can find your files there. diff --git a/bitbots_misc/bitbots_docs/docs/manual/tutorials/vscode-ros2.rst b/bitbots_misc/bitbots_docs/docs/manual/tutorials/vscode-ros2.rst index 536482fd8..75d17ec0a 100644 --- a/bitbots_misc/bitbots_docs/docs/manual/tutorials/vscode-ros2.rst +++ b/bitbots_misc/bitbots_docs/docs/manual/tutorials/vscode-ros2.rst @@ -24,8 +24,8 @@ You can use multiple commands with `Ctrl+Shift+P` and then type `ROS`. Debugging ~~~~~~~~~ -You can debug launch files but only ones that are written in Python. -These cannot include further xml launch files. +You can debug launch files but only ones that are written in Python. +These cannot include further xml launch files. It makes sense to create a small test launch with only the node that you want to debug and start the rest independently. An example vscode launch configuration and the corresponding python launch file can be seen below: @@ -56,7 +56,7 @@ An example vscode launch configuration and the corresponding python launch file def generate_launch_description(): body_config = os.path.join(get_package_share_directory('bitbots_body_behavior'), 'config', 'body_behavior.yaml') - head_config = os.path.join(get_package_share_directory('bitbots_head_behavior'), 'config', 'head_config.yaml') + head_config = os.path.join(get_package_share_directory('bitbots_head_behavior'), 'config', 'head_config.yaml') node = Node( package='bitbots_head_behavior', diff --git a/bitbots_misc/bitbots_docs/package.xml b/bitbots_misc/bitbots_docs/package.xml index 65245124e..759323129 100644 --- a/bitbots_misc/bitbots_docs/package.xml +++ b/bitbots_misc/bitbots_docs/package.xml @@ -7,13 +7,15 @@ Finn-Thorben Sell Hamburg Bit-Bots - Hamburg Bit-Bots + MIT + Hamburg Bit-Bots + ament_cmake python3-sphinx-rtd-theme python3-breathe - + diff --git a/bitbots_misc/bitbots_extrinsic_calibration/package.xml b/bitbots_misc/bitbots_extrinsic_calibration/package.xml index c48bbdc0f..1a8ec771e 100644 --- a/bitbots_misc/bitbots_extrinsic_calibration/package.xml +++ b/bitbots_misc/bitbots_extrinsic_calibration/package.xml @@ -7,9 +7,10 @@ Florian Vahl Hamburg Bit-Bots - Florian Vahl MIT + + Florian Vahl ament_cmake diff --git a/bitbots_misc/bitbots_ipm/package.xml b/bitbots_misc/bitbots_ipm/package.xml index ca99ab82a..56d9ceb83 100644 --- a/bitbots_misc/bitbots_ipm/package.xml +++ b/bitbots_misc/bitbots_ipm/package.xml @@ -7,9 +7,11 @@ Florian Vahl Hamburg Bit-Bots - Hamburg Bit-Bots + MIT + Hamburg Bit-Bots + soccer_ipm ipm_image_node soccer_vision_3d_rviz_markers diff --git a/bitbots_misc/bitbots_robot_description/package.xml b/bitbots_misc/bitbots_robot_description/package.xml index 282b71c8e..7a6bb7229 100644 --- a/bitbots_misc/bitbots_robot_description/package.xml +++ b/bitbots_misc/bitbots_robot_description/package.xml @@ -10,8 +10,10 @@ Florian Vahl Hamburg Bit-Bots - Hamburg Bit-Bots + MIT + + Hamburg Bit-Bots ament_cmake diff --git a/bitbots_misc/bitbots_teleop/package.xml b/bitbots_misc/bitbots_teleop/package.xml index 7c5db8ebb..298625eab 100644 --- a/bitbots_misc/bitbots_teleop/package.xml +++ b/bitbots_misc/bitbots_teleop/package.xml @@ -7,9 +7,10 @@ Jasper Güldenstein Hamburg Bit-Bots - Jasper Güldenstein - + MIT + + Jasper Güldenstein ament_cmake diff --git a/humanoid_league_misc/humanoid_league_speaker/humanoid_league_speaker/__init__.py b/bitbots_misc/bitbots_tts/bitbots_tts/__init__.py similarity index 100% rename from humanoid_league_misc/humanoid_league_speaker/humanoid_league_speaker/__init__.py rename to bitbots_misc/bitbots_tts/bitbots_tts/__init__.py diff --git a/humanoid_league_misc/humanoid_league_speaker/humanoid_league_speaker/speaker.py b/bitbots_misc/bitbots_tts/bitbots_tts/tts.py similarity index 100% rename from humanoid_league_misc/humanoid_league_speaker/humanoid_league_speaker/speaker.py rename to bitbots_misc/bitbots_tts/bitbots_tts/tts.py diff --git a/humanoid_league_misc/humanoid_league_speaker/config/speaker_config.yaml b/bitbots_misc/bitbots_tts/config/tts_config.yaml similarity index 100% rename from humanoid_league_misc/humanoid_league_speaker/config/speaker_config.yaml rename to bitbots_misc/bitbots_tts/config/tts_config.yaml diff --git a/humanoid_league_misc/humanoid_league_speaker/docs/_static/logo.png b/bitbots_misc/bitbots_tts/docs/_static/logo.png similarity index 100% rename from humanoid_league_misc/humanoid_league_speaker/docs/_static/logo.png rename to bitbots_misc/bitbots_tts/docs/_static/logo.png diff --git a/humanoid_league_misc/humanoid_league_speaker/docs/conf.py b/bitbots_misc/bitbots_tts/docs/conf.py similarity index 100% rename from humanoid_league_misc/humanoid_league_speaker/docs/conf.py rename to bitbots_misc/bitbots_tts/docs/conf.py diff --git a/humanoid_league_misc/humanoid_league_speaker/docs/index.rst b/bitbots_misc/bitbots_tts/docs/index.rst similarity index 100% rename from humanoid_league_misc/humanoid_league_speaker/docs/index.rst rename to bitbots_misc/bitbots_tts/docs/index.rst diff --git a/bitbots_misc/bitbots_tts/launch/tts.launch b/bitbots_misc/bitbots_tts/launch/tts.launch new file mode 100644 index 000000000..5f3f78bb5 --- /dev/null +++ b/bitbots_misc/bitbots_tts/launch/tts.launch @@ -0,0 +1,6 @@ + + + + + + diff --git a/humanoid_league_misc/humanoid_league_speaker/package.xml b/bitbots_misc/bitbots_tts/package.xml similarity index 87% rename from humanoid_league_misc/humanoid_league_speaker/package.xml rename to bitbots_misc/bitbots_tts/package.xml index be4db8c03..096597d26 100644 --- a/humanoid_league_misc/humanoid_league_speaker/package.xml +++ b/bitbots_misc/bitbots_tts/package.xml @@ -1,17 +1,18 @@ - humanoid_league_speaker + bitbots_tts 2.0.0 - The humanoid_league_speaker package provides an easy way to do audio speech output via espeak. + The bitbots_tts package provides an easy way to do audio speech output via a text to speach engine. Messages send to the /speak topic are queued and spoken in another thread depending on their priority. This can be used for debug but also for inter robot communication with natural language. Marc Bestmann Hamburg Bit-Bots - Marc Bestmann - + MIT + + Marc Bestmann ament_cmake diff --git a/humanoid_league_misc/humanoid_league_speaker/resource/humanoid_league_speaker b/bitbots_misc/bitbots_tts/resource/bitbots_tts similarity index 100% rename from humanoid_league_misc/humanoid_league_speaker/resource/humanoid_league_speaker rename to bitbots_misc/bitbots_tts/resource/bitbots_tts diff --git a/humanoid_league_misc/humanoid_league_speaker/scripts/send_text.py b/bitbots_misc/bitbots_tts/scripts/send_text.py similarity index 100% rename from humanoid_league_misc/humanoid_league_speaker/scripts/send_text.py rename to bitbots_misc/bitbots_tts/scripts/send_text.py diff --git a/bitbots_misc/bitbots_tts/setup.cfg b/bitbots_misc/bitbots_tts/setup.cfg new file mode 100644 index 000000000..902ac0ff9 --- /dev/null +++ b/bitbots_misc/bitbots_tts/setup.cfg @@ -0,0 +1,4 @@ +[develop] +script_dir=$base/lib/bitbots_tts +[install] +install_scripts=$base/lib/bitbots_tts diff --git a/humanoid_league_misc/humanoid_league_speaker/setup.py b/bitbots_misc/bitbots_tts/setup.py similarity index 85% rename from humanoid_league_misc/humanoid_league_speaker/setup.py rename to bitbots_misc/bitbots_tts/setup.py index 7d6cecef5..301de3cc5 100644 --- a/humanoid_league_misc/humanoid_league_speaker/setup.py +++ b/bitbots_misc/bitbots_tts/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -package_name = "humanoid_league_speaker" +package_name = "bitbots_tts" setup( name=package_name, @@ -19,7 +19,7 @@ scripts=["scripts/send_text.py"], entry_points={ "console_scripts": [ - "speaker = humanoid_league_speaker.speaker:main", + "tts = bitbots_tts.tts:main", ], }, ) diff --git a/bitbots_misc/bitbots_utils/CMakeLists.txt b/bitbots_misc/bitbots_utils/CMakeLists.txt index f5a22aaf1..9a58212b3 100644 --- a/bitbots_misc/bitbots_utils/CMakeLists.txt +++ b/bitbots_misc/bitbots_utils/CMakeLists.txt @@ -20,7 +20,7 @@ enable_bitbots_docs() set(INCLUDE_DIRS include) include_directories(${INCLUDE_DIRS}) -add_compile_options(-Wall -Werror -Wno-unused -pedantic -Wextra) +add_compile_options(-Wall -Werror -Wno-unused -pedantic -Wextra -fPIC) # Add cpp library add_library(${PROJECT_NAME} src/utils.cpp) diff --git a/bitbots_misc/bitbots_utils/include/bitbots_utils/utils.hpp b/bitbots_misc/bitbots_utils/include/bitbots_utils/utils.hpp index 7c8d1d4e6..801c65532 100644 --- a/bitbots_misc/bitbots_utils/include/bitbots_utils/utils.hpp +++ b/bitbots_misc/bitbots_utils/include/bitbots_utils/utils.hpp @@ -24,9 +24,9 @@ namespace bitbots_utils { * @param warn_interval Interval in which to keep warning if the frames are not available * @param verbose Can be used to disable the warning messages */ -void wait_for_tf(const rclcpp::Logger &logger, std::shared_ptr clock, - std::shared_ptr tf_buffer, const std::vector &frames, - const std::string &root_frame, const rclcpp::Duration &check_interval = rclcpp::Duration(0.1s), +void wait_for_tf(const rclcpp::Logger &logger, std::shared_ptr clock, tf2_ros::Buffer *tf_buffer, + const std::vector &frames, const std::string &root_frame, + const rclcpp::Duration &check_interval = rclcpp::Duration(0.1s), const rclcpp::Duration &warn_duration = rclcpp::Duration(5.0s), const rclcpp::Duration &warn_interval = rclcpp::Duration(1.0s), bool verbose = true); diff --git a/bitbots_misc/bitbots_utils/package.xml b/bitbots_misc/bitbots_utils/package.xml index d2870c30f..d2eb7babf 100644 --- a/bitbots_misc/bitbots_utils/package.xml +++ b/bitbots_misc/bitbots_utils/package.xml @@ -9,8 +9,10 @@ Finn-Thorben Sell Hamburg Bit-Bots - Hamburg Bit-Bots + MIT + + Hamburg Bit-Bots ament_cmake diff --git a/bitbots_misc/bitbots_utils/src/utils.cpp b/bitbots_misc/bitbots_utils/src/utils.cpp index a39b28a90..482957752 100644 --- a/bitbots_misc/bitbots_utils/src/utils.cpp +++ b/bitbots_misc/bitbots_utils/src/utils.cpp @@ -14,10 +14,10 @@ namespace bitbots_utils { * @param warn_interval Interval in which to keep warning if the frames are not available * @param verbose Can be used to disable the warning messages */ -void wait_for_tf(const rclcpp::Logger &logger, std::shared_ptr clock, - std::shared_ptr tf_buffer, const std::vector &frames, - const std::string &root_frame, const rclcpp::Duration &check_interval, - const rclcpp::Duration &warn_duration, const rclcpp::Duration &warn_interval, bool verbose) { +void wait_for_tf(const rclcpp::Logger &logger, std::shared_ptr clock, tf2_ros::Buffer *tf_buffer, + const std::vector &frames, const std::string &root_frame, + const rclcpp::Duration &check_interval, const rclcpp::Duration &warn_duration, + const rclcpp::Duration &warn_interval, bool verbose) { // Store the beginning time auto start_time = clock->now(); diff --git a/bitbots_misc/system_monitor/package.xml b/bitbots_misc/system_monitor/package.xml index c1eaa6375..6d479d308 100644 --- a/bitbots_misc/system_monitor/package.xml +++ b/bitbots_misc/system_monitor/package.xml @@ -9,9 +9,10 @@ Finn-Thorben Sell Hamburg Bit-Bots - Finn-Thorben Sell MIT + + Finn-Thorben Sell ament_cmake std_msgs diff --git a/bitbots_motion/bitbots_animation_server/package.xml b/bitbots_motion/bitbots_animation_server/package.xml index be494fc64..5552f2810 100644 --- a/bitbots_motion/bitbots_animation_server/package.xml +++ b/bitbots_motion/bitbots_animation_server/package.xml @@ -9,11 +9,11 @@ Sebastian Stelter Hamburg Bit-Bots + MIT + Marc Bestmann Hamburg Bit-Bots - MIT - bitbots_docs bitbots_msgs bitbots_robot_description diff --git a/bitbots_motion/bitbots_dynup/CMakeLists.txt b/bitbots_motion/bitbots_dynup/CMakeLists.txt index ddaab538c..933150b27 100644 --- a/bitbots_motion/bitbots_dynup/CMakeLists.txt +++ b/bitbots_motion/bitbots_dynup/CMakeLists.txt @@ -10,8 +10,10 @@ set(PYBIND11_PYTHON_VERSION 3) set(PYBIND11_FINDPYTHON ON) find_package(ament_cmake REQUIRED) +find_package(backward_ros REQUIRED) find_package(bitbots_msgs REQUIRED) find_package(bitbots_splines REQUIRED) +find_package(bitbots_utils REQUIRED) find_package(control_msgs REQUIRED) find_package(control_toolbox REQUIRED) find_package(geometry_msgs REQUIRED) @@ -26,7 +28,6 @@ find_package(tf2_eigen REQUIRED) find_package(tf2_geometry_msgs REQUIRED) find_package(tf2_ros REQUIRED) find_package(Eigen3 REQUIRED) -find_package(backward_ros REQUIRED) find_package(ros2_python_extension REQUIRED) find_package(pybind11 REQUIRED) @@ -51,6 +52,7 @@ ament_target_dependencies( ament_cmake bitbots_msgs bitbots_splines + bitbots_utils control_msgs control_toolbox geometry_msgs @@ -79,6 +81,7 @@ ament_target_dependencies( ament_cmake bitbots_msgs bitbots_splines + bitbots_utils control_msgs control_toolbox geometry_msgs diff --git a/bitbots_motion/bitbots_dynup/include/bitbots_dynup/dynup_node.hpp b/bitbots_motion/bitbots_dynup/include/bitbots_dynup/dynup_node.hpp index 3fdc1f6d0..831aee35b 100644 --- a/bitbots_motion/bitbots_dynup/include/bitbots_dynup/dynup_node.hpp +++ b/bitbots_motion/bitbots_dynup/include/bitbots_dynup/dynup_node.hpp @@ -13,6 +13,7 @@ #include #include +#include #include #include #include diff --git a/bitbots_motion/bitbots_dynup/src/dynup_node.cpp b/bitbots_motion/bitbots_dynup/src/dynup_node.cpp index 954b1a1ce..ec5b53a95 100644 --- a/bitbots_motion/bitbots_dynup/src/dynup_node.cpp +++ b/bitbots_motion/bitbots_dynup/src/dynup_node.cpp @@ -222,6 +222,11 @@ void DynupNode::execute(const std::shared_ptr goal_handle) { reset(); last_ros_update_time_ = 0; start_time_ = this->get_clock()->now().seconds(); + + bitbots_utils::wait_for_tf(this->get_logger(), this->get_clock(), this->tf_buffer_.get(), + {base_link_frame_, r_sole_frame_, l_sole_frame_, r_wrist_frame_, l_wrist_frame_}, + base_link_frame_); + bitbots_dynup::msg::DynupPoses poses = getCurrentPoses(); if (poses.header.stamp.nanosec != 0) { DynupRequest request; diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/__init__.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/__init__.py index 80aaf883f..25bdf4bbe 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/__init__.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/__init__.py @@ -8,6 +8,6 @@ class AbstractHCMActionElement(AbstractActionElement): AbstractHCMActionElement with a hcm blackboard as its blackboard """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: HcmBlackboard diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/cancel_goals.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/cancel_goals.py index 337d725cd..8f5220919 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/cancel_goals.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/cancel_goals.py @@ -6,7 +6,7 @@ class CancelGoals(AbstractHCMActionElement): Cancels all animation, dynup and move_base goals """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) def perform(self): diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/change_motor_power.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/change_motor_power.py index 62b3adb5f..6b08ac85c 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/change_motor_power.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/change_motor_power.py @@ -8,7 +8,7 @@ class AbstractChangeMotorPower(AbstractHCMActionElement): Switches motor power using the service call of the hardware interface. """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) # In visualization and simulation, we cannot disable motors diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/change_motor_torque.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/change_motor_torque.py new file mode 100644 index 000000000..131533522 --- /dev/null +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/change_motor_torque.py @@ -0,0 +1,23 @@ +from bitbots_hcm.hcm_dsd.actions import AbstractHCMActionElement +from bitbots_msgs.msg import JointTorque + + +class SetTorque(AbstractHCMActionElement): + def __init__(self, blackboard, dsd, parameters): + super().__init__(blackboard, dsd, parameters) + self.stiff = parameters.get("stiff", True) + + def perform(self, reevaluate=False): + if self.blackboard.current_joint_state is None: + self.blackboard.node.get_logger().warning( + "Cannot set joint stiffness for teaching mode because no joint states where received!" + ) + return self.pop() + + self.blackboard.torque_publisher.publish( + JointTorque( + joint_names=self.blackboard.current_joint_state.name, + on=[self.stiff] * len(self.blackboard.current_joint_state.name), + ) + ) + return self.pop() diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/play_animation.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/play_animation.py index 487dffe9e..269a47e70 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/play_animation.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/play_animation.py @@ -12,7 +12,7 @@ class AbstractPlayAnimation(AbstractHCMActionElement, ABC): Abstract class to create actions for playing animations """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.first_perform = True @@ -131,7 +131,7 @@ def chose_animation(self): class PlayAnimationDynup(AbstractHCMActionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.direction = parameters.get("direction") self.first_perform = True diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/set_foot_zero.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/set_foot_zero.py index 0974e75a8..416378798 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/set_foot_zero.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/set_foot_zero.py @@ -2,7 +2,7 @@ class SetFootZero(AbstractHCMActionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.first_perform = True diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/wait.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/wait.py index c25b61221..e70bae830 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/wait.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/wait.py @@ -14,7 +14,7 @@ class Wait(AbstractHCMActionElement): This action does nothing. If a time is given, it will wait for that time before it pops itself. """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): """ :param parameters['time']: Time to wait in seconds """ diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/__init__.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/__init__.py index 886ebc717..82101034e 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/__init__.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/__init__.py @@ -8,6 +8,6 @@ class AbstractHCMDecisionElement(AbstractDecisionElement): AbstractHCMDecisionElement with a hcm blackboard as its blackboard """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: HcmBlackboard diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/check_hardware.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/check_hardware.py index b311f638e..28b022cd6 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/check_hardware.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/check_hardware.py @@ -9,7 +9,7 @@ class CheckMotors(AbstractHCMDecisionElement): Needs to be checked before other sensors, since they also need the power to be able to response """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.had_problem = False @@ -90,7 +90,7 @@ class CheckIMU(AbstractHCMDecisionElement): Since the HCM can not detect falls without it, we will shut everything down if we dont have an imu. """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.had_problem = False @@ -147,7 +147,7 @@ class CheckPressureSensor(AbstractHCMDecisionElement): Checks connection to pressure sensors. """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.had_problem = False diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/fallen.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/fallen.py index 6f09aa6c3..1116ae193 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/fallen.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/fallen.py @@ -11,7 +11,7 @@ class Fallen(AbstractHCMDecisionElement): Decides if the robot is fallen and lying on the ground """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) # Get parameters diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/falling.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/falling.py index bc6705546..44a421875 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/falling.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/falling.py @@ -21,7 +21,7 @@ class Falling(AbstractHCMDecisionElement): Decides if the robot is currently falling and has to act on this """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) # Get parameters diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/pickup.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/pickup.py index f6569d999..0e33bb10e 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/pickup.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/pickup.py @@ -1,4 +1,4 @@ -from humanoid_league_speaker.speaker import speak +from bitbots_tts.tts import speak from bitbots_hcm.hcm_dsd.decisions import AbstractHCMDecisionElement diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/startup.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/startup.py index 0caa08d6e..9ade3e0fe 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/startup.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/startup.py @@ -6,7 +6,7 @@ class StartHCM(AbstractHCMDecisionElement): Initializes HCM. """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.is_initial = True diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/teaching.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/teaching.py new file mode 100644 index 000000000..16d6001d4 --- /dev/null +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/decisions/teaching.py @@ -0,0 +1,35 @@ +from bitbots_hcm.hcm_dsd.decisions import AbstractHCMDecisionElement +from bitbots_msgs.srv import SetTeachingMode + + +class TeachingMode(AbstractHCMDecisionElement): + """ + Decides if the robot is currently in teaching mode. + In the teaching mode the robot can be puppeteered freely. + To do this we deactivate the torque on all motors. + If we leave the teaching mode we activate the torque again. + """ + + def __init__(self, blackboard, dsd, parameters): + super().__init__(blackboard, dsd, parameters) + self.last_state_on = False + + def perform(self, reevaluate=False): + if self.blackboard.teaching_mode_state == SetTeachingMode.Request.TEACH: + self.last_state_on = True + # We activated the teaching mode + return "TEACH" + elif self.blackboard.teaching_mode_state == SetTeachingMode.Request.HOLD: + # We want to hold the pose + self.last_state_on = True + return "HOLD" + elif self.last_state_on: + self.last_state_on = False + # We just deactivated the teaching mode and need to clean up + return "FINISHED" + else: + # We are not in the teaching mode + return "OFF" + + def get_reevaluate(self): + return True diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/hcm.dsd b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/hcm.dsd index f6ea5b920..6cefe0515 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/hcm.dsd +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/hcm.dsd @@ -1,37 +1,41 @@ -->HCM $StartHCM - START_UP --> @RobotStateStartup, @Wait + time:0.1 + r:false, @PlayAnimationDynup + direction:walkready, @Wait - RUNNING --> $Stop - STOPPED --> @CancelGoals, @StopWalking, @PlayAnimationDynup + direction:walkready, @Wait - FREE -->$RecordAnimation - RECORD_ACTIVE --> @RobotStateRecord, @Wait - FREE --> $CheckMotors - MOTORS_NOT_STARTED --> @RobotStateStartup, @WaitForMotorStartup - OVERLOAD --> @RobotStateMotorOff, @CancelGoals, @StopWalking, @PlayAnimationFallingFront, @TurnMotorsOff, @Wait - PROBLEM --> @RobotStateHardwareProblem, @WaitForMotors - TURN_ON --> @TurnMotorsOn, @PlayAnimationDynup + direction:walkready, @Wait - OKAY --> $CheckIMU - IMU_NOT_STARTED --> @RobotStateStartup, @WaitForIMUStartup - PROBLEM --> @RobotStateHardwareProblem, @WaitForIMU - OKAY --> $CheckPressureSensor - PRESSURE_NOT_STARTED --> @RobotStateStartup, @WaitForPressureStartup - PROBLEM --> @RobotStateHardwareProblem, @WaitForPressure - OKAY --> $PickedUp - PICKED_UP --> @RobotStatePickedUp, @PlayAnimationDynup + direction:walkready, @Wait - ON_GROUND --> $Fallen - FALLEN_FRONT --> @RobotStateFallen, @CancelGoals, @StopWalking, @RobotStateGettingUp, @PlayAnimationDynup + direction:front - FALLEN_BACK --> @RobotStateFallen, @CancelGoals, @StopWalking, @RobotStateGettingUp, @SetFootZero, @PlayAnimationDynup + direction:back - FALLEN_RIGHT --> @RobotStateFallen, @CancelGoals, @StopWalking, @PlayAnimationTurningBackRight - FALLEN_LEFT --> @RobotStateFallen, @CancelGoals, @StopWalking, @PlayAnimationTurningBackLeft - NOT_FALLEN --> $Falling - FALLING_LEFT --> @RobotStateFalling, @CancelGoals, @StopWalking, @PlayAnimationFallingLeft, @Wait - FALLING_RIGHT --> @RobotStateFalling, @CancelGoals, @StopWalking, @PlayAnimationFallingRight, @Wait - FALLING_FRONT --> @RobotStateFalling, @CancelGoals, @StopWalking, @PlayAnimationFallingFront, @Wait - FALLING_BACK --> @RobotStateFalling, @CancelGoals, @StopWalking, @PlayAnimationFallingBack, @Wait - NOT_FALLING --> $PlayingExternalAnimation - ANIMATION_RUNNING --> @StopWalking, @RobotStateAnimationRunning, @Wait - FREE --> $RecentWalkingGoals - STAY_WALKING --> @RobotStateWalking, @Wait - NOT_WALKING --> $RecentKickGoals - KICKING --> @RobotStateKicking, @Wait - NOT_KICKING --> @RobotStateControllable, @Wait + START_UP --> @RobotStateStartup, @PlayAnimationDynup + direction:walkready + RUNNING --> $RecordAnimation + RECORD_ACTIVE --> @RobotStateRecord, @Wait + FREE --> $CheckMotors + MOTORS_NOT_STARTED --> @RobotStateStartup, @WaitForMotorStartup + OVERLOAD --> @RobotStateMotorOff, @CancelGoals, @StopWalking, @PlayAnimationFallingFront, @TurnMotorsOff, @Wait + PROBLEM --> @RobotStateHardwareProblem, @WaitForMotors + TURN_ON --> @TurnMotorsOn, @PlayAnimationDynup + direction:walkready, @Wait + OKAY --> $TeachingMode + TEACH --> @RobotStateRecord, @SetTorque + stiff:false, @Wait + HOLD --> @SetTorque + stiff:true, @Wait + FINISHED --> @SetTorque + stiff:true + r:false, @RobotStateControllable, @PlayAnimationDynup + direction:walkready + OFF --> $Stop + STOPPED --> @CancelGoals, @StopWalking, @PlayAnimationDynup + direction:walkready, @Wait + FREE -->$CheckIMU + IMU_NOT_STARTED --> @RobotStateStartup, @WaitForIMUStartup + PROBLEM --> @RobotStateHardwareProblem, @WaitForIMU + OKAY --> $CheckPressureSensor + PRESSURE_NOT_STARTED --> @RobotStateStartup, @WaitForPressureStartup + PROBLEM --> @RobotStateHardwareProblem, @WaitForPressure + OKAY --> $PickedUp + PICKED_UP --> @RobotStatePickedUp, @PlayAnimationDynup + direction:walkready, @Wait + ON_GROUND --> $Fallen + FALLEN_FRONT --> @RobotStateFallen, @CancelGoals, @StopWalking, @RobotStateGettingUp, @PlayAnimationDynup + direction:front + FALLEN_BACK --> @RobotStateFallen, @CancelGoals, @StopWalking, @RobotStateGettingUp, @SetFootZero, @PlayAnimationDynup + direction:back + FALLEN_RIGHT --> @RobotStateFallen, @CancelGoals, @StopWalking, @PlayAnimationTurningBackRight + FALLEN_LEFT --> @RobotStateFallen, @CancelGoals, @StopWalking, @PlayAnimationTurningBackLeft + NOT_FALLEN --> $Falling + FALLING_LEFT --> @RobotStateFalling, @CancelGoals, @StopWalking, @PlayAnimationFallingLeft, @Wait + FALLING_RIGHT --> @RobotStateFalling, @CancelGoals, @StopWalking, @PlayAnimationFallingRight, @Wait + FALLING_FRONT --> @RobotStateFalling, @CancelGoals, @StopWalking, @PlayAnimationFallingFront, @Wait + FALLING_BACK --> @RobotStateFalling, @CancelGoals, @StopWalking, @PlayAnimationFallingBack, @Wait + NOT_FALLING --> $PlayingExternalAnimation + ANIMATION_RUNNING --> @StopWalking, @RobotStateAnimationRunning, @Wait + FREE --> $RecentWalkingGoals + STAY_WALKING --> @RobotStateWalking, @Wait + NOT_WALKING --> $RecentKickGoals + KICKING --> @RobotStateKicking, @Wait + NOT_KICKING --> @RobotStateControllable, @Wait diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/hcm_blackboard.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/hcm_blackboard.py index b2185b68f..5711896ba 100644 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/hcm_blackboard.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/hcm_blackboard.py @@ -12,7 +12,8 @@ from std_srvs.srv import SetBool from bitbots_msgs.action import Dynup, PlayAnimation -from bitbots_msgs.msg import Audio, RobotControlState +from bitbots_msgs.msg import Audio, JointTorque, RobotControlState +from bitbots_msgs.srv import SetTeachingMode class HcmBlackboard: @@ -32,10 +33,15 @@ def __init__(self, node: Node): self.pickup_accel_threshold: float = self.node.get_parameter("pick_up_accel_threshold").value self.pressure_sensors_installed: bool = self.node.get_parameter("pressure_sensors_installed").value - # Create services + # Create service clients self.foot_zero_service = self.node.create_client(EmptySrv, "set_foot_zero") self.motor_switch_service = self.node.create_client(SetBool, "core/switch_power") + # Create services + self.teaching_mode_service = self.node.create_service( + SetTeachingMode, "set_teaching_mode", self.set_teaching_mode_callback + ) + # Create action clients and corresponding goal handles self.animation_action_client: ActionClient = ActionClient(self.node, PlayAnimation, "animation") self.animation_action_current_goal: Optional[Future] = None @@ -46,6 +52,7 @@ def __init__(self, node: Node): self.walk_pub = self.node.create_publisher(Twist, "cmd_vel", 1) self.cancel_path_planning_pub = self.node.create_publisher(EmptyMsg, "pathfinding/cancel", 1) self.speak_publisher = self.node.create_publisher(Audio, "speak", 1) + self.torque_publisher = self.node.create_publisher(JointTorque, "set_torque_individual", 10) # Latest imu data self.accel = numpy.array([0, 0, 0]) @@ -70,6 +77,9 @@ def __init__(self, node: Node): self.animation_name_turning_back_left: str = self.node.get_parameter("animations.turning_back_left").value self.animation_name_turning_back_right: str = self.node.get_parameter("animations.turning_back_right").value + # Teaching State + self.teaching_mode_state: int = SetTeachingMode.Request.OFF + # Motor State self.current_joint_state: Optional[JointState] = None self.previous_joint_state: Optional[JointState] = None @@ -112,3 +122,36 @@ def __init__(self, node: Node): def cancel_path_planning(self): self.cancel_path_planning_pub.publish(EmptyMsg()) + + def set_teaching_mode_callback( + self, request: SetTeachingMode.Request, response: SetTeachingMode.Response + ) -> SetTeachingMode.Response: + # Store modifiable version of the requested state. + state = request.state + + # Modify requested state if request state is SWITCH so that it switches between HOLD and TEACH after it was turned on once. + if state == SetTeachingMode.Request.SWITCH: + if self.teaching_mode_state in [SetTeachingMode.Request.HOLD, SetTeachingMode.Request.OFF]: + state = SetTeachingMode.Request.TEACH + elif self.teaching_mode_state == SetTeachingMode.Request.TEACH: + state = SetTeachingMode.Request.HOLD + + # Check if we are able to start the teaching mode + if state == SetTeachingMode.Request.TEACH and self.current_state not in [ + RobotControlState.CONTROLLABLE, + RobotControlState.PICKED_UP, + RobotControlState.PENALTY, + RobotControlState.RECORD, + ]: + # Respond that we can not activate the teaching mode in the current state + response.success = False + return response + + if state == SetTeachingMode.Request.HOLD and self.teaching_mode_state != SetTeachingMode.Request.TEACH: + response.success = False + return response + + # Activate / Deactivate teaching mode + self.teaching_mode_state = state + response.success = True + return response diff --git a/bitbots_motion/bitbots_hcm/bitbots_hcm/humanoid_control_module.py b/bitbots_motion/bitbots_hcm/bitbots_hcm/humanoid_control_module.py index dcfba872e..c3cda8855 100755 --- a/bitbots_motion/bitbots_hcm/bitbots_hcm/humanoid_control_module.py +++ b/bitbots_motion/bitbots_hcm/bitbots_hcm/humanoid_control_module.py @@ -5,11 +5,11 @@ import rclpy from ament_index_python import get_package_share_directory +from bitbots_tts.tts import speak from bitbots_utils.utils import get_parameters_from_ros_yaml from builtin_interfaces.msg import Time as TimeMsg from diagnostic_msgs.msg import DiagnosticArray, DiagnosticStatus from dynamic_stack_decider.dsd import DSD -from humanoid_league_speaker.speaker import speak from rcl_interfaces.msg import Parameter as ParameterMsg from rclpy.duration import Duration from rclpy.executors import MultiThreadedExecutor diff --git a/bitbots_motion/bitbots_hcm/package.xml b/bitbots_motion/bitbots_hcm/package.xml index 40e25f4d0..9f6fd464a 100644 --- a/bitbots_motion/bitbots_hcm/package.xml +++ b/bitbots_motion/bitbots_hcm/package.xml @@ -9,12 +9,12 @@ Marc Bestmann Hamburg Bit-Bots + + MIT Marc Bestmann Hamburg Bit-Bots - MIT - ament_cmake backward_ros @@ -24,7 +24,7 @@ bitbots_utils dynamic_stack_decider geometry_msgs - humanoid_league_speaker + bitbots_tts pybind11-dev python3-numpy python3-transforms3d diff --git a/bitbots_motion/bitbots_hcm/scripts/pause.py b/bitbots_motion/bitbots_hcm/scripts/pause.py index 74302bb85..1651060fb 100755 --- a/bitbots_motion/bitbots_hcm/scripts/pause.py +++ b/bitbots_motion/bitbots_hcm/scripts/pause.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 import rclpy -from humanoid_league_speaker.speaker import speak +from bitbots_tts.tts import speak from rclpy.node import Node from std_msgs.msg import Bool diff --git a/bitbots_motion/bitbots_head_mover/package.xml b/bitbots_motion/bitbots_head_mover/package.xml index bef187136..76f6d9e85 100644 --- a/bitbots_motion/bitbots_head_mover/package.xml +++ b/bitbots_motion/bitbots_head_mover/package.xml @@ -9,10 +9,11 @@ point on the field, e.g. to track the ball. Valerie Bartel Hamburg Bit-Bots - Hamburg Bit-Bots MIT + Hamburg Bit-Bots + ament_cmake backward_ros diff --git a/bitbots_motion/bitbots_odometry/src/motion_odometry.cpp b/bitbots_motion/bitbots_odometry/src/motion_odometry.cpp index f6445168d..6ed9ed9fa 100644 --- a/bitbots_motion/bitbots_odometry/src/motion_odometry.cpp +++ b/bitbots_motion/bitbots_odometry/src/motion_odometry.cpp @@ -40,7 +40,7 @@ MotionOdometry::MotionOdometry() : Node("MotionOdometry"), param_listener_(get_n void MotionOdometry::loop() { // Wait for tf to be available - bitbots_utils::wait_for_tf(this->get_logger(), this->get_clock(), tf_buffer_, + bitbots_utils::wait_for_tf(this->get_logger(), this->get_clock(), tf_buffer_.get(), {base_link_frame_, r_sole_frame_, l_sole_frame_}, base_link_frame_); rclcpp::Time cycle_start_time = this->now(); diff --git a/bitbots_motion/bitbots_odometry/src/odometry_fuser.cpp b/bitbots_motion/bitbots_odometry/src/odometry_fuser.cpp index cbce18cf9..4326f193e 100644 --- a/bitbots_motion/bitbots_odometry/src/odometry_fuser.cpp +++ b/bitbots_motion/bitbots_odometry/src/odometry_fuser.cpp @@ -39,7 +39,7 @@ OdometryFuser::OdometryFuser() } void OdometryFuser::loop() { - bitbots_utils::wait_for_tf(this->get_logger(), this->get_clock(), this->tf_buffer_, + bitbots_utils::wait_for_tf(this->get_logger(), this->get_clock(), this->tf_buffer_.get(), {base_link_frame_, r_sole_frame_, l_sole_frame_}, base_link_frame_); // get motion_odom transform diff --git a/bitbots_motion/bitbots_quintic_walk/cfg/bitbots_quintic_walk_engine_params.cfg b/bitbots_motion/bitbots_quintic_walk/cfg/bitbots_quintic_walk_engine_params.cfg deleted file mode 100755 index ddf2a03bf..000000000 --- a/bitbots_motion/bitbots_quintic_walk/cfg/bitbots_quintic_walk_engine_params.cfg +++ /dev/null @@ -1,90 +0,0 @@ -#! /usr/bin/env python3 - -PACKAGE = 'bitbots_quintic_walk' -import roslib - -roslib.load_manifest(PACKAGE) - -from dynamic_reconfigure.parameter_generator_catkin import * - -gen = ParameterGenerator() -group_engine_main = gen.add_group("engine_main", type="tab") -group_engine_aditional = gen.add_group("additional", type="tab") -group_engine_exper = gen.add_group("experimental", type="tab") -group_kick = gen.add_group("kick", type="tab") - - -# todo evaluate to remove following -# foot_z_pause -# foot_put_down_z_offset -# foot_put_down_phase -# foot_apex_phase -# foot_put_down_roll_offset - -# Name Type Level Description Default Min Max - -# basic parameters -group_engine_main.add("freq", double_t, 1, - "Full walk cycle frequency (in Hz, > 0)", min=0.1, max=5) -group_engine_main.add("double_support_ratio", double_t, 1, - "Length of double support phase in half cycle(ratio, [0:1])", min=0, max=1) -group_engine_main.add("foot_distance", double_t, 1, - "Lateral distance between the feet center (in m, >= 0)", min=0, max=1) -group_engine_main.add("foot_rise", double_t, 1, - "Maximum flying foot height (in m, >= 0)", min=0, max=2) -group_engine_main.add("trunk_swing", double_t, 1, - "Trunk lateral oscillation amplitude ratio (ratio, >= 0)", min=0, max=2) -group_engine_main.add("trunk_height", double_t, 1, - "Height of the trunk from ground (in m, > 0)", min=0, max=1) -group_engine_main.add("trunk_pitch", double_t, 1, - "Trunk pitch orientation (in rad)", min=-1, max=1) -group_engine_main.add("trunk_pitch_p_coef_forward", double_t, 1, - "Trunk pitch orientation proportional to forward/backward step (in rad/m)", min=0, max=20) -group_engine_main.add("trunk_phase", double_t, 1, - "Phase offset of trunk oscillation (half cycle phase, [-1:1])", min=-1, max=1) - -group_engine_aditional.add("foot_z_pause", double_t, 1, - "Pause of Z movement on highest point (single support cycle ratio, [0,1])", min=0, max=1) -group_engine_aditional.add("foot_put_down_z_offset", double_t, 1, - "Let the foot's downward trajectory end above the ground this is helpful if the support leg bends, (in m, >= 0))", - min=0, max=0.1) -group_engine_aditional.add("foot_put_down_phase", double_t, 1, - "Phase time for moving the foot from Z offset to ground (phase between apex and single support end [0:1])", - min=0, max=1) -group_engine_aditional.add("foot_apex_phase", double_t, 1, - "Phase of flying foot apex(single support cycle phase, [0:1])", min=0, max=1) -group_engine_aditional.add("foot_overshoot_ratio", double_t, 1, - "Foot X/Y overshoot in ratio of step length(ratio, >= 0)", min=0, max=1) -group_engine_aditional.add("foot_overshoot_phase", double_t, 1, - "Foot X/Y overshoot phase (single support cycle phase, [foot_apex_phase:1]", min=0, max=1) -group_engine_aditional.add("trunk_x_offset", double_t, 1, - "Trunk forward offset (in m)", min=-0.2, max=0.2) -group_engine_aditional.add("trunk_y_offset", double_t, 1, - "Trunk lateral offset (in m)", min=-0.2, max=0.2) -group_engine_aditional.add("trunk_pause", double_t, 1, - "Trunk swing pause length in phase at apex (half cycle ratio, [0:1])", min=0, max=1) -group_engine_aditional.add("trunk_x_offset_p_coef_forward", double_t, 1, - "Trunk forward offset proportional to forward step (in 1)", min=0, max=1) -group_engine_aditional.add("trunk_x_offset_p_coef_turn", double_t, 1, - "Trunk forward offset proportional to rotation step (in m/rad)", min=0, max=1) -group_engine_aditional.add("trunk_pitch_p_coef_turn", double_t, 1, - "Trunk pitch orientation proportional to rotation step (in 1)", min=-20, max=20) - -group_kick.add("kick_length", double_t, 1, - "Length of kick movement [m]", min=0, max=1) -group_kick.add("kick_vel", double_t, 1, - "vel kick [m/s]", min=0, max=100) -group_kick.add("kick_phase", double_t, 1, - "Time of kick apex [ratio of single support phase]", min=0, max=1) - -group_engine_exper.add("foot_put_down_roll_offset", double_t, 1, - "Roll offset on flying foot at put down [rad]", min=-1, max=1) -group_engine_exper.add("first_step_swing_factor", double_t, 1, - "Give extra swing to first step for better start", min=0, max=10) -group_engine_exper.add("first_step_trunk_phase", double_t, 1, - "Trunk phase for the fist step", min=-1, max=1) -group_engine_exper.add("trunk_z_movement", double_t, 1, - "Amount of movement in z direction for trunk (around trunk_height) [m]", min=0.0, max=0.1) - - -exit(gen.generate(PACKAGE, "bitbots_quintic_walk", "bitbots_quintic_walk_engine_params")) diff --git a/bitbots_motion/bitbots_quintic_walk/package.xml b/bitbots_motion/bitbots_quintic_walk/package.xml index e91791448..0ea860742 100644 --- a/bitbots_motion/bitbots_quintic_walk/package.xml +++ b/bitbots_motion/bitbots_quintic_walk/package.xml @@ -12,12 +12,12 @@ Finn-Thorben Sell Hamburg Bit-Bots + MIT + Marc Bestmann Hamburg Bit-Bots Rhoban FC (original version of engine) - MIT - ament_cmake rosidl_default_generators diff --git a/bitbots_motion/bitbots_quintic_walk/src/parameters.yaml b/bitbots_motion/bitbots_quintic_walk/src/parameters.yaml index 80465fbde..42d7f09fe 100644 --- a/bitbots_motion/bitbots_quintic_walk/src/parameters.yaml +++ b/bitbots_motion/bitbots_quintic_walk/src/parameters.yaml @@ -173,13 +173,6 @@ walking: bounds<>: [ 0.0, 1.0 ] } } - trunk_pitch_p_coef_turn: { - type: double, - description: "Trunk pitch orientation proportional to rotation step (in rad/rad)", - validation: { - bounds<>: [ -1.0, 1.0 ] - } - } kick_length: { type: double, description: "Length of kick movement (in meters)", @@ -347,4 +340,4 @@ walking: validation: { bounds<>: [ 0.0, 100.0 ], } - } \ No newline at end of file + } diff --git a/bitbots_motion/bitbots_rl_motion/package.xml b/bitbots_motion/bitbots_rl_motion/package.xml index da4769d63..88510a310 100644 --- a/bitbots_motion/bitbots_rl_motion/package.xml +++ b/bitbots_motion/bitbots_rl_motion/package.xml @@ -8,11 +8,11 @@ Marc Bestmann Hamburg Bit-Bots + MIT + Marc Bestmann Hamburg Bit-Bots - MIT - ament_cmake bitbots_docs diff --git a/bitbots_motion/bitbots_splines/package.xml b/bitbots_motion/bitbots_splines/package.xml index 92abe42e3..d73d3a817 100644 --- a/bitbots_motion/bitbots_splines/package.xml +++ b/bitbots_motion/bitbots_splines/package.xml @@ -8,12 +8,12 @@ Marc Bestmann Hamburg Bit-Bots + MIT + Marc Bestmann Hamburg Bit-Bots Rhoban FC - MIT - ament_cmake std_msgs diff --git a/bitbots_msgs/CMakeLists.txt b/bitbots_msgs/CMakeLists.txt index 9fa8906a7..53ccf0b2b 100644 --- a/bitbots_msgs/CMakeLists.txt +++ b/bitbots_msgs/CMakeLists.txt @@ -49,6 +49,7 @@ rosidl_generate_interfaces( "srv/SetAccelerometerCalibrationThreshold.srv" "srv/SetObjectPose.srv" "srv/SetObjectPosition.srv" + "srv/SetTeachingMode.srv" DEPENDENCIES action_msgs geometry_msgs diff --git a/bitbots_msgs/srv/SetTeachingMode.srv b/bitbots_msgs/srv/SetTeachingMode.srv new file mode 100644 index 000000000..85bfb53f1 --- /dev/null +++ b/bitbots_msgs/srv/SetTeachingMode.srv @@ -0,0 +1,10 @@ +int8 OFF = 0 +int8 HOLD = 1 +int8 TEACH = 2 +int8 SWITCH = 3 # Activates the taching mode if it is off otherwise it cycles between HOLD and TEACH. + +int8 state + +--- + +bool success diff --git a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/__init__.py b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/__init__.py index 1264bcfb3..47ca48a40 100644 --- a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/__init__.py +++ b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/__init__.py @@ -8,6 +8,6 @@ class AbstractLocalizationActionElement(AbstractActionElement): AbstractLocalizationActionElement with a localization blackboard as its blackboard """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: LocalizationBlackboard diff --git a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/initialize.py b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/initialize.py index 8b97e9a0e..78afb5edb 100644 --- a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/initialize.py +++ b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/initialize.py @@ -7,7 +7,7 @@ class AbstractInitialize(AbstractLocalizationActionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) # Save the type the instance that called super, so we know what was the last init mode @@ -111,7 +111,7 @@ class RedoLastInit(AbstractInitialize): Executes an action with the type of the last action """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) # Creates an instance of the last init action self.sub_action: AbstractInitialize = self.blackboard.last_init_action_type(blackboard, dsd, parameters) diff --git a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/stop.py b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/stop.py index 8945a109e..50af429ba 100644 --- a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/stop.py +++ b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/actions/stop.py @@ -4,7 +4,7 @@ class AbstractLocalizationPause(AbstractLocalizationActionElement): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters=parameters) def set_paused(self, paused): @@ -15,7 +15,7 @@ def set_paused(self, paused): class LocalizationStop(AbstractLocalizationPause): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters=parameters) def perform(self, reevaluate=False): @@ -25,7 +25,7 @@ def perform(self, reevaluate=False): class LocalizationStart(AbstractLocalizationPause): - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters=parameters) def perform(self, reevaluate=False): diff --git a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/__init__.py b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/__init__.py index 464b875df..99892af44 100644 --- a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/__init__.py +++ b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/__init__.py @@ -8,6 +8,6 @@ class AbstractLocalizationDecisionElement(AbstractDecisionElement): AbstractLocalizationDecisionElement with a localization blackboard as its blackboard """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.blackboard: LocalizationBlackboard diff --git a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/fall.py b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/fall.py index bfe81e3be..4e1406e46 100644 --- a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/fall.py +++ b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/fall.py @@ -7,7 +7,7 @@ class GettingUpState(AbstractLocalizationDecisionElement): Checks if the robot falls, stands up or is freshly standing """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.get_up_states = [RobotControlState.FALLING, RobotControlState.FALLEN, RobotControlState.GETTING_UP] diff --git a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/game_state.py b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/game_state.py index 23b2f9432..779a5ad35 100644 --- a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/game_state.py +++ b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/game_state.py @@ -95,7 +95,7 @@ class SecondaryStateTeamDecider(AbstractLocalizationDecisionElement): Decides if our team or the other team is allowed to execute the secondary state. """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd) self.team_id = self.blackboard.gamestate.get_team_id() @@ -141,7 +141,7 @@ class InitialToReady(AbstractLocalizationDecisionElement): Decides if the ready phase was just started coming from initial """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.previous_game_state_number = self.blackboard.gamestate.get_gamestate() diff --git a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/walk.py b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/walk.py index 9277445b4..acc3b05bf 100644 --- a/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/walk.py +++ b/bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_dsd/decisions/walk.py @@ -10,7 +10,7 @@ class WalkedSinceLastInit(AbstractLocalizationDecisionElement): Decides if we walked significantly since our last initialization """ - def __init__(self, blackboard, dsd, parameters=None): + def __init__(self, blackboard, dsd, parameters): super().__init__(blackboard, dsd, parameters) self.distance_threshold = parameters.get("dist", 0.5) diff --git a/bitbots_navigation/bitbots_localization_handler/package.xml b/bitbots_navigation/bitbots_localization_handler/package.xml index a8601972a..ce4e2395c 100644 --- a/bitbots_navigation/bitbots_localization_handler/package.xml +++ b/bitbots_navigation/bitbots_localization_handler/package.xml @@ -4,14 +4,16 @@ bitbots_localization_handler 1.0.0 - The bitbots_localization_handler uses high level information to improve + The bitbots_localization_handler uses high level information to improve the localization, e.g. by initializing at the start of the game or after falling down. Florian Vahl Hamburg Bit-Bots - Hamburg Bit-Bots + MIT + Hamburg Bit-Bots + bitbots_blackboard bitbots_localization bitbots_msgs @@ -24,7 +26,7 @@ std_msgs tf2_geometry_msgs tf2_ros - + diff --git a/humanoid_league_misc/humanoid_league_team_communication/CMakeLists.txt b/bitbots_team_communication/CMakeLists.txt similarity index 84% rename from humanoid_league_misc/humanoid_league_team_communication/CMakeLists.txt rename to bitbots_team_communication/CMakeLists.txt index d4b7de9e7..d6965a5bd 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/CMakeLists.txt +++ b/bitbots_team_communication/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -project(humanoid_league_team_communication) +project(bitbots_team_communication) find_package(ament_cmake REQUIRED) find_package(ament_cmake_python REQUIRED) @@ -16,18 +16,17 @@ find_package(bitbots_docs REQUIRED) find_package(Protobuf REQUIRED) protobuf_generate_python( - PROTO_PY - humanoid_league_team_communication/RobocupProtocol/robocup_extension.proto) + PROTO_PY bitbots_team_communication/RobocupProtocol/robocup_extension.proto) add_custom_target( - humanoid_league_team_communication ALL + bitbots_team_communication ALL DEPENDS ${PROTO_PY} COMMENT "Generating protobuf") add_custom_command( - TARGET humanoid_league_team_communication + TARGET bitbots_team_communication POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${PROTO_PY} - ${CMAKE_SOURCE_DIR}/humanoid_league_team_communication + ${CMAKE_SOURCE_DIR}/bitbots_team_communication COMMENT "Copying protobuf to source dir") enable_bitbots_docs() diff --git a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/__init__.py b/bitbots_team_communication/bitbots_team_communication/__init__.py similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/__init__.py rename to bitbots_team_communication/bitbots_team_communication/__init__.py diff --git a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/humanoid_league_team_communication.py b/bitbots_team_communication/bitbots_team_communication/bitbots_team_communication.py similarity index 94% rename from humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/humanoid_league_team_communication.py rename to bitbots_team_communication/bitbots_team_communication/bitbots_team_communication.py index 16b776f74..8a185f89e 100755 --- a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/humanoid_league_team_communication.py +++ b/bitbots_team_communication/bitbots_team_communication/bitbots_team_communication.py @@ -21,19 +21,19 @@ from tf2_geometry_msgs import PointStamped, PoseStamped from tf2_ros import Buffer, TransformException -import humanoid_league_team_communication.robocup_extension_pb2 as Proto # noqa: N812 +import bitbots_team_communication.robocup_extension_pb2 as Proto # noqa: N812 from bitbots_msgs.msg import Strategy, TeamData -from humanoid_league_team_communication.communication import SocketCommunication -from humanoid_league_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor +from bitbots_team_communication.communication import SocketCommunication +from bitbots_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor -class HumanoidLeagueTeamCommunication: +class TeamCommunication: def __init__(self): - self._package_path = get_package_share_directory("humanoid_league_team_communication") + self._package_path = get_package_share_directory("bitbots_team_communication") self.node = Node("team_comm", automatically_declare_parameters_from_overrides=True) self.logger = self.node.get_logger() - self.logger.info("Initializing humanoid_league_team_communication...") + self.logger.info("Initializing bitbots_team_communication...") params_blackboard = get_parameters_from_other_node( self.node, "parameter_blackboard", ["bot_id", "team_id", "team_color"] ) @@ -240,7 +240,7 @@ def get_current_time(self) -> Time: def main(): rclpy.init(args=None) - HumanoidLeagueTeamCommunication() + TeamCommunication() if __name__ == "__main__": diff --git a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/communication.py b/bitbots_team_communication/bitbots_team_communication/communication.py similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/communication.py rename to bitbots_team_communication/bitbots_team_communication/communication.py diff --git a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/__init__.py b/bitbots_team_communication/bitbots_team_communication/converter/__init__.py similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/__init__.py rename to bitbots_team_communication/bitbots_team_communication/converter/__init__.py diff --git a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/message_to_team_data_converter.py b/bitbots_team_communication/bitbots_team_communication/converter/message_to_team_data_converter.py similarity index 95% rename from humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/message_to_team_data_converter.py rename to bitbots_team_communication/bitbots_team_communication/converter/message_to_team_data_converter.py index 8da775b91..1dd4b0fe2 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/message_to_team_data_converter.py +++ b/bitbots_team_communication/bitbots_team_communication/converter/message_to_team_data_converter.py @@ -4,7 +4,7 @@ from geometry_msgs.msg import PoseWithCovariance from numpy import double -import humanoid_league_team_communication.robocup_extension_pb2 as Proto # noqa: N812 +import bitbots_team_communication.robocup_extension_pb2 as Proto # noqa: N812 from bitbots_msgs.msg import RobotRelative, RobotRelativeArray, TeamData @@ -22,8 +22,6 @@ def convert(self, message: Proto.Message, team_data: TeamData) -> TeamData: team_data.robot_position = self.convert_robot_pose(message.current_pose) team_data.ball_absolute = self.convert_ball_pose(message.ball) - # @TODO: change TeamData field/type to robots - # see: https://github.com/bit-bots/humanoid_league_misc/issues/125 team_data.robots = self.convert_robots(message.others, message.other_robot_confidence) team_data.robots.header = team_data.header diff --git a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/robocup_protocol_converter.py b/bitbots_team_communication/bitbots_team_communication/converter/robocup_protocol_converter.py similarity index 91% rename from humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/robocup_protocol_converter.py rename to bitbots_team_communication/bitbots_team_communication/converter/robocup_protocol_converter.py index 52b6e8c16..68cb2eb3d 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/robocup_protocol_converter.py +++ b/bitbots_team_communication/bitbots_team_communication/converter/robocup_protocol_converter.py @@ -2,10 +2,10 @@ from soccer_vision_attribute_msgs.msg import Robot as RobotAttributes -import humanoid_league_team_communication.robocup_extension_pb2 as Proto # noqa: N812 +import bitbots_team_communication.robocup_extension_pb2 as Proto # noqa: N812 from bitbots_msgs.msg import RobotRelative, Strategy -from humanoid_league_team_communication.converter.message_to_team_data_converter import MessageToTeamDataConverter -from humanoid_league_team_communication.converter.state_to_message_converter import StateToMessageConverter +from bitbots_team_communication.converter.message_to_team_data_converter import MessageToTeamDataConverter +from bitbots_team_communication.converter.state_to_message_converter import StateToMessageConverter class TeamColor(IntEnum): diff --git a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/state_to_message_converter.py b/bitbots_team_communication/bitbots_team_communication/converter/state_to_message_converter.py similarity index 99% rename from humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/state_to_message_converter.py rename to bitbots_team_communication/bitbots_team_communication/converter/state_to_message_converter.py index 5c6e2f75b..056c73dd7 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/converter/state_to_message_converter.py +++ b/bitbots_team_communication/bitbots_team_communication/converter/state_to_message_converter.py @@ -8,7 +8,7 @@ from rclpy.time import Time from soccer_vision_3d_msgs.msg import Robot, RobotArray -import humanoid_league_team_communication.robocup_extension_pb2 as Proto # noqa: N812 +import bitbots_team_communication.robocup_extension_pb2 as Proto # noqa: N812 from bitbots_msgs.msg import Strategy diff --git a/humanoid_league_misc/humanoid_league_team_communication/config/team_comm_marker.rviz b/bitbots_team_communication/config/team_comm_marker.rviz similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/config/team_comm_marker.rviz rename to bitbots_team_communication/config/team_comm_marker.rviz diff --git a/humanoid_league_misc/humanoid_league_team_communication/config/team_communication_config.yaml b/bitbots_team_communication/config/team_communication_config.yaml similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/config/team_communication_config.yaml rename to bitbots_team_communication/config/team_communication_config.yaml diff --git a/humanoid_league_misc/humanoid_league_team_communication/docs/_static/logo.png b/bitbots_team_communication/docs/_static/logo.png similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/docs/_static/logo.png rename to bitbots_team_communication/docs/_static/logo.png diff --git a/humanoid_league_misc/humanoid_league_team_communication/docs/conf.py b/bitbots_team_communication/docs/conf.py similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/docs/conf.py rename to bitbots_team_communication/docs/conf.py diff --git a/humanoid_league_misc/humanoid_league_team_communication/docs/index.rst b/bitbots_team_communication/docs/index.rst similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/docs/index.rst rename to bitbots_team_communication/docs/index.rst diff --git a/humanoid_league_misc/humanoid_league_team_communication/launch/team_comm.launch b/bitbots_team_communication/launch/team_comm.launch similarity index 54% rename from humanoid_league_misc/humanoid_league_team_communication/launch/team_comm.launch rename to bitbots_team_communication/launch/team_comm.launch index c6ff979c4..2bb22f9c4 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/launch/team_comm.launch +++ b/bitbots_team_communication/launch/team_comm.launch @@ -3,8 +3,8 @@ - - + + diff --git a/humanoid_league_misc/humanoid_league_team_communication/launch/team_comm_standalone.launch b/bitbots_team_communication/launch/team_comm_standalone.launch similarity index 64% rename from humanoid_league_misc/humanoid_league_team_communication/launch/team_comm_standalone.launch rename to bitbots_team_communication/launch/team_comm_standalone.launch index 1f30efbf7..b3a092a71 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/launch/team_comm_standalone.launch +++ b/bitbots_team_communication/launch/team_comm_standalone.launch @@ -6,8 +6,8 @@ - - + + diff --git a/bitbots_team_communication/launch/team_comm_test_marker.launch b/bitbots_team_communication/launch/team_comm_test_marker.launch new file mode 100644 index 000000000..d688e7034 --- /dev/null +++ b/bitbots_team_communication/launch/team_comm_test_marker.launch @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/humanoid_league_misc/humanoid_league_team_communication/package.xml b/bitbots_team_communication/package.xml similarity index 89% rename from humanoid_league_misc/humanoid_league_team_communication/package.xml rename to bitbots_team_communication/package.xml index 40388bf6d..fd53d8ad5 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/package.xml +++ b/bitbots_team_communication/package.xml @@ -1,21 +1,21 @@ - humanoid_league_team_communication + bitbots_team_communication 3.0.0 - The humanoid_league_team_communication package provides a ROS wrapper for the Protobuf RoboCup protocol. + The bitbots_team_communication package provides a ROS wrapper for the Protobuf RoboCup protocol. This is the standard communication protocol developed by the NUbots. Joern Griepenburg Marc Bestmann Hamburg Bit-Bots + MIT + Tanja Flemming Timon Engelke Jan Gutsche - MIT - ament_cmake bitbots_docs diff --git a/humanoid_league_misc/humanoid_league_team_communication/scripts/show_team_comm.py b/bitbots_team_communication/scripts/show_team_comm.py similarity index 98% rename from humanoid_league_misc/humanoid_league_team_communication/scripts/show_team_comm.py rename to bitbots_team_communication/scripts/show_team_comm.py index 80c96c7d4..14e137f6b 100755 --- a/humanoid_league_misc/humanoid_league_team_communication/scripts/show_team_comm.py +++ b/bitbots_team_communication/scripts/show_team_comm.py @@ -105,7 +105,7 @@ def generate_string(self, data: TeamData): lines.append(f" y: {round(data.ball_absolute.pose.position.y, 3):<4}") lines.append(f" x_cov: {round(data.ball_absolute.covariance[0], 3):<4}") lines.append(f" y_cov: {round(data.ball_absolute.covariance[7], 3):<4}") - lines.append(f"Obstacles found: {len(data.obstacles.obstacles)}") + lines.append(f"Robots found: {len(data.robots.robots)}") lines.append("Strategy") lines.append(f" Role: {self.roles[data.strategy.role]:<9}") lines.append(f" Action: {self.actions[data.strategy.action]:<15}") diff --git a/bitbots_team_communication/scripts/team_comm.py b/bitbots_team_communication/scripts/team_comm.py new file mode 100755 index 000000000..f1376f6cd --- /dev/null +++ b/bitbots_team_communication/scripts/team_comm.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 + +import sys + +from bitbots_team_communication.bitbots_team_communication import main + +sys.exit(main()) diff --git a/humanoid_league_misc/humanoid_league_team_communication/scripts/team_comm_test_marker.py b/bitbots_team_communication/scripts/team_comm_test_marker.py similarity index 98% rename from humanoid_league_misc/humanoid_league_team_communication/scripts/team_comm_test_marker.py rename to bitbots_team_communication/scripts/team_comm_test_marker.py index 10c25392f..5461596f9 100755 --- a/humanoid_league_misc/humanoid_league_team_communication/scripts/team_comm_test_marker.py +++ b/bitbots_team_communication/scripts/team_comm_test_marker.py @@ -279,9 +279,7 @@ def publish(self): ] msg.ball_absolute = ball_absolute - cartesian_distance = math.sqrt( - ball_relative.pose.position.x**2 + ball_relative.pose.position.y**2 - ) + cartesian_distance = math.sqrt(ball_relative.pose.position.x**2 + ball_relative.pose.position.y**2) msg.time_to_position_at_ball = cartesian_distance / ROBOT_SPEED except tf2_ros.LookupException as ex: self.get_logger().warn(self.get_name() + ": " + str(ex), throttle_duration_sec=10.0) diff --git a/humanoid_league_misc/humanoid_league_team_communication/scripts/test_team_comm.py b/bitbots_team_communication/scripts/test_team_comm.py similarity index 93% rename from humanoid_league_misc/humanoid_league_team_communication/scripts/test_team_comm.py rename to bitbots_team_communication/scripts/test_team_comm.py index 53d37c014..d392b3309 100755 --- a/humanoid_league_misc/humanoid_league_team_communication/scripts/test_team_comm.py +++ b/bitbots_team_communication/scripts/test_team_comm.py @@ -7,6 +7,7 @@ import rclpy from game_controller_hl_interfaces.msg import GameState from geometry_msgs.msg import Point, Pose, PoseWithCovariance, PoseWithCovarianceStamped, Quaternion, TransformStamped +from rclpy.qos import QoSDurabilityPolicy, QoSProfile from soccer_vision_3d_msgs.msg import Robot, RobotArray from soccer_vision_attribute_msgs.msg import Robot as RobotAttributes from tf2_ros import StaticTransformBroadcaster @@ -51,7 +52,9 @@ def base_footprint_transform(): node = rclpy.create_node("test_team_comm") tf_static_broadcaster = StaticTransformBroadcaster(node) - gamestate_pub = node.create_publisher(GameState, "gamestate", 1) + gamestate_pub = node.create_publisher( + GameState, "gamestate", qos_profile=QoSProfile(depth=1, durability=QoSDurabilityPolicy.TRANSIENT_LOCAL) + ) strategy_pub = node.create_publisher(Strategy, "strategy", 1) ball_pub = node.create_publisher(PoseWithCovarianceStamped, "ball_position_relative_filtered", 1) position_pub = node.create_publisher(PoseWithCovarianceStamped, "pose_with_covariance", 1) diff --git a/bitbots_team_communication/scripts/tmux_testing_setup.zsh b/bitbots_team_communication/scripts/tmux_testing_setup.zsh new file mode 100755 index 000000000..877e939c8 --- /dev/null +++ b/bitbots_team_communication/scripts/tmux_testing_setup.zsh @@ -0,0 +1,37 @@ +#!/usr/bin/env zsh + +session="TeamComm" +pkg="bitbots_team_communication" + +run_tmux_session() { + session_running="$(tmux list-sessions | grep $session)" + + if [[ -z "$session_running" ]]; then + tmux new-session -d -s "$session" + + # window/pane setup + tmux rename-window -t "$session:0" "Launch" + tmux new-window -t "$session:1" -n "Test" + tmux split-window -h + + # run required launch files in order + tmux send-keys -t "$session:Launch" "rl bitbots_team_communication team_comm_standalone.launch" Enter + + # start test publisher/subscriber + tmux send-keys -t "$session:Test.left" "rr bitbots_team_communication test_team_comm.py" Enter + tmux send-keys -t "$session:Test.right" "rr bitbots_team_communication show_team_comm.py" Enter + fi + + tmux attach-session -t "$session:Test" +} + +kill_tmux_session() { + tmux kill_session "$session" +} + +trap kill_session INT + +cd "$COLCON_WS" +colcon build --symlink-install --packages-up-to "$pkg" +source install/setup.zsh +run_tmux_session diff --git a/bitbots_team_communication/setup.cfg b/bitbots_team_communication/setup.cfg new file mode 100644 index 000000000..bf74a5f51 --- /dev/null +++ b/bitbots_team_communication/setup.cfg @@ -0,0 +1,4 @@ +[develop] +script_dir=$base/lib/bitbots_team_communication +[install] +install_scripts=$base/lib/bitbots_team_communication diff --git a/humanoid_league_misc/humanoid_league_team_communication/setup.py b/bitbots_team_communication/setup.py similarity index 82% rename from humanoid_league_misc/humanoid_league_team_communication/setup.py rename to bitbots_team_communication/setup.py index c32cdd8ae..c7defe03d 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/setup.py +++ b/bitbots_team_communication/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -package_name = "humanoid_league_team_communication" +package_name = "bitbots_team_communication" setup( name=package_name, diff --git a/humanoid_league_misc/humanoid_league_team_communication/test/__init__.py b/bitbots_team_communication/test/__init__.py similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/test/__init__.py rename to bitbots_team_communication/test/__init__.py diff --git a/humanoid_league_misc/humanoid_league_team_communication/test/converter/__snapshots__/test_message_to_team_data_converter.ambr b/bitbots_team_communication/test/converter/__snapshots__/test_message_to_team_data_converter.ambr similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/test/converter/__snapshots__/test_message_to_team_data_converter.ambr rename to bitbots_team_communication/test/converter/__snapshots__/test_message_to_team_data_converter.ambr diff --git a/humanoid_league_misc/humanoid_league_team_communication/test/converter/__snapshots__/test_robocup_protocol_converter.ambr b/bitbots_team_communication/test/converter/__snapshots__/test_robocup_protocol_converter.ambr similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/test/converter/__snapshots__/test_robocup_protocol_converter.ambr rename to bitbots_team_communication/test/converter/__snapshots__/test_robocup_protocol_converter.ambr diff --git a/humanoid_league_misc/humanoid_league_team_communication/test/converter/__snapshots__/test_state_to_message_converter.ambr b/bitbots_team_communication/test/converter/__snapshots__/test_state_to_message_converter.ambr similarity index 100% rename from humanoid_league_misc/humanoid_league_team_communication/test/converter/__snapshots__/test_state_to_message_converter.ambr rename to bitbots_team_communication/test/converter/__snapshots__/test_state_to_message_converter.ambr diff --git a/humanoid_league_misc/humanoid_league_team_communication/test/converter/test_message_to_team_data_converter.py b/bitbots_team_communication/test/converter/test_message_to_team_data_converter.py similarity index 94% rename from humanoid_league_misc/humanoid_league_team_communication/test/converter/test_message_to_team_data_converter.py rename to bitbots_team_communication/test/converter/test_message_to_team_data_converter.py index 83ef9a82e..e98bedd7c 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/test/converter/test_message_to_team_data_converter.py +++ b/bitbots_team_communication/test/converter/test_message_to_team_data_converter.py @@ -1,9 +1,9 @@ -import humanoid_league_team_communication.robocup_extension_pb2 as Proto # noqa: N812 import pytest -from humanoid_league_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor from std_msgs.msg import Header +import bitbots_team_communication.robocup_extension_pb2 as Proto # noqa: N812 from bitbots_msgs.msg import RobotRelative, Strategy, TeamData +from bitbots_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor own_team_id = 1 own_team_color = TeamColor(own_team_id) diff --git a/humanoid_league_misc/humanoid_league_team_communication/test/converter/test_robocup_protocol_converter.py b/bitbots_team_communication/test/converter/test_robocup_protocol_converter.py similarity index 79% rename from humanoid_league_misc/humanoid_league_team_communication/test/converter/test_robocup_protocol_converter.py rename to bitbots_team_communication/test/converter/test_robocup_protocol_converter.py index 0734ddec6..b71aa41d6 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/test/converter/test_robocup_protocol_converter.py +++ b/bitbots_team_communication/test/converter/test_robocup_protocol_converter.py @@ -1,10 +1,11 @@ from unittest.mock import MagicMock -import humanoid_league_team_communication.robocup_extension_pb2 as Proto # noqa: N812 import pytest -from humanoid_league_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor from soccer_vision_attribute_msgs.msg import Robot as RobotAttributes +import bitbots_team_communication.robocup_extension_pb2 as Proto # noqa: N812 +from bitbots_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor + own_team_color = TeamColor.BLUE @@ -55,13 +56,9 @@ def protocol_converter() -> RobocupProtocolConverter: @pytest.fixture def to_message_mock(mocker) -> MagicMock: - return mocker.patch( - "humanoid_league_team_communication.converter.robocup_protocol_converter.StateToMessageConverter" - ) + return mocker.patch("bitbots_team_communication.converter.robocup_protocol_converter.StateToMessageConverter") @pytest.fixture def from_message_mock(mocker) -> MagicMock: - return mocker.patch( - "humanoid_league_team_communication.converter.robocup_protocol_converter.MessageToTeamDataConverter" - ) + return mocker.patch("bitbots_team_communication.converter.robocup_protocol_converter.MessageToTeamDataConverter") diff --git a/humanoid_league_misc/humanoid_league_team_communication/test/converter/test_state_to_message_converter.py b/bitbots_team_communication/test/converter/test_state_to_message_converter.py similarity index 96% rename from humanoid_league_misc/humanoid_league_team_communication/test/converter/test_state_to_message_converter.py rename to bitbots_team_communication/test/converter/test_state_to_message_converter.py index a768fa176..5fd888a4d 100644 --- a/humanoid_league_misc/humanoid_league_team_communication/test/converter/test_state_to_message_converter.py +++ b/bitbots_team_communication/test/converter/test_state_to_message_converter.py @@ -1,6 +1,5 @@ from unittest.mock import Mock -import humanoid_league_team_communication.robocup_extension_pb2 as Proto # noqa: N812 import numpy import pytest from game_controller_hl_interfaces.msg import GameState @@ -15,15 +14,16 @@ Twist, Vector3, ) -from humanoid_league_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor -from humanoid_league_team_communication.humanoid_league_team_communication import HumanoidLeagueTeamCommunication from rclpy.time import Time from soccer_vision_3d_msgs.msg import Robot, RobotArray from soccer_vision_attribute_msgs.msg import Confidence from soccer_vision_attribute_msgs.msg import Robot as RobotAttributes from std_msgs.msg import Header +import bitbots_team_communication.robocup_extension_pb2 as Proto # noqa: N812 from bitbots_msgs.msg import Strategy +from bitbots_team_communication.bitbots_team_communication import TeamCommunication +from bitbots_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor own_team_id = 1 own_team_color = TeamColor(own_team_id) @@ -305,7 +305,7 @@ def state_with_gamestate(state): @pytest.fixture def state(): - state = Mock(HumanoidLeagueTeamCommunication) + state = Mock(TeamCommunication) state.player_id = 2 state.team_id = own_team_id state.gamestate = None diff --git a/bitbots_vision/package.xml b/bitbots_vision/package.xml index df54a7765..caf1d07ff 100644 --- a/bitbots_vision/package.xml +++ b/bitbots_vision/package.xml @@ -2,6 +2,9 @@ bitbots_vision + + 1.4.1 + This is the vision ROS package of the Hamburg Bit-Bots. @@ -10,20 +13,18 @@ For further information and getting started, see the documentation of this package at our website: http://doku.bit-bots.de/package/bitbots_vision/latest/index.html - 1.4.1 - Florian Vahl Jan Gutsche Hamburg Bit-Bots + MIT + Florian Vahl Jan Gutsche Hendrik Brandt Niklas Fiedler Hamburg Bit-Bots - MIT - rosidl_default_generators rosidl_default_runtime bitbots_msgs @@ -39,7 +40,7 @@ soccer_vision_2d_msgs std_msgs vision_opencv - + python3 diff --git a/bitbots_wolfgang/wolfgang_animations/package.xml b/bitbots_wolfgang/wolfgang_animations/package.xml index 08e7feba8..4bf48f97c 100644 --- a/bitbots_wolfgang/wolfgang_animations/package.xml +++ b/bitbots_wolfgang/wolfgang_animations/package.xml @@ -7,11 +7,11 @@ Sebastian Stelter Hamburg Bit-Bots - - Sebastian Stelter MIT + Sebastian Stelter + ament_cmake bitbots_docs diff --git a/bitbots_wolfgang/wolfgang_description/package.xml b/bitbots_wolfgang/wolfgang_description/package.xml index ed9e72c55..8acfee961 100644 --- a/bitbots_wolfgang/wolfgang_description/package.xml +++ b/bitbots_wolfgang/wolfgang_description/package.xml @@ -8,13 +8,13 @@ Jasper Güldenstein Hamburg Bit-Bots + MIT + Marc Bestmann Jasper Güldenstein Hamburg Bit-Bots - MIT - ament_cmake bitbots_docs diff --git a/bitbots_wolfgang/wolfgang_moveit_config/package.xml b/bitbots_wolfgang/wolfgang_moveit_config/package.xml index c81cfcb0e..a1a33f9a1 100644 --- a/bitbots_wolfgang/wolfgang_moveit_config/package.xml +++ b/bitbots_wolfgang/wolfgang_moveit_config/package.xml @@ -7,14 +7,12 @@ An automatically generated package with all the configuration and launch files for using the wolfgang with the MoveIt! Motion Planning Framework - Marc Bestmann Marc Bestmann BSD - http://moveit.ros.org/ - https://github.com/ros-planning/moveit/issues - https://github.com/ros-planning/moveit + Marc Bestmann + ament_cmake @@ -28,8 +26,8 @@ robot_state_publisher tf2_ros xacro - - + + wolfgang_description wolfgang_description diff --git a/bitbots_wolfgang/wolfgang_pybullet_sim/package.xml b/bitbots_wolfgang/wolfgang_pybullet_sim/package.xml index 975223694..e7870fe2e 100644 --- a/bitbots_wolfgang/wolfgang_pybullet_sim/package.xml +++ b/bitbots_wolfgang/wolfgang_pybullet_sim/package.xml @@ -4,16 +4,15 @@ wolfgang_pybullet_sim 1.3.0 Simulation environment using PyBullet for Wolfgang robot. - + Marc Bestmann Hamburg Bit-Bots + MIT + Marc Bestmann Hamburg Bit-Bots - - MIT - ament_cmake sensor_msgs urdf diff --git a/bitbots_wolfgang/wolfgang_robocup_api/package.xml b/bitbots_wolfgang/wolfgang_robocup_api/package.xml index 8b5450dd5..cdc392e07 100644 --- a/bitbots_wolfgang/wolfgang_robocup_api/package.xml +++ b/bitbots_wolfgang/wolfgang_robocup_api/package.xml @@ -10,11 +10,12 @@ Hamburg Bit-Bots + MIT + Jan Gutsche Timon Engelke Hamburg Bit-Bots - MIT ament_cmake diff --git a/bitbots_wolfgang/wolfgang_robocup_api/scripts/start.sh b/bitbots_wolfgang/wolfgang_robocup_api/scripts/start.sh index d98029caa..4a2d9ba05 100755 --- a/bitbots_wolfgang/wolfgang_robocup_api/scripts/start.sh +++ b/bitbots_wolfgang/wolfgang_robocup_api/scripts/start.sh @@ -59,10 +59,10 @@ if [[ ! -d "$UTILS_DIR" ]]; then exit 2 fi -TEAM_COMM_DIR=$COLCON_PREFIX_PATH/humanoid_league_team_communication/share/humanoid_league_team_communication +TEAM_COMM_DIR=$COLCON_PREFIX_PATH/bitbots_team_communication/share/bitbots_team_communication if [[ ! -d "$TEAM_COMM_DIR" ]]; then - echo "Could not find humanoid_league_team_communication!" + echo "Could not find bitbots_team_communication!" exit 2 fi diff --git a/bitbots_wolfgang/wolfgang_webots_sim/package.xml b/bitbots_wolfgang/wolfgang_webots_sim/package.xml index bae792577..831610bd3 100644 --- a/bitbots_wolfgang/wolfgang_webots_sim/package.xml +++ b/bitbots_wolfgang/wolfgang_webots_sim/package.xml @@ -8,12 +8,11 @@ Marc Bestmann Hamburg Bit-Bots + MIT + Marc Bestmann Hamburg Bit-Bots - - MIT - ament_cmake sensor_msgs urdf @@ -28,7 +27,7 @@ python3-numpy python3-psutil std_srvs - + imu_complementary_filter xvfb diff --git a/bitbots_world_model/bitbots_ball_filter/package.xml b/bitbots_world_model/bitbots_ball_filter/package.xml index 47759d865..224e6b84a 100644 --- a/bitbots_world_model/bitbots_ball_filter/package.xml +++ b/bitbots_world_model/bitbots_ball_filter/package.xml @@ -7,11 +7,12 @@ Niklas Fiedler Hamburg Bit-Bots - Hamburg Bit-Bots - MIT + Hamburg Bit-Bots + + rosidl_default_generators rosidl_default_runtime @@ -22,7 +23,7 @@ std_msgs std_srvs tf2_geometry_msgs - + @@ -31,5 +32,5 @@ ament_python - + diff --git a/humanoid_league_misc/humanoid_league_speaker/README.md b/humanoid_league_misc/humanoid_league_speaker/README.md deleted file mode 100644 index 757a78a97..000000000 --- a/humanoid_league_misc/humanoid_league_speaker/README.md +++ /dev/null @@ -1,7 +0,0 @@ -If you get an import error from the following line: - from humanoid_league_speaker.cfg import speaker_paramsConfig -Do from catkin directory: - cp src/humanoid_league_misc/humanoid_league_speaker/cfg/speaker_paramsConfig.cfg devel/lib/python2.7/dist-packages/humanoid_league_speaker/cfg -And rebuild. - -I don't know why this problem exists. diff --git a/humanoid_league_misc/humanoid_league_speaker/launch/speaker.launch b/humanoid_league_misc/humanoid_league_speaker/launch/speaker.launch deleted file mode 100644 index e5c792088..000000000 --- a/humanoid_league_misc/humanoid_league_speaker/launch/speaker.launch +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/humanoid_league_misc/humanoid_league_speaker/setup.cfg b/humanoid_league_misc/humanoid_league_speaker/setup.cfg deleted file mode 100644 index 5ff8ed032..000000000 --- a/humanoid_league_misc/humanoid_league_speaker/setup.cfg +++ /dev/null @@ -1,4 +0,0 @@ -[develop] -script_dir=$base/lib/humanoid_league_speaker -[install] -install_scripts=$base/lib/humanoid_league_speaker diff --git a/humanoid_league_misc/humanoid_league_team_communication/.gitignore b/humanoid_league_misc/humanoid_league_team_communication/.gitignore deleted file mode 100644 index c1da6f902..000000000 --- a/humanoid_league_misc/humanoid_league_team_communication/.gitignore +++ /dev/null @@ -1 +0,0 @@ -humanoid_league_team_communication/robocup_extension_pb2.py diff --git a/humanoid_league_misc/humanoid_league_team_communication/launch/team_comm_test_marker.launch b/humanoid_league_misc/humanoid_league_team_communication/launch/team_comm_test_marker.launch deleted file mode 100644 index 34c76143b..000000000 --- a/humanoid_league_misc/humanoid_league_team_communication/launch/team_comm_test_marker.launch +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/humanoid_league_misc/humanoid_league_team_communication/scripts/team_comm.py b/humanoid_league_misc/humanoid_league_team_communication/scripts/team_comm.py deleted file mode 100755 index e926827a6..000000000 --- a/humanoid_league_misc/humanoid_league_team_communication/scripts/team_comm.py +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env python3 - -import sys - -from humanoid_league_team_communication.humanoid_league_team_communication import main - -sys.exit(main()) diff --git a/humanoid_league_misc/humanoid_league_team_communication/scripts/tmux_testing_setup.zsh b/humanoid_league_misc/humanoid_league_team_communication/scripts/tmux_testing_setup.zsh deleted file mode 100755 index a1725c0dc..000000000 --- a/humanoid_league_misc/humanoid_league_team_communication/scripts/tmux_testing_setup.zsh +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env zsh - -session="TeamComm" -pkg="humanoid_league_team_communication" - -run_tmux_session() { - session_running="$(tmux list-sessions | grep $session)" - - if [[ -z "$session_running" ]]; then - tmux new-session -d -s "$session" - - # window/pane setup - tmux rename-window -t "$session:1" "Launch" - tmux new-window -t "$session:2" -n "Test" - tmux split-window -h - tmux new-window -t "$session:3" -n "Base" - - # run required launch files in order - tmux send-keys -t "$session:Base" "rl bitbots_utils base.launch" Enter - tmux send-keys -t "$session:Launch" "rl humanoid_league_team_communication team_comm.launch" Enter - - # start test publisher/subscriber - tmux send-keys -t "$session:Test.top" "rr humanoid_league_team_communication test_team_comm.py" Enter - tmux send-keys -t "$session:Test.bottom" "rr humanoid_league_team_communication show_team_comm.py" Enter - fi - - tmux attach-session -t "$session:Test" -} - -kill_tmux_session() { - tmux kill_session "$session" -} - -trap kill_session INT - -cd "$COLCON_WS" -colcon build --symlink-install --packages-up-to "$pkg" -run_tmux_session diff --git a/humanoid_league_misc/humanoid_league_team_communication/setup.cfg b/humanoid_league_misc/humanoid_league_team_communication/setup.cfg deleted file mode 100644 index aed8a1a75..000000000 --- a/humanoid_league_misc/humanoid_league_team_communication/setup.cfg +++ /dev/null @@ -1,4 +0,0 @@ -[develop] -script_dir=$base/lib/humanoid_league_team_communication -[install] -install_scripts=$base/lib/humanoid_league_team_communication diff --git a/requirements/dev.txt b/requirements/dev.txt index 921427219..d4d4939b8 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -1,10 +1,11 @@ # This file is used by pip to install dependencies for the development environment -r robot.txt # Include robot.txt dependencies -black # Auto-formatting for python exhale # Necessary for rst rendering fabric # Manages SSH sessions for the deploy tool +paramiko # Necessary for fabric pre-commit # Installs and runs pre-commit hooks for git rich # Rich terminal output ruff # Python linting syrupy # Python snapshot testing pytest-mock # Mocking for pytest +pytest<8.1 # Keep version smaller than 8.1 until https://github.com/ros2/launch/pull/766 is released diff --git a/scripts/README.md b/scripts/README.md index 7ee054b60..11f3eca30 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -18,31 +18,31 @@ Five different tasks can be performed: - Get help and list all arguments: - ```bash + ```shell ./deploy_robots.py --help ``` - Default usage: Run all tasks on the `nuc1` host: - ```bash + ```shell ./deploy_robots.py nuc1 ``` - Make all robots ready for games. This also launch the teamplayer software on all robots: - ```bash + ```shell ./deploy_robots.py ALL ``` - Only run the sync and build tasks on the `nuc1` and `nuc2` hosts: - ```bash + ```shell ./deploy_robots.py --sync --build nuc1 nuc2 ``` - Only build the `bitbots_utils` ROS package on the `nuc1` host: - ```bash + ```shell ./deploy_robots.py --package bitbots_utils nuc1 ``` diff --git a/scripts/deploy/deploy_robots.py b/scripts/deploy/deploy_robots.py index 76b1f7e47..faa3dcb6f 100644 --- a/scripts/deploy/deploy_robots.py +++ b/scripts/deploy/deploy_robots.py @@ -13,7 +13,15 @@ print_known_targets, print_success, ) -from deploy.tasks import AbstractTask, AbstractTaskWhichRequiresSudo, Build, Configure, Install, Launch, Sync +from deploy.tasks import ( + AbstractTask, + AbstractTaskWhichRequiresSudo, + Build, + Configure, + Install, + Launch, + Sync, +) from rich.prompt import Prompt # TODO: Install this script as a command line tool @@ -47,7 +55,7 @@ def _parse_arguments(self) -> argparse.Namespace: parser = ArgumentParserShowTargets( description="Deploy the Bit-Bots software on a robot. " "This script provides 5 tasks: sync, install, configure, build, launch. " - "By default, it runs all tasks. You can select a subset of tasks by using the corresponding flags." + "By default, it runs all tasks. You can select a subset of tasks by using the corresponding flags. " "For example, to only run the sync and build task, use the -sb." ) @@ -66,50 +74,57 @@ def _parse_arguments(self) -> argparse.Namespace: "--sync", dest="only_sync", action="store_true", - help="Only synchronize (copy) files from you to the target machine", + help="Only synchronize (copy) files from you to the target machine.", ) parser.add_argument( "-i", "--install", dest="only_install", action="store_true", - help="Only install ROS dependencies on the target", + help="Only install ROS dependencies on the targets.", ) parser.add_argument( - "-c", "--configure", dest="only_configure", action="store_true", help="Only configure the target machine" + "-c", "--configure", dest="only_configure", action="store_true", help="Only configure the target machines." ) parser.add_argument( - "-b", "--build", dest="only_build", action="store_true", help="Only build on the target machine" + "-b", "--build", dest="only_build", action="store_true", help="Only build/compile on the target machines." ) parser.add_argument( "-l", "--launch", dest="only_launch", action="store_true", - help="Only launch teamplayer software on the target", + help="Only launch teamplayer software on the targets.", ) # Optional arguments - parser.add_argument("-p", "--package", default="", help="Synchronize and build only the given ROS package") - parser.add_argument("-u", "--user", default="bitbots", help="The user to connect to the target machines with") - parser.add_argument("-w", "--workspace", default="~/colcon_ws", help="The workspace to deploy to") + parser.add_argument("-p", "--package", default="", help="Synchronize and build only the given ROS package.") parser.add_argument( "--clean", action="store_true", - help="Clean complete workspace (source and install, ...) before syncing and building", + help="Clean complete workspace (source and install, ...) before syncing and building.", ) - parser.add_argument("--clean-src", action="store_true", help="Clean source directory before syncing") + parser.add_argument("--clean-src", action="store_true", help="Clean source directory before syncing.") parser.add_argument( "--clean-build", action="store_true", - help="Clean workspace before building. If --package is given, clean only that package", + help="Clean workspace before building. If --package is given, clean only that package.", ) parser.add_argument("--connection-timeout", default=10, help="Timeout to establish SSH connections in seconds.") parser.add_argument( - "--print-bit-bot", action="store_true", default=False, help="Print our logo at script start" + "--print-bit-bot", action="store_true", default=False, help="Print our logo at script start." + ) + parser.add_argument("-v", "--verbose", action="count", default=0, help="More output.") + parser.add_argument("-q", "--quiet", action="count", default=0, help="Less output.") + parser.add_argument( + "-u", "--user", default="bitbots", help="The SSH user to connect to the target machines with" + ) + parser.add_argument( + "-w", + "--workspace", + default="~/colcon_ws", + help="Path to the workspace directory to deploy to. Defaults to '~/colcon_ws'", ) - parser.add_argument("-v", "--verbose", action="count", default=0, help="More output") - parser.add_argument("-q", "--quiet", action="count", default=0, help="Less output") args = parser.parse_args() diff --git a/scripts/deploy/known_targets.yaml b/scripts/deploy/known_targets.yaml index dc602711f..7b042d711 100644 --- a/scripts/deploy/known_targets.yaml +++ b/scripts/deploy/known_targets.yaml @@ -1,18 +1,18 @@ -nuc1: - ip: "172.20.1.11" +"172.20.1.11": + hostname: "nuc1" robot_name: "amy" -nuc2: - ip: "172.20.1.12" +"172.20.1.12": + hostname: "nuc2" robot_name: "rory" -nuc3: - ip: "172.20.1.13" +"172.20.1.13": + hostname: "nuc3" robot_name: "jack" -nuc4: - ip: "172.20.1.14" +"172.20.1.14": + hostname: "nuc4" robot_name: "donna" -nuc5: - ip: "172.20.1.15" +"172.20.1.15": + hostname: "nuc5" robot_name: "melody" -nuc6: - ip: "172.20.1.16" +"172.20.1.16": + hostname: "nuc6" robot_name: "rose" diff --git a/scripts/deploy/misc.py b/scripts/deploy/misc.py index 392bad58d..156d5ba62 100644 --- a/scripts/deploy/misc.py +++ b/scripts/deploy/misc.py @@ -6,6 +6,7 @@ import yaml from fabric import Connection, GroupResult, ThreadingGroup +from paramiko import AuthenticationException from rich import box from rich.console import Console from rich.panel import Panel @@ -103,8 +104,8 @@ def print_known_targets() -> None: known_targets = get_known_targets() table.add_row("ALL", "", "") - for hostname, values in known_targets.items(): - table.add_row(hostname, values.get("robot_name", ""), values.get("ip", "")) + for ip, values in known_targets.items(): + table.add_row(values.get("hostname", ""), values.get("robot_name", ""), ip) print_info("You can enter the following values as targets:") CONSOLE.print(table) exit(0) @@ -119,134 +120,117 @@ def get_known_targets() -> dict[str, dict[str, str]]: return KNOWN_TARGETS -class Target: - hostname: str - ip: Optional[ipaddress.IPv4Address | ipaddress.IPv6Address] - - def __init__(self, identifier: str) -> None: - """ - Target represents a robot to deploy to. - It can be initialized with a hostname, IP address or a robot name. - """ - self.hostname, self.ip = self._identify_target(identifier) - - def _identify_target(self, identifier: str) -> tuple[str, Optional[ipaddress.IPv4Address | ipaddress.IPv6Address]]: - """ - Identifies a target from an identifier. - The identifier can be a hostname, IP address or a robot name. - - :param identifier: The identifier to identify the target from. - :return: A tuple containing the hostname and the IP address of the target. - """ - print_debug(f"Identifying target from identifier: {identifier}") - - identified_target: Optional[str] = None # The hostname of the identified target - - # Iterate over the known targets - for hostname, values in KNOWN_TARGETS.items(): - print_debug(f"Checking if {identifier} is {hostname}") - - # Is the identifier a known hostname? - print_debug(f"Comparing {identifier} with {hostname}") - if hostname == identifier: - identified_target = hostname - break - - # Is the identifier a known robot name? - print_debug(f"Comparing {identifier} with {values['robot_name']}") if "robot_name" in values else None - if values.get("robot_name") == identifier: - identified_target = hostname - break - - # Is the identifier a known IP address? - identifier_ip = None - try: - print_debug(f"Checking if {identifier} is a IP address") - identifier_ip = ipaddress.ip_address(identifier) - except ValueError: - print_debug("Entered target is not a IP-address") - # We accept every IP address, but if we later find an associated hostname, we use that - identified_target = str(identifier_ip) - - if "ip" in values: - try: - known_target_ip = ipaddress.ip_address(values["ip"]) - except ValueError: - print_warn(f"Invalid IP address ('{values['ip']}') defined for known target: {hostname}") - exit(1) - - if identifier_ip is not None and identifier_ip == known_target_ip: - identified_target = hostname - break - - # If no target was identified, exit - if identified_target is None: - print_err( - f"Could not find a known target for the given identifier: {identifier}\nChoose from the known targets" - ) - print_known_targets() - exit(1) - - print_debug(f"Found {identified_target} as known target") - - identified_ip = None - if "ip" in KNOWN_TARGETS[identified_target]: - try: - identified_ip = ipaddress.ip_address(KNOWN_TARGETS[identified_target]["ip"]) - except ValueError: - print_err(f"Invalid IP address defined for known target: {identified_target}") - exit(1) - - return (identified_target, identified_ip) - - def __str__(self) -> str: - """Returns the target's hostname if available or IP address.""" - return self.hostname if self.hostname is not None else str(self.ip) - - def get_connection_identifier(self) -> str: - """Returns the target's IP address if available or the hostname.""" - return str(self.ip) if self.ip is not None else self.hostname +def _identify_ip(identifier: str) -> str | None: + """ + Identifies an IP address from an identifier. + The identifier can be a hostname, IP address or a robot name. + :param identifier: The identifier to identify the target from. + :return: IP address of the identified target. + """ + print_debug(f"Identifying IP address from identifier: '{identifier}'.") -def _parse_targets(input_targets: str) -> list[Target]: + # Is the identifier an IP address? + try: + print_debug(f"Checking if {identifier} is an IP address") + ip = ipaddress.ip_address(identifier) + print_debug(f"Identified {ip} as an IP address") + return str(ip) + except ValueError: + print_debug("Entered target is not an IP-address.") + + # It was not an IP address, so we try to find a known target + for ip, values in KNOWN_TARGETS.items(): + # Is the identifier a known hostname? + known_hostname = values.get("hostname", None) + if known_hostname: + print_debug(f"Comparing {identifier} with {known_hostname}") + if known_hostname.strip() == identifier.strip(): + print_debug(f"Identified hostname '{known_hostname}' for '{identifier}'. Using its IP {ip}.") + return str(ipaddress.ip_address(ip)) + else: + print_debug(f"Hostname '{known_hostname}' does not match identifier '{identifier}'.") + + # Is the identifier a known robot name? + known_robot_name = values.get("robot_name", None) + if known_robot_name: + print_debug(f"Comparing '{identifier}' with '{known_robot_name}'.") + if known_robot_name.strip() == identifier.strip(): + print_debug(f"Identified robot name '{known_robot_name}' for '{identifier}'. Using its IP {ip}.") + return str(ipaddress.ip_address(ip)) + else: + print_debug(f"Robot name '{known_robot_name}' does not match '{identifier}'.") + + +def _parse_targets(input_targets: str) -> list[str]: """ - Parse target input into usable Targets. + Parse target input into usable target IP addresses. - :param input_targets: The input string of targets as a comma separated string of either hostnames, robot names or IPs. 'ALL' is a valid argument and will be expanded to all known targets. - :return: List of Targets + :param input_targets: The input string of targets as a comma separated string of either hostnames, robot names or IPs. + :return: List of target IP addresses. """ - targets: list[Target] = [] + target_ips: list[str] = [] for input_target in input_targets.split(","): try: - target = Target(input_target) + target_ip = _identify_ip(input_target) except ValueError: - print_err(f"Could not determine hostname or IP from input: '{input_target}'") + print_err(f"Could not determine IP address from input: '{input_target}'") + exit(1) + if target_ip is None: + print_err(f"Could not determine IP address from input:' {input_target}'") exit(1) - targets.append(target) - return targets + target_ips.append(target_ip) + return target_ips def _get_connections_from_targets( - targets: list[Target], user: str, connection_timeout: Optional[int] = 10 + target_ips: list[str], user: str, connection_timeout: Optional[int] = 10 ) -> ThreadingGroup: """ - Get connections to the given Targets using the 'bitbots' username. + Get connections to the given target IP addresses using the given username. - :param targets: The Targets to connect to + :param target_ips: The target IP addresses to connect to :param user: The username to connect with :param connection_timeout: Timeout for establishing the connection :return: The connections """ - hosts: list[str] = [target.get_connection_identifier() for target in targets] - try: - connections = ThreadingGroup(*hosts, user=user, connect_timeout=connection_timeout) - for connection in connections: + + def _concat_exception_args(e: Exception) -> str: + """Concatenate all arguments of an exception into a string.""" + reason = "" + for arg in e.args: + if arg: + reason += f"{arg} " + return reason + + connections = ThreadingGroup(*target_ips, user=user, connect_timeout=connection_timeout) + failures: list[tuple[Connection, str]] = [] # List of tuples of failed connections and their error message + for connection in connections: + try: print_debug(f"Connecting to {connection.host}...") connection.open() print_debug(f"Connected to {connection.host}...") - except Exception as e: - print_err(f"Could not establish all required connections: {hosts}") - print_debug(e) + print_debug(f"Getting hostname of {connection.host}...") + hostname: str = connection.run("hostname", hide=hide_output()).stdout.strip() + print_debug(f"Got hostname of {connection.host}: {hostname}. Setting is as original hostname.") + connection.original_host = hostname + except AuthenticationException as e: + failures.append( + ( + connection, + _concat_exception_args(e) + + f"Did you add your SSH key to the target? Run '[bold blue]ssh-copy-id {user}@{connection.host}[/bold blue]' manually to do so.", + ) + ) + except Exception as e: + failures.append((connection, _concat_exception_args(e))) + if failures: + print_err("Could not connect to the following hosts:") + failure_table = Table(style="bold red", box=box.HEAVY) + failure_table.add_column("Host") + failure_table.add_column("Reason") + [failure_table.add_row(connection.host, reason) for connection, reason in failures] + CONSOLE.print(failure_table) exit(1) return connections @@ -260,11 +244,13 @@ def _get_connections_from_all_known_targets(user: str, connection_timeout: Optio :param connection_timeout: Timeout for establishing the connection :return: The connections """ - # Get hosts from all known targets - hosts: list[str] = [Target(hostname).get_connection_identifier() for hostname in KNOWN_TARGETS.keys()] + # Get all known target IP addresses + target_ips: list[str] = list(KNOWN_TARGETS.keys()) # Create connections - connections: list[Connection] = [Connection(host, user=user, connect_timeout=connection_timeout) for host in hosts] + connections: list[Connection] = [ + Connection(host, user=user, connect_timeout=connection_timeout) for host in target_ips + ] # Connect to all hosts open_connections: list[Connection] = [] @@ -296,11 +282,11 @@ def get_connections_from_targets( :return: The connections to the targets """ if input_targets == "ALL": - print_info(f"Connecting to all known Targets: {KNOWN_TARGETS.keys()}") + print_info(f"Connecting to all known targets: {KNOWN_TARGETS.keys()}") return _get_connections_from_all_known_targets(user=user, connection_timeout=connection_timeout) return _get_connections_from_targets( - targets=_parse_targets(input_targets), user=user, connection_timeout=connection_timeout + target_ips=_parse_targets(input_targets), user=user, connection_timeout=connection_timeout ) diff --git a/scripts/deploy/tasks/abstract_task.py b/scripts/deploy/tasks/abstract_task.py index 5aefcd3bd..8e584c1ec 100644 --- a/scripts/deploy/tasks/abstract_task.py +++ b/scripts/deploy/tasks/abstract_task.py @@ -43,7 +43,7 @@ def _results_hosts(self, results) -> list[str]: :param results: The results of the task. :return: The list of hosts that have results. """ - return [connection.host for connection in results.keys()] + return [connection.original_host for connection in results.keys()] def _succeeded_hosts(self, results: GroupResult) -> list[str]: """ diff --git a/scripts/deploy/tasks/install.py b/scripts/deploy/tasks/install.py index 24ded836c..b5226801d 100644 --- a/scripts/deploy/tasks/install.py +++ b/scripts/deploy/tasks/install.py @@ -13,15 +13,12 @@ def __init__(self, remote_workspace: str) -> None: """ Task to install and update all dependencies. - :param remote_workspace: Path to the remote workspace to run rosdep in + :param remote_workspace: Path to the remote workspace """ super().__init__() self._remote_workspace = remote_workspace - # TODO: also install pip upgrades - # TODO: sudo apt update && sudo apt upgrade -y - def _run(self, connections: Group) -> GroupResult: """ Install and update all dependencies, if internet is available. @@ -30,13 +27,24 @@ def _run(self, connections: Group) -> GroupResult: :return: The results of the task. """ internet_available_results = self._internet_available_on_target(connections) - if not internet_available_results.succeeded: return internet_available_results - # Some hosts have an internet connection, install rosdeps - install_results = self._install_rosdeps(get_connections_from_succeeded(internet_available_results)) - return install_results + # Some hosts have an internet connection, make updates and installs + apt_upgrade_results = self._apt_upgrade(get_connections_from_succeeded(internet_available_results)) + if not apt_upgrade_results.succeeded: + return apt_upgrade_results + + basler_install_results = self._install_basler(get_connections_from_succeeded(apt_upgrade_results)) + if not basler_install_results.succeeded: + return basler_install_results + + rosdep_results = self._install_rosdeps(get_connections_from_succeeded(basler_install_results)) + if not rosdep_results.succeeded: + return rosdep_results + + pip_upgrade_results = self._pip_upgrade(get_connections_from_succeeded(rosdep_results)) + return pip_upgrade_results def _internet_available_on_target(self, connections: Group) -> GroupResult: """ @@ -60,6 +68,56 @@ def _internet_available_on_target(self, connections: Group) -> GroupResult: results = e.result return results + def _apt_upgrade(self, connections: Group) -> GroupResult: + """ + Upgrade all apt packages on the target. + Runs apt update and apt upgrade -y. + + :param connections: The connections to remote servers. + :return: Results, with success if the upgrade succeeded on the target + """ + print_debug("Updating apt") + + cmd = "apt update" + print_debug(f"Calling {cmd}") + try: + update_results = connections.sudo(cmd, hide=hide_output(), password=self._sudo_password) + print_debug(f"Updated apt on the following hosts: {self._succeeded_hosts(update_results)}") + except GroupException as e: + print_err(f"Failed to update apt on the following hosts: {self._failed_hosts(e.result)}") + update_results = e.result + + print_debug("Upgrading apt packages") + + cmd = "apt upgrade -y" + print_debug(f"Calling {cmd}") + try: + upgrade_results = connections.sudo(cmd, hide=hide_output(), password=self._sudo_password) + print_debug(f"Upgraded apt packages on the following hosts: {self._succeeded_hosts(upgrade_results)}") + except GroupException as e: + print_err(f"Failed to upgrade apt packages on the following hosts: {self._failed_hosts(e.result)}") + upgrade_results = e.result + return update_results + + def _install_basler(self, connections: Group) -> GroupResult: + """ + Installs the basler camera drivers on the targets. + + :param connections: The connections to remote servers. + :return: Results, with success if the install succeeded on the target + """ + print_debug("Installing basler drivers") + + cmd = f"{self._remote_workspace}/src/scripts/make_basler.sh --ci" + print_debug(f"Calling {cmd}") + try: + install_results = connections.sudo(cmd, hide=hide_output(), password=self._sudo_password) + print_debug(f"Installed basler drivers on the following hosts: {self._succeeded_hosts(install_results)}") + except GroupException as e: + print_err(f"Failed to install basler drivers on the following hosts: {self._failed_hosts(e.result)}") + install_results = e.result + return install_results + def _install_rosdeps(self, connections: Group) -> GroupResult: """ Install ROS dependencies. @@ -71,12 +129,12 @@ def _install_rosdeps(self, connections: Group) -> GroupResult: The "sudo" functionality provided by fabric is not able to autofill in this case. :param connections: The connections to remote servers. - :return: Results, with success if the Target has an internet connection + :return: Results, with success if the install commands succeeded on the target """ remote_src_path = os.path.join(self._remote_workspace, "src") print_debug(f"Gathering rosdep install commands in {remote_src_path}") - cmd = f"rosdep install --simulate --default-yes --ignore-src --from-paths {remote_src_path}" + cmd = f"rosdep update && rosdep install --simulate --default-yes --ignore-src --from-paths {remote_src_path}" print_debug(f"Calling {cmd}") try: gather_results = connections.run(cmd, hide=hide_output()) @@ -117,8 +175,6 @@ def _install_commands_on_single_host(connection: Connection, result: Result) -> # Define command prefixes to search for apt_command_prefix = "sudo -H apt-get install -y " apt_packages: list[str] = [] - # pip_command_prefix = "" # TODO what is it? - # pip_packages: list[str] = [] install_result: Optional[ Result @@ -165,3 +221,22 @@ def _install_commands_on_single_host(connection: Connection, result: Result) -> installs_results.succeeded[key] = value return installs_results + + def _pip_upgrade(self, connections: Group) -> GroupResult: + """ + Install and upgrade all pip robot requirements on the target. + + :param connections: The connections to remote servers. + :return: Results, with success if the upgrade succeeded on the target + """ + print_debug("Upgrading pip packages") + + cmd = f"pip3 install --upgrade -r {self._remote_workspace}/src/requirements/robot.txt" + print_debug(f"Calling {cmd}") + try: + upgrade_results = connections.run(cmd, hide=hide_output()) + print_debug(f"Upgraded pip packages on the following hosts: {self._succeeded_hosts(upgrade_results)}") + except GroupException as e: + print_err(f"Failed to upgrade pip packages on the following hosts: {self._failed_hosts(e.result)}") + upgrade_results = e.result + return upgrade_results diff --git a/scripts/deploy/tasks/sync.py b/scripts/deploy/tasks/sync.py index 128902241..f38a49885 100644 --- a/scripts/deploy/tasks/sync.py +++ b/scripts/deploy/tasks/sync.py @@ -207,6 +207,8 @@ def _sync_single(connection: Connection) -> Optional[Result]: "--checksum", "--archive", "--delete", + "-e", + '"ssh -o StrictHostKeyChecking=no"', ] if not be_quiet(): cmd.append("--verbose") diff --git a/scripts/make_basler.sh b/scripts/make_basler.sh index e4d7dcaad..acd6e9735 100755 --- a/scripts/make_basler.sh +++ b/scripts/make_basler.sh @@ -1,6 +1,6 @@ -#!/bin/bash +#!/bin/bash -# You need to fill out a form to download the pylon driver. +# You need to fill out a form to download the pylon driver. # The pylon driver can be found in the download section of the following link: # https://www.baslerweb.com/en/downloads/software-downloads/ # Go to the download button and copy the link address. @@ -14,9 +14,10 @@ BLAZE_VERSION="1.5.0" # Check let the user confirm that they read the license agreement on the basler website and agree with it. echo "You need to confirm that you read the license agreements for pylon $PYLON_VERSION and the blaze supplementary package $BLAZE_VERSION on the basler download page (https://www.baslerweb.com/en/downloads/software-downloads/) and agree with it." -# Check -ci flag for automatic confirmation in the ci -if [[ $1 == "-ci" ]]; then +# Check --ci flag for automatic confirmation in the ci +if [[ $1 == "--ci" ]]; then echo "Running in a CI environment, continuing..." + SHOW_PROGRESS="" else # Ask the user if they want to continue and break if they don't read -p "Do you want to continue? [y/N] " -n 1 -r @@ -25,12 +26,13 @@ else echo "Aborting..." exit 1 fi + SHOW_PROGRESS="--show-progress" fi # Create function to check if we have an internet connection function check_internet_connection () { # Check if we have an internet connection, except in the ci as azure does not support ping by design - if [[ $1 != "-ci" ]] && ! ping -q -c 1 -W 1 google.com >/dev/null; then + if [[ $1 != "--ci" ]] && ! ping -q -c 1 -W 1 google.com >/dev/null; then echo "No internet connection. Please check your internet connection to install the basler drivers." exit 1 fi @@ -49,11 +51,12 @@ else exit 1 fi # Download the pylon driver to temp folder - wget --no-verbose --show-progress $PYLON_DOWNLOAD_URL -O /tmp/pylon_${PYLON_VERSION}.tar.gz + wget --no-verbose $SHOW_PROGRESS $PYLON_DOWNLOAD_URL -O /tmp/pylon_${PYLON_VERSION}.tar.gz # Extract the pylon driver - tar -xzf /tmp/pylon_${PYLON_VERSION}.tar.gz -C /tmp + mkdir /tmp/pylon + tar -xzf /tmp/pylon_${PYLON_VERSION}.tar.gz -C /tmp/pylon/ # Install the pylon driver - sudo apt install /tmp/pylon_${PYLON_VERSION}*.deb -y + sudo apt-get install /tmp/pylon/pylon_${PYLON_VERSION}*.deb -y fi # Check if the correct blaze supplementary package BLAZE_VERSION is installed (apt) @@ -69,7 +72,7 @@ else exit 1 fi # Download the blaze supplementary package to temp folder - wget --no-verbose --show-progress $BLAZE_DOWNLOAD_URL -O /tmp/pylon-blaze-supplementary-package_${BLAZE_VERSION}.deb + wget --no-verbose $SHOW_PROGRESS $BLAZE_DOWNLOAD_URL -O /tmp/pylon-blaze-supplementary-package_${BLAZE_VERSION}.deb # Install the blaze supplementary package - sudo apt install /tmp/pylon-blaze-supplementary-package_${BLAZE_VERSION}*.deb -y + sudo apt-get install /tmp/pylon-blaze-supplementary-package_${BLAZE_VERSION}*.deb -y fi diff --git a/sync_includes_wolfgang_nuc.yaml b/sync_includes_wolfgang_nuc.yaml index 82b1fcc85..a212b8f5a 100644 --- a/sync_includes_wolfgang_nuc.yaml +++ b/sync_includes_wolfgang_nuc.yaml @@ -14,6 +14,7 @@ include: - bitbots_robot_description - bitbots_teleop - bitbots_tf_listener + - bitbots_tts - bitbots_utils - system_monitor - bitbots_motion: @@ -31,6 +32,7 @@ include: - bitbots_localization - bitbots_localization_handler - bitbots_path_planning + - bitbots_team_communication - bitbots_vision - bitbots_wolfgang: - wolfgang_animations @@ -39,9 +41,6 @@ include: - bitbots_world_model: - bitbots_ball_filter - bitbots_robot_filter - - humanoid_league_misc: - - humanoid_league_speaker - - humanoid_league_team_communication - lib: - audio_common - bio_ik @@ -57,11 +56,11 @@ include: - ipm - particle_filter - pylon-ros-camera - - robot_controllers - ros2_numpy - ros2_python_extension - soccer_ipm - udp_bridge + - requirements - scripts exclude: - "*.bag" diff --git a/workspace.repos b/workspace.repos index 3eaa3fb13..3d85c349b 100644 --- a/workspace.repos +++ b/workspace.repos @@ -1,5 +1,5 @@ repositories: - humanoid_league_misc/humanoid_league_team_communication/humanoid_league_team_communication/RobocupProtocol: + bitbots_team_communication/bitbots_team_communication/RobocupProtocol: type: git url: git@github.com:bit-bots/RobocupProtocol.git lib/dynamic_stack_decider: @@ -62,10 +62,6 @@ repositories: type: git url: git@github.com:basler/pylon-ros-camera.git version: humble - lib/robot_controllers: - type: git - url: git@github.com:fetchrobotics/robot_controllers.git - version: ros2 lib/ros2_numpy: type: git url: git@github.com:Bit-Bots/ros2_numpy.git