RoboCup: Evolution of Autonomous Robots in Teams

   page       attach   
outcomes

1. What is RoboCup

RoboCup is an international robotic competition, founded with the aim to make robots that are able to play football. The name is a contraction of “Robot Soccer World Cup”.

1.1. History

The idea of a competition of robots playing football has been launched by a group of japanese researchers in the mid-1990s. Started as a Japan-only project, after some time this has attracted the interest of various researchers around the world. In 1997 the international RoboCup competition has been founded. Since that year a lot of teams representing various universities of all over the world has participated to the competition, including some italian teams.

1.2 Scientific goals

The official long-term goal of the RoboCup project is:

"By mid-21st century, a team of fully autonomous humanoid robot soccer players shall win the soccer game, complying with the official rule of the FIFA, against the winner of the most recent World Cup."

With today’s robots we are still very far to make this happens, so in order to achieve this goal a lot of research must be done, ranging from mechanics to computer engineering. The more practical aim of RoboCup competition is actually to promote scientific research in the areas of robotics and artificial intelligence.

The most important aspects of RoboCup are certainly on the software part, where engineers must setup a complex multi-agent robotic systems with strong coordination abilities. The hardware part is too very interesting and challenging, especially on how robots perceive the environment through the use of sensors.

2. The leagues and their rules

The RoboCup competition is divided in many sub-competitions, called leagues. Each league has different rules and aim to do research on different goals.

The decision of making many different competitions instead of a single big one, has been chosen because the long-term goal of RoboCup to play football against humans is a very difficult result to achieve, and it involves many branches of research in some relatively different aspects that can easily been separated. For example in some leagues (Humanoid and Middle Size) there is more focus on the hardware part of the robot, while on other leagues (Simulation and Small Size) there is more emphasis on the software aspects of the coordination of robots.

2.1 Small Size League

In this league some small robots (18x15 cm) plays a football match in a small field, with rules heavily simplified to better match with the capabilities of these small robots. The most important peculiarity of this league is that robots has high quality sensory information given from outside by the team organizers: by using a camera above the field, an external computer recognize the position and orientation of each robot and the ball using some visual patterns printed on every robot.

Since there is this spatial information available, robots doesn’t have the problem of being able to perceive only a part of the environment around them like an human player do, but they have very high quality information on what’s happening on the playfield. This let engineers to focus on the software aspects of controlling and coordinating the various robots, without having to deal with more hardware-oriented problems.

smallsize.jpg

2.2 Middle Size League

The competition in this league is much more similar to a real football match. Robots are about as high and move as fast as an human, and they play on a big field. The rules in this league are similar to official FIFA ones. Robots here must be able to perceive what’s happening on the playfield only with their own sensors or the ones from their teammates.

In this league the main focus is more oriented toward the hardware, in particular how to build robot with efficient sensors.

middlesize.jpg

2.3 Humanoid and Four Legged League

In the Humanoid league the main focus is to make robots that are physically similar to humans. The technical challenge here is mainly to design the robot from the mechanical point of view in a way that can perform movements of their arms and legs in the same way as humans do.

This is the least interesting league from the point of view of this research, because the challenges here are almost only regarding mechanical engineering.

The Four Legged league is in some way similar to the humanoid league: but instead of making robots similar to humans, here are given some dog-like robot, and the challenge is to make them walk and play football efficiently. The focus here is in controlling the 20 degrees of freedom of the four legged robots efficiently.

humanoid.jpg

2.4 Rescue League

This league, unlike all others, has nothing to do with football. The aim of this league is to make robots that can help people in emergency scenarios, like an earthquake. In this competition robots must find people in a damaged building and give some assistance to them.

In this league robots must be even more autonomous than on all other leagues, because no wireless comunication between robots is allowed, in order to better simulate real live scenarios where robots can’t rely on not guaranteed reception of wireless signals.

rescue.jpg

3. Simulation leagues

The main goal of the simulation leagues is to develop a team of player agents that can win a simulated football match, using a simplified model of reality. The simulation league let engineers focus in the software development without having to deal with hardware. Infact, a robot might perform well in the simulator but poorly in the real world. Another reason that support that kind of leagues is the possibility of run thousand of football matches in a matter of seconds, that is useful for statistical analysis and performance comparing.

3.1 Server simulation

In the simulation leagues a server simulates the world of the ball and players, which are fully autonomous client agents that separately interact with the server. The interaction follows these steps:
  • each player receives sensations representing the view from its current location
  • decides what actions to execute
  • sends the actions back to the server, for execution

    Over the years the simulation became more complex and it was hard for engineers to keep pace with the changes introduced. Since the simulation environment was annually modified, a meaningful comparison across teams from different years was impossible.

    progress.png

To overcome this issues, from 2003 to 2007 the simulator development was frozen and the simulator retained as a testbed for multiagent research, allowing to compare and measure performance and progress over the years.

3.2 2D simulation

From the early stages, the 2D simulation league had realistic team-level strategic interactions. Both the ball and the player are modeled as circles that has:
  • a direction that its body is facing, which affects the direction it can move
  • a direction in which it is looking, which affects its sensations

    Actions are abstract command:

  • moving forward or backward with a specified power
  • turning the body or neck by a specified angle
  • kicking at a specified angle with a specific power
  • slide or tackling in a given direction
  • catching the ball
  • ...

    https://www.youtube.com/watch?v=cDhSjSYPvdE

3.3 3D simulation

The 3D simulation league implements a physically realistic world model and an action interface that is reflective of that experienced by real robots. The agents interact with the simulator by sending actuation command to each of the robot’s joints and it’s a real challenge to enable robots to walk and kick without falling over.

https://www.youtube.com/watch?v=3N_WSNf_aBI

4. Main topics:

4.1 Player learning

The problem of developing a software agent that is able to play football is a very complex challenge for software engineering. To make the work easier, some machine learning techniques from Artificial Intelligence could be used to develop an agent that perform decisions about what the player robot should do in every moment.

For example an Artificial Neural Network could employed in a scenario where there are two attackers versus a defender of the other team near the goal. The ANN is used to calculate what is the best decision among shoot the ball or pass the ball to a teammate. In this case study, some inputs about the spatial position of other player and ball are given to the ANN, and it’s expected as output the probability of doing a successfull pass or shot. As usual, the neural network is trained with backpropagation.

To perform training of the ANN, the game simulator could be very useful, because it can generate many data needed to create a big training set in a short time without the use of physical robots.

Machine learning techniques can be used not only for controlling the behaviour of players, but also for other tasks like for example preprocessing of information coming from robot sensors. For example Support Vector Machines has been used to detect collisions with other robots and recognize the color of objects in images coming from the robot’s camera.

4.2 Teamwork

In a football team of humans, their ability to cooperate well in order to achieve a goal is an almost essential skill, since it makes the whole team perform better. Also in RoboCup to achieve good results, player agents must be able to organize themselves in some way, in order to improve the overall performance of their team and achieve victories. To describe some of the issues that these goals imply, we first present a taxonomy of the multi robot systems, centered on their cooperative capabilities.

4.2.1 Multi Robot System Taxonomy

taxonomy1.png

The first level contains cooperative systems, in which cooperation is defined as:

a situation in which several robots operate together to perform some global task that either cannot be achieved by a single robot, or whose execution can be improved by using more than one robot, thus obtaining higher performances.

The second level refers on awareness, defined as:

the property of a robot in the MRS to have knowledge of the existence of the other members of the system. Unaware coordination is achieved when agents perform their task as if they were the only robots within the system.

The next level depict how an aware agent can cooperate with others agents. We define coordination as:

cooperation in which the actions performed by each robotic agent take into account the actions executed by the other robotic agents in such a way that the whole ends up being a coherent and high performance operation.

It’s obvious that only system of aware robots can can be coordinated, but it is also true these system may be not coordinated at all. The coordination level can be classified as strong(weak), defined as:

a form of coordination that relies (does not rely) on a coordination protocol.

The last level shows a distinction at the organization level between:

  • centralized approaches, defined as:

    the organization of a system having a robotic agent (a leader) that is in charge of organizing the work of the other robots; the leader is involved in the decisional process for the whole team, while the other members act according to the directions of the leader.

  • distribuite approaches, defined as:

    the organization of a system composed by robotic agents which are completely autonomous in the decisional process with respect to each other; in this class of systems a leader does not exist.

4.2.2 Reactivity and Social Deliberation

taxonomy2.png

The previous taxonomy can be further extended with the notions of how the team of robots act in response to the dynamics of the environment. There are two main possibilities:

  • social deliberation, defined as:

    a system behavior that allows the team to cope with the environmental changes by providing a strategy that can be adopted to reorganize the team members’ tasks, so as to use all the resources available to the system itself to effectively achieve the global goal.

  • reactivity, defined as:

    a system behavior in which every single robot in the team copes with the environmental changes by providing a specific solution to reorganize its own task in order to fulfill the accomplishment of its originally assigned goal.

4.2.3 Cooperation in Robocup

Starting from the previous taxonomy, we can now procede classifying the different leagues of Robocup.

In the simulation leagues, each agent perceives only its local information about the environment. This makes simulations leagues an interesting testbed for MAS and every kind of cooperation can be successfully used.

In Small-Size league the main strategies used are centralized, since the remote host can be considered as an agent acting as a leader of the team.

In Middle-Size leagues robots are more autonomous since they have sensor on-board. In this league we can found both reactive and deliberative centralized approaches. In particular, the deliberative centralized approaches are used when it is possible to reconstruct global information about the environment starting from the each robot perception.

In Four-legged and Humanoid leagues the only strategy used is centralized, due to the difficulties of communication among different robots.

4.3 Opponent modeling

From 2001 to 2006 a new further agent was introduced in the competition: the coach agent. The couch agent received a noise free global view over the field, allowing allowing more informed decisions. Its main purposes were the following:
  • recognizing or predicting the behavior of the agents or team (formation, defense and offense system), using data mining techniques
  • identify weakness and strengths of opponents (behavior detection with data mining techniques)
  • provide additional advice and information to players (adjustable autonomy)

5. Human vs. Robotic Football: How Far Are They?

In this final part, we present a generic comparison between human versus robotic football, to detect similarities between these two games. The following image shows the results of the analysis of six games (three robotics and three human) corresponding to the latest final game competition (Robocup and Fifa World Cup).

res.pngFrom the results the following conclusion emerge:

  • in both scenarios the successful passes are the most frequent event
  • in every event, the human football tends to be more efficient and accurate, infact if has:
    • bigger percentage of shots on target and successful passes
    • smaller percentage of missed passes and intercepted shots

      These results are not indended to be exhaustive, infact many other elements could influence the evaluation, such as:

  • the defensive/offensive style adopted by the teams
  • the level of competitivity, determined by the number of different teams in the final games
  • the performance deterioration of players during the match
  • ...

Bibliography

Robocup 2013 website - http://www.robocup2013.org/robocup-soccer/

Robocup Wiki - http://wiki.robocup.org/wiki/Main_Page

Middle size league rules 2013 - http://wiki.robocup.org/images/9/98/Msl_rules_2013.pdf

Small size league rules 2013 - http://robocupssl.cpe.ku.ac.th/rules:main, T. Gabel and M. Riedmiller. On Progress in RoboCup: The Simulation League Showcase V. Seib, D. Gossow, S. Vetter, D. Paulus. Hierarchical Multi-robot Coordination

S. Pourmehr, C. Dadkhah. An Overview on Opponent Modeling in RoboCup Soccer Simulation 2D

L. Iocchi, D. Nardi, M. Piaggio, A. Sgorbissa, M. Piaggio, A. Scalzo, C. Castelpietra. Communication and Coordination among heterogeneous Mid-size players: ART99

L. Iocchi, D. Nardi, A. Pennisi, D. D. Bloisi. Ground Truth Acquisition of Humanoid Soccer Robot Behaviour

L. Iocchi, D. Nardi, F. Palamara, V. A. Ziparo, P. Lima, H. Costelha. A Robotic Soccer Passing Task Using Petri Net Plans

L. Iocchi, D. Nardi, M. Piaggio, A. Sgorbissa. Distribuited coordination in heterogeneous multi-robot systems L. Iocchi, D. Nardi, M. Salerno. Reactivity and Deliberation: A Survey on Multi-Robot Systems

P. Abreu, I. Costa, D. Castelao, L.P. Reis, and J. Garganta. Human vs. Robotic Soccer: How Far Are They? A Statistical Comparison

D. Abraham. Applying Neural Networks to Socccer