2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* 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.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-13 00:14:48 -05:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "gtk2ardour-config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
#include <cstdio> // for sprintf, grrr
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cmath>
|
|
|
|
#include <string>
|
|
|
|
#include <climits>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/error.h"
|
|
|
|
#include "pbd/memento_command.h"
|
2022-06-28 12:16:31 -04:00
|
|
|
#include "pbd/unwind.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/tempo.h"
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/doi.h>
|
2005-12-08 13:53:43 -05:00
|
|
|
#include <gtkmm2ext/utils.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/canvas.h"
|
|
|
|
#include "canvas/item.h"
|
2014-06-09 15:39:57 -04:00
|
|
|
#include "canvas/line_set.h"
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
#include "automation_streamview.h"
|
2022-08-17 18:27:53 -04:00
|
|
|
#include "bbt_marker_dialog.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "editor.h"
|
|
|
|
#include "marker.h"
|
|
|
|
#include "tempo_dialog.h"
|
|
|
|
#include "rgb_macros.h"
|
|
|
|
#include "gui_thread.h"
|
2022-10-27 15:43:13 -04:00
|
|
|
#include "tempo_map_change.h"
|
2006-10-21 15:01:50 -04:00
|
|
|
#include "time_axis_view.h"
|
2018-02-09 10:59:39 -05:00
|
|
|
#include "grid_lines.h"
|
2022-06-28 13:44:25 -04:00
|
|
|
#include "region_view.h"
|
2015-01-02 09:44:54 -05:00
|
|
|
#include "ui_config.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ARDOUR;
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2005-12-08 13:53:43 -05:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Editing;
|
2020-11-16 13:19:22 -05:00
|
|
|
using namespace Temporal;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
Editor::remove_metric_marks ()
|
|
|
|
{
|
|
|
|
/* don't delete these while handling events, just punt till the GUI is idle */
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
for (auto & m : tempo_marks) {
|
|
|
|
delete_when_idle (m);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2022-01-18 21:45:18 -05:00
|
|
|
for (auto & m : meter_marks) {
|
|
|
|
delete_when_idle (m);
|
2016-05-07 13:03:12 -04:00
|
|
|
}
|
2022-01-18 21:45:18 -05:00
|
|
|
for (auto & m : bbt_marks) {
|
|
|
|
delete_when_idle (m);
|
2016-12-11 10:03:19 -05:00
|
|
|
}
|
2022-01-18 21:45:18 -05:00
|
|
|
|
|
|
|
tempo_marks.clear ();
|
|
|
|
meter_marks.clear ();
|
|
|
|
bbt_marks.clear ();
|
|
|
|
}
|
2021-01-01 18:00:07 -05:00
|
|
|
|
2021-04-04 19:56:58 -04:00
|
|
|
void
|
2022-06-26 07:55:46 -04:00
|
|
|
Editor::reassociate_metric_markers (TempoMap::SharedPtr const& tmap)
|
2021-04-04 19:56:58 -04:00
|
|
|
{
|
|
|
|
TempoMap::Metrics metrics;
|
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto & t : tempo_marks) {
|
|
|
|
reassociate_tempo_marker (tmap, tmap->tempos(), *dynamic_cast<TempoMarker*> (t));
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto & m : meter_marks) {
|
|
|
|
reassociate_meter_marker (tmap, tmap->meters(), *dynamic_cast<MeterMarker*> (m));
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto & b : bbt_marks) {
|
|
|
|
reassociate_bartime_marker (tmap, tmap->bartimes(), *dynamic_cast<BBTMarker*> (b));
|
2022-01-15 22:04:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2023-07-14 15:02:44 -04:00
|
|
|
Editor::reassociate_tempo_marker (TempoMap::SharedPtr const & tmap, Tempos const & tempos, TempoMarker& marker)
|
2022-01-15 22:04:03 -05:00
|
|
|
{
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto const & tempo : tempos) {
|
|
|
|
if (marker.point().sclock() == tempo.sclock()) {
|
|
|
|
marker.reset_tempo (tempo);
|
|
|
|
marker.curve().reset_point (tempo);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-04 19:56:58 -04:00
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
void
|
2023-07-14 15:02:44 -04:00
|
|
|
Editor::reassociate_meter_marker (TempoMap::SharedPtr const & tmap, Meters const & meters, MeterMarker& marker)
|
2022-06-28 00:20:51 -04:00
|
|
|
{
|
|
|
|
for (auto const & meter : meters) {
|
|
|
|
if (marker.point().sclock() == meter.sclock()) {
|
|
|
|
marker.reset_meter (meter);
|
|
|
|
break;
|
2022-01-15 22:04:03 -05:00
|
|
|
}
|
2022-06-28 00:20:51 -04:00
|
|
|
}
|
|
|
|
}
|
2022-01-15 22:04:03 -05:00
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
void
|
2023-07-14 15:02:44 -04:00
|
|
|
Editor::reassociate_bartime_marker (TempoMap::SharedPtr const & tmap, MusicTimes const & bartimes, BBTMarker& marker)
|
2022-06-28 00:20:51 -04:00
|
|
|
{
|
|
|
|
for (auto const & bartime : bartimes) {
|
|
|
|
if (marker.point().sclock() == bartime.sclock()) {
|
|
|
|
marker.reset_point (bartime);
|
|
|
|
break;
|
2021-04-04 19:56:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2022-06-26 00:26:34 -04:00
|
|
|
Editor::make_bbt_marker (MusicTimePoint const * mtp, Marks::iterator before)
|
2022-01-18 21:45:18 -05:00
|
|
|
{
|
2023-07-25 13:58:51 -04:00
|
|
|
bbt_marks.insert (before, new BBTMarker (*this, *bbt_ruler, "meter marker", *mtp));
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-06-26 00:26:34 -04:00
|
|
|
Editor::make_meter_marker (Temporal::MeterPoint const * ms, Marks::iterator before)
|
2022-01-18 21:45:18 -05:00
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
|
|
|
|
snprintf (buf, sizeof(buf), "%d/%d", ms->divisions_per_bar(), ms->note_value ());
|
2023-05-17 18:45:14 -04:00
|
|
|
meter_marks.insert (before, new MeterMarker (*this, *meter_group, "meter marker", buf, *ms));
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2023-08-31 20:25:18 -04:00
|
|
|
Editor::make_tempo_marker (Temporal::TempoPoint const * ts, TempoPoint const *& prev_ts, uint32_t tc_color, samplecnt_t sr, Marks::iterator before)
|
2022-01-18 21:45:18 -05:00
|
|
|
{
|
|
|
|
const std::string tname (X_(""));
|
2022-05-23 16:24:50 -04:00
|
|
|
char const * color_name = X_("tempo marker");
|
2022-01-18 21:45:18 -05:00
|
|
|
|
2023-09-05 14:25:57 -04:00
|
|
|
tempo_marks.insert (before, new TempoMarker (*this, *tempo_group, color_name, tname, *ts, ts->sample (sr), tc_color));
|
2022-01-18 21:45:18 -05:00
|
|
|
|
|
|
|
/* 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) {
|
2023-05-17 18:45:14 -04:00
|
|
|
tempo_marks.back()->set_points_color ("tempo marker music");
|
2022-01-18 21:45:18 -05:00
|
|
|
} else {
|
2023-05-17 18:45:14 -04:00
|
|
|
tempo_marks.back()->set_points_color ("tempo marker");
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
prev_ts = ts;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-06-28 00:20:51 -04:00
|
|
|
Editor::reset_metric_marks ()
|
2022-01-18 21:45:18 -05:00
|
|
|
{
|
2022-06-28 00:20:51 -04:00
|
|
|
reset_tempo_marks ();
|
|
|
|
reset_meter_marks ();
|
2023-07-25 13:58:51 -04:00
|
|
|
/* Must come last, after temp and meter marks are created and are discoverable */
|
2022-06-28 00:20:51 -04:00
|
|
|
reset_bbt_marks ();
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-06-28 00:20:51 -04:00
|
|
|
Editor::reset_tempo_marks ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2021-01-01 18:00:07 -05:00
|
|
|
if (!_session) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
const uint32_t tc_color = UIConfiguration::instance().color ("tempo curve");
|
|
|
|
const samplecnt_t sr (_session->sample_rate());
|
2022-06-28 00:20:51 -04:00
|
|
|
|
2023-07-14 15:02:44 -04:00
|
|
|
Tempos const & tempi (TempoMap::use()->tempos());
|
2022-06-28 00:20:51 -04:00
|
|
|
TempoPoint const * prev_ts = 0;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto & t : tempo_marks) {
|
2024-08-29 10:05:56 -04:00
|
|
|
if (entered_marker == t) {
|
|
|
|
entered_marker = 0;
|
|
|
|
}
|
2022-06-28 00:20:51 -04:00
|
|
|
delete t;
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
tempo_marks.clear ();
|
2022-05-29 16:42:23 -04:00
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto const & t : tempi) {
|
2023-08-31 20:25:18 -04:00
|
|
|
make_tempo_marker (&t, prev_ts, tc_color, sr, tempo_marks.end());
|
2023-07-25 13:58:51 -04:00
|
|
|
prev_ts = &t;
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
2023-08-31 20:25:18 -04:00
|
|
|
double max_tempo;
|
|
|
|
double min_tempo;
|
|
|
|
|
|
|
|
set_tempo_curve_range (max_tempo, min_tempo);
|
2023-10-03 12:16:48 -04:00
|
|
|
update_tempo_curves (min_tempo, max_tempo, sr);
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-06-28 00:20:51 -04:00
|
|
|
Editor::reset_meter_marks ()
|
2022-01-18 21:45:18 -05:00
|
|
|
{
|
|
|
|
if (!_session) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-14 15:02:44 -04:00
|
|
|
Meters const & meters (TempoMap::use()->meters());
|
2022-01-18 21:45:18 -05:00
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto & m : meter_marks) {
|
|
|
|
delete m;
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
meter_marks.clear ();
|
2022-05-29 16:42:23 -04:00
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto const & m : meters) {
|
2023-07-25 13:58:51 -04:00
|
|
|
make_meter_marker (&m, meter_marks.end());
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
void
|
2022-06-28 00:20:51 -04:00
|
|
|
Editor::reset_bbt_marks ()
|
2022-01-18 21:45:18 -05:00
|
|
|
{
|
|
|
|
if (!_session) {
|
|
|
|
return;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2016-05-17 14:47:40 -04:00
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
Temporal::TempoMap::SharedPtr tmap (TempoMap::use());
|
2023-07-14 15:02:44 -04:00
|
|
|
MusicTimes const & bartimes (tmap->bartimes());
|
2022-01-18 21:45:18 -05:00
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto & b : bbt_marks) {
|
|
|
|
delete b;
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
bbt_marks.clear ();
|
2022-01-18 21:45:18 -05:00
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto const & b : bartimes) {
|
|
|
|
make_bbt_marker (&b, bbt_marks.end());
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::update_tempo_curves (double min_tempo, double max_tempo, samplecnt_t sr)
|
|
|
|
{
|
|
|
|
for (Marks::iterator m = tempo_marks.begin(); m != tempo_marks.end(); ++m) {
|
|
|
|
|
|
|
|
TempoMarker* tm = static_cast<TempoMarker*>(*m);
|
|
|
|
Marks::iterator tmp = m;
|
2016-05-07 13:03:12 -04:00
|
|
|
++tmp;
|
2017-01-06 11:39:24 -05:00
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
TempoCurve& curve (tm->curve());
|
2017-01-06 11:39:24 -05:00
|
|
|
|
2023-08-31 20:25:18 -04:00
|
|
|
curve.update_range (min_tempo, max_tempo);
|
2006-08-30 22:28:42 -04:00
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
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));
|
|
|
|
}
|
2016-05-17 14:47:40 -04:00
|
|
|
|
2023-09-11 12:07:04 -04:00
|
|
|
curve.show();
|
2016-05-17 14:47:40 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-11-16 13:19:22 -05:00
|
|
|
Editor::tempo_map_changed ()
|
2022-05-02 14:02:04 -04:00
|
|
|
{
|
2022-06-28 12:16:31 -04:00
|
|
|
if (ignore_map_change) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-16 14:57:39 -04:00
|
|
|
TempoMap::SharedPtr current_map = TempoMap::fetch ();
|
2022-06-26 00:26:34 -04:00
|
|
|
|
2022-06-17 00:09:53 -04:00
|
|
|
/* If the tempo map was changed by something other than the Editor, we
|
|
|
|
* will need to reassociate all visual elements used for tempo display
|
|
|
|
* with the new map.
|
|
|
|
*/
|
|
|
|
|
2022-06-28 12:16:31 -04:00
|
|
|
reset_metric_marks ();
|
|
|
|
update_tempo_based_rulers ();
|
2024-10-30 08:27:57 -04:00
|
|
|
update_section_rects();
|
2023-07-15 12:44:44 -04:00
|
|
|
update_all_marker_lanes ();
|
2022-06-28 12:16:31 -04:00
|
|
|
maybe_draw_grid_lines ();
|
2015-12-22 13:58:49 -05:00
|
|
|
}
|
|
|
|
|
2007-04-12 19:20:37 -04:00
|
|
|
void
|
2018-02-09 10:59:39 -05:00
|
|
|
Editor::redisplay_grid (bool immediate_redraw)
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (!_session) {
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
return;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (immediate_redraw) {
|
2017-03-10 09:37:26 -05:00
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
update_tempo_based_rulers ();
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
update_grid();
|
2020-10-15 01:09:22 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
} else {
|
2018-02-09 10:59:39 -05:00
|
|
|
Glib::signal_idle().connect (sigc::bind_return (sigc::bind (sigc::mem_fun (*this, &Editor::redisplay_grid), true), false));
|
2008-12-12 09:43:24 -05:00
|
|
|
}
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
}
|
2017-02-25 15:03:02 -05:00
|
|
|
void
|
2021-01-26 21:30:56 -05:00
|
|
|
Editor::tempo_curve_selected (Temporal::TempoPoint const * ts, bool yn)
|
2017-02-25 15:03:02 -05:00
|
|
|
{
|
2017-03-04 13:21:56 -05:00
|
|
|
if (ts == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
for (Marks::iterator x = tempo_marks.begin(); x != tempo_marks.end(); ++x) {
|
|
|
|
TempoMarker* tm = static_cast<TempoMarker*> (*x);
|
|
|
|
if (&tm->tempo() == ts) {
|
2017-02-26 19:10:47 -05:00
|
|
|
if (yn) {
|
2022-01-18 21:45:18 -05:00
|
|
|
tm->curve().set_color_rgba (UIConfiguration::instance().color ("location marker"));
|
2017-02-26 19:10:47 -05:00
|
|
|
} else {
|
2022-01-18 21:45:18 -05:00
|
|
|
tm->curve().set_color_rgba (UIConfiguration::instance().color ("tempo curve"));
|
2017-02-26 19:10:47 -05:00
|
|
|
}
|
2017-02-25 15:03:02 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
|
2015-12-19 12:41:45 -05:00
|
|
|
/* computes a grid starting a beat before and ending a beat after leftmost and rightmost respectively */
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
void
|
2020-11-16 13:19:22 -05:00
|
|
|
Editor::compute_current_bbt_points (Temporal::TempoMapPoints& grid, samplepos_t leftmost, samplepos_t rightmost)
|
2007-04-12 19:20:37 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (!_session) {
|
2007-04-12 19:20:37 -04:00
|
|
|
return;
|
|
|
|
}
|
2006-09-18 23:29:16 -04:00
|
|
|
|
2021-03-22 18:02:36 -04:00
|
|
|
TempoMap::SharedPtr tmap (TempoMap::use());
|
|
|
|
|
2012-01-08 11:53:11 -05:00
|
|
|
/* prevent negative values of leftmost from creeping into tempomap
|
|
|
|
*/
|
2021-03-22 18:02:36 -04:00
|
|
|
|
|
|
|
const Beats left = tmap->quarters_at_sample (leftmost).round_down_to_beat();
|
|
|
|
const Beats lower_beat = (left < Beats() ? Beats() : left);
|
2020-11-16 13:19:22 -05:00
|
|
|
const samplecnt_t sr (_session->sample_rate());
|
|
|
|
|
2024-02-25 15:18:29 -05:00
|
|
|
float divisor;
|
2024-02-25 14:52:37 -05:00
|
|
|
switch (_grid_type) {
|
|
|
|
case GridTypeBeatDiv3:
|
|
|
|
case GridTypeBeatDiv6:
|
|
|
|
case GridTypeBeatDiv12:
|
|
|
|
case GridTypeBeatDiv24:
|
|
|
|
divisor = 3;
|
|
|
|
break;
|
|
|
|
case GridTypeBeatDiv5:
|
|
|
|
case GridTypeBeatDiv10:
|
|
|
|
case GridTypeBeatDiv20:
|
2024-02-25 15:18:29 -05:00
|
|
|
divisor = 2.5;
|
2024-02-25 14:52:37 -05:00
|
|
|
break;
|
|
|
|
case GridTypeBeatDiv7:
|
|
|
|
case GridTypeBeatDiv14:
|
|
|
|
case GridTypeBeatDiv28:
|
2024-02-26 01:05:33 -05:00
|
|
|
/* Septuplets can't be drawn until libtemporal handles fractional ticks
|
|
|
|
* or if ticks_per_beat (ppqn) is raised to a point where the result
|
|
|
|
* of Temporal::ticks_per_beat / beat_div is always an integer
|
|
|
|
*/
|
2024-02-25 15:18:29 -05:00
|
|
|
divisor = 3.5;
|
2024-02-25 14:52:37 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
divisor = 2;
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
2016-10-18 12:56:43 -04:00
|
|
|
switch (bbt_ruler_scale) {
|
|
|
|
|
2018-07-26 15:07:45 -04:00
|
|
|
case bbt_show_quarters:
|
2022-11-29 11:42:54 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0, 1);
|
|
|
|
break;
|
2018-07-26 15:07:45 -04:00
|
|
|
case bbt_show_eighths:
|
2024-02-25 14:52:37 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0, 1 * divisor);
|
2022-11-29 11:42:54 -05:00
|
|
|
break;
|
2018-07-26 15:07:45 -04:00
|
|
|
case bbt_show_sixteenths:
|
2024-02-25 14:52:37 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0, 2 * divisor);
|
2022-11-29 11:42:54 -05:00
|
|
|
break;
|
2018-07-26 15:07:45 -04:00
|
|
|
case bbt_show_thirtyseconds:
|
2024-02-25 14:52:37 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0, 4 * divisor);
|
2022-11-29 11:42:54 -05:00
|
|
|
break;
|
2021-02-20 20:37:56 -05:00
|
|
|
case bbt_show_sixtyfourths:
|
2024-02-25 14:52:37 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0, 8 * divisor);
|
2022-11-29 11:42:54 -05:00
|
|
|
break;
|
2021-02-21 08:14:22 -05:00
|
|
|
case bbt_show_onetwentyeighths:
|
2024-02-25 14:52:37 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0, 16 * divisor);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case bbt_show_1:
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 1);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case bbt_show_4:
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 4);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case bbt_show_16:
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 16);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case bbt_show_64:
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 64);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* bbt_show_many */
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 128);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-02-09 10:59:39 -05:00
|
|
|
Editor::hide_grid_lines ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2018-02-09 10:59:39 -05:00
|
|
|
if (grid_lines) {
|
|
|
|
grid_lines->hide();
|
2013-04-24 15:42:14 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-02-09 10:59:39 -05:00
|
|
|
Editor::maybe_draw_grid_lines ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2018-02-09 10:59:39 -05:00
|
|
|
if ( _session == 0 ) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
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);
|
2018-02-26 19:38:18 -05:00
|
|
|
} else if (_grid_type== GridTypeTimecode) {
|
2018-02-09 10:59:39 -05:00
|
|
|
metric_get_timecode (grid_marks, _leftmost_sample, rightmost_sample, 12);
|
2018-02-26 18:02:24 -05:00
|
|
|
} else if (_grid_type == GridTypeCDFrame) {
|
2018-02-26 19:52:28 -05:00
|
|
|
metric_get_minsec (grid_marks, _leftmost_sample, rightmost_sample, 12);
|
2018-02-09 10:59:39 -05:00
|
|
|
} else if (_grid_type == GridTypeMinSec) {
|
|
|
|
metric_get_minsec (grid_marks, _leftmost_sample, rightmost_sample, 12);
|
2008-09-10 17:27:39 -04:00
|
|
|
}
|
2015-01-07 19:05:21 -05:00
|
|
|
|
2023-04-09 16:35:43 -04:00
|
|
|
grid_lines->draw (grid_marks);
|
2018-02-09 10:59:39 -05:00
|
|
|
grid_lines->show();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-10-05 00:52:17 -04:00
|
|
|
Editor::mouse_add_new_tempo_event (timepos_t pos)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-31 00:28:02 -05:00
|
|
|
if (pos.beats() > Beats()) {
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("add tempo mark"));
|
|
|
|
tmc.map().set_tempo (tmc.map().tempo_at (pos), pos);
|
2016-04-13 16:14:51 -04:00
|
|
|
}
|
2020-11-24 17:06:35 -05:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
//map.dump (cerr);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-10-05 00:52:17 -04:00
|
|
|
Editor::mouse_add_new_meter_event (timepos_t pos)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-04 23:57:59 -05:00
|
|
|
MeterDialog meter_dialog (TempoMap::use(), pos, _("add"));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
switch (meter_dialog.run ()) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2005-11-27 16:17:41 -05:00
|
|
|
|
2021-01-04 23:57:59 -05:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
double bpb = meter_dialog.get_bpb ();
|
|
|
|
bpb = max (1.0, bpb); // XXX is this a reasonable limit?
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
double note_type = meter_dialog.get_note_type ();
|
2008-02-01 22:57:35 -05:00
|
|
|
|
2023-02-12 14:02:33 -05:00
|
|
|
Temporal::BBT_Time r;
|
|
|
|
meter_dialog.get_bbt_time (r);
|
2023-06-30 14:10:32 -04:00
|
|
|
Temporal::BBT_Argument requested (superclock_t (0), r);
|
2020-12-07 20:56:39 -05:00
|
|
|
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("add time signature"));
|
|
|
|
pos = timepos_t (tmc.map().quarters_at (requested));
|
|
|
|
tmc.map().set_meter (Meter (bpb, note_type), pos);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2022-12-02 15:31:56 -05:00
|
|
|
void
|
|
|
|
Editor::add_bbt_marker_at_playhead_cursor ()
|
|
|
|
{
|
|
|
|
if (_session == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-05 13:15:53 -05:00
|
|
|
mouse_add_bbt_marker_event (timepos_t (_session->transport_sample ()));
|
2022-12-02 15:31:56 -05:00
|
|
|
}
|
|
|
|
|
2022-10-03 16:16:27 -04:00
|
|
|
void
|
|
|
|
Editor::mouse_add_bbt_marker_event (timepos_t pos)
|
|
|
|
{
|
|
|
|
if (_session == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* position markers must always be positioned using audio time */
|
|
|
|
|
2022-12-05 13:15:53 -05:00
|
|
|
BBTMarkerDialog marker_dialog (timepos_t (pos.samples()), BBT_Time ());
|
2022-10-03 16:16:27 -04:00
|
|
|
|
|
|
|
/* run this modally since we are finishing a drag and the drag object
|
|
|
|
* will be destroyed when we return from here
|
|
|
|
*/
|
|
|
|
|
|
|
|
int result = marker_dialog.run ();
|
|
|
|
|
|
|
|
switch (result) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
case RESPONSE_OK:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
BBT_Time bbt;
|
|
|
|
std::string name;
|
|
|
|
|
|
|
|
bbt = marker_dialog.bbt_value ();
|
|
|
|
name = marker_dialog.name();
|
|
|
|
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("add BBT marker"));
|
|
|
|
tmc.map().set_bartime (bbt, marker_dialog.position(), name);
|
2022-10-03 16:16:27 -04:00
|
|
|
}
|
|
|
|
|
2022-08-17 18:27:53 -04:00
|
|
|
void
|
|
|
|
Editor::remove_bbt_marker (ArdourCanvas::Item* item)
|
|
|
|
{
|
|
|
|
ArdourMarker* marker;
|
|
|
|
BBTMarker* bbt_marker;
|
|
|
|
|
|
|
|
if ((marker = reinterpret_cast<ArdourMarker *> (item->get_data ("marker"))) == 0) {
|
|
|
|
fatal << _("programming error: bbt marker canvas item has no marker object pointer!") << endmsg;
|
|
|
|
abort(); /*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((bbt_marker = dynamic_cast<BBTMarker*> (marker)) == 0) {
|
|
|
|
fatal << _("programming error: marker for bbt is not a bbt marker!") << endmsg;
|
|
|
|
abort(); /*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_bbt_marker), &bbt_marker->mt_point()));
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2005-11-23 12:21:12 -05:00
|
|
|
Editor::remove_tempo_marker (ArdourCanvas::Item* item)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2015-07-23 07:23:47 -04:00
|
|
|
ArdourMarker* marker;
|
2005-09-25 14:42:24 -04:00
|
|
|
TempoMarker* tempo_marker;
|
|
|
|
|
2015-07-23 07:23:47 -04:00
|
|
|
if ((marker = reinterpret_cast<ArdourMarker *> (item->get_data ("marker"))) == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
|
|
|
|
fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2023-09-11 12:07:04 -04:00
|
|
|
if (!tempo_marker->tempo().locked_to_meter()) {
|
2010-05-02 19:14:43 -04:00
|
|
|
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_tempo_marker), &tempo_marker->tempo()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-11-23 18:45:08 -05:00
|
|
|
Editor::edit_meter_section (Temporal::MeterPoint& section)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2020-11-27 14:41:11 -05:00
|
|
|
MeterDialog meter_dialog (section, _("done"));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
switch (meter_dialog.run()) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2023-06-12 14:36:16 -04:00
|
|
|
Temporal::TempoMetric tm (TempoMap::use()->metric_at (timepos_t (section.sample(TEMPORAL_SAMPLE_RATE))));
|
2023-05-03 23:51:26 -04:00
|
|
|
Temporal::MeterPoint const * mpp (TempoMap::use()->previous_meter (tm.meter()));
|
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
double bpb = meter_dialog.get_bpb ();
|
|
|
|
bpb = max (1.0, bpb); // XXX is this a reasonable limit?
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-03-01 10:07:32 -05:00
|
|
|
double const note_type = meter_dialog.get_note_type ();
|
2016-07-03 11:12:55 -04:00
|
|
|
const Meter meter (bpb, note_type);
|
|
|
|
|
2023-05-03 23:51:26 -04:00
|
|
|
Temporal::Beats new_pos;
|
|
|
|
|
2023-07-25 16:54:53 -04:00
|
|
|
MusicTimePoint* mtp;
|
|
|
|
|
|
|
|
if ((mtp = dynamic_cast<Temporal::MusicTimePoint*> (§ion))) {
|
|
|
|
|
|
|
|
/* ignore positional changes, that must be done via the MTP */
|
|
|
|
const Temporal::MeterPoint mp (meter, *mtp);
|
|
|
|
MusicTimePoint replacement (*mtp);
|
|
|
|
*((Temporal::MeterPoint*)&replacement) = mp;
|
|
|
|
TempoMapChange tmc (*this, _("edit BBT meter"));
|
|
|
|
tmc.map().replace_bartime (replacement);
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-05-03 23:51:26 -04:00
|
|
|
if (!mpp) {
|
|
|
|
/* first meter, cannot move */
|
|
|
|
new_pos = section.beats ();
|
|
|
|
} else {
|
|
|
|
/* Compute the given BBT time using a tempo metric composed
|
|
|
|
from the tempo in effect at the current position, and the
|
|
|
|
previous meter.
|
|
|
|
|
|
|
|
Step 1: get BBT time from dialog
|
|
|
|
*/
|
|
|
|
|
|
|
|
Temporal::BBT_Time w;
|
|
|
|
meter_dialog.get_bbt_time (w);
|
|
|
|
|
|
|
|
/* Step 2: construct the relevant tempo metric */
|
|
|
|
|
|
|
|
TempoMetric prev_tm (tm.tempo(), *mpp);
|
|
|
|
|
|
|
|
/* Step 3: construct new BBT_Argument */
|
|
|
|
|
|
|
|
Temporal::BBT_Argument when (tm.reftime(), w);
|
|
|
|
|
|
|
|
/* Step 4: convert to quarters */
|
|
|
|
|
|
|
|
new_pos = prev_tm.quarters_at (when);
|
|
|
|
}
|
2011-12-28 16:02:31 -05:00
|
|
|
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("edit time signature"));
|
2023-05-03 23:51:26 -04:00
|
|
|
tmc.map().set_meter (meter, timepos_t (new_pos));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2022-08-17 18:27:53 -04:00
|
|
|
void
|
|
|
|
Editor::edit_bbt (MusicTimePoint& point)
|
|
|
|
{
|
|
|
|
BBTMarkerDialog dialog (point);
|
|
|
|
|
|
|
|
switch (dialog.run ()) {
|
|
|
|
case RESPONSE_OK:
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dialog.bbt_value() == point.bbt()) {
|
|
|
|
/* just a name change, no need to modify the map */
|
|
|
|
point.set_name (dialog.name());
|
|
|
|
/* XXX need to update marker label */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("edit tempo"));
|
|
|
|
tmc.map().remove_bartime (point);
|
|
|
|
tmc.map().set_bartime (dialog.bbt_value(), dialog.position(), dialog.name());
|
2022-08-17 18:27:53 -04:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2020-11-23 18:45:08 -05:00
|
|
|
Editor::edit_tempo_section (TempoPoint& section)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2020-11-27 14:41:11 -05:00
|
|
|
TempoDialog tempo_dialog (TempoMap::use(), section, _("done"));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
switch (tempo_dialog.run ()) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2005-11-27 16:17:41 -05:00
|
|
|
|
2023-06-12 14:36:16 -04:00
|
|
|
Temporal::TempoMetric tm (TempoMap::use()->metric_at (timepos_t (section.sample (TEMPORAL_SAMPLE_RATE))));
|
2023-05-03 23:51:26 -04:00
|
|
|
Temporal::TempoPoint const * tpp (TempoMap::use()->previous_tempo (tm.tempo()));
|
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
double bpm = tempo_dialog.get_bpm ();
|
2017-03-06 12:00:38 -05:00
|
|
|
double end_bpm = tempo_dialog.get_end_bpm ();
|
2021-01-01 17:59:47 -05:00
|
|
|
int nt = tempo_dialog.get_note_type ();
|
2016-07-03 11:12:55 -04:00
|
|
|
bpm = max (0.01, bpm);
|
2021-01-01 17:59:47 -05:00
|
|
|
|
|
|
|
const Tempo tempo (bpm, end_bpm, nt);
|
2023-05-03 23:51:26 -04:00
|
|
|
Temporal::Beats new_pos;
|
2023-07-25 15:50:27 -04:00
|
|
|
MusicTimePoint* mtp;
|
|
|
|
|
|
|
|
if ((mtp = dynamic_cast<Temporal::MusicTimePoint*> (§ion))) {
|
|
|
|
|
|
|
|
/* ignore positional changes, that must be done via the MTP */
|
|
|
|
MusicTimePoint replacement (*mtp);
|
|
|
|
*((TempoPoint*)&replacement) = tempo;
|
|
|
|
TempoMapChange tmc (*this, _("edit BBT tempo"));
|
|
|
|
tmc.map().replace_bartime (replacement);
|
|
|
|
return;
|
|
|
|
|
2023-08-15 01:38:44 -04:00
|
|
|
}
|
2023-05-03 23:51:26 -04:00
|
|
|
|
|
|
|
if (!tpp) {
|
|
|
|
/* first tempo, cannot move */
|
|
|
|
new_pos = section.beats ();
|
|
|
|
} else {
|
|
|
|
/* Compute the given BBT time using a tempo metric composed
|
|
|
|
from the meter in effect at the current position, and the
|
|
|
|
previous tempo.
|
|
|
|
|
|
|
|
Step 1: get BBT time from dialog
|
|
|
|
*/
|
|
|
|
|
|
|
|
Temporal::BBT_Time w;
|
|
|
|
tempo_dialog.get_bbt_time (w);
|
|
|
|
|
|
|
|
/* Step 2: construct the relevant tempo metric */
|
|
|
|
|
|
|
|
TempoMetric prev_tm (*tpp, tm.meter());
|
|
|
|
|
|
|
|
/* Step 3: construct new BBT_Argument */
|
|
|
|
|
|
|
|
Temporal::BBT_Argument when (tm.reftime(), w);
|
|
|
|
|
|
|
|
/* Step 4: convert to quarters */
|
|
|
|
|
2023-05-05 22:52:48 -04:00
|
|
|
new_pos = prev_tm.quarters_at (when).round_to_beat ();
|
2023-05-03 23:51:26 -04:00
|
|
|
}
|
2016-03-01 10:07:32 -05:00
|
|
|
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("edit tempo"));
|
2023-05-03 23:51:26 -04:00
|
|
|
|
|
|
|
// std::cerr << "using tempometric " << tm << std::endl;
|
|
|
|
// std::cerr << "edit tempo at " << when << " via quarters at = " << tmc.map().quarters_at (when) << std::endl;
|
|
|
|
|
|
|
|
tmc.map().replace_tempo (section, tempo, timepos_t (new_pos));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-01-27 10:09:58 -05:00
|
|
|
Editor::edit_tempo_marker (TempoMarker& tm)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2022-01-18 21:45:18 -05:00
|
|
|
edit_tempo_section (const_cast<Temporal::TempoPoint&>(tm.tempo()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-01-27 10:09:58 -05:00
|
|
|
Editor::edit_meter_marker (MeterMarker& mm)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2022-01-18 21:45:18 -05:00
|
|
|
edit_meter_section (const_cast<Temporal::MeterPoint&>(mm.meter()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2022-08-17 18:27:53 -04:00
|
|
|
void
|
|
|
|
Editor::edit_bbt_marker (BBTMarker& bm)
|
|
|
|
{
|
|
|
|
edit_bbt (const_cast<Temporal::MusicTimePoint&>(bm.mt_point()));
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
Editor::real_remove_bbt_marker (MusicTimePoint const * point)
|
|
|
|
{
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("remove BBT marker"));
|
|
|
|
tmc.map().remove_bartime (*point);
|
2022-08-17 18:27:53 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
gint
|
2022-01-18 21:45:18 -05:00
|
|
|
Editor::real_remove_tempo_marker (TempoPoint const * section)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("remove tempo change"));
|
|
|
|
tmc.map().remove_tempo (*section);
|
2005-09-25 14:42:24 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-11-23 12:21:12 -05:00
|
|
|
Editor::remove_meter_marker (ArdourCanvas::Item* item)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2015-07-23 07:23:47 -04:00
|
|
|
ArdourMarker* marker;
|
2005-09-25 14:42:24 -04:00
|
|
|
MeterMarker* meter_marker;
|
|
|
|
|
2015-07-23 07:23:47 -04:00
|
|
|
if ((marker = reinterpret_cast<ArdourMarker *> (item->get_data ("marker"))) == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
fatal << _("programming error: meter marker canvas item has no marker object pointer!") << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
|
|
|
|
fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2020-11-16 13:19:22 -05:00
|
|
|
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()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2022-01-18 21:45:18 -05:00
|
|
|
Editor::real_remove_meter_marker (Temporal::MeterPoint const * section)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2022-10-27 15:43:13 -04:00
|
|
|
TempoMapChange tmc (*this, _("remove tempo mark"));
|
|
|
|
tmc.map().remove_meter (*section);
|
2005-09-25 14:42:24 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
2022-01-16 00:53:36 -05:00
|
|
|
|
2023-02-24 01:01:09 -05:00
|
|
|
|
|
|
|
Temporal::TempoMap::WritableSharedPtr
|
2023-08-15 01:38:44 -04:00
|
|
|
Editor::begin_tempo_mapping (Temporal::DomainBounceInfo& dbi)
|
2023-02-24 01:01:09 -05:00
|
|
|
{
|
2023-04-07 17:33:13 -04:00
|
|
|
TempoMap::WritableSharedPtr wmap = TempoMap::write_copy ();
|
2023-08-15 01:38:44 -04:00
|
|
|
TempoMap::set (wmap);
|
2023-02-24 01:01:09 -05:00
|
|
|
reassociate_metric_markers (wmap);
|
2023-08-15 01:38:44 -04:00
|
|
|
_session->start_domain_bounce (dbi);
|
2023-02-24 01:01:09 -05:00
|
|
|
return wmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::abort_tempo_mapping ()
|
|
|
|
{
|
2023-08-15 01:38:44 -04:00
|
|
|
delete domain_bounce_info;
|
|
|
|
domain_bounce_info = nullptr;
|
2023-02-24 01:01:09 -05:00
|
|
|
|
2023-03-11 22:50:05 -05:00
|
|
|
TempoMap::abort_update ();
|
2023-02-24 01:01:09 -05:00
|
|
|
TempoMap::SharedPtr tmap (TempoMap::fetch());
|
|
|
|
reassociate_metric_markers (tmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2023-02-24 12:13:23 -05:00
|
|
|
Editor::commit_tempo_mapping (TempoMap::WritableSharedPtr& new_map)
|
2023-02-24 01:01:09 -05:00
|
|
|
{
|
|
|
|
TempoMap::update (new_map);
|
2023-08-15 01:38:44 -04:00
|
|
|
|
|
|
|
/* revert all positions */
|
|
|
|
|
|
|
|
_session->finish_domain_bounce (*domain_bounce_info);
|
|
|
|
|
|
|
|
delete domain_bounce_info;
|
|
|
|
domain_bounce_info = nullptr;
|
|
|
|
|
2023-03-11 22:50:05 -05:00
|
|
|
TempoMap::SharedPtr tmap (TempoMap::fetch());
|
|
|
|
reassociate_metric_markers (tmap);
|
2023-02-24 01:01:09 -05:00
|
|
|
}
|
|
|
|
|
2022-05-02 14:01:12 -04:00
|
|
|
Temporal::TempoMap::WritableSharedPtr
|
2022-01-16 00:53:36 -05:00
|
|
|
Editor::begin_tempo_map_edit ()
|
|
|
|
{
|
2023-04-07 17:33:13 -04:00
|
|
|
TempoMap::WritableSharedPtr wmap = TempoMap::write_copy ();
|
2023-04-10 04:03:21 -04:00
|
|
|
TempoMap::set (wmap);
|
2022-05-02 14:01:12 -04:00
|
|
|
reassociate_metric_markers (wmap);
|
|
|
|
return wmap;
|
2022-01-16 00:53:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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 ();
|
2023-09-11 12:22:26 -04:00
|
|
|
tempo_map_changed ();
|
2022-01-16 00:53:36 -05:00
|
|
|
}
|
|
|
|
|
2022-06-28 12:16:31 -04:00
|
|
|
void
|
2022-10-27 15:43:13 -04:00
|
|
|
Editor::_commit_tempo_map_edit (TempoMap::WritableSharedPtr& new_map, bool with_update)
|
2022-06-28 12:16:31 -04:00
|
|
|
{
|
2022-08-16 17:50:45 -04:00
|
|
|
if (!with_update) {
|
|
|
|
PBD::Unwinder<bool> uw (ignore_map_change, true);
|
|
|
|
TempoMap::update (new_map);
|
|
|
|
} else {
|
|
|
|
TempoMap::update (new_map);
|
|
|
|
}
|
2022-06-28 12:16:31 -04:00
|
|
|
}
|
|
|
|
|
2023-08-31 20:25:18 -04:00
|
|
|
void
|
|
|
|
Editor::set_tempo_curve_range (double& max_tempo, double& min_tempo) const
|
|
|
|
{
|
|
|
|
TempoMap::SharedPtr map (TempoMap::use());
|
|
|
|
|
|
|
|
max_tempo = map->max_notes_per_minute();
|
|
|
|
min_tempo = map->min_notes_per_minute();
|
|
|
|
|
|
|
|
max_tempo = std::max (max_tempo, 200.);
|
|
|
|
min_tempo = std::min (min_tempo, 40.);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-18 21:45:18 -05:00
|
|
|
void
|
2022-06-28 00:20:51 -04:00
|
|
|
Editor::mid_tempo_change (MidTempoChanges what_changed)
|
2022-01-18 21:45:18 -05:00
|
|
|
{
|
2022-05-10 13:44:51 -04:00
|
|
|
// std::cerr << "============== MID TEMPO\n";
|
|
|
|
// TempoMap::SharedPtr map (TempoMap::use());
|
|
|
|
// map->dump (std::cerr);
|
2022-06-28 00:20:51 -04:00
|
|
|
|
2023-03-11 22:23:20 -05:00
|
|
|
if ((what_changed & MidTempoChanges(BBTChanged|TempoChanged|MappingChanged))) {
|
2023-08-31 20:25:18 -04:00
|
|
|
double max_tempo;
|
|
|
|
double min_tempo;
|
|
|
|
set_tempo_curve_range (max_tempo, min_tempo);
|
2022-06-28 00:20:51 -04:00
|
|
|
update_tempo_curves (min_tempo, max_tempo, _session->sample_rate());
|
|
|
|
}
|
|
|
|
|
2023-09-10 22:07:41 -04:00
|
|
|
for (auto & t : tempo_marks) {
|
|
|
|
t->update ();
|
|
|
|
}
|
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
for (auto & m : meter_marks) {
|
|
|
|
m->update ();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto & b : bbt_marks) {
|
|
|
|
b->update ();
|
|
|
|
}
|
|
|
|
|
2023-10-02 18:51:18 -04:00
|
|
|
for (auto const & lam : location_markers) {
|
|
|
|
lam.second->set_position (lam.first->start(), lam.first->end());
|
|
|
|
}
|
|
|
|
|
2022-06-28 00:20:51 -04:00
|
|
|
update_tempo_based_rulers ();
|
|
|
|
maybe_draw_grid_lines ();
|
2022-06-28 13:44:25 -04:00
|
|
|
|
2023-03-11 22:24:41 -05:00
|
|
|
if (!(what_changed & (MappingChanged|BBTChanged))) {
|
|
|
|
/* Nothing changes in tracks when it is a tempo mapping
|
|
|
|
* operation or a BBT change
|
|
|
|
*/
|
2023-02-24 18:51:44 -05:00
|
|
|
foreach_time_axis_view (sigc::mem_fun (*this, &Editor::mid_tempo_per_track_update));
|
|
|
|
}
|
2022-06-28 13:44:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::mid_tempo_per_track_update (TimeAxisView& tav)
|
|
|
|
{
|
|
|
|
MidiTimeAxisView* mtav = dynamic_cast<MidiTimeAxisView*> (&tav);
|
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
if (mtav) {
|
|
|
|
MidiStreamView* msv = mtav->midi_view();
|
|
|
|
|
|
|
|
if (msv) {
|
|
|
|
msv->foreach_regionview (sigc::mem_fun (*this, &Editor::mid_tempo_per_region_update));
|
|
|
|
}
|
2022-06-28 13:44:25 -04:00
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
TimeAxisView::Children kids (tav.get_child_list());
|
2022-06-28 13:44:25 -04:00
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
for (TimeAxisView::Children::iterator ct = kids.begin(); ct != kids.end(); ++ct) {
|
2022-06-28 13:44:25 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<AutomationTimeAxisView> atav = std::dynamic_pointer_cast<AutomationTimeAxisView> (*ct);
|
2022-10-25 13:10:32 -04:00
|
|
|
|
|
|
|
if (atav) {
|
|
|
|
AutomationStreamView* asv = atav->automation_view ();
|
|
|
|
|
|
|
|
if (asv) {
|
|
|
|
asv->foreach_regionview (sigc::mem_fun (*this, &Editor::mid_tempo_per_region_update));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-28 13:44:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::mid_tempo_per_region_update (RegionView* rv)
|
|
|
|
{
|
2022-10-25 13:10:32 -04:00
|
|
|
rv->tempo_map_changed ();
|
2022-01-18 21:45:18 -05:00
|
|
|
}
|
2023-04-07 17:59:55 -04:00
|
|
|
|
2023-06-30 17:50:47 -04:00
|
|
|
void
|
|
|
|
Editor::clear_tempo_markers_before (timepos_t where, bool stop_at_music_times)
|
|
|
|
{
|
|
|
|
if (!_session) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TempoMap::WritableSharedPtr wmap = begin_tempo_map_edit ();
|
|
|
|
XMLNode* before_state = &wmap->get_state ();
|
|
|
|
|
|
|
|
if (!wmap->clear_tempos_before (where, stop_at_music_times)) {
|
|
|
|
abort_tempo_map_edit ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
begin_reversible_command (_("clear earlier tempos"));
|
|
|
|
commit_tempo_map_edit (wmap, true);
|
|
|
|
XMLNode& after = wmap->get_state ();
|
|
|
|
_session->add_command (new Temporal::TempoCommand (_("clear earlier tempos"), before_state, &after));
|
|
|
|
commit_reversible_command ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::clear_tempo_markers_after (timepos_t where, bool stop_at_music_times)
|
|
|
|
{
|
|
|
|
if (!_session) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TempoMap::WritableSharedPtr wmap = begin_tempo_map_edit ();
|
|
|
|
XMLNode* before_state = &wmap->get_state ();
|
|
|
|
if (!wmap->clear_tempos_after (where, stop_at_music_times)) {
|
|
|
|
abort_tempo_map_edit ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
begin_reversible_command (_("clear later tempos"));
|
|
|
|
commit_tempo_map_edit (wmap, true);
|
|
|
|
XMLNode& after = wmap->get_state ();
|
|
|
|
_session->add_command (new Temporal::TempoCommand (_("clear later tempos"), before_state, &after));
|
|
|
|
commit_reversible_command ();
|
|
|
|
}
|
2023-07-25 13:58:51 -04:00
|
|
|
|
|
|
|
TempoMarker*
|
|
|
|
Editor::find_marker_for_tempo (Temporal::TempoPoint const & tp)
|
|
|
|
{
|
|
|
|
for (auto const & tm : tempo_marks) {
|
|
|
|
TempoMarker* t;
|
|
|
|
if ((t = dynamic_cast<TempoMarker*>(tm))->tempo() == tp) {
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
MeterMarker*
|
|
|
|
Editor::find_marker_for_meter (Temporal::MeterPoint const & mp)
|
|
|
|
{
|
|
|
|
for (auto const & mm : meter_marks) {
|
|
|
|
MeterMarker* m;
|
|
|
|
if ((m = dynamic_cast<MeterMarker*>(mm))->meter() == mp) {
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|