Files
behavior-tree/config/demo_plan_shelf_cell.json
T

230 lines
4.1 KiB
JSON

{
"schema_version": 2,
"plan_version": 1,
"task_type": "multi_item_pick_transport_place",
"goal": "从货架A取两瓶water,再取一个doll,逐件放入tote_A",
"route": "SHELF_CELL",
"slots": {
"items": [
{
"target_name": "water",
"quantity": 2,
"source_location": "shelf_A"
},
{
"target_name": "doll",
"quantity": 1,
"source_location": "shelf_A"
}
],
"destination": "tote_A"
},
"missing_information": [],
"subtasks": [
{
"id": "S1",
"skill": "NAVIGATE",
"arguments": {
"source_location": "shelf_A",
"mode": "observation",
"item_index": 0
},
"depends_on": []
},
{
"id": "S2",
"skill": "ROBOBRAIN_SHELF_LOCALIZE",
"arguments": {
"target": "water",
"item_index": 0
},
"depends_on": [
"S1"
]
},
{
"id": "S3",
"skill": "NAVIGATE",
"arguments": {
"source_location": "shelf_A",
"mode": "shelf_cell",
"item_index": 0
},
"depends_on": [
"S2"
]
},
{
"id": "S4",
"skill": "PICK",
"arguments": {
"target": "water",
"item_index": 0
},
"depends_on": [
"S3"
]
},
{
"id": "S5",
"skill": "NAVIGATE",
"arguments": {
"destination": "tote_A",
"item_index": 0
},
"depends_on": [
"S4"
]
},
{
"id": "S6",
"skill": "PLACE",
"arguments": {
"target": "water",
"destination": "tote_A",
"item_index": 0
},
"depends_on": [
"S5"
]
},
{
"id": "S7",
"skill": "NAVIGATE",
"arguments": {
"source_location": "shelf_A",
"mode": "observation",
"item_index": 1
},
"depends_on": [
"S6"
]
},
{
"id": "S8",
"skill": "ROBOBRAIN_SHELF_LOCALIZE",
"arguments": {
"target": "water",
"item_index": 1
},
"depends_on": [
"S7"
]
},
{
"id": "S9",
"skill": "NAVIGATE",
"arguments": {
"source_location": "shelf_A",
"mode": "shelf_cell",
"item_index": 1
},
"depends_on": [
"S8"
]
},
{
"id": "S10",
"skill": "PICK",
"arguments": {
"target": "water",
"item_index": 1
},
"depends_on": [
"S9"
]
},
{
"id": "S11",
"skill": "NAVIGATE",
"arguments": {
"destination": "tote_A",
"item_index": 1
},
"depends_on": [
"S10"
]
},
{
"id": "S12",
"skill": "PLACE",
"arguments": {
"target": "water",
"destination": "tote_A",
"item_index": 1
},
"depends_on": [
"S11"
]
},
{
"id": "S13",
"skill": "NAVIGATE",
"arguments": {
"source_location": "shelf_A",
"mode": "observation",
"item_index": 2
},
"depends_on": [
"S12"
]
},
{
"id": "S14",
"skill": "ROBOBRAIN_SHELF_LOCALIZE",
"arguments": {
"target": "doll",
"item_index": 2
},
"depends_on": [
"S13"
]
},
{
"id": "S15",
"skill": "NAVIGATE",
"arguments": {
"source_location": "shelf_A",
"mode": "shelf_cell",
"item_index": 2
},
"depends_on": [
"S14"
]
},
{
"id": "S16",
"skill": "PICK",
"arguments": {
"target": "doll",
"item_index": 2
},
"depends_on": [
"S15"
]
},
{
"id": "S17",
"skill": "NAVIGATE",
"arguments": {
"destination": "tote_A",
"item_index": 2
},
"depends_on": [
"S16"
]
},
{
"id": "S18",
"skill": "PLACE",
"arguments": {
"target": "doll",
"destination": "tote_A",
"item_index": 2
},
"depends_on": [
"S17"
]
}
]
}