]> git.sesse.net Git - nageru/blob - mainwindow.cpp
Fix crash on exit when there are no USB cards.
[nageru] / mainwindow.cpp
1 #include "mainwindow.h"
2
3 #include <math.h>
4 #include <stdio.h>
5 #include <signal.h>
6 #include <algorithm>
7 #include <string>
8 #include <vector>
9 #include <QBoxLayout>
10 #include <QKeySequence>
11 #include <QLabel>
12 #include <QMetaType>
13 #include <QPushButton>
14 #include <QResizeEvent>
15 #include <QShortcut>
16 #include <QSize>
17 #include <QString>
18
19 #include "aboutdialog.h"
20 #include "glwidget.h"
21 #include "lrameter.h"
22 #include "mixer.h"
23 #include "post_to_main_thread.h"
24 #include "ui_display.h"
25 #include "ui_mainwindow.h"
26 #include "vumeter.h"
27
28 class QResizeEvent;
29
30 using namespace std;
31 using namespace std::placeholders;
32
33 Q_DECLARE_METATYPE(std::string);
34 Q_DECLARE_METATYPE(std::vector<std::string>);
35
36 MainWindow *global_mainwindow = nullptr;
37
38 namespace {
39
40 void schedule_cut_signal(int ignored)
41 {
42         global_mixer->schedule_cut();
43 }
44
45 void quit_signal(int ignored)
46 {
47         global_mainwindow->close();
48 }
49
50 }  // namespace
51
52 MainWindow::MainWindow()
53         : ui(new Ui::MainWindow)
54 {
55         global_mainwindow = this;
56         ui->setupUi(this);
57
58         ui->me_live->set_output(Mixer::OUTPUT_LIVE);
59         ui->me_preview->set_output(Mixer::OUTPUT_PREVIEW);
60
61         // The menus.
62         connect(ui->cut_action, &QAction::triggered, this, &MainWindow::cut_triggered);
63         connect(ui->exit_action, &QAction::triggered, this, &MainWindow::exit_triggered);
64         connect(ui->about_action, &QAction::triggered, this, &MainWindow::about_triggered),
65
66         // Hook up the transition buttons. (Keyboard shortcuts are set in set_transition_names().)
67         // TODO: Make them dynamic.
68         connect(ui->transition_btn1, &QPushButton::clicked, bind(&MainWindow::transition_clicked, this, 0));
69         connect(ui->transition_btn2, &QPushButton::clicked, bind(&MainWindow::transition_clicked, this, 1));
70         connect(ui->transition_btn3, &QPushButton::clicked, bind(&MainWindow::transition_clicked, this, 2));
71
72         // Aiee...
73         transition_btn1 = ui->transition_btn1;
74         transition_btn2 = ui->transition_btn2;
75         transition_btn3 = ui->transition_btn3;
76         qRegisterMetaType<string>("std::string");
77         qRegisterMetaType<vector<string>>("std::vector<std::string>");
78         connect(ui->me_live, &GLWidget::transition_names_updated, this, &MainWindow::set_transition_names);
79         qRegisterMetaType<Mixer::Output>("Mixer::Output");
80 }
81
82 void MainWindow::resizeEvent(QResizeEvent* event)
83 {
84         QMainWindow::resizeEvent(event);
85
86         // Ask for a relayout, but only after the event loop is done doing relayout
87         // on everything else.
88         QMetaObject::invokeMethod(this, "relayout", Qt::QueuedConnection);
89 }
90
91 void MainWindow::mixer_created(Mixer *mixer)
92 {
93         // Make the previews.
94         unsigned num_previews = mixer->get_num_channels();
95
96         for (unsigned i = 0; i < num_previews; ++i) {
97                 Mixer::Output output = Mixer::Output(Mixer::OUTPUT_INPUT0 + i);
98
99                 QWidget *preview = new QWidget(this);
100                 Ui::Display *ui_display = new Ui::Display;
101                 ui_display->setupUi(preview);
102                 ui_display->label->setText(mixer->get_channel_name(output).c_str());
103                 ui_display->display->set_output(output);
104                 ui->preview_displays->insertWidget(previews.size(), preview, 1);
105                 previews.push_back(ui_display);
106
107                 // Hook up the click.
108                 connect(ui_display->display, &GLWidget::clicked, bind(&MainWindow::channel_clicked, this, i));
109
110                 // Let the theme update the text whenever the resolution or color changed.
111                 connect(ui_display->display, &GLWidget::name_updated, this, &MainWindow::update_channel_name);
112                 connect(ui_display->display, &GLWidget::color_updated, this, &MainWindow::update_channel_color);
113
114                 // Hook up the keyboard key.
115                 QShortcut *shortcut = new QShortcut(QKeySequence(Qt::Key_1 + i), this);
116                 connect(shortcut, &QShortcut::activated, bind(&MainWindow::channel_clicked, this, i));
117
118                 // Hook up the white balance button (irrelevant if invisible).
119                 ui_display->wb_button->setVisible(mixer->get_supports_set_wb(output));
120                 connect(ui_display->wb_button, &QPushButton::clicked, bind(&MainWindow::wb_button_clicked, this, i));
121         }
122
123         // TODO: Fetch all of the values these for completeness,
124         // not just the enable knobs implied by --flat-audio.
125         ui->locut_enabled->setChecked(global_mixer->get_locut_enabled());
126         ui->gainstaging_auto_checkbox->setChecked(global_mixer->get_gain_staging_auto());
127         ui->limiter_enabled->setChecked(global_mixer->get_limiter_enabled());
128         ui->compressor_enabled->setChecked(global_mixer->get_compressor_enabled());
129
130         char buf[256];
131         snprintf(buf, sizeof(buf), "%.1f dB", mixer->get_limiter_threshold_dbfs());
132         ui->limiter_threshold_db_display->setText(buf);
133         snprintf(buf, sizeof(buf), "%.1f dB", mixer->get_compressor_threshold_dbfs());
134         ui->compressor_threshold_db_display->setText(buf);
135
136         connect(ui->locut_cutoff_knob, &QDial::valueChanged, this, &MainWindow::cutoff_knob_changed);
137         cutoff_knob_changed(ui->locut_cutoff_knob->value());
138         connect(ui->locut_enabled, &QCheckBox::stateChanged, [this](int state){
139                 global_mixer->set_locut_enabled(state == Qt::Checked);
140         });
141
142         // Not QDial::valueChanged, as we call setValue() all the time.
143         connect(ui->gainstaging_knob, &QAbstractSlider::sliderMoved, this, &MainWindow::gain_staging_knob_changed);
144         connect(ui->gainstaging_auto_checkbox, &QCheckBox::stateChanged, [this](int state){
145                 global_mixer->set_gain_staging_auto(state == Qt::Checked);
146         });
147         connect(ui->makeup_gain_knob, &QAbstractSlider::sliderMoved, this, &MainWindow::final_makeup_gain_knob_changed);
148         connect(ui->makeup_gain_auto_checkbox, &QCheckBox::stateChanged, [this](int state){
149                 global_mixer->set_final_makeup_gain_auto(state == Qt::Checked);
150         });
151
152         connect(ui->limiter_threshold_knob, &QDial::valueChanged, this, &MainWindow::limiter_threshold_knob_changed);
153         connect(ui->compressor_threshold_knob, &QDial::valueChanged, this, &MainWindow::compressor_threshold_knob_changed);
154         connect(ui->limiter_enabled, &QCheckBox::stateChanged, [this](int state){
155                 global_mixer->set_limiter_enabled(state == Qt::Checked);
156         });
157         connect(ui->compressor_enabled, &QCheckBox::stateChanged, [this](int state){
158                 global_mixer->set_compressor_enabled(state == Qt::Checked);
159         });
160         connect(ui->reset_meters_button, &QPushButton::clicked, this, &MainWindow::reset_meters_button_clicked);
161         mixer->set_audio_level_callback(bind(&MainWindow::audio_level_callback, this, _1, _2, _3, _4, _5, _6, _7, _8));
162
163         struct sigaction act;
164         memset(&act, 0, sizeof(act));
165         act.sa_handler = schedule_cut_signal;
166         act.sa_flags = SA_RESTART;
167         sigaction(SIGHUP, &act, nullptr);
168
169         // Mostly for debugging. Don't override SIGINT, that's so evil if
170         // shutdown isn't instant.
171         memset(&act, 0, sizeof(act));
172         act.sa_handler = quit_signal;
173         act.sa_flags = SA_RESTART;
174         sigaction(SIGUSR1, &act, nullptr);
175 }
176
177 void MainWindow::mixer_shutting_down()
178 {
179         ui->me_live->clean_context();
180         ui->me_preview->clean_context();
181         for (Ui::Display *display : previews) {
182                 display->display->clean_context();
183         }
184 }
185
186 void MainWindow::cut_triggered()
187 {
188         global_mixer->schedule_cut();
189 }
190
191 void MainWindow::exit_triggered()
192 {
193         close();
194 }
195
196 void MainWindow::about_triggered()
197 {
198         AboutDialog().exec();
199 }
200
201 void MainWindow::gain_staging_knob_changed(int value)
202 {
203         ui->gainstaging_auto_checkbox->setCheckState(Qt::Unchecked);
204
205         float gain_db = value * 0.1f;
206         global_mixer->set_gain_staging_db(gain_db);
207
208         // The label will be updated by the audio level callback.
209 }
210
211 void MainWindow::final_makeup_gain_knob_changed(int value)
212 {
213         ui->makeup_gain_auto_checkbox->setCheckState(Qt::Unchecked);
214
215         float gain_db = value * 0.1f;
216         global_mixer->set_final_makeup_gain_db(gain_db);
217
218         // The label will be updated by the audio level callback.
219 }
220
221 void MainWindow::cutoff_knob_changed(int value)
222 {
223         float octaves = value * 0.1f;
224         float cutoff_hz = 20.0 * pow(2.0, octaves);
225         global_mixer->set_locut_cutoff(cutoff_hz);
226
227         char buf[256];
228         snprintf(buf, sizeof(buf), "%ld Hz", lrintf(cutoff_hz));
229         ui->locut_cutoff_display->setText(buf);
230 }
231
232 void MainWindow::limiter_threshold_knob_changed(int value)
233 {
234         float threshold_dbfs = value * 0.1f;
235         global_mixer->set_limiter_threshold_dbfs(threshold_dbfs);
236
237         char buf[256];
238         snprintf(buf, sizeof(buf), "%.1f dB", threshold_dbfs);
239         ui->limiter_threshold_db_display->setText(buf);
240 }
241
242 void MainWindow::compressor_threshold_knob_changed(int value)
243 {
244         float threshold_dbfs = value * 0.1f;
245         global_mixer->set_compressor_threshold_dbfs(threshold_dbfs);
246
247         char buf[256];
248         snprintf(buf, sizeof(buf), "%.1f dB", threshold_dbfs);
249         ui->compressor_threshold_db_display->setText(buf);
250 }
251
252 void MainWindow::reset_meters_button_clicked()
253 {
254         global_mixer->reset_meters();
255         ui->peak_display->setText("-inf");
256         ui->peak_display->setStyleSheet("");
257 }
258
259 void MainWindow::audio_level_callback(float level_lufs, float peak_db, float global_level_lufs,
260                                       float range_low_lufs, float range_high_lufs,
261                                       float gain_staging_db, float final_makeup_gain_db,
262                                       float correlation)
263 {
264         timeval now;
265         gettimeofday(&now, nullptr);
266
267         // The meters are somewhat inefficient to update. Only update them
268         // every 100 ms or so (we get updates every 5–20 ms).
269         double last_update_age = now.tv_sec - last_audio_level_callback.tv_sec +
270                 1e-6 * (now.tv_usec - last_audio_level_callback.tv_usec);
271         if (last_update_age < 0.100) {
272                 return;
273         }
274         last_audio_level_callback = now;
275
276         post_to_main_thread([=]() {
277                 ui->vu_meter->set_level(level_lufs);
278                 ui->lra_meter->set_levels(global_level_lufs, range_low_lufs, range_high_lufs);
279                 ui->correlation_meter->set_correlation(correlation);
280
281                 char buf[256];
282                 snprintf(buf, sizeof(buf), "%.1f", peak_db);
283                 ui->peak_display->setText(buf);
284                 if (peak_db > -0.1f) {  // -0.1 dBFS is EBU peak limit.
285                         ui->peak_display->setStyleSheet("QLabel { background-color: red; color: white; }");
286                 } else {
287                         ui->peak_display->setStyleSheet("");
288                 }
289
290                 ui->gainstaging_knob->setValue(lrintf(gain_staging_db * 10.0f));
291                 snprintf(buf, sizeof(buf), "%+.1f dB", gain_staging_db);
292                 ui->gainstaging_db_display->setText(buf);
293
294                 ui->makeup_gain_knob->setValue(lrintf(final_makeup_gain_db * 10.0f));
295                 snprintf(buf, sizeof(buf), "%+.1f dB", final_makeup_gain_db);
296                 ui->makeup_gain_db_display->setText(buf);
297         });
298 }
299
300 void MainWindow::relayout()
301 {
302         int height = ui->vertical_layout->geometry().height();
303
304         double remaining_height = height;
305
306         // Allocate the height; the most important part is to keep the main displays
307         // at 16:9 if at all possible.
308         double me_width = ui->me_preview->width();
309         double me_height = me_width * 9.0 / 16.0 + ui->label_preview->height() + ui->preview_vertical_layout->spacing();
310
311         // TODO: Scale the widths when we need to do this.
312         if (me_height / double(height) > 0.8) {
313                 me_height = height * 0.8;
314         }
315         remaining_height -= me_height + ui->vertical_layout->spacing();
316
317         double audiostrip_height = ui->audiostrip->geometry().height();
318         remaining_height -= audiostrip_height + ui->vertical_layout->spacing();
319
320         // The previews will be constrained by the remaining height, and the width.
321         double preview_label_height = previews[0]->title_bar->geometry().height() +
322                 previews[0]->main_vertical_layout->spacing();
323         int preview_total_width = ui->preview_displays->geometry().width() - (previews.size() - 1) * ui->preview_displays->spacing();
324         double preview_height = min(remaining_height - preview_label_height, (preview_total_width / double(previews.size())) * 9.0 / 16.0);
325         remaining_height -= preview_height + preview_label_height + ui->vertical_layout->spacing();
326
327         ui->vertical_layout->setStretch(0, lrintf(me_height));
328         ui->vertical_layout->setStretch(1, 0);  // Don't stretch the audiostrip.
329         ui->vertical_layout->setStretch(2, max<int>(1, remaining_height));  // Spacer.
330         ui->vertical_layout->setStretch(3, lrintf(preview_height + preview_label_height));
331
332         // Set the widths for the previews.
333         double preview_width = preview_height * 16.0 / 9.0;
334         for (unsigned i = 0; i < previews.size(); ++i) {
335                 ui->preview_displays->setStretch(i, lrintf(preview_width));
336         }
337
338         // The preview horizontal spacer.
339         double remaining_preview_width = preview_total_width - previews.size() * preview_width;
340         ui->preview_displays->setStretch(previews.size(), lrintf(remaining_preview_width));
341 }
342
343 void MainWindow::set_transition_names(vector<string> transition_names)
344 {
345         if (transition_names.size() < 1 || transition_names[0].empty()) {
346                 transition_btn1->setText(QString(""));
347         } else {
348                 transition_btn1->setText(QString::fromStdString(transition_names[0] + " (J)"));
349                 ui->transition_btn1->setShortcut(QKeySequence("J"));
350         }
351         if (transition_names.size() < 2 || transition_names[1].empty()) {
352                 transition_btn2->setText(QString(""));
353         } else {
354                 transition_btn2->setText(QString::fromStdString(transition_names[1] + " (K)"));
355                 ui->transition_btn2->setShortcut(QKeySequence("K"));
356         }
357         if (transition_names.size() < 3 || transition_names[2].empty()) {
358                 transition_btn3->setText(QString(""));
359         } else {
360                 transition_btn3->setText(QString::fromStdString(transition_names[2] + " (L)"));
361                 ui->transition_btn3->setShortcut(QKeySequence("L"));
362         }
363 }
364
365 void MainWindow::update_channel_name(Mixer::Output output, const string &name)
366 {
367         if (output >= Mixer::OUTPUT_INPUT0) {
368                 unsigned channel = output - Mixer::OUTPUT_INPUT0;
369                 previews[channel]->label->setText(name.c_str());
370         }
371 }
372
373 void MainWindow::update_channel_color(Mixer::Output output, const string &color)
374 {
375         if (output >= Mixer::OUTPUT_INPUT0) {
376                 unsigned channel = output - Mixer::OUTPUT_INPUT0;
377                 previews[channel]->frame->setStyleSheet(QString::fromStdString("background-color:" + color));
378         }
379 }
380
381 void MainWindow::transition_clicked(int transition_number)
382 {
383         global_mixer->transition_clicked(transition_number);
384 }
385
386 void MainWindow::channel_clicked(int channel_number)
387 {
388         if (current_wb_pick_display == channel_number) {
389                 // The picking was already done from eventFilter(), since we don't get
390                 // the mouse pointer here.
391         } else {
392                 global_mixer->channel_clicked(channel_number);
393         }
394 }
395
396 void MainWindow::wb_button_clicked(int channel_number)
397 {
398         current_wb_pick_display = channel_number;
399         QApplication::setOverrideCursor(Qt::CrossCursor);
400 }
401
402 bool MainWindow::eventFilter(QObject *watched, QEvent *event)
403 {
404         if (current_wb_pick_display != -1 &&
405             event->type() == QEvent::MouseButtonRelease &&
406             watched->isWidgetType()) {
407                 QApplication::restoreOverrideCursor();
408                 if (watched == previews[current_wb_pick_display]->display) {
409                         const QMouseEvent *mouse_event = (QMouseEvent *)event;
410                         set_white_balance(current_wb_pick_display, mouse_event->x(), mouse_event->y());
411                 } else {
412                         // The user clicked on something else, give up.
413                         // (The click goes through, which might not be ideal, but, yes.)
414                         current_wb_pick_display = -1;
415                 }
416         }
417         return false;
418 }
419
420 namespace {
421
422 double srgb_to_linear(double x)
423 {
424         if (x < 0.04045) {
425                 return x / 12.92;
426         } else {
427                 return pow((x + 0.055) / 1.055, 2.4);
428         }
429 }
430
431 }  // namespace
432
433 void MainWindow::set_white_balance(int channel_number, int x, int y)
434 {
435         // Set the white balance to neutral for the grab. It's probably going to
436         // flicker a bit, but hopefully this display is not live anyway.
437         global_mixer->set_wb(Mixer::OUTPUT_INPUT0 + channel_number, 0.5, 0.5, 0.5);
438         previews[channel_number]->display->updateGL();
439         QRgb reference_color = previews[channel_number]->display->grabFrameBuffer().pixel(x, y);
440
441         double r = srgb_to_linear(qRed(reference_color) / 255.0);
442         double g = srgb_to_linear(qGreen(reference_color) / 255.0);
443         double b = srgb_to_linear(qBlue(reference_color) / 255.0);
444         global_mixer->set_wb(Mixer::OUTPUT_INPUT0 + channel_number, r, g, b);
445         previews[channel_number]->display->updateGL();
446 }