Skip to content
Snippets Groups Projects
Commit e84687c3 authored by Fabian Paus's avatar Fabian Paus
Browse files

ArViz: Replay implementation

parent 87938bd8
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
......@@ -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;
};
}
......
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