13
0
livetrax/gtk2_ardour/editor_tempodisplay.cc
Paul Davis 3482d6db4e tempo display: when reassociating markers, use sclock equivalence
Since we're reconnecting visible marker objects with a new map, there's a good
chance that the map will contain map points that don't correspond to the map
points currently referenced by those markers. Thus, tests for address
equivalence will often fail.

Instead, repeat what has been done elsewhere and use the heuristic that we only
allow one point of a given type at the same superclock position.
2022-06-16 22:07:21 -06:00

851 lines
22 KiB
C++

/*
* Copyright (C) 2005-2017 Paul Davis <paul@linuxaudiosystems.com>
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
* Copyright (C) 2006-2015 David Robillard <d@drobilla.net>
* Copyright (C) 2006-2015 Tim Mayberry <mojofunk@gmail.com>
* Copyright (C) 2007 Doug McLain <doug@nostar.net>
* Copyright (C) 2008-2011 Carl Hetherington <carl@carlh.net>
* Copyright (C) 2014-2015 Robin Gareus <robin@gareus.org>
* Copyright (C) 2015-2017 Nick Mainsbridge <mainsbridge@gmail.com>
* Copyright (C) 2017-2018 Ben Loftis <ben@harrisonconsoles.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef WAF_BUILD
#include "gtk2ardour-config.h"
#endif
#include <cstdio> // for sprintf, grrr
#include <cstdlib>
#include <cmath>
#include <string>
#include <climits>
#include "pbd/error.h"
#include "pbd/memento_command.h"
#include <gtkmm2ext/utils.h>
#include <gtkmm2ext/gtk_ui.h>
#include "ardour/session.h"
#include "ardour/tempo.h"
#include <gtkmm2ext/doi.h>
#include <gtkmm2ext/utils.h>
#include "canvas/canvas.h"
#include "canvas/item.h"
#include "canvas/line_set.h"
#include "editor.h"
#include "marker.h"
#include "tempo_dialog.h"
#include "rgb_macros.h"
#include "gui_thread.h"
#include "time_axis_view.h"
#include "grid_lines.h"
#include "ui_config.h"
#include "pbd/i18n.h"
using namespace std;
using namespace ARDOUR;
using namespace PBD;
using namespace Gtk;
using namespace Gtkmm2ext;
using namespace Editing;
using namespace Temporal;
void
Editor::remove_metric_marks ()
{
/* don't delete these while handling events, just punt till the GUI is idle */
for (auto & m : tempo_marks) {
delete_when_idle (m);
}
for (auto & m : meter_marks) {
delete_when_idle (m);
}
for (auto & m : bbt_marks) {
delete_when_idle (m);
}
tempo_marks.clear ();
meter_marks.clear ();
bbt_marks.clear ();
}
void
Editor::reassociate_metric_markers (TempoMap::SharedPtr const & tmap)
{
TempoMap::Metrics metrics;
tmap->get_metrics (metrics);
for (auto & m : tempo_marks) {
reassociate_metric_marker (tmap, metrics, *m);
}
for (auto & m : meter_marks) {
reassociate_metric_marker (tmap, metrics, *m);
}
for (auto & m : bbt_marks) {
reassociate_metric_marker (tmap, metrics, *m);
}
}
void
Editor::reassociate_metric_marker (TempoMap::SharedPtr const & tmap, TempoMap::Metrics & metrics, MetricMarker& marker)
{
TempoMarker* tm;
MeterMarker* mm;
BBTMarker* bm;
Temporal::TempoPoint const * tp;
Temporal::MeterPoint const * mp;
Temporal::MusicTimePoint const * mtp;
if ((tm = dynamic_cast<TempoMarker*> (&marker)) != 0) {
for (TempoMap::Metrics::iterator m = metrics.begin(); m != metrics.end(); ++m) {
if ((mtp = dynamic_cast<Temporal::MusicTimePoint const *>(*m)) != 0) {
/* do nothing .. but we had to catch
this first because MusicTimePoint
IS-A TempoPoint
*/
} else if ((tp = dynamic_cast<Temporal::TempoPoint const *>(*m)) != 0) {
if (tm->tempo().sclock() == tp->sclock()) {
tm->reset_tempo (*tp);
tm->curve().reset_point (*tp);
break;
}
}
}
} else if ((mm = dynamic_cast<MeterMarker*> (&marker)) != 0) {
for (TempoMap::Metrics::iterator m = metrics.begin(); m != metrics.end(); ++m) {
if ((mtp = dynamic_cast<Temporal::MusicTimePoint const *>(*m)) != 0) {
/* do nothing .. but we had to catch
this first because MusicTimePoint
IS-A TempoPoint
*/
} else if ((mp = dynamic_cast<Temporal::MeterPoint const *>(*m)) != 0) {
if (mm->meter().sclock() == mp->sclock()) {
mm->reset_meter (*mp);
break;
}
}
}
} else if ((bm = dynamic_cast<BBTMarker*> (&marker)) != 0) {
for (TempoMap::Metrics::iterator m = metrics.begin(); m != metrics.end(); ++m) {
if ((mtp = dynamic_cast<Temporal::MusicTimePoint const *>(*m)) != 0) {
if (bm->point().sclock() == mtp->sclock()) {
bm->reset_point (*mtp);
break;
}
}
}
}
}
void
Editor::make_bbt_marker (MusicTimePoint const * mtp)
{
bbt_marks.push_back (new BBTMarker (*this, *bbt_ruler, UIConfiguration::instance().color ("meter marker"), *mtp));
}
void
Editor::make_meter_marker (Temporal::MeterPoint const * ms)
{
char buf[64];
snprintf (buf, sizeof(buf), "%d/%d", ms->divisions_per_bar(), ms->note_value ());
meter_marks.push_back (new MeterMarker (*this, *meter_group, UIConfiguration::instance().color ("meter marker"), buf, *ms));
}
void
Editor::make_tempo_marker (Temporal::TempoPoint const * ts, double& min_tempo, double& max_tempo, TempoPoint const *& prev_ts, uint32_t tc_color, samplecnt_t sr)
{
max_tempo = max (max_tempo, ts->note_types_per_minute());
max_tempo = max (max_tempo, ts->end_note_types_per_minute());
min_tempo = min (min_tempo, ts->note_types_per_minute());
min_tempo = min (min_tempo, ts->end_note_types_per_minute());
const std::string tname (X_(""));
char const * color_name = X_("tempo marker");
tempo_marks.push_back (new TempoMarker (*this, *tempo_group, UIConfiguration::instance().color (color_name), tname, *ts, ts->sample (sr), tc_color));
/* XXX the point of this code was "a jump in tempo by more than 1 ntpm results in a red
tempo mark pointer." (3a7bc1fd3f32f0)
*/
if (prev_ts && abs (prev_ts->end_note_types_per_minute() - ts->note_types_per_minute()) < 1.0) {
tempo_marks.back()->set_points_color (UIConfiguration::instance().color ("tempo marker music"));
} else {
tempo_marks.back()->set_points_color (UIConfiguration::instance().color ("tempo marker"));
}
prev_ts = ts;
}
void
Editor::draw_metric_marks (Temporal::TempoMap::Metrics const &)
{
draw_tempo_marks ();
draw_meter_marks ();
draw_bbt_marks ();
}
void
Editor::draw_tempo_marks ()
{
if (!_session) {
return;
}
const uint32_t tc_color = UIConfiguration::instance().color ("tempo curve");
const samplecnt_t sr (_session->sample_rate());
TempoPoint const * prev_ts = 0;
Temporal::TempoMap::SharedPtr tmap (TempoMap::use());
TempoMap::Tempos const & tempi (tmap->tempos());
TempoMap::Tempos::const_iterator t = tempi.begin();
Marks::iterator mm = tempo_marks.begin();
double max_tempo = 0.0;
double min_tempo = DBL_MAX;
while (t != tempi.end() && mm != tempo_marks.end()) {
Temporal::TempoPoint const & metric_point (*t);
if (dynamic_cast<Temporal::MusicTimePoint const *> (&metric_point)) {
++t;
continue;
}
Temporal::Point const & mark_point ((*mm)->point());
if (mark_point.sclock() < metric_point.sclock()) {
/* advance through markers, deleting the unused ones */
delete *mm;
mm = tempo_marks.erase (mm);
} else if (metric_point.sclock() < mark_point.sclock()) {
make_tempo_marker (&metric_point, min_tempo, max_tempo, prev_ts, tc_color, sr);
++t;
} else {
/* marker represents an existing point, update text, properties etc */
/* XXX left/right text stuff */
// (*mm)->set_name ((*m)->name());
(*mm)->set_position (t->time());
max_tempo = max (max_tempo, t->note_types_per_minute());
max_tempo = max (max_tempo, t->end_note_types_per_minute());
min_tempo = min (min_tempo, t->note_types_per_minute());
min_tempo = min (min_tempo, t->end_note_types_per_minute());
++t;
++mm;
}
}
if ((t == tempi.end()) && (mm != tempo_marks.end())) {
while (mm != tempo_marks.end()) {
delete *mm;
mm = tempo_marks.erase (mm);
}
}
if ((mm == tempo_marks.end()) && (t != tempi.end())) {
while (t != tempi.end()) {
if (!dynamic_cast<Temporal::MusicTimePoint const *> (&(*t))) {
make_tempo_marker (&*t, min_tempo, max_tempo, prev_ts, tc_color, sr);
}
++t;
}
}
update_tempo_curves (min_tempo, max_tempo, sr);
}
void
Editor::draw_meter_marks ()
{
if (!_session) {
return;
}
Temporal::TempoMap::SharedPtr tmap (TempoMap::use());
TempoMap::Meters const & meters (tmap->meters());
TempoMap::Meters::const_iterator m = meters.begin();
Marks::iterator mm = meter_marks.begin();
while (m != meters.end() && mm != meter_marks.end()) {
Temporal::MeterPoint const & metric_point (*m);
if (dynamic_cast<Temporal::MusicTimePoint const *> (&metric_point)) {
++m;
continue;
}
Temporal::Point const & mark_point ((*mm)->point());
if (mark_point.sclock() < metric_point.sclock()) {
/* advance through markers, deleting the unused ones */
delete *mm;
mm = meter_marks.erase (mm);
} else if (metric_point.sclock() < mark_point.sclock()) {
make_meter_marker (&metric_point);
++m;
} else {
/* marker represents an existing point, update text, properties etc */
/* XXX left/right text stuff */
// (*mm)->set_name ((*m)->name());
(*mm)->set_position (m->time());
++m;
++mm;
}
}
if ((m == meters.end()) && (mm != meter_marks.end())) {
while (mm != meter_marks.end()) {
delete *mm;
mm = meter_marks.erase (mm);
}
}
if ((mm == meter_marks.end()) && (m != meters.end())) {
while (m != meters.end()) {
if (!dynamic_cast<Temporal::MusicTimePoint const *> (&(*m))) {
make_meter_marker (&*m);
}
++m;
}
}
}
void
Editor::draw_bbt_marks ()
{
if (!_session) {
return;
}
Temporal::TempoMap::SharedPtr tmap (TempoMap::use());
TempoMap::MusicTimes const & bartimes (tmap->bartimes());
TempoMap::MusicTimes::const_iterator m = bartimes.begin();
Marks::iterator mm = bbt_marks.begin();
while (m != bartimes.end() && mm != bbt_marks.end()) {
Temporal::Point const & mark_point ((*mm)->point());
Temporal::MusicTimePoint const & metric_point (*m);
if (mark_point.sclock() < metric_point.sclock()) {
/* advance through markers, deleting the unused ones */
delete *mm;
mm = bbt_marks.erase (mm);
} else if (metric_point.sclock() < mark_point.sclock()) {
make_bbt_marker (&metric_point);
++m;
} else {
/* marker represents an existing point, update text, properties etc */
/* XXX left/right text stuff */
// (*mm)->set_name ((*m)->name());
(*mm)->set_position (m->time());
++m;
++mm;
}
}
if ((m == bartimes.end()) && (mm != bbt_marks.end())) {
while (mm != bbt_marks.end()) {
delete *mm;
mm = bbt_marks.erase (mm);
}
}
if ((mm == bbt_marks.end()) && (m != bartimes.end())) {
while (m != bartimes.end()) {
make_bbt_marker (&*m);
++m;
}
}
}
void
Editor::update_tempo_curves (double min_tempo, double max_tempo, samplecnt_t sr)
{
const double min_tempo_range = 5.0;
const double tempo_delta = fabs (max_tempo - min_tempo);
if (tempo_delta < min_tempo_range) {
max_tempo += min_tempo_range - tempo_delta;
min_tempo += tempo_delta - min_tempo_range;
}
for (Marks::iterator m = tempo_marks.begin(); m != tempo_marks.end(); ++m) {
TempoMarker* tm = static_cast<TempoMarker*>(*m);
Marks::iterator tmp = m;
++tmp;
TempoCurve& curve (tm->curve());
curve.set_max_tempo (max_tempo);
curve.set_min_tempo (min_tempo);
if (tmp != tempo_marks.end()) {
TempoMarker* nxt = static_cast<TempoMarker*>(*tmp);
curve.set_duration (nxt->tempo().sample(sr) - tm->tempo().sample(sr));
} else {
curve.set_duration (samplecnt_t (UINT32_MAX));
}
if (!tm->tempo().active()) {
curve.hide();
} else {
curve.show();
}
}
}
void
Editor::tempo_map_changed ()
{
TempoMap::SharedPtr current_map = TempoMap::fetch ();
reassociate_metric_markers (current_map);
tempo_map_visual_update ();
}
void
Editor::tempo_map_visual_update ()
{
TempoMap::Metrics metrics;
TempoMap::use()->get_metrics (metrics);
draw_metric_marks (metrics);
draw_tempo_marks ();
update_tempo_based_rulers ();
maybe_draw_grid_lines ();
}
void
Editor::redisplay_grid (bool immediate_redraw)
{
if (!_session) {
return;
}
if (immediate_redraw) {
update_tempo_based_rulers ();
update_grid();
} else {
Glib::signal_idle().connect (sigc::bind_return (sigc::bind (sigc::mem_fun (*this, &Editor::redisplay_grid), true), false));
}
}
void
Editor::tempo_curve_selected (Temporal::TempoPoint const * ts, bool yn)
{
if (ts == 0) {
return;
}
for (Marks::iterator x = tempo_marks.begin(); x != tempo_marks.end(); ++x) {
TempoMarker* tm = static_cast<TempoMarker*> (*x);
if (&tm->tempo() == ts) {
if (yn) {
tm->curve().set_color_rgba (UIConfiguration::instance().color ("location marker"));
} else {
tm->curve().set_color_rgba (UIConfiguration::instance().color ("tempo curve"));
}
break;
}
}
}
/* computes a grid starting a beat before and ending a beat after leftmost and rightmost respectively */
void
Editor::compute_current_bbt_points (Temporal::TempoMapPoints& grid, samplepos_t leftmost, samplepos_t rightmost)
{
if (!_session) {
return;
}
TempoMap::SharedPtr tmap (TempoMap::use());
/* prevent negative values of leftmost from creeping into tempomap
*/
const Beats left = tmap->quarters_at_sample (leftmost).round_down_to_beat();
const Beats lower_beat = (left < Beats() ? Beats() : left);
const samplecnt_t sr (_session->sample_rate());
switch (bbt_ruler_scale) {
case bbt_show_quarters:
case bbt_show_eighths:
case bbt_show_sixteenths:
case bbt_show_thirtyseconds:
case bbt_show_sixtyfourths:
case bbt_show_onetwentyeighths:
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0);
break;
case bbt_show_1:
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 1);
break;
case bbt_show_4:
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 4);
break;
case bbt_show_16:
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 16);
break;
case bbt_show_64:
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 64);
break;
default:
/* bbt_show_many */
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 128);
break;
}
}
void
Editor::hide_grid_lines ()
{
if (grid_lines) {
grid_lines->hide();
}
}
void
Editor::maybe_draw_grid_lines ()
{
if ( _session == 0 ) {
return;
}
if (grid_lines == 0) {
grid_lines = new GridLines (time_line_group, ArdourCanvas::LineSet::Vertical);
}
grid_marks.clear();
samplepos_t rightmost_sample = _leftmost_sample + current_page_samples();
if ( grid_musical() ) {
metric_get_bbt (grid_marks, _leftmost_sample, rightmost_sample, 12);
} else if (_grid_type== GridTypeTimecode) {
metric_get_timecode (grid_marks, _leftmost_sample, rightmost_sample, 12);
} else if (_grid_type == GridTypeCDFrame) {
metric_get_minsec (grid_marks, _leftmost_sample, rightmost_sample, 12);
} else if (_grid_type == GridTypeMinSec) {
metric_get_minsec (grid_marks, _leftmost_sample, rightmost_sample, 12);
}
grid_lines->draw ( grid_marks );
grid_lines->show();
}
void
Editor::mouse_add_new_tempo_event (timepos_t pos)
{
if (_session == 0) {
return;
}
if (pos.beats() > Beats()) {
begin_reversible_command (_("add tempo mark"));
TempoMap::WritableSharedPtr map (TempoMap::write_copy());
XMLNode &before = map->get_state();
/* add music-locked ramped (?) tempo using the bpm/note type at sample*/
map->set_tempo (map->tempo_at (pos), pos);
XMLNode &after = map->get_state();
_session->add_command (new Temporal::TempoCommand (_("add tempo"), &before, &after));
commit_reversible_command ();
TempoMap::update (map);
}
//map.dump (cerr);
}
void
Editor::mouse_add_new_meter_event (timepos_t pos)
{
if (_session == 0) {
return;
}
MeterDialog meter_dialog (TempoMap::use(), pos, _("add"));
switch (meter_dialog.run ()) {
case RESPONSE_ACCEPT:
break;
default:
return;
}
TempoMap::WritableSharedPtr map (TempoMap::write_copy());
double bpb = meter_dialog.get_bpb ();
bpb = max (1.0, bpb); // XXX is this a reasonable limit?
double note_type = meter_dialog.get_note_type ();
Temporal::BBT_Time requested;
meter_dialog.get_bbt_time (requested);
begin_reversible_command (_("add meter mark"));
XMLNode &before = map->get_state();
pos = timepos_t (map->quarters_at (requested));
map->set_meter (Meter (bpb, note_type), pos);
_session->add_command (new Temporal::TempoCommand (_("add time signature"), &before, &map->get_state()));
commit_reversible_command ();
TempoMap::update (map);
//map.dump (cerr);
}
void
Editor::remove_tempo_marker (ArdourCanvas::Item* item)
{
ArdourMarker* marker;
TempoMarker* tempo_marker;
if ((marker = reinterpret_cast<ArdourMarker *> (item->get_data ("marker"))) == 0) {
fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
abort(); /*NOTREACHED*/
}
if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
abort(); /*NOTREACHED*/
}
if (!tempo_marker->tempo().locked_to_meter() && tempo_marker->tempo().active()) {
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_tempo_marker), &tempo_marker->tempo()));
}
}
void
Editor::edit_meter_section (Temporal::MeterPoint& section)
{
MeterDialog meter_dialog (section, _("done"));
switch (meter_dialog.run()) {
case RESPONSE_ACCEPT:
break;
default:
return;
}
double bpb = meter_dialog.get_bpb ();
bpb = max (1.0, bpb); // XXX is this a reasonable limit?
double const note_type = meter_dialog.get_note_type ();
const Meter meter (bpb, note_type);
Temporal::BBT_Time when;
meter_dialog.get_bbt_time (when);
TempoMap::WritableSharedPtr tmap (TempoMap::write_copy());
reassociate_metric_markers (tmap);
begin_reversible_command (_("Edit Time Signature"));
XMLNode &before = tmap->get_state();
tmap->set_meter (meter, when);
XMLNode &after = tmap->get_state();
_session->add_command (new Temporal::TempoCommand (_("edit time signature"), &before, &after));
commit_reversible_command ();
TempoMap::update (tmap);
}
void
Editor::edit_tempo_section (TempoPoint& section)
{
TempoDialog tempo_dialog (TempoMap::use(), section, _("done"));
switch (tempo_dialog.run ()) {
case RESPONSE_ACCEPT:
break;
default:
return;
}
double bpm = tempo_dialog.get_bpm ();
double end_bpm = tempo_dialog.get_end_bpm ();
int nt = tempo_dialog.get_note_type ();
bpm = max (0.01, bpm);
const Tempo tempo (bpm, end_bpm, nt);
TempoMap::WritableSharedPtr tmap (TempoMap::write_copy());
reassociate_metric_markers (tmap);
Temporal::BBT_Time when;
tempo_dialog.get_bbt_time (when);
begin_reversible_command (_("Edit Tempo"));
XMLNode &before = tmap->get_state();
tmap->set_tempo (tempo, when);
XMLNode &after = tmap->get_state();
_session->add_command (new Temporal::TempoCommand (_("edit tempo"), &before, &after));
commit_reversible_command ();
TempoMap::update (tmap);
}
void
Editor::edit_tempo_marker (TempoMarker& tm)
{
edit_tempo_section (const_cast<Temporal::TempoPoint&>(tm.tempo()));
}
void
Editor::edit_meter_marker (MeterMarker& mm)
{
edit_meter_section (const_cast<Temporal::MeterPoint&>(mm.meter()));
}
gint
Editor::real_remove_tempo_marker (TempoPoint const * section)
{
begin_reversible_command (_("remove tempo mark"));
TempoMap::WritableSharedPtr tmap (TempoMap::write_copy());
XMLNode &before = tmap->get_state();
tmap->remove_tempo (*section);
XMLNode &after = tmap->get_state();
_session->add_command (new Temporal::TempoCommand (_("remove tempo change"), &before, &after));
commit_reversible_command ();
TempoMap::update (tmap);
return FALSE;
}
void
Editor::remove_meter_marker (ArdourCanvas::Item* item)
{
ArdourMarker* marker;
MeterMarker* meter_marker;
if ((marker = reinterpret_cast<ArdourMarker *> (item->get_data ("marker"))) == 0) {
fatal << _("programming error: meter marker canvas item has no marker object pointer!") << endmsg;
abort(); /*NOTREACHED*/
}
if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
abort(); /*NOTREACHED*/
}
if (!meter_marker->meter().map().is_initial(meter_marker->meter())) {
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_meter_marker), &meter_marker->meter()));
}
}
gint
Editor::real_remove_meter_marker (Temporal::MeterPoint const * section)
{
begin_reversible_command (_("remove tempo mark"));
TempoMap::WritableSharedPtr tmap (TempoMap::write_copy());
XMLNode &before = tmap->get_state();
tmap->remove_meter (*section);
XMLNode &after = tmap->get_state();
_session->add_command (new Temporal::TempoCommand (_("remove time signature change"), &before, &after));
commit_reversible_command ();
TempoMap::update (tmap);
return FALSE;
}
Temporal::TempoMap::WritableSharedPtr
Editor::begin_tempo_map_edit ()
{
TempoMap::WritableSharedPtr wmap = TempoMap::fetch_writable ();
reassociate_metric_markers (wmap);
return wmap;
}
void
Editor::abort_tempo_map_edit ()
{
/* this drops the lock held while we have a writable copy in our per-thread pointer */
TempoMap::abort_update ();
/* Now update our own per-thread copy of the tempo map pointer to be
the canonical one, and reconnect markers with elements of that map
*/
TempoMap::SharedPtr tmap (TempoMap::fetch());
reassociate_metric_markers (tmap);
}
void
Editor::mid_tempo_change ()
{
// std::cerr << "============== MID TEMPO\n";
// TempoMap::SharedPtr map (TempoMap::use());
// map->dump (std::cerr);
tempo_map_visual_update ();
}