Repository Summary
Checkout URI | https://github.com/vaul-ulaval/autodrive_roboracer_ws.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2025-03-03 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
autodrive_f1tenth | 0.1.0 |
README
Autodrive RoboRacer Development Environment
This repository provides a fully configured development environment for the Autodrive F1tenth Sim Racing competition. Using vscode, Docker, and devcontainers, it simplifies the setup process, allowing you to focus on developing and testing your autonomous racing stack.
This environment was battle-tested by the VAUL team during the 2nd F1tenth Sim Racing League, ensuring reliability and ease of use.
Prerequisites
- vscode
- Docker
- Docker Compose
- Foxglove
- nvidia-container-toolkit (If you want gpu forwarding)
Quick Rundown
This repository uses two Docker containers: devkit and simulator. Those containers are orchestrated with docker-compose.
Simulator container
The simulator container runs the car’s physics using the Unity-based Autodrive Simulator. It is built on top of the official Autodrive F1tenth Sim Image. We run it in headless mode to save compute power.
Devkit container
The devkit container is where development takes place. It is designed to be opened as a devcontainer in vscode. This container will receive the WebSocket messages from the simulator (port 4567) and convert them to ROS2 messages that your autonomous racing stack can use. It also has a Foxglove bridge on port (8765) to allow for visualization on the host machine.
On devcontainer startup, it installs every vscode extensions, build your code and start two GNU Screen sessions running:
- The Foxglove bridge for visualization.
- The Autodrive bridge for message conversion.
Your code runs inside the devkit container with the src
directory from this repository mounted as a Docker volume. Like the simulator, this container is based on the official Autodrive F1tenth Devkit Image.
If your host computer is properly configured, your GPU should also be forwarded to the devkit container if you uncomment the gpu forwarding in the docker-compose.yml file. You can test the gpu forwarding with this command: docker exec -it devkit nvidia-smi
.
Installation
First, we need to clone the repository and make sure that the images are building.
- Cloning the repo
git clone https://github.com/vaul-ulaval/autodrive_roboracer_ws --recurse-submodules
cd autodrive_roboracer_ws
- Building and launching the containers
docker compose up --build -d
- Verify that both containers are active (devkit and simulator)
docker ps
- Open Foxglove on
http://localhost:8765
and see the lidar scan
Development
Once all the installation steps are completed, we can move on to the vscode and devcontainer integration:
- Open the repo in vscode
- Install the devcontainer vscode extension
- Restart vscode
- Once reopened, do Ctrl+Shift+P then
Dev Containers: Reopen in Dev Container
- You should now have a vscode backend running in the container so you should see the ros2 workspace.
- Test a colcon build with Ctrl+Shift+b (You should always build with this vscode task so you get the
compile_commands.json
for C++ Intelisense) - If everything builds, you are now ready to develop! You can also test a keyboard_teleop for fun
ros2 run autodrive_f1tenth teleop_keyboard
Submitting Competition Docker Image
For the competitions, teams are required to build and push a docker image running their code. Here is how we do it.
- Add a GNU screen session that launches your ROS nodes in devkit-startup.bash.
- Test that your autonomous racing stack actually starts
docker compose up --build -d
- If it properly starts up, build the final docker image
docker build -f devkit.Dockerfile --target final -t <your-image-name> .
- Push your image to Dockerhub
docker login
docker push <your-image-name>
-
Make sure you sure you share docker image with the competition organizers.
-
Great job, you have now submitted your code for the competition!
Changing Race Track
To change the race track for each competition, you can change the FROM
directive from the two Dockerfile. For example, if I want to be on the CDC 2024 competition track I do
- In devkit.Dockerfile, I change
autodriveecosystem/autodrive_f1tenth_api:2024-cdc-practice
toautodriveecosystem/autodrive_f1tenth_api:2024-cdc-compete
- In simulator.Dockerfile, I change
autodriveecosystem/autodrive_f1tenth_sim:2024-cdc-practice
toautodriveecosystem/autodrive_f1tenth_api:2024-cdc-compete
- Rebuild the images and launch the new containers
docker compose up --build -d
Contributions
If you have any ideas on how to improve the development environment, feel free to open a Pull Request or a Github Issue. We hope we can make this development environment even better with your help!