]> git.sesse.net Git - nageru/blob - glwidget.cpp
Add the beginnings of a very simple VU meter, based on libebur128.
[nageru] / glwidget.cpp
1 #include <qmetatype.h>  // Needs to come before egl.h.
2 #include <qdatastream.h>  // Needs to come before egl.h.
3 #include <qtextstream.h>  // Needs to come before egl.h.
4 #include <qcursor.h>  // Needs to come before egl.h.
5 #include <qcoreevent.h>  // Needs to come before egl.h.
6 #include <qevent.h>  // Needs to come before egl.h.
7 #include <epoxy/gl.h>
8 #include <epoxy/egl.h>
9 #include <QSurfaceFormat>
10
11 #include "glwidget.h"
12 #include "mainwindow.h"
13
14 #include <movit/resource_pool.h>
15 #include <stdio.h>
16 #include <mutex>
17
18 #include "context.h"
19 #include "mixer.h"
20 #include "ref_counted_gl_sync.h"
21 #include "vumeter.h"
22
23 class MainWindow;
24 class QSurface;
25 class QWidget;
26
27 #undef Success
28 #include <movit/util.h>
29 #include <string>
30
31 using namespace std;
32
33 GLWidget::GLWidget(QWidget *parent)
34     : QGLWidget(parent, global_share_widget),
35       resource_pool(new movit::ResourcePool)
36 {
37 }
38
39 GLWidget::~GLWidget()
40 {
41 }
42
43 void GLWidget::initializeGL()
44 {
45         printf("egl context=%p\n", eglGetCurrentContext());
46         //printf("threads: %p %p\n", QThread::currentThread(), qGuiApp->thread());
47
48         static std::once_flag flag;
49         std::call_once(flag, [this]{
50                 global_mixer = new Mixer(QGLFormat::toSurfaceFormat(format()));
51                 global_mixer->set_audio_level_callback([this](float level){
52                         global_vu_meter->set_level(level);
53                 });
54                 global_mixer->start();
55         });
56         global_mixer->set_frame_ready_callback(output, [this]{
57                 QMetaObject::invokeMethod(this, "update", Qt::AutoConnection);
58                 emit transition_names_updated(global_mixer->get_transition_names());
59         });
60
61         glDisable(GL_BLEND);
62         glDisable(GL_DEPTH_TEST);
63         glDepthMask(GL_FALSE);
64 }
65
66 void GLWidget::resizeGL(int width, int height)
67 {
68         glViewport(0, 0, width, height);
69 }
70
71 void GLWidget::paintGL()
72 {
73         Mixer::DisplayFrame frame;
74         if (!global_mixer->get_display_frame(output, &frame)) {
75                 glClearColor(0.0f, 1.0f, 0.0f, 1.0f);
76                 glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
77                 return;
78         }
79
80         glWaitSync(frame.ready_fence.get(), /*flags=*/0, GL_TIMEOUT_IGNORED);
81         frame.setup_chain();
82         frame.chain->render_to_screen();
83         check_error();
84 }
85
86 void GLWidget::mousePressEvent(QMouseEvent *event)
87 {
88         emit clicked();
89 }