4 #include "plotwindow.h" 6 #include "../core/bagplayer.h" 7 #include "../core/log.h" 8 #include "../core/topic.h" 9 #include "../core/workspace.h" 11 #include <QGraphicsScene> 12 #include <QGraphicsView> 14 PlotWindow::PlotWindow() {
16 LockScope()->modified.connect(
this, [
this]() {
18 auto plot_display = plot().resolve(ws.ws());
22 if (!_renderer || plot_display != _renderer->plotDisplay()) {
23 LOG_DEBUG(
"creating plot renderer");
24 _renderer = std::make_shared<PlotRenderer>(plot_display);
27 GlobalEvents::instance()->redraw();
32 button->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed);
33 QMenu *menu =
new QMenu(
this);
34 button->setMenu(menu);
35 button->setText(
"Select plot...");
36 addToolWidget(button);
37 connect(menu, &QMenu::aboutToShow,
this, [
this, menu]() {
39 LockScope()->document()->display()->recurse(
40 [&](
const std::shared_ptr<Display> &display) {
41 if (
auto plot = std::dynamic_pointer_cast<PlotDisplay>(display)) {
42 connect(menu->addAction(plot->name().c_str()),
43 &QAction::triggered,
this, [
this, plot](
bool) {
51 connect(menu->addAction(
"Create new plot"), &QAction::triggered,
this,
54 auto plot = std::make_shared<PlotDisplay>();
55 static size_t counter = 1;
56 plot->name() =
"Plot " + std::to_string(counter++);
57 LockScope()->document()->display()->displays().push_back(plot);
64 ws->modified.connect(button, [
this, button]() {
66 if (
auto plot = this->plot().resolve(ws.ws())) {
67 button->setText(plot->name().c_str());
69 button->setText(
"Select plot...");
76 _renderer_async = _renderer;
78 _renderer->renderSync();
81 GlobalEvents::instance()->redraw();
87 auto *previous_context = QOpenGLContext::currentContext();
88 auto *previous_surface = previous_context->surface();
90 if (!_offscreen_context) {
91 _offscreen_context = std::make_shared<QOpenGLContext>();
92 _offscreen_context->setShareContext(QOpenGLContext::globalShareContext());
93 if (!_offscreen_context->create()) {
94 throw std::runtime_error(
"failed to create opengl context");
98 if (!_offscreen_surface) {
99 _offscreen_surface = std::make_shared<QOffscreenSurface>();
100 _offscreen_surface->create();
101 if (!_offscreen_surface->isValid()) {
102 throw std::runtime_error(
"failed to create offscreen surface");
106 _offscreen_context->makeCurrent(_offscreen_surface.get());
108 if (!_fbo_render || _fbo_render->width() != _width ||
109 _fbo_render->height() != _height) {
110 QOpenGLFramebufferObjectFormat format;
112 format.setSamples(16);
113 format.setAttachment(QOpenGLFramebufferObject::CombinedDepthStencil);
115 std::make_shared<QOpenGLFramebufferObject>(_width, _height, format);
118 if (!_paint_device) {
120 std::make_shared<QOpenGLPaintDevice>(QSize(_width, _height));
122 _paint_device->setSize(QSize(_width, _height));
124 if (!_fbo_render->bind()) {
125 throw std::runtime_error(
"failed to bind fbo");
129 QPainter painter(_paint_device.get());
130 painter.endNativePainting();
132 painter.setRenderHint(QPainter::Antialiasing);
134 if (_renderer_async) {
135 _renderer_async->renderAsync(&painter);
138 painter.beginNativePainting();
141 _fbo_render->release();
144 std::unique_lock<std::mutex> lock(_fbo_mutex);
146 _fbo_buffer.update(_width, _height, GL_RGB8);
149 _fbo_present.attach(_fbo_buffer, GL_COLOR_ATTACHMENT0);
151 V_GL(glBindFramebuffer(GL_READ_FRAMEBUFFER, _fbo_render->handle()));
152 V_GL(glBindFramebuffer(GL_DRAW_FRAMEBUFFER, _fbo_present.id()));
153 V_GL(glBlitFramebuffer(0, 0, _width, _height, 0, 0, _width, _height,
154 GL_COLOR_BUFFER_BIT, GL_NEAREST));
157 V_GL(glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
158 GL_RENDERBUFFER, 0));
160 V_GL(glBindFramebuffer(GL_FRAMEBUFFER, 0));
162 _fbo_initialized =
true;
165 previous_context->makeCurrent(previous_surface);
168 void PlotWindow::paintHUD(QPainter *p) {}
170 void PlotWindow::composite(
int target) {
171 std::unique_lock<std::mutex> lock(_fbo_mutex);
173 V_GL(glViewport(0, 0, _width, _height));
174 V_GL(glClearColor(0, 0, 0, 1));
175 V_GL(glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT));
177 if (_fbo_initialized) {
178 _fbo_composite.bind();
179 _fbo_composite.attach(_fbo_buffer, GL_COLOR_ATTACHMENT0);
181 V_GL(glBindFramebuffer(GL_READ_FRAMEBUFFER, _fbo_composite.id()));
182 V_GL(glBindFramebuffer(GL_DRAW_FRAMEBUFFER, target));
183 V_GL(glBlitFramebuffer(0, 0, _width, _height, 0, 0, _width, _height,
184 GL_COLOR_BUFFER_BIT, GL_NEAREST));
186 _fbo_composite.bind();
187 V_GL(glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
188 GL_RENDERBUFFER, 0));
190 V_GL(glBindFramebuffer(GL_FRAMEBUFFER, 0));
194 void PlotWindow::handleEvent(QEvent *event) {
195 switch (event->type()) {
196 case QEvent::MouseButtonPress:
199 ws->selection() = _renderer->plotDisplay();