RoboWaiter/sub_task.ptml

27 lines
409 B
Plaintext
Raw Normal View History

2023-11-09 08:47:57 +08:00
selector{
2023-11-14 23:16:48 +08:00
cond On(Coffee,CoffeeTable)
sequence{
cond Holding(Nothing)
act Make(Coffee)
}
sequence{
cond At(Robot,CoffeeTable)
cond Holding(Coffee)
act PutDown(Coffee,CoffeeTable)
}
sequence{
cond At(Robot,Bar)
cond Holding(Coffee)
act PutDown(Coffee,Bar)
}
sequence{
cond At(Robot,WaterTable)
cond Holding(Coffee)
act PutDown(Coffee,WaterTable)
}
sequence{
cond Holding(Coffee)
act MoveTo(CoffeeTable)
}
2023-11-09 08:47:57 +08:00
}