2023-11-09 08:47:57 +08:00
|
|
|
selector{
|
2023-11-16 17:57:27 +08:00
|
|
|
|
|
|
|
sequence{
|
|
|
|
cond On(Coffee,CoffeeTable)
|
|
|
|
cond On(Coffee,CoffeeTable)
|
|
|
|
}
|
|
|
|
|
2023-11-14 23:16:48 +08:00
|
|
|
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
|
|
|
}
|