]> git.sesse.net Git - kdenlive/blob - src/abstractclipitem.cpp
Fix detection of overlapping transitions
[kdenlive] / src / abstractclipitem.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 by Marco Gittler (g.marco@freenet.de)              *
3  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@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  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #include "abstractclipitem.h"
22 #include "customtrackscene.h"
23 #include "kdenlivesettings.h"
24
25 #include <KDebug>
26 #include <KLocale>
27
28 #include <QPainter>
29 #include <QToolTip>
30 #include <QGraphicsSceneMouseEvent>
31
32 AbstractClipItem::AbstractClipItem(const ItemInfo info, const QRectF& rect, double fps) :
33         QObject(),
34         QGraphicsRectItem(rect),
35         m_info(info),
36         m_editedKeyframe(-1),
37         m_selectedKeyframe(0),
38         m_keyframeFactor(1),
39         m_keyframeOffset(0),
40         m_fps(fps)
41 #if QT_VERSION >= 0x040600
42         , m_closeAnimation(NULL)
43 #endif
44 {
45     setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
46 #if QT_VERSION >= 0x040600
47     setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);
48     setFlag(QGraphicsItem::ItemUsesExtendedStyleOption, true);
49 #endif
50 }
51
52 AbstractClipItem::~AbstractClipItem()
53 {
54 #if QT_VERSION >= 0x040600
55     if (m_closeAnimation) delete m_closeAnimation;
56 #endif
57 }
58
59 void AbstractClipItem::closeAnimation()
60 {
61 #if QT_VERSION >= 0x040600
62     if (m_closeAnimation) return;
63     setEnabled(false);
64     m_closeAnimation = new QPropertyAnimation(this, "rect");
65     connect(m_closeAnimation, SIGNAL(finished()), this, SLOT(deleteLater()));
66     m_closeAnimation->setDuration(200);
67     QRectF r = rect();
68     QRectF r2 = r;
69     r2.setLeft(r.left() + r.width() / 2);
70     r2.setTop(r.top() + r.height() / 2);
71     r2.setWidth(1);
72     r2.setHeight(1);
73     m_closeAnimation->setStartValue(r);
74     m_closeAnimation->setEndValue(r2);
75     m_closeAnimation->setEasingCurve(QEasingCurve::InQuad);
76     m_closeAnimation->start();
77 #endif
78 }
79
80 ItemInfo AbstractClipItem::info() const
81 {
82     ItemInfo info = m_info;
83     info.cropStart = cropStart();
84     info.endPos = endPos();
85     return info;
86 }
87
88 int AbstractClipItem::defaultZValue() const
89 {
90     return 2;
91 }
92
93 GenTime AbstractClipItem::endPos() const
94 {
95     return m_info.startPos + m_info.cropDuration;
96 }
97
98 int AbstractClipItem::track() const
99 {
100     return m_info.track;
101 }
102
103 GenTime AbstractClipItem::cropStart() const
104 {
105     return m_info.cropStart;
106 }
107
108 GenTime AbstractClipItem::cropDuration() const
109 {
110     return m_info.cropDuration;
111 }
112
113 void AbstractClipItem::setCropStart(GenTime pos)
114 {
115     m_info.cropStart = pos;
116 }
117
118 void AbstractClipItem::updateItem()
119 {
120     m_info.track = (int)(scenePos().y() / KdenliveSettings::trackheight());
121     m_info.startPos = GenTime((int) scenePos().x(), m_fps);
122 }
123
124 void AbstractClipItem::updateRectGeometry()
125 {
126     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
127 }
128
129 void AbstractClipItem::resizeStart(int posx, bool hasSizeLimit)
130 {
131     GenTime durationDiff = GenTime(posx, m_fps) - m_info.startPos;
132     if (durationDiff == GenTime()) return;
133
134     if (type() == AVWIDGET && hasSizeLimit && (cropStart() + durationDiff < GenTime())) {
135         durationDiff = GenTime() - cropStart();
136     } else if (durationDiff >= cropDuration()) {
137         return;
138         /*if (cropDuration() > GenTime(3, m_fps)) durationDiff = GenTime(3, m_fps);
139         else return;*/
140     }
141     m_info.startPos += durationDiff;
142
143     // set to true if crop from start is negative (possible for color clips, images as they have no size limit)
144     bool negCropStart = false;
145     if (type() == AVWIDGET) {
146         m_info.cropStart += durationDiff;
147         if (m_info.cropStart < GenTime())
148             negCropStart = true;
149     }
150
151     m_info.cropDuration -= durationDiff;
152     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
153     moveBy(durationDiff.frames(m_fps), 0);
154
155     if (m_info.startPos != GenTime(posx, m_fps)) {
156         //kDebug() << "//////  WARNING, DIFF IN XPOS: " << pos().x() << " == " << m_info.startPos.frames(m_fps);
157         GenTime diff = m_info.startPos - GenTime(posx, m_fps);
158
159         if (type() == AVWIDGET)
160             m_info.cropStart += diff;
161
162         m_info.cropDuration -= diff;
163         setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
164         //kDebug()<<"// NEW START: "<<m_startPos.frames(25)<<", NW DUR: "<<m_cropDuration.frames(25);
165     }
166
167     // set crop from start to 0 (isn't relevant as this only happens for color clips, images)
168     if (negCropStart)
169         m_info.cropStart = GenTime();
170
171     //kDebug() << "-- NEW CLIP=" << startPos().frames(25) << "-" << endPos().frames(25);
172     //setRect((double) m_startPos.frames(m_fps) * scale, rect().y(), (double) m_cropDuration.frames(m_fps) * scale, rect().height());
173
174     /*    if (durationDiff < GenTime()) {
175             QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
176             for (int i = 0; i < collisionList.size(); ++i) {
177                 QGraphicsItem *item = collisionList.at(i);
178                 if (item->type() == type() && item->pos().x() < pos().x()) {
179                     kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
180                     GenTime diff = ((AbstractClipItem *)item)->endPos() + GenTime(1, m_fps) - m_startPos;
181                     setRect(0, 0, (m_cropDuration - diff).frames(m_fps) - 0.02, rect().height());
182                     setPos((m_startPos + diff).frames(m_fps), pos().y());
183                     m_startPos += diff;
184                     if (type() == AVWIDGET) m_cropStart += diff;
185                     m_cropDuration = m_cropDuration - diff;
186                     break;
187                 }
188             }
189         }*/
190 }
191
192 void AbstractClipItem::resizeEnd(int posx)
193 {
194     GenTime durationDiff = GenTime(posx, m_fps) - endPos();
195     if (durationDiff == GenTime()) return;
196     if (cropDuration() + durationDiff <= GenTime()) {
197         durationDiff = GenTime() - (cropDuration() - GenTime(3, m_fps));
198     }
199
200     m_info.cropDuration += durationDiff;
201     m_info.endPos += durationDiff;
202
203     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
204     if (durationDiff > GenTime()) {
205         QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
206         for (int i = 0; i < collisionList.size(); ++i) {
207             if (!collisionList.at(i)->isEnabled()) continue;
208             QGraphicsItem *item = collisionList.at(i);
209             if (item->type() == type() && item->pos().x() > pos().x()) {
210                 kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
211                 kDebug() << "/////////  CURRENT: " << startPos().frames(25) << "x" << endPos().frames(25) << ", RECT: " << rect() << "-" << pos();
212                 kDebug() << "/////////  COLLISION: " << ((AbstractClipItem *)item)->startPos().frames(25) << "x" << ((AbstractClipItem *)item)->endPos().frames(25) << ", RECT: " << ((AbstractClipItem *)item)->rect() << "-" << item->pos();
213                 GenTime diff = ((AbstractClipItem *)item)->startPos() - startPos();
214                 m_info.cropDuration = diff;
215                 setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
216                 break;
217             }
218         }
219     }
220 }
221
222 GenTime AbstractClipItem::startPos() const
223 {
224     return m_info.startPos;
225 }
226
227 void AbstractClipItem::setTrack(int track)
228 {
229     m_info.track = track;
230 }
231
232 double AbstractClipItem::fps() const
233 {
234     return m_fps;
235 }
236
237 void AbstractClipItem::updateFps(double fps)
238 {
239     m_fps = fps;
240     setPos((qreal) startPos().frames(m_fps), pos().y());
241     updateRectGeometry();
242 }
243
244 GenTime AbstractClipItem::maxDuration() const
245 {
246     return m_maxDuration;
247 }
248
249 void AbstractClipItem::drawKeyFrames(QPainter *painter, QRectF /*exposedRect*/)
250 {
251     if (m_keyframes.count() < 1)
252         return;
253     QRectF br = rect();
254     double maxw = br.width() / cropDuration().frames(m_fps);
255     double maxh = br.height() / 100.0 * m_keyframeFactor;
256     double start = cropStart().frames(m_fps);
257     double x1, y1, x2, y2;
258     bool antialiasing = painter->renderHints() & QPainter::Antialiasing;
259
260     // draw line showing default value
261     bool active = isSelected() || (parentItem() && parentItem()->isSelected());
262     if (active) {
263         x1 = br.x();
264         x2 = br.right();
265         y1 = br.bottom() - (m_keyframeDefault - m_keyframeOffset) * maxh;
266         QLineF l(x1, y1, x2, y1);
267         QLineF l2 = painter->matrix().map(l);
268         painter->setPen(QColor(168, 168, 168, 180));
269         painter->drawLine(l2);
270         painter->setPen(QColor(108, 108, 108, 180));
271         painter->drawLine(l2.translated(0, 1));
272         painter->setPen(QColor(Qt::white));
273         painter->setRenderHint(QPainter::Antialiasing);
274     }
275
276     // draw keyframes
277     QMap<int, int>::const_iterator i = m_keyframes.constBegin();
278     QColor color(Qt::blue);
279     QLineF l2;
280     x1 = br.x() + maxw * (i.key() - start);
281     y1 = br.bottom() - (i.value() - m_keyframeOffset) * maxh;
282
283     // make sure line begins with clip beginning
284     if (i.key() != start) {
285         QLineF l(br.x(), y1, x1, y1);
286         l2 = painter->matrix().map(l);
287         painter->drawLine(l2);
288     }
289     while (i != m_keyframes.constEnd()) {
290         if (i.key() == m_editedKeyframe)
291             color = QColor(Qt::red);
292         else
293             color = QColor(Qt::blue);
294         ++i;
295         if (i == m_keyframes.constEnd() && m_keyframes.count() != 1)
296             break;
297
298         if (m_keyframes.count() == 1) {
299             x2 = br.right();
300             y2 = y1;
301         } else {
302             x2 = br.x() + maxw * (i.key() - start);
303             y2 = br.bottom() - (i.value() - m_keyframeOffset) * maxh;
304         }
305         QLineF l(x1, y1, x2, y2);
306         l2 = painter->matrix().map(l);
307         painter->drawLine(l2);
308         if (active) {
309             const QRectF frame(l2.x1() - 3, l2.y1() - 3, 6, 6);
310             painter->fillRect(frame, color);
311         }
312         x1 = x2;
313         y1 = y2;
314     }
315
316     // make sure line ends at clip end
317     if (x1 != br.right()) {
318         QLineF l(x1, y1, br.right(), y1);
319         painter->drawLine(painter->matrix().map(l));
320     }
321
322     if (active && m_keyframes.count() > 1) {
323         const QRectF frame(l2.x2() - 3, l2.y2() - 3, 6, 6);
324         painter->fillRect(frame, color);
325     }
326
327     painter->setRenderHint(QPainter::Antialiasing, antialiasing);
328 }
329
330 int AbstractClipItem::mouseOverKeyFrames(QPointF pos, double maxOffset)
331 {
332     const QRectF br = sceneBoundingRect();
333     double maxw = br.width() / cropDuration().frames(m_fps);
334     double maxh = br.height() / 100.0 * m_keyframeFactor;
335     if (m_keyframes.count() > 0) {
336         QMap<int, int>::const_iterator i = m_keyframes.constBegin();
337         double x1;
338         double y1;
339         while (i != m_keyframes.constEnd()) {
340             x1 = br.x() + maxw * (i.key() - cropStart().frames(m_fps));
341             y1 = br.bottom() - (i.value() - m_keyframeOffset) * maxh;
342             if (qAbs(pos.x() - x1) < maxOffset && qAbs(pos.y() - y1) < 10) {
343                 setToolTip('[' + QString::number((GenTime(i.key(), m_fps) - cropStart()).seconds(), 'f', 2) + i18n("seconds") + ", " + QString::number(i.value(), 'f', 1) + "]");
344                 return i.key();
345             } else if (x1 > pos.x()) {
346                 break;
347             }
348             ++i;
349         }
350     }
351     setToolTip(QString());
352     return -1;
353 }
354
355 void AbstractClipItem::updateSelectedKeyFrame()
356 {
357     if (m_editedKeyframe == -1)
358         return;
359     QRectF br = sceneBoundingRect();
360     double maxw = br.width() / cropDuration().frames(m_fps);
361     double maxh = br.height() / 100.0 * m_keyframeFactor;
362     update(br.x() + maxw *(m_selectedKeyframe - cropStart().frames(m_fps)) - 3, br.bottom() - (m_keyframes.value(m_selectedKeyframe) - m_keyframeOffset) * maxh - 3, 12, 12);
363     m_selectedKeyframe = m_editedKeyframe;
364     update(br.x() + maxw *(m_selectedKeyframe - cropStart().frames(m_fps)) - 3, br.bottom() - (m_keyframes.value(m_selectedKeyframe) - m_keyframeOffset) * maxh - 3, 12, 12);
365 }
366
367 int AbstractClipItem::editedKeyFramePos() const
368 {
369     return m_editedKeyframe;
370 }
371
372 double AbstractClipItem::editedKeyFrameValue() const
373 {
374     return m_keyframes.value(m_editedKeyframe);
375 }
376
377 int AbstractClipItem::selectedKeyFramePos() const
378 {
379     return m_selectedKeyframe;
380 }
381
382 double AbstractClipItem::selectedKeyFrameValue() const
383 {
384     return m_keyframes.value(m_selectedKeyframe);
385 }
386
387 void AbstractClipItem::updateKeyFramePos(const GenTime pos, const double value)
388 {
389     if (!m_keyframes.contains(m_editedKeyframe))
390         return;
391     int newpos = (int) pos.frames(m_fps);
392     int min = (int) cropStart().frames(m_fps) - 1;
393     int max = (int)(cropStart() + cropDuration()).frames(m_fps);
394     QMap<int, int>::const_iterator i = m_keyframes.constBegin();
395     while (i.key() < m_editedKeyframe) {
396         min = qMax(i.key(), min);
397         ++i;
398     }
399     i = m_keyframes.constEnd() - 1;
400     while (i.key() > m_editedKeyframe) {
401         max = qMin(i.key(), max);
402         --i;
403     }
404     if (newpos <= min)
405         newpos = min + 1;
406     if (newpos >= max)
407         newpos = max - 1;
408
409     double newval = qMax(value, 0.0);
410     newval = qMin(newval, 100.0);
411     newval = newval / m_keyframeFactor + m_keyframeOffset;
412     if (m_editedKeyframe != newpos)
413         m_keyframes.remove(m_editedKeyframe);
414     m_keyframes[newpos] = (int) newval;
415     m_editedKeyframe = newpos;
416     update();
417 }
418
419 double AbstractClipItem::keyFrameFactor() const
420 {
421     return m_keyframeFactor;
422 }
423
424 int AbstractClipItem::keyFrameNumber() const
425 {
426     return m_keyframes.count();
427 }
428
429 int AbstractClipItem::addKeyFrame(const GenTime pos, const double value)
430 {
431     QRectF br = sceneBoundingRect();
432     double maxh = 100.0 / br.height() / m_keyframeFactor;
433     int newval = (br.bottom() - value) * maxh + m_keyframeOffset;
434     //kDebug() << "Rect: " << br << "/ SCENE: " << sceneBoundingRect() << ", VALUE: " << value << ", MAX: " << maxh << ", NEWVAL: " << newval;
435     int newpos = (int) pos.frames(m_fps) ;
436     m_keyframes[newpos] = newval;
437     m_selectedKeyframe = newpos;
438     update();
439     return newval;
440 }
441
442 bool AbstractClipItem::hasKeyFrames() const
443 {
444     return !m_keyframes.isEmpty();
445 }
446
447 /*QRect AbstractClipItem::visibleRect() {
448     QRect rectInView;
449     if (scene()->views().size() > 0) {
450         rectInView = scene()->views()[0]->viewport()->rect();
451         rectInView.moveTo(scene()->views()[0]->horizontalScrollBar()->value(), scene()->views()[0]->verticalScrollBar()->value());
452         rectInView.adjust(-10, -10, 10, 10);//make view rect 10 pixel greater on each site, or repaint after scroll event
453         //kDebug() << scene()->views()[0]->viewport()->rect() << " " <<  scene()->views()[0]->horizontalScrollBar()->value();
454     }
455     return rectInView;
456 }*/
457
458 CustomTrackScene* AbstractClipItem::projectScene()
459 {
460     if (scene())
461         return static_cast <CustomTrackScene*>(scene());
462     return NULL;
463 }
464
465 void AbstractClipItem::setItemLocked(bool locked)
466 {
467     if (locked)
468         setSelected(false);
469
470     setFlag(QGraphicsItem::ItemIsMovable, !locked);
471     setFlag(QGraphicsItem::ItemIsSelectable, !locked);
472 }
473
474 bool AbstractClipItem::isItemLocked() const
475 {
476     return !(flags() & (QGraphicsItem::ItemIsSelectable));
477 }
478
479 // virtual
480 void AbstractClipItem::mousePressEvent(QGraphicsSceneMouseEvent * event)
481 {
482     if (event->modifiers() & Qt::ShiftModifier) {
483         // User want to do a rectangle selection, so ignore the event to pass it to the view
484         event->ignore();
485     } else {
486         QGraphicsItem::mousePressEvent(event);
487     }
488 }
489
490 int AbstractClipItem::itemHeight()
491 {
492     return 0;
493 }
494
495 int AbstractClipItem::itemOffset()
496 {
497     return 0;
498 }
499
500