This is an extension to make developing with PDDL files and planning in general easier. This extension can be used with Fast Downward to execute and analyse plans from running PDDL files. The extension is compatible with the PDDL 2.1 standard. This extension can also be found on the Visual Studio Marketplace. Overall, this extensions adds:
Getting StartedThe only major requirement to running this is that you have a Fast Downward installation build somewhere on your computer as well as having Python installed.
When you have done that and made sure that Fast Downward works (try and call it from the command line), you are now ready to setup the extension.
After you have downloaded and installed this extension, a welcome window showing this will appear.
You can then go into If you want to use the Plan Validator, you must have VAL installed too. Its the same process as with Fast Downward, make sure you have it installed, and then give the location of Note, you can also add the FeaturesThere are a lot of features in this extension, so each of them will be explained in their respective section below. Editor FeaturesOne of the primary features of this extension is its syntax checker. Whenever you save a PDDL document, a background task will check through the PDDL document and give you errors, warnings and messages. This feature helps a lot with developing PDDL domains to make sure they work as intended. The next feature is the syntax highlighting. This makes it a lot easier to see what is what in a PDDL document. If you are not a fan of the default colors, you can change them all under This extension also provides quick info on general PDDL elements. With the info is a short description of what it is, as well as some example syntax of how it should be set up. You can also right click most PDDL named elements and rename them. When you click to rename a valid element, a popup will display where you can write what you want to replace the name with. If you select the option to rename across all matching problem files, the item will be renamed across all problems that uses the domain reference name given in the current PDDL document.
When you open a PDDL document, a small bar in the bottom of the editor shows some general information on the currently open domain or problem file.
When you write anything in the editor, some autocompletements will show up. These are either basic PDDL elements or names or predicates used in the current document.
Whenever you select a word in the current PDDL document, all other matching words is highlighted. Matching braces are also highlighted.
All these editor features can be turned on or off in Options page. PDDL ExecutionWhen creating PDDL projects, you get the option to execute PDDL files in it. To start, you can select domains/problems either from selecting it from the toolbar menu, the extension menu or context menus.
Note, need to have the current project set as the startup project for this to work. (When a project is loaded, it may take a few seconds for the extension to index the PDDL files in it) You can now select what engine you want to execute with. By default there are a handful of You can now, assuming you have no syntax errors, execute the given domain and problem file by pressing F5 or clicking the If the execution of the PDDL files where successful, two windows will open. One showing general information from the Fast Downward log. As well as a visualiser showing details on the resulting plan file. Each node represents a step in the plan, if the circle is dark then its just a normal state, if its orange its a partial goal state and green means a full goal state. You can move the nodes around by draging and dropping them, or you can reroll the layout by using the controls in the top of the window. You can also move the slider in the bottom, to show specific parts of the plan. PDDL ProjectsThis extensions also brings custom project types. There are two primary types, When you create a new PDDL project, reload one, or startup a solution the files in each active PDDL projects will be indexed. You will most likely only notice this if you have a lot of PDDL files (several thousands). The indexing gives the rest of the extension an easier time when it comes to knowing what files are what. You can right click a project file and reindex it manually if you need to. VALThe plan validator VAL is also integrated into this extension. You can right click any PDDL file and plan file to send it to the VAL window.
When you click on this, the VAL window will open, showing if a given combination of a domain, problem and plan file is valid. PDDL TestsThis extension also includes an entire testing framework, to run tests of PDDL files.
This is the second PDDL project type thats included, that introduces a new file type being The tasks describe what kind of test to run, the options are
To configure the tests, the project template includes a
And thats all you need to execute tests with the adapter! OtherThis extension makes it possible to visualise PDDL domain structures. This can again be done from the context menu by right clicking PDDL domains in the solution explorer. You can then see a general overview of the structure in the PDDL files, as well as see if some predicates are unused/unnessesary. You can also select to visualise types, as well as what objects use said type. Generally, this visualiser is good for small PDDL domains.
More or less all the features have settings that are available under the |