Basic repeat.
[dcpomatic.git] / src / lib / playlist.cc
index 028b2b880bea67b3dfa64d3f32bba1157b3dc157..31b16b646f9237cdbaca486d88257722f691dd02 100644 (file)
@@ -28,6 +28,7 @@
 #include "ffmpeg_content.h"
 #include "imagemagick_decoder.h"
 #include "imagemagick_content.h"
+#include "content_factory.h"
 #include "job.h"
 #include "config.h"
 #include "util.h"
@@ -48,21 +49,12 @@ using boost::dynamic_pointer_cast;
 using boost::lexical_cast;
 
 Playlist::Playlist ()
-       : _loop (1)
-       , _sequence_video (true)
+       : _sequence_video (true)
        , _sequencing_video (false)
 {
 
 }
 
-Playlist::Playlist (shared_ptr<const Playlist> other)
-       : _loop (other->_loop)
-{
-       for (ContentList::const_iterator i = other->_content.begin(); i != other->_content.end(); ++i) {
-               _content.push_back ((*i)->clone ());
-       }
-}
-
 Playlist::~Playlist ()
 {
        _content.clear ();
@@ -70,45 +62,21 @@ Playlist::~Playlist ()
 }
 
 void
-Playlist::content_changed (weak_ptr<Content> c, int p)
+Playlist::content_changed (weak_ptr<Content> content, int property, bool frequent)
 {
-       if (p == ContentProperty::LENGTH) {
+       if (property == ContentProperty::LENGTH) {
                maybe_sequence_video ();
        }
-<<<<<<< HEAD
        
-       ContentChanged (c, p);
+       ContentChanged (content, property, frequent);
 }
 
-=======
-
-       ContentChanged (c, p);
-}
 
->>>>>>> 1ea6a456bc2b4a695f6db4720353c35167597b30
 void
 Playlist::maybe_sequence_video ()
 {
        if (!_sequence_video || _sequencing_video) {
                return;
-<<<<<<< HEAD
-       }
-       
-       _sequencing_video = true;
-       
-       ContentList cl = _content;
-       sort (cl.begin(), cl.end(), ContentSorter ());
-       Time last = 0;
-       for (ContentList::iterator i = cl.begin(); i != cl.end(); ++i) {
-               if (!dynamic_pointer_cast<VideoContent> (*i)) {
-                       continue;
-               }
-               
-               (*i)->set_start (last);
-               last = (*i)->end ();
-       }
-       
-=======
        }
        
        _sequencing_video = true;
@@ -125,7 +93,6 @@ Playlist::maybe_sequence_video ()
                last = (*i)->end ();
        }
        
->>>>>>> 1ea6a456bc2b4a695f6db4720353c35167597b30
        _sequencing_video = false;
 }
 
@@ -141,8 +108,6 @@ Playlist::video_identifier () const
                }
        }
 
-       t += lexical_cast<string> (_loop);
-
        return md5_digest (t.c_str(), t.length());
 }
 
@@ -152,23 +117,10 @@ Playlist::set_from_xml (shared_ptr<const Film> film, shared_ptr<const cxml::Node
 {
        list<shared_ptr<cxml::Node> > c = node->node_children ("Content");
        for (list<shared_ptr<cxml::Node> >::iterator i = c.begin(); i != c.end(); ++i) {
-               string const type = (*i)->string_child ("Type");
-
-               boost::shared_ptr<Content> content;
-
-               if (type == "FFmpeg") {
-                       content.reset (new FFmpegContent (film, *i));
-               } else if (type == "ImageMagick") {
-                       content.reset (new ImageMagickContent (film, *i));
-               } else if (type == "Sndfile") {
-                       content.reset (new SndfileContent (film, *i));
-               }
-
-               _content.push_back (content);
+               _content.push_back (content_factory (film, *i));
        }
 
        reconnect ();
-       _loop = node->number_child<int> ("Loop");
        _sequence_video = node->bool_child ("SequenceVideo");
 }
 
@@ -180,7 +132,6 @@ Playlist::as_xml (xmlpp::Node* node)
                (*i)->as_xml (node->add_child ("Content"));
        }
 
-       node->add_child("Loop")->add_child_text(lexical_cast<string> (_loop));
        node->add_child("SequenceVideo")->add_child_text(_sequence_video ? "1" : "0");
 }
 
@@ -206,13 +157,6 @@ Playlist::remove (shared_ptr<Content> c)
        }
 }
 
-void
-Playlist::set_loop (int l)
-{
-       _loop = l;
-       Changed ();
-}
-
 bool
 Playlist::has_subtitles () const
 {
@@ -310,7 +254,7 @@ Playlist::reconnect ()
        _content_connections.clear ();
                
        for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) {
-               _content_connections.push_back ((*i)->Changed.connect (bind (&Playlist::content_changed, this, _1, _2)));
+               _content_connections.push_back ((*i)->Changed.connect (bind (&Playlist::content_changed, this, _1, _2, _3)));
        }
 }
 
@@ -338,3 +282,25 @@ ContentSorter::operator() (shared_ptr<Content> a, shared_ptr<Content> b)
 {
        return a->start() < b->start();
 }
+
+/** @return content in an undefined order */
+Playlist::ContentList
+Playlist::content () const
+{
+       return _content;
+}
+
+void
+Playlist::repeat (shared_ptr<Content> c, int n)
+{
+       Time pos = c->end ();
+       for (int i = 0; i < n; ++i) {
+               shared_ptr<Content> copy = c->clone ();
+               copy->set_start (pos);
+               _content.push_back (copy);
+               pos = copy->end ();
+       }
+
+       reconnect ();
+       Changed ();
+}