Skip to content
Snippets Groups Projects
Commit a8a9f20b authored by armar-user's avatar armar-user
Browse files

(FR) ArticulatedObjectReader: using instance name instead of robot

description name to query "robot" state
parent 06284de8
No related branches found
No related tags found
No related merge requests found
......@@ -208,7 +208,7 @@ namespace armarx::armem::articulated_object
return getRobotDescription(qResult.memory);
}
std::optional<robot::RobotState> Reader::queryState(const robot::RobotDescription& description,
std::optional<robot::RobotState> Reader::queryState(const std::string& instanceName,
const armem::Time& timestamp)
{
// TODO(fabian.reister): how to deal with multiple providers?
......@@ -220,7 +220,7 @@ namespace armarx::armem::articulated_object
qb
.coreSegments().withName(properties.coreInstanceSegmentName)
.providerSegments().all() // withName(properties.providerName) // agent
.entities().withName(description.name)
.entities().withName(instanceName)
.snapshots().latest();
// clang-format on
......
......@@ -52,7 +52,7 @@ namespace armarx::armem::articulated_object
ArticulatedObject get(const ArticulatedObjectDescription& description,
const armem::Time& timestamp) override;
std::optional<robot::RobotState> queryState(const robot::RobotDescription& description,
std::optional<robot::RobotState> queryState(const std::string &instanceName,
const armem::Time& timestamp);
std::optional<robot::RobotDescription> queryDescription(const std::string& name,
const armem::Time& timestamp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment