]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.cpp
94166e984abdb5b971e75858f03e6d35ccd70dc8
[kdenlive] / src / kdenlivedoc.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20 #include <KDebug>
21 #include <KStandardDirs>
22 #include <KMessageBox>
23 #include <KLocale>
24 #include <KFileDialog>
25 #include <KIO/NetAccess>
26
27
28 #include "kdenlivedoc.h"
29
30 KdenliveDoc::KdenliveDoc(const KUrl &url, double fps, int width, int height, QWidget *parent):QObject(parent), m_render(NULL), m_url(url), m_fps(fps), m_width(width), m_height(height), m_projectName(NULL), m_commandStack(new KUndoStack())
31 {
32   m_clipManager = new ClipManager(this);
33   if (!url.isEmpty()) {
34     QString tmpFile;
35     if(KIO::NetAccess::download(url.path(), tmpFile, parent))
36     {
37       QFile file(tmpFile);
38       m_document.setContent(&file, false);
39       file.close();
40       m_projectName = url.fileName();
41       KIO::NetAccess::removeTempFile(tmpFile);
42     }
43     else
44     {
45       KMessageBox::error(parent, KIO::NetAccess::lastErrorString());
46     }
47   }
48   else {
49     // Creating new document
50     QDomElement westley = m_document.createElement("westley");
51     m_document.appendChild(westley);
52     QDomElement doc = m_document.createElement("kdenlivedoc");
53     doc.setAttribute("version", "0.6");
54     westley.appendChild(doc);
55     QDomElement props = m_document.createElement("properties");
56     doc.setAttribute("width", m_width);
57     doc.setAttribute("height", m_height);
58     doc.setAttribute("projectfps", m_fps);
59     doc.appendChild(props);
60
61
62     /*QDomElement westley = m_document.createElement("westley");
63     m_document.appendChild(westley);*/
64
65
66     QDomElement tractor = m_document.createElement("tractor");
67     QDomElement multitrack = m_document.createElement("multitrack");
68     QDomElement playlist = m_document.createElement("playlist");
69     QDomElement producer = m_document.createElement("producer");
70     /*producer.setAttribute("mlt_service", "colour");
71     producer.setAttribute("colour", "red");
72     playlist.appendChild(producer);*/
73     multitrack.appendChild(playlist);
74     QDomElement playlist1 = m_document.createElement("playlist");
75     playlist1.setAttribute("id", "playlist1");
76     playlist1.setAttribute("hide", "video");
77     multitrack.appendChild(playlist1);
78     QDomElement playlist2 = m_document.createElement("playlist");
79     playlist2.setAttribute("id", "playlist2");
80     playlist2.setAttribute("hide", "video");
81     multitrack.appendChild(playlist2);
82     QDomElement playlist3 = m_document.createElement("playlist");
83     multitrack.appendChild(playlist3);
84     playlist3.setAttribute("id", "playlist3");
85     QDomElement playlist4 = m_document.createElement("playlist");
86     multitrack.appendChild(playlist4);
87     playlist4.setAttribute("id", "playlist4");
88     QDomElement playlist5 = m_document.createElement("playlist");
89     multitrack.appendChild(playlist5);
90     playlist5.setAttribute("id", "playlist5");
91     tractor.appendChild(multitrack);
92
93     for (uint i = 2; i < 6 ; i++) {
94       QDomElement transition = m_document.createElement("transition");
95       transition.setAttribute("in", "0");
96       //TODO: Make audio mix last for all project duration
97       transition.setAttribute("out", "15000");
98       transition.setAttribute("a_track", QString::number(1));
99       transition.setAttribute("b_track", QString::number(i));
100       transition.setAttribute("mlt_service", "mix");
101       transition.setAttribute("combine", "1");
102       tractor.appendChild(transition);
103     }
104
105     doc.appendChild(tractor);
106     
107   }
108   if (fps == 30000.0 / 1001.0 ) m_timecode.setFormat(30, true);
109     else m_timecode.setFormat((int) fps);
110 }
111
112 KdenliveDoc::~KdenliveDoc()
113 {
114   delete m_commandStack;
115   delete m_clipManager;
116 }
117
118 ClipManager *KdenliveDoc::clipManager()
119 {
120   return m_clipManager;
121 }
122
123 KUndoStack *KdenliveDoc::commandStack()
124 {
125   return m_commandStack;
126 }
127
128 void KdenliveDoc::setRenderer(Render *render)
129 {
130   m_render = render;
131   if (m_render) m_render->setSceneList(m_document);
132 }
133
134 Render *KdenliveDoc::renderer()
135 {
136   return m_render;
137 }
138
139 void KdenliveDoc::updateClip(int id)
140 {
141   emit updateClipDisplay(id);
142 }
143
144 int KdenliveDoc::getFramePos(QString duration)
145 {
146   return m_timecode.getFrameCount(duration, m_fps);
147 }
148
149 QString KdenliveDoc::producerName(int id)
150 {
151   QString result = "unnamed";
152   QDomNodeList prods = producersList();
153   int ct = prods.count();
154   for (int i = 0; i <  ct ; i++)
155   {
156     QDomElement e = prods.item(i).toElement();
157     if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
158       result = e.attribute("name");
159       if (result.isEmpty()) result = KUrl(e.attribute("resource")).fileName();
160       break;
161     }
162   }
163   return result;
164 }
165
166 void KdenliveDoc::setProducerDuration(int id, int duration)
167 {
168   QDomNodeList prods = producersList();
169   int ct = prods.count();
170   for (int i = 0; i <  ct ; i++)
171   {
172     QDomElement e = prods.item(i).toElement();
173     if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
174       e.setAttribute("duration", QString::number(duration));
175       break;
176     }
177   }
178 }
179
180 int KdenliveDoc::getProducerDuration(int id)
181 {
182   int result = 0;
183   QDomNodeList prods = producersList();
184   int ct = prods.count();
185   for (int i = 0; i <  ct ; i++)
186   {
187     QDomElement e = prods.item(i).toElement();
188     if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
189       result = e.attribute("duration").toInt();
190       break;
191     }
192   }
193   return result;
194 }
195
196
197 QDomDocument KdenliveDoc::generateSceneList()
198 {
199     QDomDocument doc;
200     QDomElement westley = doc.createElement("westley");
201     doc.appendChild(westley);
202     QDomElement prod = doc.createElement("producer");
203 }
204
205 QDomDocument KdenliveDoc::toXml()
206 {
207   return m_document;
208 }
209
210 Timecode KdenliveDoc::timecode()
211 {
212   return m_timecode;
213 }
214
215 QString KdenliveDoc::documentName()
216 {
217   return m_projectName;
218 }
219
220 QDomNodeList KdenliveDoc::producersList()
221 {
222   return m_document.elementsByTagName("producer");
223 }
224
225 void KdenliveDoc::setProducers(QDomElement doc)
226 {
227   QDomNode kdenlivedocument = m_document.elementsByTagName("kdenlivedoc").item(0);
228
229   QDomNodeList list = m_document.elementsByTagName("producer");
230   int ct = list.count();
231     kDebug()<<"DELETING CHILD PRODUCERS: "<<ct;
232   for (int i = ct; i > 0; i--) {
233     kdenlivedocument.removeChild(list.item(i));
234    }
235
236   QDomNode n = doc.firstChild();
237   ct = 0;
238   while(!n.isNull()) {
239      QDomElement e = n.toElement(); // try to convert the node to an element.
240      if(!e.isNull() && e.tagName() == "producer") {
241          kdenlivedocument.appendChild(m_document.importNode(e, true));
242         ct++;
243      }
244      n = n.nextSibling();
245   }
246   kDebug()<<"ADDING CHILD PRODS: "<<ct<<"\n";
247   //kDebug()<<m_document.toString();
248 }
249
250 double KdenliveDoc::fps()
251 {
252   return m_fps;
253 }
254
255 int KdenliveDoc::width()
256 {
257   return m_width;
258 }
259
260 int KdenliveDoc::height()
261 {
262   return m_height;
263 }
264
265 KUrl KdenliveDoc::url()
266 {
267   return m_url;
268 }
269
270 void KdenliveDoc::addClip(const QDomElement &elem, const int clipId)
271 {
272   kDebug()<<"/////////  DOCUM, CREATING NEW CLIP, ID:"<<clipId;
273   DocClipBase *clip = new DocClipBase(elem, clipId);
274   m_clipManager->addClip(clip);
275   emit addProjectClip(clip);
276 }
277
278 void KdenliveDoc::deleteProjectClip(const uint clipId)
279 {
280   emit deletTimelineClip(clipId);
281   m_clipManager->slotDeleteClip(clipId);
282 }
283
284 void KdenliveDoc::deleteClip(const uint clipId)
285 {
286   emit signalDeleteProjectClip(clipId);
287   m_clipManager->deleteClip(clipId);
288 }
289
290 void KdenliveDoc::slotAddClipFile(const KUrl url, const QString group)
291 {
292   kDebug()<<"/////////  DOCUM, ADD CLP: "<<url;
293   m_clipManager->slotAddClipFile(url, group);
294 }
295
296 DocClipBase *KdenliveDoc::getBaseClip(int clipId)
297 {
298   return m_clipManager->getClipById(clipId);
299 }
300
301 void KdenliveDoc::slotAddColorClipFile(const QString name, const QString color, QString duration, const QString group)
302 {
303   m_clipManager->slotAddColorClipFile(name, color, duration, group);
304 }
305
306 #include "kdenlivedoc.moc"
307