2020-06-04 03:39:16 +00:00
|
|
|
#include "scantargetwidget.h"
|
|
|
|
|
2020-06-05 02:39:32 +00:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QOpenGLContext>
|
2020-07-01 03:03:39 +00:00
|
|
|
#include <QScreen>
|
2020-06-05 02:58:02 +00:00
|
|
|
#include <QTimer>
|
2020-06-05 02:39:32 +00:00
|
|
|
|
2020-06-06 23:47:35 +00:00
|
|
|
#include "../../ClockReceiver/TimeTypes.hpp"
|
|
|
|
|
2020-06-04 03:39:16 +00:00
|
|
|
ScanTargetWidget::ScanTargetWidget(QWidget *parent) : QOpenGLWidget(parent) {}
|
|
|
|
ScanTargetWidget::~ScanTargetWidget() {}
|
|
|
|
|
|
|
|
void ScanTargetWidget::initializeGL() {
|
2020-06-23 02:36:36 +00:00
|
|
|
setDefaultClearColour();
|
2020-06-05 02:39:32 +00:00
|
|
|
|
2020-06-06 23:47:35 +00:00
|
|
|
// Follow each swapped frame with an additional update.
|
2020-06-14 23:26:56 +00:00
|
|
|
connect(this, &QOpenGLWidget::frameSwapped, this, &ScanTargetWidget::vsync);
|
2020-06-04 03:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScanTargetWidget::paintGL() {
|
2020-06-26 03:59:44 +00:00
|
|
|
if(requested_redraw_time_) {
|
2020-07-01 03:03:39 +00:00
|
|
|
const auto now = Time::nanos_now();
|
|
|
|
vsyncPredictor.add_timer_jitter(now - requested_redraw_time_);
|
2020-06-26 03:59:44 +00:00
|
|
|
requested_redraw_time_ = 0;
|
|
|
|
}
|
|
|
|
|
2020-07-01 03:03:39 +00:00
|
|
|
const float newOutputScale = float(window()->screen()->devicePixelRatio());
|
|
|
|
if(outputScale != newOutputScale) {
|
|
|
|
outputScale = newOutputScale;
|
|
|
|
resize();
|
|
|
|
}
|
|
|
|
vsyncPredictor.set_frame_rate(float(window()->screen()->refreshRate()));
|
|
|
|
|
2020-06-04 03:39:16 +00:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
2020-06-21 22:25:38 +00:00
|
|
|
|
|
|
|
// Gmynastics ahoy: if a producer has been specified or previously connected then:
|
|
|
|
//
|
|
|
|
// (i) if it's a new producer, generate a new scan target and pass it on;
|
|
|
|
// (ii) in any case, check whether the underlyiung framebuffer has changed; and
|
|
|
|
// (iii) draw.
|
|
|
|
//
|
|
|
|
// The slightly convoluted scan target forwarding arrangement works around an issue
|
|
|
|
// with QOpenGLWidget under macOS, which I did not fully diagnose, in which creating
|
|
|
|
// a scan target in ::initializeGL did not work (and no other arrangement really works
|
|
|
|
// with regard to starting up).
|
|
|
|
if(isConnected || producer) {
|
|
|
|
if(producer) {
|
|
|
|
isConnected = true;
|
|
|
|
framebuffer = defaultFramebufferObject();
|
|
|
|
scanTarget = std::make_unique<Outputs::Display::OpenGL::ScanTarget>(framebuffer);
|
|
|
|
producer->set_scan_target(scanTarget.get());
|
|
|
|
producer = nullptr;
|
|
|
|
}
|
|
|
|
|
2020-06-21 21:25:21 +00:00
|
|
|
// Qt reserves the right to change the framebuffer object due to window resizes or if setParent is called;
|
|
|
|
// therefore check whether it has changed.
|
|
|
|
const auto newFramebuffer = defaultFramebufferObject();
|
|
|
|
if(framebuffer != newFramebuffer) {
|
|
|
|
framebuffer = newFramebuffer;
|
|
|
|
scanTarget->set_target_framebuffer(framebuffer);
|
|
|
|
}
|
|
|
|
|
2020-06-21 21:16:11 +00:00
|
|
|
vsyncPredictor.begin_redraw();
|
2020-07-01 03:03:39 +00:00
|
|
|
scanTarget->update(scaledWidth, scaledHeight);
|
|
|
|
scanTarget->draw(scaledWidth, scaledHeight);
|
2020-06-24 02:59:12 +00:00
|
|
|
glFinish(); // Make sure all costs are properly accounted for in the vsync predictor.
|
2020-06-21 21:16:11 +00:00
|
|
|
vsyncPredictor.end_redraw();
|
2020-06-05 02:39:32 +00:00
|
|
|
}
|
2020-06-04 03:39:16 +00:00
|
|
|
}
|
|
|
|
|
2020-06-14 23:26:56 +00:00
|
|
|
void ScanTargetWidget::vsync() {
|
2020-06-23 02:36:36 +00:00
|
|
|
if(!isConnected) return;
|
|
|
|
|
2020-06-21 21:16:11 +00:00
|
|
|
vsyncPredictor.announce_vsync();
|
2020-06-14 23:26:56 +00:00
|
|
|
|
|
|
|
const auto time_now = Time::nanos_now();
|
2020-06-26 03:59:44 +00:00
|
|
|
requested_redraw_time_ = vsyncPredictor.suggested_draw_time();
|
|
|
|
const auto delay_time = (requested_redraw_time_ - time_now) / 1'000'000;
|
2020-06-14 23:26:56 +00:00
|
|
|
if(delay_time > 0) {
|
|
|
|
QTimer::singleShot(delay_time, this, SLOT(repaint()));
|
|
|
|
} else {
|
2020-06-26 03:59:44 +00:00
|
|
|
requested_redraw_time_ = 0;
|
2020-06-14 23:26:56 +00:00
|
|
|
repaint();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 03:39:16 +00:00
|
|
|
void ScanTargetWidget::resizeGL(int w, int h) {
|
2020-07-01 03:03:39 +00:00
|
|
|
if(width != w || height != h) {
|
|
|
|
width = w;
|
|
|
|
height = h;
|
|
|
|
resize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScanTargetWidget::resize() {
|
|
|
|
const int newScaledWidth = int(float(width) * outputScale);
|
|
|
|
const int newScaledHeight = int(float(height) * outputScale);
|
|
|
|
|
|
|
|
if(newScaledWidth != scaledWidth || newScaledHeight != scaledHeight) {
|
|
|
|
scaledWidth = newScaledWidth;
|
|
|
|
scaledHeight = newScaledHeight;
|
|
|
|
glViewport(0, 0, scaledWidth, scaledHeight);
|
|
|
|
}
|
2020-06-04 03:39:16 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:25:38 +00:00
|
|
|
void ScanTargetWidget::setScanProducer(MachineTypes::ScanProducer *producer) {
|
|
|
|
this->producer = producer;
|
|
|
|
repaint();
|
2020-06-04 03:39:16 +00:00
|
|
|
}
|
2020-06-23 00:32:44 +00:00
|
|
|
|
|
|
|
void ScanTargetWidget::stop() {
|
|
|
|
makeCurrent();
|
|
|
|
scanTarget.reset();
|
|
|
|
isConnected = false;
|
2020-06-23 02:36:36 +00:00
|
|
|
setDefaultClearColour();
|
|
|
|
vsyncPredictor.pause();
|
2020-06-26 03:59:44 +00:00
|
|
|
requested_redraw_time_ = 0;
|
2020-06-23 02:36:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScanTargetWidget::setDefaultClearColour() {
|
|
|
|
// Retain the default background colour.
|
|
|
|
const QColor backgroundColour = palette().color(QWidget::backgroundRole());
|
|
|
|
glClearColor(backgroundColour.redF(), backgroundColour.greenF(), backgroundColour.blueF(), 1.0);
|
2020-06-23 00:32:44 +00:00
|
|
|
}
|