]> git.sesse.net Git - kdenlive/blob - src/abstractscopewidget.cpp
Update scopes using a frame image from the consumer-frame-show event
[kdenlive] / src / abstractscopewidget.cpp
1 /***************************************************************************
2  *   Copyright (C) 2010 by Simon Andreas Eugster (simon.eu@gmail.com)      *
3  *   This file is part of kdenlive. See www.kdenlive.org.                  *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  ***************************************************************************/
10
11 #include "qtconcurrentrun.h"
12
13 #include "abstractscopewidget.h"
14 #include "renderer.h"
15 #include "monitor.h"
16
17 #include <QFuture>
18 #include <QColor>
19 #include <QDebug>
20 #include <QMenu>
21 #include <QPainter>
22
23 const int REALTIME_FPS = 30;
24
25 const QColor light(250, 238, 226, 255);
26 const QColor dark ( 40,  40,  39, 255);
27 const QColor dark2( 25,  25,  23, 255);
28
29 AbstractScopeWidget::AbstractScopeWidget(Monitor *projMonitor, Monitor *clipMonitor, QWidget *parent) :
30     QWidget(parent),
31     m_projMonitor(projMonitor),
32     m_clipMonitor(clipMonitor),
33     offset(5),
34     m_accelFactorHUD(1),
35     m_accelFactorScope(1),
36     m_accelFactorBackground(1),
37     m_semaphoreHUD(1),
38     m_semaphoreScope(1),
39     m_semaphoreBackground(1),
40     initialDimensionUpdateDone(false)
41
42 {
43     m_scopePalette = QPalette();
44     m_scopePalette.setBrush(QPalette::Window, QBrush(dark2));
45     m_scopePalette.setBrush(QPalette::Base, QBrush(dark));
46     m_scopePalette.setBrush(QPalette::Button, QBrush(dark));
47     m_scopePalette.setBrush(QPalette::Text, QBrush(light));
48     m_scopePalette.setBrush(QPalette::WindowText, QBrush(light));
49     m_scopePalette.setBrush(QPalette::ButtonText, QBrush(light));
50     this->setPalette(m_scopePalette);
51     this->setAutoFillBackground(true);
52
53     m_aAutoRefresh = new QAction(i18n("Auto Refresh"), this);
54     m_aAutoRefresh->setCheckable(true);
55     m_aRealtime = new QAction(i18n("Realtime (with precision loss)"), this);
56     m_aRealtime->setCheckable(true);
57
58     m_menu = new QMenu(this);
59     m_menu->setPalette(m_scopePalette);
60     m_menu->addAction(m_aAutoRefresh);
61     m_menu->addAction(m_aRealtime);
62
63     this->setContextMenuPolicy(Qt::CustomContextMenu);
64
65     m_activeRender = (m_clipMonitor->isActive()) ? m_clipMonitor->render : m_projMonitor->render;
66
67     bool b = true;
68     b &= connect(this, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(customContextMenuRequested(QPoint)));
69
70     b &= connect(m_activeRender, SIGNAL(rendererPosition(int)), this, SLOT(slotRenderZoneUpdated()));
71     b &= connect(m_activeRender, SIGNAL(frameUpdated(QImage)), this, SLOT(slotRenderZoneUpdated(QImage)));
72
73     b &= connect(this, SIGNAL(signalHUDRenderingFinished(uint,uint)), this, SLOT(slotHUDRenderingFinished(uint,uint)));
74     b &= connect(this, SIGNAL(signalScopeRenderingFinished(uint,uint)), this, SLOT(slotScopeRenderingFinished(uint,uint)));
75     b &= connect(this, SIGNAL(signalBackgroundRenderingFinished(uint,uint)), this, SLOT(slotBackgroundRenderingFinished(uint,uint)));
76     b &= connect(m_aRealtime, SIGNAL(toggled(bool)), this, SLOT(slotResetRealtimeFactor(bool)));
77     b &= connect(m_aAutoRefresh, SIGNAL(toggled(bool)), this, SLOT(slotAutoRefreshToggled(bool)));
78     Q_ASSERT(b);
79 }
80
81 AbstractScopeWidget::~AbstractScopeWidget()
82 {
83     delete m_menu;
84     delete m_aAutoRefresh;
85     delete m_aRealtime;
86 }
87
88 void AbstractScopeWidget::prodHUDThread()
89 {
90     if (this->visibleRegion().isEmpty()) {
91         qDebug() << "Scope " << widgetName() << " is not visible. Not calculating HUD.";
92     } else {
93         if (m_semaphoreHUD.tryAcquire(1)) {
94             Q_ASSERT(!m_threadHUD.isRunning());
95
96             m_newHUDFrames.fetchAndStoreRelaxed(0);
97             m_newHUDUpdates.fetchAndStoreRelaxed(0);
98             m_threadHUD = QtConcurrent::run(this, &AbstractScopeWidget::renderHUD, m_accelFactorHUD);
99             qDebug() << "HUD thread started in " << widgetName();
100
101         } else {
102             qDebug() << "HUD semaphore locked, not prodding in " << widgetName() << ". Thread running: " << m_threadHUD.isRunning();
103         }
104     }
105 }
106
107 void AbstractScopeWidget::prodScopeThread()
108 {
109     // Only start a new thread if the scope is actually visible
110     // and not hidden by another widget on the stack.
111     if (this->visibleRegion().isEmpty()) {
112         qDebug() << "Scope " << widgetName() << " is not visible. Not calculating scope.";
113     } else {
114         // Try to acquire the semaphore. This must only succeed if m_threadScope is not running
115         // anymore. Therefore the semaphore must NOT be released before m_threadScope ends.
116         // If acquiring the semaphore fails, the thread is still running.
117         if (m_semaphoreScope.tryAcquire(1)) {
118             Q_ASSERT(!m_threadScope.isRunning());
119
120             m_newScopeFrames.fetchAndStoreRelaxed(0);
121             m_newScopeUpdates.fetchAndStoreRelaxed(0);
122
123             // See http://doc.qt.nokia.com/latest/qtconcurrentrun.html#run about
124             // running member functions in a thread
125             m_threadScope = QtConcurrent::run(this, &AbstractScopeWidget::renderScope, m_accelFactorScope, m_scopeImage);
126
127             qDebug() << "Scope thread started in " << widgetName();
128
129         } else {
130             qDebug() << "Scope semaphore locked, not prodding in " << widgetName() << ". Thread running: " << m_threadScope.isRunning();
131         }
132     }
133 }
134 void AbstractScopeWidget::prodBackgroundThread()
135 {
136     if (this->visibleRegion().isEmpty()) {
137         qDebug() << "Scope " << widgetName() << " is not visible. Not calculating background.";
138     } else {
139         if (m_semaphoreBackground.tryAcquire(1)) {
140             Q_ASSERT(!m_threadBackground.isRunning());
141
142             m_newBackgroundFrames.fetchAndStoreRelaxed(0);
143             m_newBackgroundUpdates.fetchAndStoreRelaxed(0);
144             m_threadBackground = QtConcurrent::run(this, &AbstractScopeWidget::renderBackground, m_accelFactorBackground);
145             qDebug() << "Background thread started in " << widgetName();
146
147         } else {
148             qDebug() << "Background semaphore locked, not prodding in " << widgetName() << ". Thread running: " << m_threadBackground.isRunning();
149         }
150     }
151 }
152
153 void AbstractScopeWidget::forceUpdate()
154 {
155     m_newHUDUpdates.fetchAndAddRelaxed(1);
156     m_newScopeUpdates.fetchAndAddRelaxed(1);
157     m_newBackgroundUpdates.fetchAndAddRelaxed(1);
158     prodHUDThread();
159     prodScopeThread();
160     prodBackgroundThread();
161 }
162 void AbstractScopeWidget::forceUpdateHUD()
163 {
164     m_newHUDUpdates.fetchAndAddRelaxed(1);
165     prodHUDThread();
166
167 }
168 void AbstractScopeWidget::forceUpdateScope()
169 {
170     m_newScopeUpdates.fetchAndAddRelaxed(1);
171     prodScopeThread();
172
173 }
174 void AbstractScopeWidget::forceUpdateBackground()
175 {
176     m_newBackgroundUpdates.fetchAndAddRelaxed(1);
177     prodBackgroundThread();
178
179 }
180
181
182 ///// Events /////
183
184 void AbstractScopeWidget::mouseReleaseEvent(QMouseEvent *event)
185 {
186     prodHUDThread();
187     prodScopeThread();
188     prodBackgroundThread();
189     QWidget::mouseReleaseEvent(event);
190 }
191
192 void AbstractScopeWidget::resizeEvent(QResizeEvent *event)
193 {
194     // Update the dimension of the available rect for painting
195     m_scopeRect = scopeRect();
196
197     forceUpdate();
198
199     QWidget::resizeEvent(event);
200 }
201
202 void AbstractScopeWidget::raise()
203 {
204     // Widget has been brought to the top of a widget stack,
205     // layers need to be updated.
206     QWidget::raise();
207     forceUpdate();
208 }
209
210 void AbstractScopeWidget::showEvent(QShowEvent *event)
211 {
212     m_scopeRect = scopeRect();
213     QWidget::showEvent(event);
214     m_scopeRect = scopeRect();
215 }
216
217 void AbstractScopeWidget::paintEvent(QPaintEvent *)
218 {
219     QPainter davinci(this);
220     davinci.drawImage(m_scopeRect.topLeft(), m_imgBackground);
221     davinci.drawImage(m_scopeRect.topLeft(), m_imgScope);
222     davinci.drawImage(m_scopeRect.topLeft(), m_imgHUD);
223 }
224
225 void AbstractScopeWidget::customContextMenuRequested(const QPoint &pos)
226 {
227     m_menu->exec(this->mapToGlobal(pos));
228 }
229
230 uint AbstractScopeWidget::calculateAccelFactorHUD(uint oldMseconds, uint) { return ceil((float)oldMseconds*REALTIME_FPS/1000 ); }
231 uint AbstractScopeWidget::calculateAccelFactorScope(uint oldMseconds, uint) { return ceil((float)oldMseconds*REALTIME_FPS/1000 ); }
232 uint AbstractScopeWidget::calculateAccelFactorBackground(uint oldMseconds, uint) { return ceil((float)oldMseconds*REALTIME_FPS/1000 ); }
233
234
235 ///// Slots /////
236
237 void AbstractScopeWidget::slotHUDRenderingFinished(uint mseconds, uint oldFactor)
238 {
239     qDebug() << "HUD rendering has finished, waiting for termination in " << widgetName();
240     m_threadHUD.waitForFinished();
241     m_imgHUD = m_threadHUD.result();
242
243     m_semaphoreHUD.release(1);
244     this->update();
245
246     int accel;
247     if (m_aRealtime->isChecked()) {
248         accel = calculateAccelFactorHUD(mseconds, oldFactor);
249         if (m_accelFactorHUD < 1) {
250             accel = 1;
251         }
252         m_accelFactorHUD = accel;
253     }
254
255     if ( (m_newHUDFrames > 0 && m_aAutoRefresh->isChecked()) || m_newHUDUpdates > 0) {
256         qDebug() << "Trying to start a new HUD thread for " << widgetName()
257                 << ". New frames/updates: " << m_newHUDFrames << "/" << m_newHUDUpdates;
258         prodHUDThread();;
259     }
260 }
261
262 void AbstractScopeWidget::slotScopeRenderingFinished(uint mseconds, uint oldFactor)
263 {
264     // The signal can be received before the thread has really finished. So we
265     // need to wait until it has really finished before starting a new thread.
266     qDebug() << "Scope rendering has finished, waiting for termination in " << widgetName();
267     m_threadScope.waitForFinished();
268     m_imgScope = m_threadScope.result();
269
270     // The scope thread has finished. Now we can release the semaphore, allowing a new thread.
271     // See prodScopeThread where the semaphore is acquired again.
272     m_semaphoreScope.release(1);
273     this->update();
274
275     // Calculate the acceleration factor hint to get «realtime» updates.
276     int accel;
277     if (m_aRealtime->isChecked()) {
278         accel = calculateAccelFactorScope(mseconds, oldFactor);
279         if (m_accelFactorScope < 1) {
280             // If mseconds happens to be 0.
281             accel = 1;
282         }
283         // Don't directly calculate with m_accelFactorScope as we are dealing with concurrency.
284         // If m_accelFactorScope is set to 0 at the wrong moment, who knows what might happen
285         // then :) Therefore use a local variable.
286         m_accelFactorScope = accel;
287     }
288
289     if ( (m_newScopeFrames > 0 && m_aAutoRefresh->isChecked()) || m_newScopeUpdates > 0) {
290         qDebug() << "Trying to start a new scope thread for " << widgetName()
291                 << ". New frames/updates: " << m_newScopeFrames << "/" << m_newScopeUpdates;
292         prodScopeThread();
293     }
294 }
295
296 void AbstractScopeWidget::slotBackgroundRenderingFinished(uint mseconds, uint oldFactor)
297 {
298     qDebug() << "Background rendering has finished, waiting for termination in " << widgetName();
299     m_threadBackground.waitForFinished();
300     m_imgBackground = m_threadBackground.result();
301
302     m_semaphoreBackground.release(1);
303     this->update();
304
305     int accel;
306     if (m_aRealtime->isChecked()) {
307         accel = calculateAccelFactorBackground(mseconds, oldFactor);
308         if (m_accelFactorBackground < 1) {
309             accel = 1;
310         }
311         m_accelFactorBackground = accel;
312     }
313
314     if ( (m_newBackgroundFrames > 0 && m_aAutoRefresh->isChecked()) || m_newBackgroundUpdates > 0) {
315         qDebug() << "Trying to start a new background thread for " << widgetName()
316                 << ". New frames/updates: " << m_newBackgroundFrames << "/" << m_newBackgroundUpdates;
317         prodBackgroundThread();;
318     }
319 }
320
321 void AbstractScopeWidget::slotActiveMonitorChanged(bool isClipMonitor)
322 {
323     qDebug() << "Active monitor has changed in " << widgetName() << ". Is the clip monitor active now? " << isClipMonitor;
324
325     bool b = m_activeRender->disconnect(this);
326     Q_ASSERT(b);
327
328     m_activeRender = (isClipMonitor) ? m_clipMonitor->render : m_projMonitor->render;
329
330     b &= connect(m_activeRender, SIGNAL(rendererPosition(int)), this, SLOT(slotRenderZoneUpdated()));
331     b &= connect(m_activeRender, SIGNAL(frameUpdated(QImage)), this, SLOT(slotRenderZoneUpdated(QImage)));
332     Q_ASSERT(b);
333
334     // Update the scope for the new monitor.
335     prodHUDThread();
336     prodScopeThread();
337     prodBackgroundThread();
338 }
339
340 void AbstractScopeWidget::slotRenderZoneUpdated()
341 {
342     m_newHUDFrames.fetchAndAddRelaxed(1);
343     m_newScopeFrames.fetchAndAddRelaxed(1);
344     m_newBackgroundFrames.fetchAndAddRelaxed(1);
345
346     qDebug() << "Monitor incoming. New frames total HUD/Scope/Background: " << m_newHUDFrames
347             << "/" << m_newScopeFrames << "/" << m_newBackgroundFrames;
348
349     if (this->visibleRegion().isEmpty()) {
350         qDebug() << "Scope of widget " << widgetName() << " is not at the top, not rendering.";
351     } else {
352         if (m_aAutoRefresh->isChecked()) {
353             prodHUDThread();
354             prodScopeThread();
355             prodBackgroundThread();
356         }
357     }
358 }
359
360 void AbstractScopeWidget::slotRenderZoneUpdated(QImage frame)
361 {
362     m_scopeImage = frame;
363     slotRenderZoneUpdated();
364 }
365
366 void AbstractScopeWidget::slotResetRealtimeFactor(bool realtimeChecked)
367 {
368     if (!realtimeChecked) {
369         m_accelFactorHUD = 1;
370         m_accelFactorScope = 1;
371         m_accelFactorBackground = 1;
372     }
373 }
374
375 void AbstractScopeWidget::slotAutoRefreshToggled(bool autoRefresh)
376 {
377     // TODO only if depends on input
378     if (autoRefresh) {
379         forceUpdate();
380     }
381 }