replace fixed-point linear interpolation with double-based version, thereby removing...
[ardour.git] / libs / ardour / playlist.cc
index 0b0d5ecc228a3c8100ef6f6ddfa3561f77c724a0..5660e52a52b3cc6ada352d00fe06976781dd6a6f 100644 (file)
 
 #include <sigc++/bind.h>
 
-#include <pbd/failed_constructor.h>
-#include <pbd/stl_delete.h>
-#include <pbd/xml++.h>
-#include <pbd/stacktrace.h>
-
-#include <ardour/playlist.h>
-#include <ardour/session.h>
-#include <ardour/region.h>
-#include <ardour/region_factory.h>
-#include <ardour/playlist_factory.h>
-#include <ardour/transient_detector.h>
+#include "pbd/failed_constructor.h"
+#include "pbd/stl_delete.h"
+#include "pbd/xml++.h"
+#include "pbd/stacktrace.h"
+
+#include "ardour/playlist.h"
+#include "ardour/session.h"
+#include "ardour/region.h"
+#include "ardour/region_factory.h"
+#include "ardour/playlist_factory.h"
+#include "ardour/transient_detector.h"
 
 #include "i18n.h"
 
@@ -250,23 +250,9 @@ Playlist::init (bool hide)
        Modified.connect (mem_fun (*this, &Playlist::mark_session_dirty));
 }
 
-Playlist::Playlist (const Playlist& pl)
-       : SessionObject(pl._session, pl._name)
-       , _type(pl.data_type())
-{
-       fatal << _("playlist const copy constructor called") << endmsg;
-}
-
-Playlist::Playlist (Playlist& pl)
-       : SessionObject(pl._session, pl._name)
-       , _type(pl.data_type())
-{
-       fatal << _("playlist non-const copy constructor called") << endmsg;
-}
-
 Playlist::~Playlist ()
 {
-       { 
+       {
                RegionLock rl (this);
 
                for (set<boost::shared_ptr<Region> >::iterator i = all_regions.begin(); i != all_regions.end(); ++i) {
@@ -356,10 +342,29 @@ Playlist::notify_region_removed (boost::shared_ptr<Region> r)
                pending_length = false;
                LengthChanged (); /* EMIT SIGNAL */
                pending_modified = false;
+               RegionRemoved (boost::weak_ptr<Region> (r)); /* EMIT SIGNAL */
                Modified (); /* EMIT SIGNAL */
        }
 }
 
+void
+Playlist::notify_region_moved (boost::shared_ptr<Region> r)
+{
+       Evoral::RangeMove<nframes_t> const move (r->last_position (), r->length (), r->position ());
+                       
+       if (holding_state ()) {
+
+               pending_range_moves.push_back (move);
+               
+       } else {
+
+               list< Evoral::RangeMove<nframes_t> > m;
+               m.push_back (move);
+               RangesMoved (m);
+       }
+
+}
+
 void
 Playlist::notify_region_added (boost::shared_ptr<Region> r)
 {
@@ -375,6 +380,7 @@ Playlist::notify_region_added (boost::shared_ptr<Region> r)
                pending_length = false;
                LengthChanged (); /* EMIT SIGNAL */
                pending_modified = false;
+               RegionAdded (boost::weak_ptr<Region> (r)); /* EMIT SIGNAL */
                Modified (); /* EMIT SIGNAL */
        }
 }
@@ -415,21 +421,25 @@ Playlist::flush_notifications ()
        // pending_bounds.sort (cmp);
 
        for (RegionList::iterator r = pending_bounds.begin(); r != pending_bounds.end(); ++r) {
-               if (Config->get_layer_model() == MoveAddHigher) {
+               if (_session.config.get_layer_model() == MoveAddHigher) {
                        timestamp_layer_op (*r);
                }
+
                pending_length = true;
                dependent_checks_needed.insert (*r);
-               n++;
-       }
 
-       for (s = pending_adds.begin(); s != pending_adds.end(); ++s) {
-               dependent_checks_needed.insert (*s);
                n++;
        }
 
        for (s = pending_removes.begin(); s != pending_removes.end(); ++s) {
                remove_dependents (*s);
+               RegionRemoved (boost::weak_ptr<Region> (*s)); /* EMIT SIGNAL */
+               n++;
+       }
+
+       for (s = pending_adds.begin(); s != pending_adds.end(); ++s) {
+               RegionAdded (boost::weak_ptr<Region> (*s)); /* EMIT SIGNAL */
+               dependent_checks_needed.insert (*s);
                n++;
        }
 
@@ -444,17 +454,21 @@ Playlist::flush_notifications ()
                        relayer ();
                }
                pending_modified = false;
-               Modified (); /* EMIT SIGNAL */
-               
+               Modified (); /* EMIT SIGNAL */          
        }
 
        for (s = dependent_checks_needed.begin(); s != dependent_checks_needed.end(); ++s) {
                check_dependents (*s, false);
        }
 
+       if (!pending_range_moves.empty ()) {
+               RangesMoved (pending_range_moves);
+       }
+
        pending_adds.clear ();
        pending_removes.clear ();
        pending_bounds.clear ();
+       pending_range_moves.clear ();
 
        in_flush = false;
 }
@@ -464,15 +478,18 @@ Playlist::flush_notifications ()
  *************************************************************/
 
 void
-Playlist::add_region (boost::shared_ptr<Region> region, nframes_t position, float times) 
-{ 
+Playlist::add_region (boost::shared_ptr<Region> region, nframes_t position, float times, bool auto_partition
+{
        RegionLock rlock (this);
-       delay_notifications();
        times = fabs (times);
        
        int itimes = (int) floor (times);
 
        nframes_t pos = position;
+
+       if(times == 1 && auto_partition){
+               partition(pos, (nframes_t) (pos + region->length()), true);
+       }
        
        if (itimes >= 1) {
                add_region_internal (region, pos);
@@ -501,9 +518,7 @@ Playlist::add_region (boost::shared_ptr<Region> region, nframes_t position, floa
                add_region_internal (sub, pos);
        }
 
-
        possibly_splice_unlocked (position, (pos + length) - position, boost::shared_ptr<Region>());
-       release_notifications ();
 }
 
 void
@@ -518,12 +533,15 @@ Playlist::set_region_ownership ()
        }
 }
 
-void
+bool
 Playlist::add_region_internal (boost::shared_ptr<Region> region, nframes_t position)
 {
-       assert(region->data_type() == _type);
+       if (region->data_type() != _type){
+               return false;
+       }
 
        RegionSortByPosition cmp;
+       
        nframes_t old_length = 0;
 
        if (!holding_state()) {
@@ -554,14 +572,20 @@ Playlist::add_region_internal (boost::shared_ptr<Region> region, nframes_t posit
        notify_region_added (region);
        
        if (!holding_state ()) {
+
                check_dependents (region, false);
+
                if (old_length != _get_maximum_extent()) {
                        notify_length_changed ();
                }
        }
 
-       region->StateChanged.connect (sigc::bind (mem_fun (this, &Playlist::region_changed_proxy), 
-                                                 boost::weak_ptr<Region> (region)));
+       region_state_changed_connections.push_back (
+               region->StateChanged.connect (sigc::bind (mem_fun (this, &Playlist::region_changed_proxy), 
+                                                         boost::weak_ptr<Region> (region)))
+               );
+
+       return true;
 }
 
 void
@@ -661,11 +685,11 @@ Playlist::get_region_list_equivalent_regions (boost::shared_ptr<Region> other, v
 }
 
 void
-Playlist::partition (nframes_t start, nframes_t end, bool just_top_level)
+Playlist::partition (nframes_t start, nframes_t end, bool cut)
 {
        RegionList thawlist;
 
-       partition_internal (start, end, false, thawlist);
+       partition_internal (start, end, cut, thawlist);
 
        for (RegionList::iterator i = thawlist.begin(); i != thawlist.end(); ++i) {
                (*i)->thaw ("separation");
@@ -679,6 +703,7 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
 
        {
                RegionLock rlock (this);
+
                boost::shared_ptr<Region> region;
                boost::shared_ptr<Region> current;
                string new_name;
@@ -695,16 +720,18 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                RegionList copy = regions;
                
                for (RegionList::iterator i = copy.begin(); i != copy.end(); i = tmp) {
-                       
+
                        tmp = i;
                        ++tmp;
                        
                        current = *i;
 
                        if (current->first_frame() >= start && current->last_frame() < end) {
+
                                if (cutting) {
                                        remove_region_internal (current);
                                }
+
                                continue;
                        }
                        
@@ -727,7 +754,6 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                        pos4 = current->last_frame();
                        
                        if (overlap == OverlapInternal) {
-                       
                                /* split: we need 3 new regions, the front, middle and end.
                                   cut:   we need 2 regions, the front and end.
                                */
@@ -744,7 +770,6 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                                */
 
                                if (!cutting) {
-                               
                                        /* "middle" ++++++ */
                                        
                                        _session.region_name (new_name, current->name(), false);
@@ -759,7 +784,7 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                                _session.region_name (new_name, current->name(), false);
                                region = RegionFactory::create (current, pos3 - pos1, pos4 - pos3, new_name, 
                                                                regions.size(), Region::Flag(current->flags()|Region::Automatic|Region::RightOfSplit));
-                               
+
                                add_region_internal (region, end);
                                new_regions.push_back (region);
                                
@@ -768,9 +793,9 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                                current->freeze ();
                                thawlist.push_back (current);
                                current->trim_end (pos2, this);
-                               
+
                        } else if (overlap == OverlapEnd) {
-                               
+
                                /*
                                                              start           end
                                    ---------------*************************------------
@@ -782,12 +807,13 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                                */
                                
                                if (!cutting) {
-                                       
+
                                        /* end +++++ */
                                        
                                        _session.region_name (new_name, current->name(), false);
                                        region = RegionFactory::create (current, pos2 - pos1, pos4 - pos2, new_name, (layer_t) regions.size(),
                                                                        Region::Flag(current->flags()|Region::Automatic|Region::LeftOfSplit));
+
                                        add_region_internal (region, start);
                                        new_regions.push_back (region);
                                }
@@ -797,9 +823,9 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                                current->freeze ();
                                thawlist.push_back (current);
                                current->trim_end (pos2, this);
-                               
+
                        } else if (overlap == OverlapStart) {
-                               
+
                                /* split: we need 2 regions: the front and the end.
                                   cut: just trim current to skip the cut area
                                */
@@ -817,11 +843,11 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                                */
 
                                if (!cutting) {
-                               
                                        /* front **** */
                                        _session.region_name (new_name, current->name(), false);
                                        region = RegionFactory::create (current, 0, pos3 - pos1, new_name,
                                                                        regions.size(), Region::Flag(current->flags()|Region::Automatic|Region::RightOfSplit));
+
                                        add_region_internal (region, pos1);
                                        new_regions.push_back (region);
                                } 
@@ -831,9 +857,8 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                                current->freeze ();
                                thawlist.push_back (current);
                                current->trim_front (pos3, this);
-                               
                        } else if (overlap == OverlapExternal) {
-                               
+
                                /* split: no split required.
                                   cut: remove the region.
                                */
@@ -853,10 +878,11 @@ Playlist::partition_internal (nframes_t start, nframes_t end, bool cutting, Regi
                                if (cutting) {
                                        remove_region_internal (current);
                                }
+
                                new_regions.push_back (current);
                        }
                }
-               
+
                in_partition = false;
        }
 
@@ -1250,7 +1276,7 @@ Playlist::region_bounds_changed (Change what_changed, boost::shared_ptr<Region>
                if (holding_state ()) {
                        pending_bounds.push_back (region);
                } else {
-                       if (Config->get_layer_model() == MoveAddHigher) {
+                       if (_session.config.get_layer_model() == MoveAddHigher) {
                                /* it moved or changed length, so change the timestamp */
                                timestamp_layer_op (region);
                        }
@@ -1287,20 +1313,22 @@ Playlist::region_changed (Change what_changed, boost::shared_ptr<Region> region)
                return false;
        }
 
-       {
-               if (what_changed & BoundsChanged) {
-                       region_bounds_changed (what_changed, region);
-                       save = !(_splicing || _nudging);
-               }
+       if (what_changed & BoundsChanged) {
+               region_bounds_changed (what_changed, region);
+               save = !(_splicing || _nudging);
+       }
                
-               if ((what_changed & our_interests) && 
-                   !(what_changed & Change (ARDOUR::PositionChanged|ARDOUR::LengthChanged))) {
-                       check_dependents (region, false);
-               }
+       if ((what_changed & our_interests) && 
+           !(what_changed & Change (ARDOUR::PositionChanged|ARDOUR::LengthChanged))) {
+               check_dependents (region, false);
+       }
+
+       if (what_changed & Change (ARDOUR::PositionChanged)) {
+               notify_region_moved (region);
+       }
                
-               if (what_changed & our_interests) {
-                       save = true;
-               }
+       if (what_changed & our_interests) {
+               save = true;
        }
 
        return save;
@@ -1317,11 +1345,21 @@ Playlist::drop_regions ()
 void
 Playlist::clear (bool with_signals)
 {
-       { 
+       {
                RegionLock rl (this);
+
+               for (
+                       std::list<sigc::connection>::iterator i = region_state_changed_connections.begin ();
+                       i != region_state_changed_connections.end ();
+                       ++i
+               ) {
+                       i->disconnect ();       
+               }
+                    
                for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
                        pending_removes.insert (*i);
                }
+
                regions.clear ();
        }
 
@@ -1565,9 +1603,12 @@ Playlist::find_next_region (nframes_t frame, RegionPoint point, int dir)
        boost::shared_ptr<Region> ret;
        nframes_t closest = max_frames;
 
+       bool end_iter = false;
 
        for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
 
+               if(end_iter) break;
+
                nframes_t distance;
                boost::shared_ptr<Region> r = (*i);
                nframes_t pos = 0;
@@ -1580,30 +1621,36 @@ Playlist::find_next_region (nframes_t frame, RegionPoint point, int dir)
                        pos = r->last_frame ();
                        break;
                case SyncPoint:
-                       pos = r->adjust_to_sync (r->first_frame());
+                       pos = r->sync_position ();
+                       // r->adjust_to_sync (r->first_frame());
                        break;
                }
 
                switch (dir) {
                case 1: /* forwards */
 
-                       if (pos >= frame) {
+                       if (pos > frame) {
                                if ((distance = pos - frame) < closest) {
                                        closest = distance;
                                        ret = r;
+                                       end_iter = true;
                                }
                        }
 
                        break;
 
                default: /* backwards */
-
-                       if (pos <= frame) {
+                       
+                       if (pos < frame) {
                                if ((distance = frame - pos) < closest) {
                                        closest = distance;
                                        ret = r;
                                }
                        }
+                       else {
+                               end_iter = true;
+                       }
+
                        break;
                }
        }
@@ -1622,14 +1669,10 @@ Playlist::find_next_region_boundary (nframes64_t frame, int dir)
        if (dir > 0) {
 
                for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
-                       
+
                        boost::shared_ptr<Region> r = (*i);
                        nframes64_t distance;
-                       nframes64_t end = r->position() + r->length();
-                       bool reset;
-
-                       reset = false;
-
+                       
                        if (r->first_frame() > frame) {
 
                                distance = r->first_frame() - frame;
@@ -1637,24 +1680,18 @@ Playlist::find_next_region_boundary (nframes64_t frame, int dir)
                                if (distance < closest) {
                                        ret = r->first_frame();
                                        closest = distance;
-                                       reset = true;
                                }
                        }
 
-                       if (end > frame) {
+                       if (r->last_frame () > frame) {
                                
-                               distance = end - frame;
+                               distance = r->last_frame () - frame;
                                
                                if (distance < closest) {
-                                       ret = end;
+                                       ret = r->last_frame ();
                                        closest = distance;
-                                       reset = true;
                                }
                        }
-
-                       if (reset) {
-                               break;
-                       }
                }
 
        } else {
@@ -1663,9 +1700,6 @@ Playlist::find_next_region_boundary (nframes64_t frame, int dir)
                        
                        boost::shared_ptr<Region> r = (*i);
                        nframes64_t distance;
-                       bool reset;
-
-                       reset = false;
 
                        if (r->last_frame() < frame) {
 
@@ -1674,23 +1708,18 @@ Playlist::find_next_region_boundary (nframes64_t frame, int dir)
                                if (distance < closest) {
                                        ret = r->last_frame();
                                        closest = distance;
-                                       reset = true;
                                }
                        }
 
                        if (r->first_frame() < frame) {
-                               distance = frame - r->last_frame();
                                
+                               distance = frame - r->first_frame();
+
                                if (distance < closest) {
                                        ret = r->first_frame();
                                        closest = distance;
-                                       reset = true;
                                }
                        }
-
-                       if (reset) {
-                               break;
-                       }
                }
        }
 
@@ -1701,6 +1730,7 @@ Playlist::find_next_region_boundary (nframes64_t frame, int dir)
 
 
 
+
 void
 Playlist::mark_session_dirty ()
 {
@@ -1893,7 +1923,7 @@ Playlist::bump_name (string name, Session &session)
 layer_t
 Playlist::top_layer() const
 {
-       RegionLock rlock (const_cast<Playlist *> (this));
+       RegionLock rlock (const_cast<Playlist *> (this));       
        layer_t top = 0;
 
        for (RegionList::const_iterator i = regions.begin(); i != regions.end(); ++i) {
@@ -1933,7 +1963,7 @@ Playlist::relayer ()
 
        /* sort according to the model */
 
-       if (Config->get_layer_model() == MoveAddHigher || Config->get_layer_model() == AddHigher) {
+       if (_session.config.get_layer_model() == MoveAddHigher || _session.config.get_layer_model() == AddHigher) {
                RegionSortByLastLayerOp cmp;
                copy.sort (cmp);
        }
@@ -2023,8 +2053,8 @@ void
 Playlist::raise_region_to_top (boost::shared_ptr<Region> region)
 {
        /* does nothing useful if layering mode is later=higher */
-       if ((Config->get_layer_model() == MoveAddHigher) ||
-           (Config->get_layer_model() == AddHigher)) {
+       if ((_session.config.get_layer_model() == MoveAddHigher) ||
+           (_session.config.get_layer_model() == AddHigher)) {
                timestamp_layer_op (region);
                relayer ();
        }
@@ -2034,8 +2064,8 @@ void
 Playlist::lower_region_to_bottom (boost::shared_ptr<Region> region)
 {
        /* does nothing useful if layering mode is later=higher */
-       if ((Config->get_layer_model() == MoveAddHigher) ||
-           (Config->get_layer_model() == AddHigher)) {
+       if ((_session.config.get_layer_model() == MoveAddHigher) ||
+           (_session.config.get_layer_model() == AddHigher)) {
                region->set_last_layer_op (0);
                relayer ();
        }
@@ -2365,3 +2395,14 @@ Playlist::update_after_tempo_map_change ()
 
        thaw ();
 }
+
+void
+Playlist::foreach_region (sigc::slot<void, boost::shared_ptr<Region> > s)
+{
+       RegionLock rl (this, false);
+       for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
+               s (*i);
+       }
+}
+
+