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
554443d4
Commit
554443d4
authored
5 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Store data::ElementPtr in CoinLayer.elements
parent
83fcb658
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!63
Add introspection to Arviz
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/RobotAPI/components/ArViz/Coin/Visualizer.cpp
+5
-5
5 additions, 5 deletions
source/RobotAPI/components/ArViz/Coin/Visualizer.cpp
source/RobotAPI/components/ArViz/Coin/Visualizer.h
+9
-1
9 additions, 1 deletion
source/RobotAPI/components/ArViz/Coin/Visualizer.h
with
14 additions
and
6 deletions
source/RobotAPI/components/ArViz/Coin/Visualizer.cpp
+
5
−
5
View file @
554443d4
...
...
@@ -155,8 +155,8 @@ namespace armarx::viz
data
::
Element
const
&
updatedElement
=
*
updatedElementPtr
;
std
::
type_index
elementType
=
typeid
(
updatedElement
);
in
t
visuIndex
;
in
t
visuSize
=
(
int
)
elementVisualizersTypes
.
size
();
size_
t
visuIndex
;
size_
t
visuSize
=
elementVisualizersTypes
.
size
();
for
(
visuIndex
=
0
;
visuIndex
<
visuSize
;
++
visuIndex
)
{
if
(
elementVisualizersTypes
[
visuIndex
]
==
elementType
)
...
...
@@ -179,7 +179,7 @@ namespace armarx::viz
if
(
oldElementIter
!=
layer
.
elements
.
end
())
{
// Element already exists
coin
::
ElementVisualization
&
oldElement
=
*
oldElementIter
->
second
;
coin
::
ElementVisualization
&
oldElement
=
*
oldElementIter
->
second
.
visu
;
oldElement
.
wasUpdated
=
true
;
bool
updated
=
visualizer
->
update
(
updatedElement
,
&
oldElement
);
...
...
@@ -211,7 +211,7 @@ namespace armarx::viz
if
(
elementVisu
->
separator
)
{
layer
.
node
->
addChild
(
elementVisu
->
separator
);
layer
.
elements
[
updatedElement
.
id
]
=
std
::
move
(
elementVisu
);
layer
.
elements
[
updatedElement
.
id
]
=
CoinLayerElement
{
updatedElementPtr
,
std
::
move
(
elementVisu
)
}
;
}
else
{
...
...
@@ -226,7 +226,7 @@ namespace armarx::viz
// Remove the elements which were not contained in the update
for
(
auto
iter
=
layer
.
elements
.
begin
();
iter
!=
layer
.
elements
.
end
();)
{
auto
&
elementVisu
=
*
iter
->
second
;
auto
&
elementVisu
=
*
iter
->
second
.
visu
;
if
(
elementVisu
.
wasUpdated
)
{
elementVisu
.
wasUpdated
=
false
;
...
...
This diff is collapsed.
Click to expand it.
source/RobotAPI/components/ArViz/Coin/Visualizer.h
+
9
−
1
View file @
554443d4
...
...
@@ -18,6 +18,14 @@ namespace armarx::viz
{
using
CoinLayerID
=
std
::
pair
<
std
::
string
,
std
::
string
>
;
struct
CoinLayerElement
{
data
::
ElementPtr
data
;
std
::
unique_ptr
<
coin
::
ElementVisualization
>
visu
;
};
struct
CoinLayer
{
CoinLayer
(
SoSeparator
*
node
)
...
...
@@ -52,7 +60,7 @@ namespace armarx::viz
}
SoSeparator
*
node
=
nullptr
;
std
::
map
<
std
::
string
,
std
::
unique_ptr
<
coin
::
ElementVisualization
>
>
elements
;
std
::
map
<
std
::
string
,
CoinLayerElement
>
elements
;
};
enum
class
CoinVisualizerState
...
...
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