Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bottom level of Actions assumed by editing tool to be Success/Fail #93

Open
bluestar514 opened this issue Nov 27, 2019 · 0 comments
Open

Comments

@bluestar514
Copy link

Imagine you had an action hierarchy that looked something like this:

- ABSTRACT_ACTION (ex: BE_A_GOSSIP)
-- MID_LEVEL_ABSTRACT_ACTION (ex: ASK_ABOUT)
--- concrete_action (ex: ask_about_day)
--- concrete_action (ex: ask_about_family)

With this structure the editor will show only one of the two concrete actions, I believe because it assumes it is a success/fail structure (this is true even if there are more than two concrete actions).

On the other hand, if it is structured like this:

- ABSTRACT_ACTION (ex: BE_A_GOSSIP)
-- MID_LEVEL_ABSTRACT_ACTION (ex: ASK_ABOUT_DAY)
--- concrete_action (ex: ask_about_day)
-- MID_LEVEL_ABSTRACT_ACTION (ex: ASK_ABOUT_FAMILY)
--- concrete_action (ex: ask_about_family)

both lowest level actions will appear in the editor.

domainMultipleLowest.zip - shows an example of the first structure (consider the actions under the abstract action BEAGOSSIP)
domainMultipleMidlevel.zip - shows an example of the second structure (again, look for BEAGOSSIP)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants