fix inconsistencies when loading a file if another is already loaded

This commit is contained in:
ccolin 2020-12-22 17:57:45 +01:00
parent e87f0b5256
commit c6ca25b110
2 changed files with 3 additions and 4 deletions

View File

@ -126,7 +126,6 @@ DroneController::DroneController(const QJsonObject &json)
}
connect(&timer, &QTimer::timeout, this, &DroneController::step);
pause();
}
@ -136,7 +135,6 @@ int DroneController::getDuration() const {
void DroneController::step() {
// qDebug("frame %d (%d%%)", frame, (int) ((double) frame / duration * 100));
for (Drone d : drones) {
d.setTo(frame);
}
@ -154,7 +152,6 @@ void DroneController::play() {
if (!paused) return;
paused = false;
timer.start(1000. / framerate);
qDebug() << "playing";
emit playing();
}
@ -163,7 +160,6 @@ void DroneController::pause() {
if (paused) return;
paused = true;
timer.stop();
qDebug() << "pausing";
emit pausing();
}

View File

@ -53,16 +53,19 @@ void MainWindow::open(const QString &path) {
QByteArray data = file.readAll();
QJsonDocument json_doc = QJsonDocument::fromJson(data);
if (dc) delete dc;
glw.meshes.clear();
dc = new DroneController(json_doc.object());
playpause_action->setEnabled(true);
connect(dc, &DroneController::playing, this, &MainWindow::play);
connect(dc, &DroneController::pausing, this, &MainWindow::pause);
slider->setMinimum(0);
slider->setMaximum(dc->getDuration());
slider->setValue(0);
connect(slider, &QSlider::sliderPressed, dc, &DroneController::suspend);
connect(slider, &QSlider::sliderReleased, dc, &DroneController::resume);
connect(slider, &QSlider::valueChanged, dc, &DroneController::seek);
connect(dc, &DroneController::frameChanged, slider, &QSlider::setValue);
pause();
slider->setEnabled(true);
}