Tempo ramps - massively speed up dragging of tempo marks.
authornick_m <mainsbridge@gmail.com>
Wed, 23 Dec 2015 12:32:16 +0000 (23:32 +1100)
committernick_m <mainsbridge@gmail.com>
Fri, 27 May 2016 13:38:09 +0000 (23:38 +1000)
gtk2_ardour/editor_tempodisplay.cc
libs/ardour/tempo.cc

index 2794051265e912bc10c617bd1cd02796a4eb1d2e..3dad29ef5193d8c4aee7ac28ee7675a5fc2245bb 100644 (file)
@@ -126,7 +126,6 @@ Editor::tempo_map_changed (const PropertyChange& /*ignored*/)
 void
 Editor::marker_position_changed ()
 {
-// yes its identical...
        if (!_session) {
                return;
        }
@@ -136,10 +135,27 @@ Editor::marker_position_changed ()
        if (tempo_lines) {
                tempo_lines->tempo_map_changed();
        }
+       TempoMarker* tempo_marker;
+       MeterMarker* meter_marker;
+       const TempoSection *ts;
+       const MeterSection *ms;
 
+       for (Marks::iterator x = metric_marks.begin(); x != metric_marks.end(); ++x) {
+               if ((tempo_marker = dynamic_cast<TempoMarker*> (*x)) != 0) {
+                       if ((ts = &tempo_marker->tempo()) != 0) {
+                               cerr << "tempo section found for tempo marker " << endl;
+                               tempo_marker->set_position (ts->frame ());
+                       }
+               }
+               if ((meter_marker = dynamic_cast<MeterMarker*> (*x)) != 0) {
+                       if ((ms = &meter_marker->meter()) != 0) {
+                               cerr << "meter section found for meter marker " << endl;
+                               meter_marker->set_position (ms->frame ());
+                       }
+               }
+       }
        std::vector<TempoMap::BBTPoint> grid;
        compute_current_bbt_points (grid, leftmost_frame, leftmost_frame + current_page_samples());
-       _session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks); // redraw metric markers
        draw_measures (grid);
        update_tempo_based_rulers (grid);
 }
index d03a1721e942338bbf24c89792fd29681555154f..72a1eef6388d636498f30a4d8985731f13f4e85f 100644 (file)
@@ -1220,8 +1220,8 @@ TempoMap::beats_to_bbt (double beats)
 
        framecnt_t frame = frame_at_beat (beats);
        uint32_t cnt = 0;
-
-       if (n_meters() < 2) {
+       /* XX most of this is utter crap */
+       if (n_meters() == 1) {
                uint32_t bars = (uint32_t) floor (beats / prev_ms->note_divisor());
                double remaining_beats = beats - (bars *  prev_ms->note_divisor());
                double remaining_ticks = (remaining_beats - floor (remaining_beats)) * BBT_Time::ticks_per_beat;