]> git.sesse.net Git - kdenlive/blob - src/abstractclipitem.cpp
Don't double check max length when resizing clip end
[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
31 AbstractClipItem::AbstractClipItem(const ItemInfo info, const QRectF& rect, double fps) :
32         QObject(),
33         QGraphicsRectItem(rect),
34         m_track(0),
35         m_editedKeyframe(-1),
36         m_selectedKeyframe(0),
37         m_keyframeFactor(1),
38         m_fps(fps)
39 {
40     setFlags(/*QGraphicsItem::ItemClipsToShape | */QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
41     setTrack(info.track);
42     m_startPos = info.startPos;
43     m_cropDuration = info.endPos - info.startPos;
44 }
45
46 ItemInfo AbstractClipItem::info() const
47 {
48     ItemInfo itemInfo;
49     itemInfo.startPos = startPos();
50     itemInfo.endPos = endPos();
51     itemInfo.cropStart = m_cropStart;
52     itemInfo.track = track();
53     return itemInfo;
54 }
55
56 GenTime AbstractClipItem::endPos() const
57 {
58     return m_startPos + m_cropDuration;
59 }
60
61 int AbstractClipItem::track() const
62 {
63     return m_track;
64 }
65
66 GenTime AbstractClipItem::cropStart() const
67 {
68     return m_cropStart;
69 }
70
71 GenTime AbstractClipItem::cropDuration() const
72 {
73     return m_cropDuration;
74 }
75
76 void AbstractClipItem::setCropStart(GenTime pos)
77 {
78     m_cropStart = pos;
79 }
80
81 void AbstractClipItem::updateItem()
82 {
83     m_track = (int)(scenePos().y() / KdenliveSettings::trackheight());
84     m_startPos = GenTime((int) scenePos().x(), m_fps);
85 }
86
87 void AbstractClipItem::updateRectGeometry()
88 {
89     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
90 }
91
92 void AbstractClipItem::resizeStart(int posx, double speed)
93 {
94     GenTime durationDiff = GenTime(posx, m_fps) - m_startPos;
95     if (durationDiff == GenTime()) return;
96     //kDebug() << "-- RESCALE DIFF=" << durationDiff.frames(25) << ", CLIP: " << startPos().frames(25) << "-" << endPos().frames(25);
97
98     if (type() == AVWIDGET && cropStart() + durationDiff < GenTime()) {
99         durationDiff = GenTime() - cropStart();
100     } else if (durationDiff >= m_cropDuration) {
101         return;
102         if (m_cropDuration > GenTime(3, m_fps)) durationDiff = GenTime(3, m_fps);
103         else return;
104     }
105     //kDebug()<<"// DURATION DIFF: "<<durationDiff.frames(25)<<", POS: "<<pos().x();
106     m_startPos += durationDiff;
107     if (type() == AVWIDGET) m_cropStart += durationDiff * speed;
108     m_cropDuration = m_cropDuration - durationDiff * speed;
109
110     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
111     moveBy(durationDiff.frames(m_fps), 0);
112     //setPos(m_startPos.frames(m_fps), pos().y());
113     if ((int) scenePos().x() != posx) {
114         //kDebug()<<"//////  WARNING, DIFF IN XPOS: "<<pos().x()<<" == "<<m_startPos.frames(m_fps);
115         GenTime diff = GenTime((int) pos().x() - posx, m_fps);
116         if (type() == AVWIDGET) m_cropStart = m_cropStart + diff;
117         m_cropDuration = m_cropDuration - diff;
118         setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
119         //kDebug()<<"// NEW START: "<<m_startPos.frames(25)<<", NW DUR: "<<m_cropDuration.frames(25);
120     }
121
122
123     //kDebug() << "-- NEW CLIP=" << startPos().frames(25) << "-" << endPos().frames(25);
124     //setRect((double) m_startPos.frames(m_fps) * scale, rect().y(), (double) m_cropDuration.frames(m_fps) * scale, rect().height());
125
126     /*    if (durationDiff < GenTime()) {
127             QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
128             for (int i = 0; i < collisionList.size(); ++i) {
129                 QGraphicsItem *item = collisionList.at(i);
130                 if (item->type() == type() && item->pos().x() < pos().x()) {
131                     kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
132                     GenTime diff = ((AbstractClipItem *)item)->endPos() + GenTime(1, m_fps) - m_startPos;
133                     setRect(0, 0, (m_cropDuration - diff).frames(m_fps) - 0.02, rect().height());
134                     setPos((m_startPos + diff).frames(m_fps), pos().y());
135                     m_startPos += diff;
136                     if (type() == AVWIDGET) m_cropStart += diff;
137                     m_cropDuration = m_cropDuration - diff;
138                     break;
139                 }
140             }
141         }*/
142 }
143
144 void AbstractClipItem::resizeEnd(int posx, double speed, bool /*updateKeyFrames*/)
145 {
146     GenTime durationDiff = GenTime(posx, m_fps) - endPos();
147     if (durationDiff == GenTime()) return;
148     //kDebug() << "// DUR DIFF1:" << durationDiff.frames(25) << ", ADJUSTED: " << durationDiff.frames(25) * speed << ", SPED:" << speed;
149     if (cropDuration() + durationDiff <= GenTime()) {
150         durationDiff = GenTime() - (cropDuration() - GenTime(3, m_fps));
151     }
152     //kDebug() << "// DUR DIFF2:" << durationDiff.frames(25) << ", ADJUSTED: " << durationDiff.frames(25) * speed << ", SPED:" << speed;
153     m_cropDuration += durationDiff * speed;
154     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
155     if (durationDiff > GenTime()) {
156         QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
157         for (int i = 0; i < collisionList.size(); ++i) {
158             QGraphicsItem *item = collisionList.at(i);
159             if (item->type() == type() && item->pos().x() > pos().x()) {
160                 /*kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
161                 kDebug() << "/////////  CURRENT: " << startPos().frames(25) << "x" << endPos().frames(25) << ", RECT: " << rect() << "-" << pos();
162                 kDebug() << "/////////  COLLISION: " << ((AbstractClipItem *)item)->startPos().frames(25) << "x" << ((AbstractClipItem *)item)->endPos().frames(25) << ", RECT: " << ((AbstractClipItem *)item)->rect() << "-" << item->pos();*/
163                 GenTime diff = ((AbstractClipItem *)item)->startPos() - GenTime(1, m_fps) - startPos();
164                 m_cropDuration = diff * speed;
165                 setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
166                 break;
167             }
168         }
169     }
170 }
171
172 GenTime AbstractClipItem::duration() const
173 {
174     return m_cropDuration;
175 }
176
177 GenTime AbstractClipItem::startPos() const
178 {
179     return m_startPos;
180 }
181
182 void AbstractClipItem::setTrack(int track)
183 {
184     m_track = track;
185 }
186
187 double AbstractClipItem::fps() const
188 {
189     return m_fps;
190 }
191
192 GenTime AbstractClipItem::maxDuration() const
193 {
194     return m_maxDuration;
195 }
196
197 void AbstractClipItem::setMaxDuration(const GenTime &max)
198 {
199     m_maxDuration = max;
200 }
201
202 QPainterPath AbstractClipItem::upperRectPart(QRectF br)
203 {
204     QPainterPath roundRectPathUpper;
205     double roundingY = 20;
206     double roundingX = 20;
207     double offset = 1;
208
209     while (roundingX > br.width() / 2) {
210         roundingX = roundingX / 2;
211         roundingY = roundingY / 2;
212     }
213     int br_endx = (int)(br.x() + br .width() - offset);
214     int br_startx = (int)(br.x() + offset);
215     int br_starty = (int)(br.y());
216     int br_halfy = (int)(br.y() + br.height() / 2 - offset);
217
218     roundRectPathUpper.moveTo(br_endx  , br_halfy);
219     roundRectPathUpper.arcTo(br_endx - roundingX , br_starty , roundingX, roundingY, 0.0, 90.0);
220     roundRectPathUpper.lineTo(br_startx + roundingX , br_starty);
221     roundRectPathUpper.arcTo(br_startx , br_starty , roundingX, roundingY, 90.0, 90.0);
222     roundRectPathUpper.lineTo(br_startx , br_halfy);
223
224     return roundRectPathUpper;
225 }
226
227 QPainterPath AbstractClipItem::lowerRectPart(QRectF br)
228 {
229     QPainterPath roundRectPathLower;
230     double roundingY = 20;
231     double roundingX = 20;
232     double offset = 1;
233
234     int br_endx = (int)(br.x() + br .width() - offset);
235     int br_startx = (int)(br.x() + offset);
236     int br_halfy = (int)(br.y() + br.height() / 2 - offset);
237     int br_endy = (int)(br.y() + br.height() - 1);
238
239     while (roundingX > br.width() / 2) {
240         roundingX = roundingX / 2;
241         roundingY = roundingY / 2;
242     }
243     roundRectPathLower.moveTo(br_startx, br_halfy);
244     roundRectPathLower.arcTo(br_startx , br_endy - roundingY , roundingX, roundingY, 180.0, 90.0);
245     roundRectPathLower.lineTo(br_endx - roundingX  , br_endy);
246     roundRectPathLower.arcTo(br_endx - roundingX , br_endy - roundingY, roundingX, roundingY, 270.0, 90.0);
247     roundRectPathLower.lineTo(br_endx  , br_halfy);
248     return roundRectPathLower;
249 }
250
251 void AbstractClipItem::drawKeyFrames(QPainter *painter, QRectF /*exposedRect*/)
252 {
253     if (m_keyframes.count() < 2) return;
254     QRectF br = rect();
255     double maxw = br.width() / m_cropDuration.frames(m_fps);
256     double maxh = br.height() / 100.0 * m_keyframeFactor;
257     double x1;
258     double y1;
259     double x2;
260     double y2;
261
262     // draw line showing default value
263     if (isSelected()) {
264         x1 = br.x();
265         x2 = br.right();
266         y1 = br.bottom() - m_keyframeDefault * maxh;
267         QLineF l(x1, y1, x2, y1);
268         QLineF l2 = painter->matrix().map(l);
269         painter->setPen(QColor(168, 168, 168, 180));
270         painter->drawLine(l2);
271         l2.translate(0, 1);
272         painter->setPen(QColor(108, 108, 108, 180));
273         painter->drawLine(l2);
274         painter->setPen(QColor(Qt::white));
275     }
276
277     // draw keyframes
278     QMap<int, double>::const_iterator i = m_keyframes.constBegin();
279     QColor color(Qt::blue);
280     x1 = br.x() + maxw * (i.key() - m_cropStart.frames(m_fps));
281     y1 = br.bottom() - i.value() * maxh;
282     QLineF l2;
283     while (i != m_keyframes.constEnd()) {
284         if (i.key() == m_selectedKeyframe) color = QColor(Qt::red);
285         else color = QColor(Qt::blue);
286         ++i;
287         if (i == m_keyframes.constEnd()) break;
288         x2 = br.x() + maxw * (i.key() - m_cropStart.frames(m_fps));
289         y2 = br.bottom() - i.value() * maxh;
290         QLineF l(x1, y1, x2, y2);
291         l2 = painter->matrix().map(l);
292         painter->drawLine(l2);
293         if (isSelected()) {
294             painter->fillRect(l2.x1() - 3, l2.y1() - 3, 6, 6, QBrush(color));
295         }
296         x1 = x2;
297         y1 = y2;
298     }
299     if (isSelected()) painter->fillRect(l2.x2() - 3, l2.y2() - 3, 6, 6, QBrush(color));
300 }
301
302 int AbstractClipItem::mouseOverKeyFrames(QPointF pos)
303 {
304     QRectF br = sceneBoundingRect();
305     double maxw = br.width() / m_cropDuration.frames(m_fps);
306     double maxh = br.height() / 100.0 * m_keyframeFactor;
307     if (m_keyframes.count() > 1) {
308         QMap<int, double>::const_iterator i = m_keyframes.constBegin();
309         double x1;
310         double y1;
311         while (i != m_keyframes.constEnd()) {
312             x1 = br.x() + maxw * (i.key() - m_cropStart.frames(m_fps));
313             y1 = br.bottom() - i.value() * maxh;
314             if (qAbs(pos.x() - x1) < 6 && qAbs(pos.y() - y1) < 6) {
315                 setToolTip('[' + QString::number((GenTime(i.key(), m_fps) - m_cropStart).seconds(), 'f', 2) + i18n("seconds") + ", " + QString::number(i.value(), 'f', 1) + "%]");
316                 return i.key();
317             } else if (x1 > pos.x()) break;
318             ++i;
319         }
320     }
321     setToolTip(QString());
322     return -1;
323 }
324
325 void AbstractClipItem::updateSelectedKeyFrame()
326 {
327     if (m_editedKeyframe == -1) return;
328     QRectF br = sceneBoundingRect();
329     double maxw = br.width() / m_cropDuration.frames(m_fps);
330     double maxh = br.height() / 100.0 * m_keyframeFactor;
331     update(br.x() + maxw * (m_selectedKeyframe - m_cropStart.frames(m_fps)) - 3, br.bottom() - m_keyframes[m_selectedKeyframe] * maxh - 3, 12, 12);
332     m_selectedKeyframe = m_editedKeyframe;
333     update(br.x() + maxw * (m_selectedKeyframe - m_cropStart.frames(m_fps)) - 3, br.bottom() - m_keyframes[m_selectedKeyframe] * maxh - 3, 12, 12);
334 }
335
336 int AbstractClipItem::selectedKeyFramePos() const
337 {
338     return m_editedKeyframe;
339 }
340
341 double AbstractClipItem::selectedKeyFrameValue() const
342 {
343     return m_keyframes[m_editedKeyframe];
344 }
345
346 void AbstractClipItem::updateKeyFramePos(const GenTime pos, const double value)
347 {
348     if (!m_keyframes.contains(m_selectedKeyframe)) return;
349     int newpos = (int) pos.frames(m_fps);
350     int start = m_cropStart.frames(m_fps);
351     int end = (m_cropStart + m_cropDuration).frames(m_fps);
352     newpos = qMax(newpos, start);
353     newpos = qMin(newpos, end);
354     if (value < -50 && m_selectedKeyframe != start && m_selectedKeyframe != end) {
355         // remove kexframe if it is dragged outside
356         m_keyframes.remove(m_selectedKeyframe);
357         m_selectedKeyframe = -1;
358         update();
359         return;
360     }
361     if (value > 150 && m_selectedKeyframe != start && m_selectedKeyframe != end) {
362         // remove kexframe if it is dragged outside
363         m_keyframes.remove(m_selectedKeyframe);
364         m_selectedKeyframe = -1;
365         update();
366         return;
367     }
368     double newval = qMax(value, 0.0);
369     newval = qMin(newval, 100.0);
370     newval = newval / m_keyframeFactor;
371     if (m_selectedKeyframe != newpos) m_keyframes.remove(m_selectedKeyframe);
372     m_keyframes[newpos] = newval;
373     m_selectedKeyframe = newpos;
374     update();
375 }
376
377 double AbstractClipItem::keyFrameFactor() const
378 {
379     return m_keyframeFactor;
380 }
381
382 void AbstractClipItem::addKeyFrame(const GenTime pos, const double value)
383 {
384     QRectF br = sceneBoundingRect();
385     double maxh = 100.0 / br.height() / m_keyframeFactor;
386     double newval = (br.bottom() - value) * maxh;
387     kDebug() << "Rect: " << br << "/ SCENE: " << sceneBoundingRect() << ", VALUE: " << value << ", MAX: " << maxh << ", NEWVAL: " << newval;
388     int newpos = (int) pos.frames(m_fps) ;
389     m_keyframes[newpos] = newval;
390     m_selectedKeyframe = newpos;
391     update();
392 }
393
394 bool AbstractClipItem::hasKeyFrames() const
395 {
396     return !m_keyframes.isEmpty();
397 }
398
399 /*QRect AbstractClipItem::visibleRect() {
400     QRect rectInView;
401     if (scene()->views().size() > 0) {
402         rectInView = scene()->views()[0]->viewport()->rect();
403         rectInView.moveTo(scene()->views()[0]->horizontalScrollBar()->value(), scene()->views()[0]->verticalScrollBar()->value());
404         rectInView.adjust(-10, -10, 10, 10);//make view rect 10 pixel greater on each site, or repaint after scroll event
405         //kDebug() << scene()->views()[0]->viewport()->rect() << " " <<  scene()->views()[0]->horizontalScrollBar()->value();
406     }
407     return rectInView;
408 }*/
409
410 CustomTrackScene* AbstractClipItem::projectScene()
411 {
412     if (scene()) return static_cast <CustomTrackScene*>(scene());
413     return NULL;
414 }
415
416 void AbstractClipItem::setItemLocked(bool locked)
417 {
418     if (locked) {
419         setSelected(false);
420         setFlag(QGraphicsItem::ItemIsMovable, false);
421         setFlag(QGraphicsItem::ItemIsSelectable, false);
422     } else setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
423 }
424
425 bool AbstractClipItem::isItemLocked() const
426 {
427     return !(flags() & (QGraphicsItem::ItemIsSelectable));
428 }
429