Getting Started with DiscoPygal

1. What is DiscoPygal?

DiscoPygal is a suite of tools that allow for rapid development and experimentation with motion planning in 2D environments. It is developed in Tel Aviv University’s Computational Geometry Laboratory, under the supervision of Prof. Dan Halperin.

Link to page at the lab’s website: https://www.cgl.cs.tau.ac.il/projects/discopygal/

2. How to start?

  1. Install the prerequisites (depending on your platform)

  2. Install Discopygal package from whl file (other methods are for package developers)

  3. Learn how to use the package and especially how to:

    1. write a Solver

    2. create a Scene

  4. Understand how to combine the solvers with scenes you have created in a python script that uses them.
    Look at this and this examples to understand how to do it.
  5. Read about the two main tools of the package and how to use them:

3. Prerequisites

Before installing DiscoPygal, depending on your operating system you should install some prerequisites.

3.1. General prerequisites

For any operating system install the following:

  • At least 8GB RAM (relevant mostly for VM or WSL)

  • C++ compiler (for example gcc for Linux/mac and visual studio for windows, will be explained at the following)

  • Python 3.9 (at least) - https://www.python.org/downloads/

  • Pipenv:

    Pipenv is not necessary but highly recommended for easy installation. You can install it by running the following command in cmd/bash:

    pip install pipenv
    

3.2. Ubuntu

Note

Tested with Ubuntu 20.04.3

You should run the following command in bash:

sudo apt-get install libxcd-xinerama0

3.3. macOS

Note

Tested on macOS Big Sur and macOS Monterey, Intel

3.4. Windows

Note

Tested on Windows 11

You should install the following:

3.5. WSL

Note

Tested on WSL2 for Ubuntu 20.04 and Ubuntu 22.04

Run the following:

sudo apt update && sudo apt upgrade -y
sudo apt install python-is-python3 python3-pip qt5dxcb-plugin -y

4. Installation

Warning

Before installing, please make sure you have installed all the necessary prerequisites listed above.

Warning

If encountering any problems check: Troubleshooting

Tip

It is recommended to install the package in a virtual environment.
If doing so, open a virtual environment before installing the whl file.
More information about that here: Virtual environment

Install with pip the whl file:

pip install <path to .whl file>

This can take up to half an hour!

To uninstall simply run:

pip uninstall discopygal-taucgl

Note

Virtual Environment

You may want to install the package in a virtual environment (with pipenv or venv) so the installation won’t interfere with the native python packages on your environment.

(make sure to create the virtual env in the directory you want or create a new one for your convenience 😉)

To activate Pipenv at the current directory (also creates a new env if running for the first time):

pipenv shell

Then install the package with the pip command shown before.

To deactivate pipenv:

exit

After installing the discopygal package, when opening a new shell you just need to enter the directory where you have created the virtual env and activate the pipenv shell.

More installation methods for package developers

5. Tools

Execute these commands from command line (cmd/powershell/bash):

solver_viewer
scene_designer
  • Might need .exe suffix in Windows

  • Make sure the python packages’ directory is in PATH env variable

  • For more information see: Using discopygal tools

6. Example: Motion planning in a simple scene

We present a minimal code sample that generates manually a scene with two robots and a single obstacle, and uses some solver to plan a solution.
This is a basic example to show how to use the package, create solvers, scenes and solve them.
Afterwards we again load the scene and the solver we created to solver_viewer gui.
simple_motion_planning.py
import json

from discopygal.bindings import FT, Point_2, Polygon_2
from discopygal.solvers import Scene, RobotDisc, ObstaclePolygon
from discopygal.solvers.rrt import dRRT
from discopygal.solvers.verify_paths import verify_paths
from discopygal_tools.solver_viewer import start_gui

if __name__ == "__main__":
    scene = Scene()

    # Illustration of the scene:
    # Two disc robots in a room, with an obstacle separating them
    # The goal of the robots is to switch positions
    ###############################
    #                             #
    #                             #
    #                             #
    #      0      ###      0      #
    #     000     ###     000     #
    #      0      ###      0      #
    #                             #
    #                             #
    #                             #
    ###############################

    # Add disc robot on the left that wants to go to the right
    left_robot = RobotDisc(
        radius=FT(1.0), 
        start=Point_2(FT(-3.0), FT(0.0)),
        end=Point_2(FT(3.0), FT(0.0)))
    right_robot = RobotDisc(
        radius=FT(1.0), 
        start=Point_2(FT(3.0), FT(0.0)),
        end=Point_2(FT(-3.0), FT(0.0)))
    scene.add_robot(left_robot)
    scene.add_robot(right_robot)

    # Add obstacle in the middle
    middle_obstacle = ObstaclePolygon(
        poly=Polygon_2([
            Point_2(FT(-1), FT(-1)),
            Point_2(FT(-1), FT(1)),
            Point_2(FT(1), FT(1)),
            Point_2(FT(1), FT(-1))
        ])
    )
    scene.add_obstacle(middle_obstacle)

    # Also add bounding walls
    left_wall = ObstaclePolygon(
        poly=Polygon_2([
            Point_2(FT(-7), FT(-4)),
            Point_2(FT(-7), FT(4)),
            Point_2(FT(-6), FT(4)),
            Point_2(FT(-6), FT(-4))
        ])
    )
    right_wall = ObstaclePolygon(
        poly=Polygon_2([
            Point_2(FT(6), FT(-4)),
            Point_2(FT(6), FT(4)),
            Point_2(FT(7), FT(4)),
            Point_2(FT(7), FT(-4))
        ])
    )
    top_wall = ObstaclePolygon(
        poly=Polygon_2([
            Point_2(FT(-6), FT(3.5)),
            Point_2(FT(-6), FT(4)),
            Point_2(FT(6), FT(4)),
            Point_2(FT(6), FT(3.5))
        ])
    )
    bottom_wall = ObstaclePolygon(
        poly=Polygon_2([
            Point_2(FT(-6), FT(-4)),
            Point_2(FT(-6), FT(-3.5)),
            Point_2(FT(6), FT(-3.5)),
            Point_2(FT(6), FT(-4))
        ])
    )
    scene.add_obstacle(left_wall)
    scene.add_obstacle(right_wall)
    scene.add_obstacle(top_wall)
    scene.add_obstacle(bottom_wall)

    # Export the scene to file
    with open('simple_motion_planning_scene.json', 'w') as fp:
        json.dump(scene.to_dict(), fp)

    # "Solve" the scene (find paths for the robots)
    solver = dRRT(num_landmarks=100, prm_num_landmarks=200, prm_k=15, bounding_margin_width_factor=0)
    solver.load_scene(scene)
    path_collection = solver.solve() # Returns a PathCollection object

    # Print the points of the paths
    for i, (robot, path) in enumerate(path_collection.paths.items()):
        print("Path for robot {}:".format(i))
        for point in path.points:
            print('\t', point.location) # point is of type PathPoint, point.location is CGALPY.Ker.Point_2

    result, reason = verify_paths(scene, path_collection)
    assert result  # Validate path if is valid
    print(f"Are paths valid: {result}")

    # Start solver_viewer with the scene and solver objects (the scene isn't solved yet)
    start_gui(scene, solver)
    print("Ended gui")

7. Troubleshooting

  1. The user’s name installing from must be in english

  2. Run the “pip install” command in verbose mode to see where the problem is:

    pip install --verbose ...
    
  3. In case there is a timeout in downloading mpfr package with conan from gnu.org: In the file:

    C:\Users\<User name>\.conan\data\mpfr\4.1.0\_\_\export\conandata.yml
    

    replace the url: https://ftp.gnu.org/gnu/mpfr/mpfr-4.1.0.tar.gz (click on the link to check if doesn’t work)

    with the url: https://www.mpfr.org/mpfr-4.1.0/mpfr-4.1.0.tar.gz

  4. In case the compilation of cgal-python-bindings crashes try increasing the RAM size on your machine

  5. In any other case of failure during installation delete the .conan directories created under and start again:

    C:\
    C:\Users\<User name>\
    
  6. On linux, if receiving the following error when invoking the gui tools:

    Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
    ...
    

    Then run the following command and then try to use the tools:

    export QT_QPA_PLATFORM=wayland
    
  7. On windows, if pip can’t find git when running it from cmd (even if git it was installed) then make sure PATH environment variable contains the path of git.exe (C:\Program Files\Git\cmd).