League Software

League-Maintained


League-maintained software is stored and managed in the RoboCup Small Size League Github organization. Although the repositories are maintained by the Technical Committee, contributions from all members of the community are highly encouraged.

SSL-Vision

The official software for robot and ball detection is called SSL-Vision. It is responsible for transforming images from all cameras to coordinates that are broadcast to the teams.

SSL-Game-Controller

The game is controlled with the SSL-Game-Controller since 2019. It replaces the Refbox and acts as the interface between team computers, Auto-Referees and human referees.

SSL-Refbox

The SSL-Refbox is a small UI that allows the operator to send referee commands to the teams. It was replaced by the SSL-Game-Controller since 2019.

Log tools

The SSL provides several tools to deal with log files of SSL games. There is currently a C++ toolset and a Go toolset that can both record and play log files, among other actions.

SSL-Status-Board

The SSL-Status-Board can be run on a large screen to present the current state of the game to the audience and the human referee. It can also be used to live-stream the game to the internet (not video, only the 2D-field).

grSim

The simulator grSim was contributed to the SSL community by Parsian. It performs a physical simulation of SSL robots and publishes SSL-Vision network packages. It supports the Simulation Protocol.

SSL-Match-Stats

The SSL measures metrics and statistics over past RoboCups. The code for the Match Statistics is maintained on GitHub.

SSL-Vision-Tracker-Protocol

SSL-Vision broadcasts detections unfiltered. Implementing a filter that merges data among cameras, calculates velocities, smooth data and does some predictions is one of the tasks that each team has to do. Starting with 2020, the SSL provides a standardized protocol for tracking implementations that does all or part of the tasks mentioned above. The autoRefs from TIGERs and ER-Force (see below) will implement this protocol initially. There is also a test-client and the protocol is implemented in the Go Log-Tools.

SSL-Simulation-Protocol

The Simulation Protocol defines a common way to communicate with a SSL simulator. It has been initially introduced for the virtual tournament at RoboCup 2021. The common protocol should encourage teams to publish their simulator or to use other open sourced simulators. By having a common protocol, switching between different implementations gets easier.

The protocol allows simulators to add some custom definitions, like additional realism configurations.

There are currently two open-sourced simulators available: grSim and ER-Force simulator.

SSL-Simulation-Setup

The Simulation-Setup has been created for the virtual tournament at RoboCup 2021 and can also be used for future virtual events or for testing a full setup with all league software.

Team-Maintained


Auto-Referees

With the introduction of the SSL-Game-Controller, it is possible to have multiple active Auto-Referees running in parallel. Ideally, we would like to have at least three implementations. That way, a majority vote can be performed on critical rule violations, before the game is stopped. Teams are encouraged to contribute their own implementation.

Actively-Maintained Implementations

There are two implementations that are currently under active development by teams and that are used since RoboCup 2018: ER-Force and TIGERs Mannheim.

Inactive Implementations

Following implementations were not used in previous years:

Simulators

ER-Force Simulator

The ER-Force simulator has been published by team ER-Force and is part of their open-sourced framework. It supports the Simulation Protocol.


Standard Network Parameters

ProtocolProtobufTypeAddressPort
SSL-Game-Controller (GC)RefereeUDP Multicast224.5.23.110003
SSL-Vision DetectionsSSL_WrapperPacketUDP Multicast224.5.23.210006
SSL-Vision Detections LegacySSL_WrapperPacketUDP Multicast224.5.23.210005
AutoRef -> GCAutoRefTCPGC10007
AutoRef -> GCAutoRefTCP + SSLGC10107
Team -> GCTeamTCPGC10008
Team -> GCTeamTCP + SSLGC10108
Remote Control -> GCRemote ControlTCPGC10011
Remote Control -> GCRemote ControlTCP + SSLGC10111
Continuous Integration -> GCContinuous IntegrationTCPGC10009
Continuous Integration -> AutoRefAutoRefCiTCPAutoRef10013
SSL-Vision-TrackerTrackerWrapperPacketUDP Multicast224.5.23.210010
SSL-Vision-Client VisualizationVisualizationUDP Multicast224.5.23.210012
Simulation ControlSimulationControlUDPSimulator10300
Robot Control BlueRobotControlUDPSimulator10301
Robot Control YellowRobotControlUDPSimulator10302
Standard Network Parameters

Protobuf Definitions

There are several different protobuf definitions, distributed over multiple repositories. This section gives an overview of the available definitions and links to the respective repositories for the latest version of the protocol.

In general, protocol updates will always be made in an compatible way on the transmission side, so that no software needs to be changed on updates. However, renaming and removing (with reserved flag) fields can be done, if there are good reasons for it.