]> git.sesse.net Git - kdenlive/blob - src/transition.cpp
cleanup transition drawing
[kdenlive] / src / transition.cpp
1 /***************************************************************************
2                           transition.cpp  -  description
3                              -------------------
4     begin                : Tue Jan 24 2006
5     copyright            : (C) 2006 by Jean-Baptiste Mardelle
6     email                : jb@ader.ch
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #include "transition.h"
19 #include "clipitem.h"
20 #include "kdenlivesettings.h"
21 #include "customtrackscene.h"
22 #include "mainwindow.h"
23
24 #include <kdebug.h>
25 #include <KIcon>
26 #include <klocale.h>
27
28 #include <QBrush>
29 #include <QDomElement>
30 #include <QPainter>
31 #include <QStyleOptionGraphicsItem>
32 #if QT_VERSION >= 0x040600
33 #include <QPropertyAnimation>
34 #endif
35
36 Transition::Transition(const ItemInfo &info, int transitiontrack, double fps, QDomElement params, bool automaticTransition) :
37         AbstractClipItem(info, QRectF(), fps),
38         m_forceTransitionTrack(false),
39         m_automaticTransition(automaticTransition),
40         m_secondClip(NULL),
41         m_transitionTrack(transitiontrack)
42 {
43     setZValue(3);
44     m_info.cropDuration = info.endPos - info.startPos;
45     setPos(info.startPos.frames(fps), (int)(info.track * KdenliveSettings::trackheight() + itemOffset() + 1));
46
47 #if QT_VERSION >= 0x040600
48     if (!(KGlobalSettings::graphicEffectsLevel() & KGlobalSettings::SimpleAnimationEffects)) {
49         // animation disabled
50         setRect(0, 0, m_info.cropDuration.frames(fps) - 0.02, (qreal) itemHeight());
51     }
52     else {
53         QPropertyAnimation *startAnimation = new QPropertyAnimation(this, "rect");
54         startAnimation->setDuration(200);
55         const QRectF r(0, 0, m_info.cropDuration.frames(fps) - 0.02, (qreal) itemHeight() / 2);
56         const QRectF r2(0, 0, m_info.cropDuration.frames(fps) - 0.02, (qreal)itemHeight());
57         startAnimation->setStartValue(r);
58         startAnimation->setEndValue(r2);
59         startAnimation->setEasingCurve(QEasingCurve::OutQuad);
60         startAnimation->start(QAbstractAnimation::DeleteWhenStopped);
61     }
62 #else
63     setRect(0, 0, m_info.cropDuration.frames(fps) - 0.02, (qreal) itemHeight());
64 #endif
65
66     m_info.cropStart = GenTime();
67     m_maxDuration = GenTime(600);
68
69     if (m_automaticTransition) setBrush(QColor(200, 200, 50, 180));
70     else setBrush(QColor(200, 100, 50, 180));
71
72     //m_referenceClip = clipa;
73     if (params.isNull()) {
74         m_parameters = MainWindow::transitions.getEffectByTag("luma", "dissolve").cloneNode().toElement();
75     } else {
76         m_parameters = params;
77     }
78     if (m_automaticTransition) m_parameters.setAttribute("automatic", 1);
79     else if (m_parameters.attribute("automatic") == "1") m_automaticTransition = true;
80     if (m_parameters.attribute("force_track") == "1") m_forceTransitionTrack = true;
81     m_name = i18n(m_parameters.firstChildElement("name").text().toUtf8().data());
82     m_secondClip = 0;
83
84     //m_referenceClip->addTransition(this);
85 }
86
87 Transition::~Transition()
88 {
89     blockSignals(true);
90     if (scene()) scene()->removeItem(this);
91 }
92
93 Transition *Transition::clone()
94 {
95     QDomElement xml = toXML().cloneNode().toElement();
96     Transition *tr = new Transition(info(), transitionEndTrack(), m_fps, xml);
97     return tr;
98 }
99
100 QString Transition::transitionTag() const
101 {
102     return m_parameters.attribute("tag");
103 }
104
105 QStringList Transition::transitionInfo() const
106 {
107     QStringList info;
108     info << m_name << m_parameters.attribute("tag") << m_parameters.attribute("id");
109     return info;
110 }
111
112 bool Transition::isAutomatic() const
113 {
114     return m_automaticTransition;
115 }
116
117 void Transition::setAutomatic(bool automatic)
118 {
119     m_automaticTransition = automatic;
120     if (automatic) {
121         m_parameters.setAttribute("automatic", 1);
122         setBrush(QColor(200, 200, 50, 180));
123     } else {
124         m_parameters.removeAttribute("automatic");
125         setBrush(QColor(200, 100, 50, 180));
126     }
127     update();
128 }
129
130 void Transition::setTransitionParameters(const QDomElement params)
131 {
132     m_parameters = params;
133     if (m_parameters.attribute("force_track") == "1") setForcedTrack(true, m_parameters.attribute("transition_btrack").toInt());
134     else if (m_parameters.attribute("force_track") == "0") setForcedTrack(false, m_parameters.attribute("transition_btrack").toInt());
135     m_name = i18n(m_parameters.firstChildElement("name").text().toUtf8().data());
136     update();
137 }
138
139 int Transition::transitionEndTrack() const
140 {
141     return m_transitionTrack;
142 }
143
144 void Transition::updateTransitionEndTrack(int newtrack)
145 {
146     if (!m_forceTransitionTrack) m_transitionTrack = newtrack;
147 }
148
149 void Transition::setForcedTrack(bool force, int track)
150 {
151     m_forceTransitionTrack = force;
152     m_transitionTrack = track;
153 }
154
155 bool Transition::forcedTrack() const
156 {
157     return m_forceTransitionTrack;
158 }
159
160 void Transition::paint(QPainter *painter,
161                        const QStyleOptionGraphicsItem *option,
162                        QWidget */*widget*/)
163 {
164     const QRectF exposed = painter->worldTransform().mapRect(option->exposedRect);
165     const QRectF br = rect();
166     QPen framePen;
167     framePen.setWidthF(1.2);
168     const QRectF mapped = painter->worldTransform().mapRect(br);
169
170     QPointF p1(br.x(), br.y() + br.height() / 2 - 7);
171     painter->setWorldMatrixEnabled(false);
172     QPainterPath p;
173     p.addRect(exposed);
174     
175     QPainterPath q;
176     q.addRoundedRect(mapped, 3, 3);
177     painter->setClipPath(p.intersected(q));
178     painter->fillRect(exposed, brush());
179     const QString text = m_name + (m_forceTransitionTrack ? "|>" : QString());
180
181     // Draw clip name
182     if (isSelected() || (parentItem() && parentItem()->isSelected())) {
183         framePen.setColor(scene()->palette().highlight().color());
184         framePen.setColor(Qt::red);
185     }
186     else {
187         framePen.setColor(brush().color().darker());
188     }
189
190     const QRectF txtBounding = painter->boundingRect(mapped, Qt::AlignHCenter | Qt::AlignVCenter, ' ' + text + ' ');
191     painter->setBrush(framePen.color());
192     painter->setPen(framePen.color());
193     painter->drawRoundedRect(txtBounding, 3, 3);
194     painter->setBrush(QBrush(Qt::NoBrush));
195
196     painter->setPen(Qt::white);
197     painter->drawText(txtBounding, Qt::AlignCenter, text);
198
199     // Draw frame
200     painter->setPen(framePen);
201     painter->setClipping(false);
202     painter->setRenderHint(QPainter::Antialiasing, true);
203     painter->drawRoundedRect(mapped.adjusted(0, 0, -0.5, -0.5), 3, 3);
204 }
205
206 int Transition::type() const
207 {
208     return TRANSITIONWIDGET;
209 }
210
211 //virtual
212 QVariant Transition::itemChange(GraphicsItemChange change, const QVariant &value)
213 {
214     if (change == QGraphicsItem::ItemSelectedChange) {
215         if (value.toBool()) setZValue(10);
216         else setZValue(3);
217     }
218     if (change == ItemPositionChange && scene()) {
219         // calculate new position.
220         QPointF newPos = value.toPointF();
221         int xpos = projectScene()->getSnapPointForPos((int) newPos.x(), KdenliveSettings::snaptopoints());
222         xpos = qMax(xpos, 0);
223         newPos.setX(xpos);
224         int newTrack = newPos.y() / KdenliveSettings::trackheight();
225         newTrack = qMin(newTrack, projectScene()->tracksCount() - 1);
226         newTrack = qMax(newTrack, 0);
227         newPos.setY((int)(newTrack * KdenliveSettings::trackheight() + itemOffset() + 1));
228         // Only one clip is moving
229         QRectF sceneShape = rect();
230         sceneShape.translate(newPos);
231         QList<QGraphicsItem*> items;
232         // TODO: manage transitions in OVERWRITE MODE
233         //if (projectScene()->editMode() == NORMALEDIT)
234         items = scene()->items(sceneShape, Qt::IntersectsItemShape);
235         items.removeAll(this);
236
237         bool forwardMove = newPos.x() > pos().x();
238         int offset = 0;
239         if (!items.isEmpty()) {
240             for (int i = 0; i < items.count(); i++) {
241                 if (!items.at(i)->isEnabled()) continue;
242                 if (items.at(i)->type() == type()) {
243                     // Collision!
244                     QPointF otherPos = items.at(i)->pos();
245                     if ((int) otherPos.y() != (int) pos().y()) {
246                         return pos();
247                     }
248                     if (forwardMove) {
249                         offset = qMax(offset, (int)(newPos.x() - (static_cast < AbstractClipItem* >(items.at(i))->startPos() - cropDuration()).frames(m_fps)));
250                     } else {
251                         offset = qMax(offset, (int)((static_cast < AbstractClipItem* >(items.at(i))->endPos().frames(m_fps)) - newPos.x()));
252                     }
253
254                     if (offset > 0) {
255                         if (forwardMove) {
256                             sceneShape.translate(QPointF(-offset, 0));
257                             newPos.setX(newPos.x() - offset);
258                         } else {
259                             sceneShape.translate(QPointF(offset, 0));
260                             newPos.setX(newPos.x() + offset);
261                         }
262                         QList<QGraphicsItem*> subitems = scene()->items(sceneShape, Qt::IntersectsItemShape);
263                         subitems.removeAll(this);
264                         for (int j = 0; j < subitems.count(); j++) {
265                             if (!subitems.at(j)->isEnabled()) continue;
266                             if (subitems.at(j)->type() == type()) {
267                                 // move was not successful, revert to previous pos
268                                 m_info.startPos = GenTime((int) pos().x(), m_fps);
269                                 return pos();
270                             }
271                         }
272                     }
273
274                     m_info.track = newTrack;
275                     m_info.startPos = GenTime((int) newPos.x(), m_fps);
276
277                     return newPos;
278                 }
279             }
280         }
281        
282         m_info.track = newTrack;
283         m_info.startPos = GenTime((int) newPos.x(), m_fps);
284         //kDebug()<<"// ITEM NEW POS: "<<newPos.x()<<", mapped: "<<mapToScene(newPos.x(), 0).x();
285         return newPos;
286     }
287     return QGraphicsItem::itemChange(change, value);
288 }
289
290
291 OPERATIONTYPE Transition::operationMode(QPointF pos)
292 {
293     if (isItemLocked()) return NONE;
294
295     const double scale = projectScene()->scale().x();
296     double maximumOffset = 6 / scale;
297
298     QRectF rect = sceneBoundingRect();
299     if (qAbs((int)(pos.x() - rect.x())) < maximumOffset) return RESIZESTART;
300     else if (qAbs((int)(pos.x() - (rect.right()))) < maximumOffset) return RESIZEEND;
301     return MOVE;
302 }
303
304 //static
305 int Transition::itemHeight()
306 {
307     return (int) (KdenliveSettings::trackheight() / 3 * 2 - 1);
308 }
309
310 //static
311 int Transition::itemOffset()
312 {
313     return (int) (KdenliveSettings::trackheight() / 3 * 2);
314 }
315
316 bool Transition::hasClip(const ClipItem * clip) const
317 {
318     if (clip == m_secondClip) return true;
319     return false;
320 }
321
322 bool Transition::belongsToClip(const ClipItem * clip) const
323 {
324     if (clip == m_referenceClip) return true;
325     return false;
326 }
327
328 /*
329 Transition *Transition::clone() {
330     return new Transition::Transition(rect(), m_referenceClip, toXML() , m_fps);
331 }*/
332
333 const ClipItem *Transition::referencedClip() const
334 {
335     return m_referenceClip;
336 }
337
338 QDomElement Transition::toXML()
339 {
340     m_parameters.setAttribute("type", transitionTag());
341     //m_transitionParameters.setAttribute("inverted", invertTransition());
342     m_parameters.setAttribute("transition_atrack", track());
343     m_parameters.setAttribute("transition_btrack", m_transitionTrack);
344     m_parameters.setAttribute("start", startPos().frames(m_fps));
345     m_parameters.setAttribute("end", endPos().frames(m_fps));
346     m_parameters.setAttribute("force_track", m_forceTransitionTrack);
347     m_parameters.setAttribute("automatic", m_automaticTransition);
348
349     if (m_secondClip) {
350         m_parameters.setAttribute("clipb_starttime", m_secondClip->startPos().frames(m_referenceClip->fps()));
351         m_parameters.setAttribute("clipb_track", transitionEndTrack());
352     }
353     return m_parameters.cloneNode().toElement();
354 }
355
356 bool Transition::hasGeometry()
357 {
358     QDomNodeList namenode = m_parameters.elementsByTagName("parameter");
359     for (int i = 0; i < namenode.count() ; i++) {
360         QDomElement pa = namenode.item(i).toElement();
361         if (pa.attribute("type") == "geometry") return true;
362     }
363     return false;
364 }
365
366 int Transition::defaultZValue() const
367 {
368     return 3;
369 }
370
371 bool Transition::updateKeyframes()
372 {
373     QString keyframes;
374     QDomElement pa;
375     bool modified = false;
376     QDomNodeList namenode = m_parameters.elementsByTagName("parameter");
377     for (int i = 0; i < namenode.count() ; i++) {
378         pa = namenode.item(i).toElement();
379         if (pa.attribute("type") == "geometry") {
380             keyframes = pa.attribute("value");
381             break;
382         }
383     }
384     if (keyframes.isEmpty()) return false;
385     int duration = cropDuration().frames(m_fps) - 1;
386     QStringList values = keyframes.split(';');
387     int frame;
388     int i = 0;
389     foreach(const QString &pos, values) {
390         if (!pos.contains('=')) {
391             i++;
392             continue;
393         }
394         frame = pos.section('=', 0, 0).toInt();
395         if (frame > duration) {
396             modified = true;
397             break;
398         }
399         i++;
400     }
401     if (modified) {
402         if (i > 0) {
403             // Check if there is a keyframe at transition end
404             QString prev = values.at(i-1);
405             bool done = false;
406             if (prev.contains('=')) {
407                 int previousKeyframe = prev.section('=', 0, 0).toInt();
408                 if (previousKeyframe == duration) {
409                     // Remove the last keyframes
410                     while (values.count() > i) {
411                         values.removeLast();
412                     }
413                     done = true;
414                 }
415             }
416             if (!done) {
417                 // Add new keyframe at end and remove last keyframes
418                 QString last = values.at(i);
419                 last = QString::number(duration) + '=' + last.section('=', 1);
420                 values[i] = last;
421                 while (values.count() > (i + 1)) {
422                     values.removeLast();
423                 }
424             }
425         }
426         pa.setAttribute("value", values.join(";"));
427     }
428     
429     return true;
430 }
431