Tempo ramps - update midi regions and locations when dragging tempo.
[ardour.git] / libs / ardour / region.cc
index 753e578f6402e6e13bff0d3089d8819dfae7f7c0..8db3aa097a8e821134ba70a1344960c440847b04 100644 (file)
@@ -538,7 +538,7 @@ Region::set_position_lock_style (PositionLockStyle ps)
                _position_lock_style = ps;
 
                if (_position_lock_style == MusicTime) {
-                       _session.bbt_time (_position, _bbt_time);
+                       _beat = _session.tempo_map().beat_at_frame (_position);
                }
 
                send_change (Properties::position_lock_style);
@@ -553,9 +553,8 @@ Region::update_after_tempo_map_change ()
        if (!pl || _position_lock_style != MusicTime) {
                return;
        }
-
        TempoMap& map (_session.tempo_map());
-       framepos_t pos = map.frame_time (_bbt_time);
+       framepos_t pos = map.frame_at_beat (_beat);
        set_position_internal (pos, false);
 
        /* do this even if the position is the same. this helps out
@@ -651,7 +650,7 @@ void
 Region::recompute_position_from_lock_style ()
 {
        if (_position_lock_style == MusicTime) {
-               _session.bbt_time (_position, _bbt_time);
+               _beat = _session.tempo_map().beat_at_frame (_position);
        }
 }
 
@@ -1158,7 +1157,7 @@ Region::state ()
        XMLNode *node = new XMLNode ("Region");
        char buf[64];
        char buf2[64];
-       LocaleGuard lg (X_("C"));
+       LocaleGuard lg;
        const char* fe = NULL;
 
        /* custom version of 'add_properties (*node);'
@@ -1199,8 +1198,8 @@ Region::state ()
 
        if (_position_lock_style != AudioTime) {
                stringstream str;
-               str << _bbt_time;
-               node->add_property ("bbt-position", str.str());
+               str << _beat;
+               node->add_property ("beat", str.str());
        }
 
        for (uint32_t n=0; n < _sources.size(); ++n) {
@@ -1260,7 +1259,8 @@ Region::set_state (const XMLNode& node, int version)
 int
 Region::_set_state (const XMLNode& node, int /*version*/, PropertyChange& what_changed, bool send)
 {
-       const XMLProperty* prop;
+       XMLProperty const * prop;
+       Timecode::BBT_Time bbt_time;
 
        Stateful::save_extra_xml (node);
 
@@ -1274,9 +1274,21 @@ Region::_set_state (const XMLNode& node, int /*version*/, PropertyChange& what_c
                        _position_lock_style = AudioTime;
                } else {
                        if (sscanf (prop->value().c_str(), "%d|%d|%d",
-                                   &_bbt_time.bars,
-                                   &_bbt_time.beats,
-                                   &_bbt_time.ticks) != 3) {
+                                   &bbt_time.bars,
+                                   &bbt_time.beats,
+                                   &bbt_time.ticks) != 3) {
+                               _position_lock_style = AudioTime;
+                       }
+                       _beat = _session.tempo_map().bbt_to_beats (bbt_time);
+               }
+       }
+
+       if (_position_lock_style == MusicTime) {
+               if ((prop = node.property ("beat")) == 0) {
+                       /* missing BBT info, revert to audio time locking */
+                       _position_lock_style = AudioTime;
+               } else {
+                       if (sscanf (prop->value().c_str(), "%lf", &_beat) != 1) {
                                _position_lock_style = AudioTime;
                        }
                }