The Planning Setup Form

The Planning Setup Form can be opened by clicking the “Plan Task” button in the menu bar of RAFCON.
It’s the main window of the plugin. So it is the part where to start a new state machine generation process, configure a new task, and get information about the current configuration.

Task Planner Plugin Setup Form

Table of contents generated with markdown-toc

Planning Section

The planning section contains all fields relevant for planning, and the state machine generation process. This section explains them in detail.

State Pools

A state pool is a directory, containing pddl-annotated states (but not all states in the directory have to be annotated).
In the state pools field all state pools should be choosen, which can be to use to solve a particular task. During the generation process, all state pools are added as RAFCON libraries, in which the directory name is used as Library name.
The state pools field consists of two fields: A directory chooser and a text field.
All directories choosen, are added to the text field as ‘:’- separated list. To remove a state pool from the task, it just has to be removed from the list in text field. Also paths can be added to the list manually.

Example

/home/turtle_lib: tree
── turtle_lib
│   ├── clear_field
│   ├── __init__.py
│   ├── init_ros_node
│   ├── move_to_position
│   ├── teleport_turtle
│   └── turtle_position_subscriber

In this case for example, ‘move_to_position’ is annotated with pddl and ‘init_ros_node’ is not (that’s not recognizable in this view). The state pool would be ‘/home/turtle_lib’. Now adding ‘/home/turtle_lib’ to the text field, would enable the plugin to use ‘move_to_position’, as well as ‘teleport_turtle’ (which are annotated, that’s not recognizable in this view) for planning. There will be a warining for ‘clear_field’, ‘init_ros_node’ and ‘turtle_position_subscriber’ which are not annotated (that’s also not recognizable in this view), but that dosen’t matter as long as it is intended.
The added RAFCON library would look like:

Library: trutle_lib <br>
Path: /home/trutle_lib 

Type File

Since pddl uses types and heredity, the plugin needs information about the type hierarchy. This should be provided here. The type file field is a file chooser. It expects a file of type json. It should contain a type hierarchy as json dict, structured to contain child types as keys and parent types as values. One child can only have one parent, and the defined hierarchy has to have exactly one root type. In case a hierarchy has multiple root types, one additional level can be added, deriving all root types from ‘Object’ for example. The root type (obviously) has no parent.
Important: All types used in a state pool, or in the facts file have to be part of this hierarchy.

Example
In this file, ‘Location’ is derived from ‘Object’, and the types ‘City’ and ‘Country’ are derived from Location. ‘Object’ is the root type.

file: my_types.json:
{
"Location":"Object",
"City":"Location",
"Country":"Location"
}

Planner

In this field it’s defined which built-in planner should be used to plan a particular task, or if a separate planner script is present. If a built-in planner is not correctly installed, a notification is shown.
The planner field is a drop-down entry chooser. If “Other…” was choosen, it is indicated that a planner script is provided in the ‘Planner script Location’ field, which will be used for planning.
Important: If “Other…” was not choosen the planner script will not be taken into consideration, and the choosen Planner will be used instead.

Example

Field Value Description
Fast Downward Planning System The Fast Downward Planning System is used for planning.
Fast Downward Planning System (!) Unavailable The Fast Downward System is not (correctly) installed.
Other… A planner script provided in the ‘Planner script Location’ field will be used.

Planner Script Location

This field expects a python script, which will be responsible for the planning part of a task. How to implement such a script is explained in the Planner Integration Section.
The planner script location field is a file chooser. The file choosen here will be used for planning.
Important: If “Other…” is not selected in the ‘Planner’ field, this field will be stored, but ignored during task process.

Example

If Planner Scrip Location contains the value below, and ‘Other…’ is selected in the Planner field, the script ‘my_planner_script.py’ will be used for planning in the task.

Field value: /my/scripts/my_planner_script.py

Planner Argv

To configure the planner e.g. The Fast Downward Planning System, an argument vector can be inserted here. This field is a text entry, and it behaves like entering arugment into the console, e.g. Values enterd into this field are given to the planner script as space separated array. So all built-in planners can be configured as specified in the original planner documentation.

Example
When using the Fast Downward Planning System, a possible planner argv field value is:

 --search "astar(lmcut())"

Facts File

This file chooser expects a facts file written in pddl. A planning task usually consits of a facts, and a domain file. Since the plugin is using the state pools, as well as the type file to auto generate the domain file, it is only allowed to use elements provided in these two sources (state pools and type file), to write a facts file. To ensure which elements are usable, they can be listed by clicking on to the ‘State Pool Info’ Button in the left corner of the Task Planner Plugin configuration window.

Example

If Selecting /home/my_facts.pddl,
this file will be used as facts file during the planning process.

Generate State Machine Into

The plugin has two generation modi. One where a completely new state machine is created during a task, and another where the planning result is generated into an existing Hierarchy State.
To select the mode, this field provides a radio button group. If ‘independent state machine’ was selected, RTPP will create a new state machine. If ‘selected state’ was choosen the plugin will use an existing state to generate the planning result into.
As the radio button name indicates, the plugin will try to use the current selected state. Therefore it’s mandatory, that exactly one state is selected, and that the selected state is a Hierarchy State. If the selected Hierarchy State is a root state, RTPP will copy it, and use it to generate a new, independent state machine for performance reasons.
Important: To avoid accidents RTPP rejects non empty states by default. To allow a particular state, to be used despite it’s not empty, the value of ‘Allow_Override’ in ‘RAFCONTPP’ in the semantic data section of the state hast to bet set to ‘True’. Then all child states of the Hierarchy State are automatically deleted before adding new ones. If ‘selected State’ is choosen, the fields ‘State machine name’ and ‘Save state machine in’ are ignored.

Example

Value | Explanation —-|—- selected State | Generate into existing Hierarchy State. independent state machine | Create new state machine.

State Machine Name

The purpose of this text field is to enter the name, the resulting state machine will later have. If no name is provided, the name of the problem, defined in the facts file, is used instead. If ‘selected State’ in ‘Generate state machine into’ is choosen, this field is ignored.

Example

Example names are:
my_fancy_state_machine
planned_state_machine
task 42

Save State Machine In

This field is a directory chooser, and its purpose is to set the path, where to save the state machine, which is generated during the Task. If ‘selected State’ in ‘Generate state machine into’ is choosen, this field is ignored.
Important: State machines with the same name, stored in the same path are overwritten.

Example
With a configuration like this, the state machine my_state_machine will be stored in /home/state_machines:

name: my_state_machine
Save state machine In: /home/state_machines

Generated Files

During a task some files are generated by the plugin as well as the planner. For example the plugin will generate a domain file, the planner will generate a plan, and maybe some other files. Usually they are not needed afterwards, but it is useful to keep them for debugging or logging purposes etc. When the’Save’ checkbox was ticked, the files won’t be deleted. If ‘Save’ is not ticked, all files are stored in a temporary path, and then deleted at the end of the Task.

Save Files In

This directory chooser specifies the path in which generated files should be stored. If ‘Save’ in generated files is not ticked, this field is ignored.
Important: If the same path is used for multiple Tasks, some files maybe overwritten.

Runtime Section

In this context runtime dosen’t refere to the runtime of the task generation process, but rather to the runtime of the state machine itself, e.g. when its executed. This section was added to introduce object resolution to the plugin. since pddl works with identifiers e.g. robot1, munich or turtle_bob instead of complex objects, a system to resolve these names during runtime is needed. How this works in detail is explained on Data transfer page. The runtime section part of the configuration file specifies, if and how object definitions should be added to the state machine.

Runtime Data

This field consists of a file chooser and a text field. The file path, selected in the chooser, is set as value in the text field. It does only accept one path, and no list (like the state pool field). Also the chooser value is ignored, and only the text field value is used.
The reason why both (chooser and field) are needed, is that a chooser is more convenient, but the path entered into the text field dosen’t even necessarily have to exist at this point in time and so can’t be choosen.
The choosen file is expected to be a json file, in which all objects are defined.
Important: If the textfield is left empty, the whole “Runtime” section is ignored.

Example

The file: /home/data/my_data.json
could look like this: 
{
 "robot1":{
          "payload":["rock1","rock2","rock3"],
          "position":"munich",
          "fuel":15
  },
"munich":{"x":48,"y":11}
}

Include

This field consists of a radio button group, and defines if the data file (set in Runtime Data) should be copied or just a reference should be included.

as copy: Choosing this radio button, the data will be copied during the state machine generation process. Therefore the file has to exist before generating the state machine, but not when executing it. After the state machine was generated, file changes will have no effect on it.
as reference: Choosing this radio button, a reference to the data file is included into the state machine, and the data is copied when starting the state machine execution. Therefore the file path does not have to exist during the generation process, but during runtime.

Example

Button description
as copy Copies the file during generation process.
as reference Copies the file everytime the state machine is started.


Buttons

This section explains each button of the planning setup form.

Generate State Machine

This button saves the current configuration, and starts the state machine generation process.

Cancel

This button saves the current configuration, and closes the planning setup form.

X In Upper Right corner

This Button closes the planning setup form without saving it.

State Pool Info

This button provides information about the current configuration. To be fully functional the configuration of ‘State pools’, and the ‘Type file’ are required.

It shows: