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
e84687c3
Commit
e84687c3
authored
5 years ago
by
Fabian Paus
Browse files
Options
Downloads
Patches
Plain Diff
ArViz: Replay implementation
parent
87938bd8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.cpp
+37
-2
37 additions, 2 deletions
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.cpp
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.h
+6
-1
6 additions, 1 deletion
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.h
with
43 additions
and
3 deletions
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.cpp
+
37
−
2
View file @
e84687c3
...
...
@@ -53,6 +53,9 @@ ArVizWidgetController::ArVizWidgetController()
connect
(
widget
.
replayRevisionSpinBox
,
QOverload
<
int
>::
of
(
&
QSpinBox
::
valueChanged
),
this
,
&
ArVizWidgetController
::
onReplaySpinChanged
);
connect
(
widget
.
replayRevisionSlider
,
QOverload
<
int
>::
of
(
&
QSlider
::
valueChanged
),
this
,
&
ArVizWidgetController
::
onReplaySliderChanged
);
connect
(
widget
.
replayStartButton
,
&
QPushButton
::
clicked
,
this
,
&
ArVizWidgetController
::
onReplayStart
);
connect
(
widget
.
replayStopButton
,
&
QPushButton
::
clicked
,
this
,
&
ArVizWidgetController
::
onReplayStop
);
// We need a callback from the visualizer, when the layers have changed
// So we can update the tree accordingly
...
...
@@ -458,8 +461,27 @@ void ArVizWidgetController::selectRecording(const viz::Recording& recording)
}
void
ArVizWidgetController
::
onReplayStart
(
bool
)
{
visualizer
.
stop
();
replayStarted
=
true
;
onReplaySliderChanged
(
widget
.
replayRevisionSlider
->
value
());
}
void
ArVizWidgetController
::
onReplayStop
(
bool
)
{
replayStarted
=
false
;
visualizer
.
startAsync
(
storage
);
}
long
ArVizWidgetController
::
replayToRevision
(
long
revision
)
{
if
(
!
replayStarted
)
{
return
-
1
;
}
viz
::
RecordingBatchHeader
*
matchingBatchHeader
=
nullptr
;
for
(
auto
&
batchHeader
:
currentRecording
.
batchHeaders
)
{
...
...
@@ -493,8 +515,21 @@ long ArVizWidgetController::replayToRevision(long revision)
auto
updateBegin
=
std
::
lower_bound
(
batch
.
updates
.
begin
(),
batch
.
updates
.
end
(),
pivot
,
revisionLess
);
auto
updateEnd
=
std
::
upper_bound
(
updateBegin
,
batch
.
updates
.
end
(),
pivot
,
revisionLess
);
// TODO: Set current state to batch initial state
// Apply updates until updateEnd
// TODO: Optimize: Only start from the last update position
std
::
map
<
std
::
string
,
viz
::
LayerUpdate
const
*>
updates
;
for
(
auto
&
update
:
batch
.
initialState
)
{
updates
[
update
.
update
.
name
]
=
&
update
.
update
;
}
for
(
auto
updateIter
=
batch
.
updates
.
begin
();
updateIter
!=
updateEnd
;
++
updateIter
)
{
updates
[
updateIter
->
update
.
name
]
=
&
updateIter
->
update
;
}
for
(
auto
&
pair
:
updates
)
{
visualizer
.
apply
(
*
pair
.
second
);
}
return
updateBegin
->
timestampInMicroseconds
;
}
...
...
This diff is collapsed.
Click to expand it.
source/RobotAPI/gui-plugins/ArViz/ArVizWidgetController.h
+
6
−
1
View file @
e84687c3
...
...
@@ -100,7 +100,6 @@ namespace armarx
public
slots
:
/* QT slot declarations */
void
layerTreeChanged
(
QTreeWidgetItem
*
item
,
int
column
);
signals
:
/* QT signal declarations */
...
...
@@ -108,6 +107,8 @@ namespace armarx
private
:
void
layersChanged
(
std
::
vector
<
viz
::
CoinLayerID
>
const
&
layers
);
void
layerTreeChanged
(
QTreeWidgetItem
*
item
,
int
column
);
void
onCollapseAll
(
bool
);
void
onExpandAll
(
bool
);
...
...
@@ -132,6 +133,8 @@ namespace armarx
void
selectRecording
(
viz
::
Recording
const
&
recording
);
void
onReplayStart
(
bool
);
void
onReplayStop
(
bool
);
long
replayToRevision
(
long
revision
);
private
:
...
...
@@ -161,6 +164,8 @@ namespace armarx
std
::
size_t
recordingBatchCacheMaxSize
=
3
;
std
::
map
<
long
,
TimestampedRecordingBatch
>
recordingBatchCache
;
bool
replayStarted
=
false
;
};
}
...
...
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