Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
03c0a90c
Commit
03c0a90c
authored
4 years ago
by
Raphael Grimm
Browse files
Options
Downloads
Patches
Plain Diff
make it possible to enqueue Arviz layers
parent
4c60c2ad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/components/ArViz/Client/Client.h
+62
-24
62 additions, 24 deletions
source/RobotAPI/components/ArViz/Client/Client.h
with
62 additions
and
24 deletions
source/RobotAPI/components/ArViz/Client/Client.h
+
62
−
24
View file @
03c0a90c
...
...
@@ -37,55 +37,93 @@ namespace armarx::viz
return
client
;
}
// ////////////////////////////////////////////////////////////////// //
//layer
Layer
layer
(
std
::
string
const
&
name
)
{
return
Layer
(
componentName
,
name
);
}
void
commit
(
std
::
initializer_list
<
Layer
>
const
&
layers
)
template
<
class
...
Ts
>
Layer
layerContaining
(
std
::
string
const
&
name
,
Ts
&&
...
elems
)
{
updates
.
clear
();
std
::
transform
(
layers
.
begin
(),
layers
.
end
(),
std
::
back_inserter
(
updates
),
[](
const
auto
&
layer
)
auto
l
=
layer
(
name
);
l
.
add
(
std
::
forward
<
Ts
>
(
elems
)...);
return
l
;
}
// ////////////////////////////////////////////////////////////////// //
//enqueue
void
enqueueLayer
(
const
Layer
&
l
)
{
updates
.
emplace_back
(
l
.
data_
);
}
void
enqueueLayer
(
const
Layer
*
l
)
{
updates
.
emplace_back
(
l
->
data_
);
}
void
enqueueLayer
(
std
::
initializer_list
<
Layer
>
const
&
layers
)
{
for
(
const
auto
&
l
:
layers
)
{
return
layer
.
data_
;
});
topic
->
updateLayers
(
updates
);
enqueueLayer
(
l
);
}
}
void
enqueueLayer
(
const
std
::
vector
<
const
Layer
*>&
layers
)
{
for
(
const
auto
&
l
:
layers
)
{
enqueueLayer
(
l
);
}
}
void
enqueueLayer
(
const
std
::
vector
<
Layer
>&
layers
)
{
for
(
const
auto
&
l
:
layers
)
{
enqueueLayer
(
l
);
}
}
template
<
class
...
Ts
>
void
enqueueLayerContaining
(
std
::
string
const
&
name
,
Ts
&&
...
elems
)
{
enqueueLayer
(
layerContaining
(
name
,
std
::
forward
<
Ts
>
(
elems
)...));
}
// ////////////////////////////////////////////////////////////////// //
//commit
void
commit
(
std
::
initializer_list
<
Layer
>
const
&
layers
)
{
enqueueLayer
(
layers
);
commit
();
}
void
commit
(
Layer
const
&
layer
)
{
commit
({
layer
});
enqueueLayer
(
layer
);
commit
();
}
void
commit
(
const
std
::
vector
<
const
Layer
*>&
layers
)
{
updates
.
clear
();
std
::
transform
(
layers
.
begin
(),
layers
.
end
(),
std
::
back_inserter
(
updates
),
[](
const
auto
&
layerRef
)
{
return
layerRef
->
data_
;
});
topic
->
updateLayers
(
updates
);
enqueueLayer
(
layers
);
commit
();
}
void
commit
(
const
std
::
vector
<
Layer
>&
layers
)
{
updates
.
clear
(
);
std
::
transform
(
layers
.
begin
(),
layers
.
end
(),
std
::
back_inserter
(
updates
),
[](
const
auto
&
layer
)
{
return
layer
.
data_
;
});
enqueueLayer
(
layers
);
commit
();
}
void
commit
()
{
topic
->
updateLayers
(
updates
);
updates
.
clear
();
}
template
<
class
...
Ts
>
void
commitLayerContaining
(
std
::
string
const
&
name
,
Ts
&&
...
elems
)
{
auto
l
=
layer
(
name
);
l
.
add
(
std
::
forward
<
Ts
>
(
elems
)...);
commit
(
l
);
commit
(
layerContaining
(
name
,
std
::
forward
<
Ts
>
(
elems
)...));
}
private
:
std
::
string
componentName
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment