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 Karsten Wiese <fzuuzf@googlemail.com>
|
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
* Copyright (C) 2006 Hans Fugal <hans@fugal.net>
|
|
|
|
* Copyright (C) 2007-2012 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2007-2015 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2007 Doug McLain <doug@nostar.net>
|
|
|
|
* Copyright (C) 2013-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
* Copyright (C) 2014-2016 Nick Mainsbridge <mainsbridge@gmail.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
|
|
|
|
2014-11-01 13:35:44 -04:00
|
|
|
#include <cmath>
|
|
|
|
|
2013-10-03 04:48:19 -04:00
|
|
|
#ifdef COMPILER_MSVC
|
|
|
|
#include <float.h>
|
2014-11-01 13:35:44 -04:00
|
|
|
|
|
|
|
// 'std::isnan()' is not available in MSVC.
|
|
|
|
#define isnan_local(val) (bool)_isnan((double)val)
|
|
|
|
#else
|
|
|
|
#define isnan_local std::isnan
|
2013-10-03 04:48:19 -04:00
|
|
|
#endif
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <climits>
|
|
|
|
#include <vector>
|
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
#include "boost/shared_ptr.hpp"
|
|
|
|
|
|
|
|
#include "pbd/floating.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/memento_command.h"
|
2012-11-17 17:55:03 -05:00
|
|
|
#include "pbd/stl_delete.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/automation_list.h"
|
|
|
|
#include "ardour/dB.h"
|
2012-07-13 17:05:45 -04:00
|
|
|
#include "ardour/debug.h"
|
2014-11-15 02:58:39 -05:00
|
|
|
#include "ardour/parameter_types.h"
|
2014-06-07 11:43:12 -04:00
|
|
|
#include "ardour/tempo.h"
|
2012-07-13 17:05:45 -04:00
|
|
|
|
2020-10-05 00:52:17 -04:00
|
|
|
#include "temporal/range.h"
|
|
|
|
|
2019-10-25 15:13:51 -04:00
|
|
|
#include "evoral/Curve.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-10-30 23:36:30 -04:00
|
|
|
#include "canvas/debug.h"
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "automation_line.h"
|
2007-07-06 23:19:04 -04:00
|
|
|
#include "control_point.h"
|
2009-12-21 13:23:07 -05:00
|
|
|
#include "gui_thread.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "rgb_macros.h"
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "selection.h"
|
|
|
|
#include "time_axis_view.h"
|
|
|
|
#include "point_selection.h"
|
|
|
|
#include "automation_time_axis.h"
|
2015-01-02 09:44:54 -05:00
|
|
|
#include "ui_config.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/event_type_map.h"
|
|
|
|
#include "ardour/session.h"
|
2014-11-02 01:29:33 -05:00
|
|
|
#include "ardour/value_as_string.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;
|
2006-06-22 19:40:55 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Editing;
|
2020-11-11 11:31:52 -05:00
|
|
|
using namespace Temporal;
|
2020-10-02 23:26:17 -04:00
|
|
|
|
2021-02-16 17:58:37 -05:00
|
|
|
#define SAMPLES_TO_TIME(x) (get_origin().distance (x))
|
2020-10-02 23:26:17 -04:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
/** @param converter A TimeConverter whose origin_b is the start time of the AutomationList in session samples.
|
2012-03-22 12:41:23 -04:00
|
|
|
* This will not be deleted by AutomationLine.
|
|
|
|
*/
|
2014-11-01 23:29:10 -04:00
|
|
|
AutomationLine::AutomationLine (const string& name,
|
|
|
|
TimeAxisView& tv,
|
|
|
|
ArdourCanvas::Item& parent,
|
|
|
|
boost::shared_ptr<AutomationList> al,
|
2021-02-16 17:58:37 -05:00
|
|
|
const ParameterDescriptor& desc)
|
2009-02-15 23:46:45 -05:00
|
|
|
: trackview (tv)
|
|
|
|
, _name (name)
|
2022-10-25 13:10:32 -04:00
|
|
|
, _height (0)
|
2022-10-26 14:28:18 -04:00
|
|
|
, alist (al)
|
2022-10-25 13:10:32 -04:00
|
|
|
, _visible (Line)
|
|
|
|
, terminal_points_can_slide (true)
|
|
|
|
, update_pending (false)
|
|
|
|
, have_reset_timeout (false)
|
|
|
|
, have_redisplay_timeout (false)
|
|
|
|
, no_draw (false)
|
|
|
|
, _is_boolean (false)
|
2009-02-15 23:46:45 -05:00
|
|
|
, _parent_group (parent)
|
2010-12-12 17:25:27 -05:00
|
|
|
, _offset (0)
|
2020-09-26 11:14:59 -04:00
|
|
|
, _maximum_time (timepos_t::max (al->time_domain()))
|
2016-07-04 16:14:00 -04:00
|
|
|
, _fill (false)
|
2014-11-02 01:29:33 -05:00
|
|
|
, _desc (desc)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2015-03-26 11:48:13 -04:00
|
|
|
group = new ArdourCanvas::Container (&parent, ArdourCanvas::Duple(0, 1.5));
|
2013-10-30 23:36:30 -04:00
|
|
|
CANVAS_DEBUG_NAME (group, "region gain envelope group");
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-12-28 13:52:46 -05:00
|
|
|
line = new ArdourCanvas::PolyLine (group);
|
2013-10-30 23:36:30 -04:00
|
|
|
CANVAS_DEBUG_NAME (line, "region gain envelope line");
|
2005-12-02 14:18:26 -05:00
|
|
|
line->set_data ("line", this);
|
2013-04-18 14:21:53 -04:00
|
|
|
line->set_outline_width (2.0);
|
2014-02-20 12:53:38 -05:00
|
|
|
line->set_covers_threshold (4.0);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
line->Event.connect (sigc::mem_fun (*this, &AutomationLine::event_handler));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
trackview.session()->register_with_memento_command_factory(alist->id(), this);
|
2007-06-30 14:41:50 -04:00
|
|
|
|
2010-07-13 20:58:15 -04:00
|
|
|
interpolation_changed (alist->interpolation ());
|
|
|
|
|
|
|
|
connect_to_list ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
AutomationLine::~AutomationLine ()
|
|
|
|
{
|
2020-05-19 19:02:36 -04:00
|
|
|
delete group; // deletes child items
|
|
|
|
|
|
|
|
for (std::vector<ControlPoint *>::iterator i = control_points.begin(); i != control_points.end(); i++) {
|
|
|
|
(*i)->unset_item ();
|
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
control_points.clear ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2021-02-16 17:58:37 -05:00
|
|
|
timepos_t
|
|
|
|
AutomationLine::get_origin() const
|
|
|
|
{
|
|
|
|
/* this is the default for all non-derived AutomationLine classes: the
|
|
|
|
origin is zero, in whatever time domain the list we represent uses.
|
|
|
|
*/
|
|
|
|
return timepos_t (the_list()->time_domain());
|
|
|
|
}
|
|
|
|
|
2005-11-15 21:57:22 -05:00
|
|
|
bool
|
|
|
|
AutomationLine::event_handler (GdkEvent* event)
|
|
|
|
{
|
|
|
|
return PublicEditor::instance().canvas_line_event (event, line, this);
|
|
|
|
}
|
|
|
|
|
2014-11-28 19:17:39 -05:00
|
|
|
bool
|
|
|
|
AutomationLine::is_stepped() const
|
|
|
|
{
|
|
|
|
return (_desc.toggled ||
|
|
|
|
(alist && alist->interpolation() == AutomationList::Discrete));
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2014-03-05 12:11:22 -05:00
|
|
|
AutomationLine::update_visibility ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2012-05-29 14:30:10 -04:00
|
|
|
if (_visible & Line) {
|
2015-01-10 12:07:31 -05:00
|
|
|
/* Only show the line when there are some points, otherwise we may show an out-of-date line
|
2012-06-10 10:14:01 -04:00
|
|
|
when automation points have been removed (the line will still follow the shape of the
|
|
|
|
old points).
|
|
|
|
*/
|
2022-10-26 14:28:36 -04:00
|
|
|
if (line_points.size() >= 2) {
|
2012-05-29 14:30:10 -04:00
|
|
|
line->show();
|
|
|
|
} else {
|
|
|
|
line->hide ();
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2014-03-04 10:03:14 -05:00
|
|
|
if (_visible & ControlPoints) {
|
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
2013-12-31 11:55:30 -05:00
|
|
|
(*i)->show ();
|
2014-03-04 10:03:14 -05:00
|
|
|
}
|
|
|
|
} else if (_visible & SelectedControlPoints) {
|
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
2016-06-05 19:49:51 -04:00
|
|
|
if ((*i)->selected()) {
|
2014-03-04 10:03:14 -05:00
|
|
|
(*i)->show ();
|
|
|
|
} else {
|
|
|
|
(*i)->hide ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
2013-12-31 11:55:30 -05:00
|
|
|
(*i)->hide ();
|
|
|
|
}
|
2012-05-29 14:30:10 -04:00
|
|
|
}
|
2014-03-04 10:03:14 -05:00
|
|
|
|
2012-05-29 14:30:10 -04:00
|
|
|
} else {
|
2014-03-04 10:03:14 -05:00
|
|
|
line->hide ();
|
2014-03-05 14:33:06 -05:00
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
2014-11-22 04:39:30 -05:00
|
|
|
if (_visible & ControlPoints) {
|
|
|
|
(*i)->show ();
|
|
|
|
} else {
|
|
|
|
(*i)->hide ();
|
|
|
|
}
|
2014-03-05 14:33:06 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2017-06-19 10:51:17 -04:00
|
|
|
}
|
2014-03-04 10:03:14 -05:00
|
|
|
|
2017-06-19 10:51:17 -04:00
|
|
|
bool
|
|
|
|
AutomationLine::get_uses_gain_mapping () const
|
|
|
|
{
|
|
|
|
switch (_desc.type) {
|
|
|
|
case GainAutomation:
|
2019-12-14 09:04:32 -05:00
|
|
|
case BusSendLevel:
|
2017-06-19 10:51:17 -04:00
|
|
|
case EnvelopeAutomation:
|
|
|
|
case TrimAutomation:
|
2022-10-10 20:39:14 -04:00
|
|
|
case InsertReturnLevel:
|
2017-06-19 10:51:17 -04:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-10-14 12:10:01 -04:00
|
|
|
AutomationLine::hide ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-12-31 13:28:20 -05:00
|
|
|
/* leave control points setting unchanged, we are just hiding the
|
2015-10-04 14:51:05 -04:00
|
|
|
overall line
|
2013-12-31 13:28:20 -05:00
|
|
|
*/
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2013-12-31 13:28:20 -05:00
|
|
|
set_visibility (AutomationLine::VisibleAspects (_visible & ~Line));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2006-10-31 16:48:51 -05:00
|
|
|
double
|
2006-10-31 15:09:41 -05:00
|
|
|
AutomationLine::control_point_box_size ()
|
|
|
|
{
|
2022-01-29 16:15:15 -05:00
|
|
|
float uiscale = UIConfiguration::instance().get_ui_scale();
|
|
|
|
uiscale = std::max<float> (1.f, powf (uiscale, 1.71));
|
|
|
|
|
2010-05-10 20:09:41 -04:00
|
|
|
if (_height > TimeAxisView::preset_height (HeightLarger)) {
|
2022-01-29 16:15:15 -05:00
|
|
|
return rint (8.0 * uiscale);
|
2010-05-10 20:09:41 -04:00
|
|
|
} else if (_height > (guint32) TimeAxisView::preset_height (HeightNormal)) {
|
2022-01-29 16:15:15 -05:00
|
|
|
return rint (6.0 * uiscale);
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2022-01-29 16:15:15 -05:00
|
|
|
return rint (4.0 * uiscale);
|
2006-10-31 15:09:41 -05:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2008-09-19 15:32:10 -04:00
|
|
|
AutomationLine::set_height (guint32 h)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
if (h != _height) {
|
2008-09-19 15:32:10 -04:00
|
|
|
_height = h;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-09-19 15:32:10 -04:00
|
|
|
double bsz = control_point_box_size();
|
2006-10-31 15:09:41 -05:00
|
|
|
|
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
|
|
|
(*i)->set_size (bsz);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2016-07-04 16:14:00 -04:00
|
|
|
if (_fill) {
|
|
|
|
line->set_fill_y1 (_height);
|
|
|
|
} else {
|
|
|
|
line->set_fill_y1 (0);
|
|
|
|
}
|
2022-10-25 13:10:32 -04:00
|
|
|
redisplay (true, true);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationLine::set_line_color (uint32_t color)
|
|
|
|
{
|
|
|
|
_line_color = color;
|
2013-04-04 00:32:52 -04:00
|
|
|
line->set_outline_color (color);
|
2017-01-12 16:07:30 -05:00
|
|
|
|
2017-07-17 12:34:35 -04:00
|
|
|
Gtkmm2ext::SVAModifier mod = UIConfiguration::instance().modifier ("automation line fill");
|
2017-01-12 16:07:30 -05:00
|
|
|
|
|
|
|
line->set_fill_color ((color & 0xffffff00) + mod.a()*255);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ControlPoint*
|
|
|
|
AutomationLine::nth (uint32_t n)
|
|
|
|
{
|
|
|
|
if (n < control_points.size()) {
|
|
|
|
return control_points[n];
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-10 21:23:03 -04:00
|
|
|
ControlPoint const *
|
|
|
|
AutomationLine::nth (uint32_t n) const
|
|
|
|
{
|
|
|
|
if (n < control_points.size()) {
|
|
|
|
return control_points[n];
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-18 12:46:28 -05:00
|
|
|
void
|
|
|
|
AutomationLine::modify_point_y (ControlPoint& cp, double y)
|
|
|
|
{
|
|
|
|
/* clamp y-coord appropriately. y is supposed to be a normalized fraction (0.0-1.0),
|
|
|
|
and needs to be converted to a canvas unit distance.
|
|
|
|
*/
|
|
|
|
|
|
|
|
y = max (0.0, y);
|
|
|
|
y = min (1.0, y);
|
|
|
|
y = _height - (y * _height);
|
|
|
|
|
2014-12-14 08:13:38 -05:00
|
|
|
trackview.editor().begin_reversible_command (_("automation event move"));
|
2010-07-14 08:27:37 -04:00
|
|
|
trackview.editor().session()->add_command (
|
2014-01-06 15:32:37 -05:00
|
|
|
new MementoCommand<AutomationList> (memento_command_binder(), &get_state(), 0));
|
2008-12-18 12:46:28 -05:00
|
|
|
|
2020-10-05 00:52:17 -04:00
|
|
|
cp.move_to (cp.get_x(), y, ControlPoint::Full);
|
2010-07-20 12:53:30 -04:00
|
|
|
|
2015-03-26 13:22:57 -04:00
|
|
|
alist->freeze ();
|
|
|
|
sync_model_with_view_point (cp);
|
|
|
|
alist->thaw ();
|
|
|
|
|
2008-12-18 12:46:28 -05:00
|
|
|
reset_line_coords (cp);
|
|
|
|
|
|
|
|
if (line_points.size() > 1) {
|
2014-11-28 19:17:39 -05:00
|
|
|
line->set_steps (line_points, is_stepped());
|
2008-12-18 12:46:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
update_pending = false;
|
|
|
|
|
2010-07-14 08:27:37 -04:00
|
|
|
trackview.editor().session()->add_command (
|
2014-01-06 15:32:37 -05:00
|
|
|
new MementoCommand<AutomationList> (memento_command_binder(), 0, &alist->get_state()));
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2014-12-14 08:13:38 -05:00
|
|
|
trackview.editor().commit_reversible_command ();
|
2009-12-17 13:24:23 -05:00
|
|
|
trackview.editor().session()->set_dirty ();
|
2008-12-18 12:46:28 -05:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
|
|
|
AutomationLine::reset_line_coords (ControlPoint& cp)
|
2009-10-14 12:10:01 -04:00
|
|
|
{
|
2007-07-06 23:19:04 -04:00
|
|
|
if (cp.view_index() < line_points.size()) {
|
2013-04-04 00:32:52 -04:00
|
|
|
line_points[cp.view_index()].x = cp.get_x ();
|
|
|
|
line_points[cp.view_index()].y = cp.get_y ();
|
2006-11-30 11:43:11 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2015-03-26 13:22:57 -04:00
|
|
|
bool
|
2012-07-09 18:03:32 -04:00
|
|
|
AutomationLine::sync_model_with_view_points (list<ControlPoint*> cp)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
update_pending = true;
|
|
|
|
|
2015-03-26 13:22:57 -04:00
|
|
|
bool moved = false;
|
2010-01-01 17:11:15 -05:00
|
|
|
for (list<ControlPoint*>::iterator i = cp.begin(); i != cp.end(); ++i) {
|
2015-03-26 13:22:57 -04:00
|
|
|
moved = sync_model_with_view_point (**i) || moved;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2015-03-26 13:22:57 -04:00
|
|
|
|
|
|
|
return moved;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
string
|
2008-12-18 12:46:28 -05:00
|
|
|
AutomationLine::get_verbose_cursor_string (double fraction) const
|
|
|
|
{
|
2017-06-19 10:51:17 -04:00
|
|
|
return fraction_to_string (fraction);
|
2008-12-18 12:46:28 -05:00
|
|
|
}
|
|
|
|
|
2012-07-10 11:44:56 -04:00
|
|
|
string
|
2017-06-21 07:03:00 -04:00
|
|
|
AutomationLine::get_verbose_cursor_relative_string (double fraction, double delta) const
|
2012-07-10 11:44:56 -04:00
|
|
|
{
|
|
|
|
std::string s = fraction_to_string (fraction);
|
2017-06-21 07:03:00 -04:00
|
|
|
std::string d = delta_to_string (delta);
|
|
|
|
return s + " (" + d + ")";
|
2012-07-10 11:44:56 -04:00
|
|
|
}
|
|
|
|
|
2008-12-18 12:46:28 -05:00
|
|
|
/**
|
|
|
|
* @param fraction y fraction
|
|
|
|
* @return string representation of this value, using dB if appropriate.
|
|
|
|
*/
|
|
|
|
string
|
|
|
|
AutomationLine::fraction_to_string (double fraction) const
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2017-06-21 07:03:00 -04:00
|
|
|
view_to_model_coord_y (fraction);
|
|
|
|
return ARDOUR::value_as_string (_desc, fraction);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2012-07-10 11:44:56 -04:00
|
|
|
string
|
2017-06-21 07:03:00 -04:00
|
|
|
AutomationLine::delta_to_string (double delta) const
|
2012-07-10 11:44:56 -04:00
|
|
|
{
|
2017-06-21 07:03:00 -04:00
|
|
|
if (!get_uses_gain_mapping () && _desc.logarithmic) {
|
|
|
|
return "x " + ARDOUR::value_as_string (_desc, delta);
|
|
|
|
} else {
|
|
|
|
return "\u0394 " + ARDOUR::value_as_string (_desc, delta);
|
2012-07-10 11:44:56 -04:00
|
|
|
}
|
|
|
|
}
|
2008-12-18 12:46:28 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param s Value string in the form as returned by fraction_to_string.
|
|
|
|
* @return Corresponding y fraction.
|
|
|
|
*/
|
|
|
|
double
|
|
|
|
AutomationLine::string_to_fraction (string const & s) const
|
|
|
|
{
|
|
|
|
double v;
|
|
|
|
sscanf (s.c_str(), "%lf", &v);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2017-06-19 10:51:17 -04:00
|
|
|
switch (_desc.type) {
|
|
|
|
case GainAutomation:
|
2019-12-14 09:04:32 -05:00
|
|
|
case BusSendLevel:
|
2017-06-19 10:51:17 -04:00
|
|
|
case EnvelopeAutomation:
|
|
|
|
case TrimAutomation:
|
2022-10-10 20:39:14 -04:00
|
|
|
case InsertReturnLevel:
|
2017-06-19 10:51:17 -04:00
|
|
|
if (s == "-inf") { /* translation */
|
|
|
|
v = 0;
|
|
|
|
} else {
|
|
|
|
v = dB_to_coefficient (v);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2008-12-18 12:46:28 -05:00
|
|
|
}
|
2022-10-25 13:10:32 -04:00
|
|
|
return model_to_view_coord_y (v);
|
2008-12-18 12:46:28 -05:00
|
|
|
}
|
|
|
|
|
2010-01-02 19:08:58 -05:00
|
|
|
/** Start dragging a single point, possibly adding others if the supplied point is selected and there
|
|
|
|
* are other selected points.
|
|
|
|
*
|
2010-01-01 17:11:15 -05:00
|
|
|
* @param cp Point to drag.
|
2010-01-11 14:36:29 -05:00
|
|
|
* @param x Initial x position (units).
|
2010-01-01 17:11:15 -05:00
|
|
|
* @param fraction Initial y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2010-01-11 14:36:29 -05:00
|
|
|
AutomationLine::start_drag_single (ControlPoint* cp, double x, float fraction)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-07-14 08:27:37 -04:00
|
|
|
trackview.editor().session()->add_command (
|
2014-01-06 15:32:37 -05:00
|
|
|
new MementoCommand<AutomationList> (memento_command_binder(), &get_state(), 0));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-01-01 17:11:15 -05:00
|
|
|
_drag_points.clear ();
|
|
|
|
_drag_points.push_back (cp);
|
2010-01-02 19:08:58 -05:00
|
|
|
|
2016-06-05 19:49:51 -04:00
|
|
|
if (cp->selected ()) {
|
2010-01-02 19:08:58 -05:00
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
2016-06-05 19:49:51 -04:00
|
|
|
if (*i != cp && (*i)->selected()) {
|
2010-01-02 19:08:58 -05:00
|
|
|
_drag_points.push_back (*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-01-01 17:11:15 -05:00
|
|
|
start_drag_common (x, fraction);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2010-01-01 17:11:15 -05:00
|
|
|
/** Start dragging a line vertically (with no change in x)
|
|
|
|
* @param i1 Control point index of the `left' point on the line.
|
|
|
|
* @param i2 Control point index of the `right' point on the line.
|
|
|
|
* @param fraction Initial y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2010-01-01 17:11:15 -05:00
|
|
|
AutomationLine::start_drag_line (uint32_t i1, uint32_t i2, float fraction)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-07-14 08:27:37 -04:00
|
|
|
trackview.editor().session()->add_command (
|
2014-01-06 15:32:37 -05:00
|
|
|
new MementoCommand<AutomationList> (memento_command_binder (), &get_state(), 0));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-01-01 17:11:15 -05:00
|
|
|
_drag_points.clear ();
|
2012-11-17 17:55:03 -05:00
|
|
|
|
2010-01-11 14:36:29 -05:00
|
|
|
for (uint32_t i = i1; i <= i2; i++) {
|
|
|
|
_drag_points.push_back (nth (i));
|
2009-03-02 13:08:15 -05:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-01-01 17:11:15 -05:00
|
|
|
start_drag_common (0, fraction);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Start dragging multiple points (with no change in x)
|
|
|
|
* @param cp Points to drag.
|
|
|
|
* @param fraction Initial y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
AutomationLine::start_drag_multiple (list<ControlPoint*> cp, float fraction, XMLNode* state)
|
|
|
|
{
|
2010-07-14 08:27:37 -04:00
|
|
|
trackview.editor().session()->add_command (
|
2014-01-06 15:32:37 -05:00
|
|
|
new MementoCommand<AutomationList> (memento_command_binder(), state, 0));
|
2010-01-01 17:11:15 -05:00
|
|
|
|
|
|
|
_drag_points = cp;
|
|
|
|
start_drag_common (0, fraction);
|
|
|
|
}
|
|
|
|
|
2010-01-11 14:36:29 -05:00
|
|
|
struct ControlPointSorter
|
|
|
|
{
|
2012-11-17 17:55:03 -05:00
|
|
|
bool operator() (ControlPoint const * a, ControlPoint const * b) const {
|
|
|
|
if (floateq (a->get_x(), b->get_x(), 1)) {
|
|
|
|
return a->view_index() < b->view_index();
|
2015-10-04 14:51:05 -04:00
|
|
|
}
|
2010-01-11 14:36:29 -05:00
|
|
|
return a->get_x() < b->get_x();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
AutomationLine::ContiguousControlPoints::ContiguousControlPoints (AutomationLine& al)
|
2015-10-04 14:51:05 -04:00
|
|
|
: line (al), before_x (0), after_x (DBL_MAX)
|
2012-11-17 17:55:03 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-06-07 11:43:12 -04:00
|
|
|
AutomationLine::ContiguousControlPoints::compute_x_bounds (PublicEditor& e)
|
2012-11-17 17:55:03 -05:00
|
|
|
{
|
2013-01-07 15:10:18 -05:00
|
|
|
uint32_t sz = size();
|
|
|
|
|
|
|
|
if (sz > 0 && sz < line.npoints()) {
|
2020-11-27 14:41:11 -05:00
|
|
|
const TempoMap::SharedPtr map (TempoMap::use());
|
2013-01-07 15:10:18 -05:00
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
/* determine the limits on x-axis motion for this
|
2012-11-17 17:55:03 -05:00
|
|
|
contiguous range of control points
|
|
|
|
*/
|
2013-01-07 15:10:18 -05:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
if (front()->view_index() > 0) {
|
|
|
|
before_x = line.nth (front()->view_index() - 1)->get_x();
|
2022-05-16 08:09:58 -04:00
|
|
|
before_x += e.sample_to_pixel_unrounded (64);
|
2012-11-17 17:55:03 -05:00
|
|
|
}
|
2013-01-07 15:10:18 -05:00
|
|
|
|
|
|
|
/* if our last point has a point after it in the line,
|
|
|
|
we have an "after" bound
|
|
|
|
*/
|
|
|
|
|
2014-06-07 11:43:12 -04:00
|
|
|
if (back()->view_index() < (line.npoints() - 1)) {
|
2012-11-17 17:55:03 -05:00
|
|
|
after_x = line.nth (back()->view_index() + 1)->get_x();
|
2022-05-16 08:09:58 -04:00
|
|
|
after_x -= e.sample_to_pixel_unrounded (64);
|
2012-11-17 17:55:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
double
|
|
|
|
AutomationLine::ContiguousControlPoints::clamp_dx (double dx)
|
2012-11-17 17:55:03 -05:00
|
|
|
{
|
|
|
|
if (empty()) {
|
|
|
|
return dx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the maximum distance we can move any of these points along the x-axis
|
|
|
|
*/
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
double tx; /* possible position a point would move to, given dx */
|
|
|
|
ControlPoint* cp;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
if (dx > 0) {
|
|
|
|
/* check the last point, since we're moving later in time */
|
|
|
|
cp = back();
|
|
|
|
} else {
|
|
|
|
/* check the first point, since we're moving earlier in time */
|
|
|
|
cp = front();
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
tx = cp->get_x() + dx; // new possible position if we just add the motion
|
2012-11-17 17:55:03 -05:00
|
|
|
tx = max (tx, before_x); // can't move later than following point
|
Fix typos in gtk2_ardour/ directory
Found via `codespell -q 3 -S *.po,./share/patchfiles,./libs -L ba,buss,busses,doubleclick,hsi,ontop,ro,seh,siz,sur,te,trough,ue`
2022-01-26 12:35:38 -05:00
|
|
|
tx = min (tx, after_x); // can't move earlier than preceding point
|
2015-10-04 14:51:05 -04:00
|
|
|
return tx - cp->get_x ();
|
2012-11-17 17:55:03 -05:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
void
|
2017-06-21 07:03:00 -04:00
|
|
|
AutomationLine::ContiguousControlPoints::move (double dx, double dvalue)
|
2012-11-17 17:55:03 -05:00
|
|
|
{
|
|
|
|
for (std::list<ControlPoint*>::iterator i = begin(); i != end(); ++i) {
|
2017-06-21 07:03:00 -04:00
|
|
|
// compute y-axis delta
|
|
|
|
double view_y = 1.0 - (*i)->get_y() / line.height();
|
|
|
|
line.view_to_model_coord_y (view_y);
|
|
|
|
line.apply_delta (view_y, dvalue);
|
2022-10-25 13:10:32 -04:00
|
|
|
view_y = line.model_to_view_coord_y (view_y);
|
2017-06-21 07:03:00 -04:00
|
|
|
view_y = (1.0 - view_y) * line.height();
|
|
|
|
|
|
|
|
(*i)->move_to ((*i)->get_x() + dx, view_y, ControlPoint::Full);
|
2012-11-17 17:55:03 -05:00
|
|
|
line.reset_line_coords (**i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-01 17:11:15 -05:00
|
|
|
/** Common parts of starting a drag.
|
2010-01-11 14:36:29 -05:00
|
|
|
* @param x Starting x position in units, or 0 if x is being ignored.
|
2010-01-01 17:11:15 -05:00
|
|
|
* @param fraction Starting y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
|
|
|
|
*/
|
|
|
|
void
|
2010-01-11 14:36:29 -05:00
|
|
|
AutomationLine::start_drag_common (double x, float fraction)
|
2010-01-01 17:11:15 -05:00
|
|
|
{
|
2010-01-11 14:36:29 -05:00
|
|
|
_drag_x = x;
|
|
|
|
_drag_distance = 0;
|
2010-01-01 17:11:15 -05:00
|
|
|
_last_drag_fraction = fraction;
|
|
|
|
_drag_had_movement = false;
|
|
|
|
did_push = false;
|
2010-01-11 14:36:29 -05:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
/* they are probably ordered already, but we have to make sure */
|
2010-01-11 14:36:29 -05:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
_drag_points.sort (ControlPointSorter());
|
2010-01-01 17:11:15 -05:00
|
|
|
}
|
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
|
2010-01-01 17:11:15 -05:00
|
|
|
/** Should be called to indicate motion during a drag.
|
2012-04-22 20:35:49 -04:00
|
|
|
* @param x New x position of the drag in canvas units, or undefined if ignore_x == true.
|
2010-01-01 17:11:15 -05:00
|
|
|
* @param fraction New y fraction.
|
2010-01-08 14:55:37 -05:00
|
|
|
* @return x position and y fraction that were actually used (once clamped).
|
2010-01-01 17:11:15 -05:00
|
|
|
*/
|
2017-06-21 07:03:00 -04:00
|
|
|
pair<float, float>
|
2012-12-19 10:55:06 -05:00
|
|
|
AutomationLine::drag_motion (double const x, float fraction, bool ignore_x, bool with_push, uint32_t& final_index)
|
2010-01-01 17:11:15 -05:00
|
|
|
{
|
2012-11-17 17:55:03 -05:00
|
|
|
if (_drag_points.empty()) {
|
2017-06-21 07:03:00 -04:00
|
|
|
return pair<double,float> (fraction, _desc.is_linear () ? 0 : 1);
|
2010-01-11 14:36:29 -05:00
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-01-11 14:36:29 -05:00
|
|
|
double dx = ignore_x ? 0 : (x - _drag_x);
|
2010-01-01 20:32:14 -05:00
|
|
|
double dy = fraction - _last_drag_fraction;
|
2010-01-01 17:11:15 -05:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
if (!_drag_had_movement) {
|
2010-01-11 14:36:29 -05:00
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
/* "first move" ... do some stuff that we don't want to do if
|
2012-11-17 17:55:03 -05:00
|
|
|
no motion ever took place, but need to do before we handle
|
|
|
|
motion.
|
|
|
|
*/
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
/* partition the points we are dragging into (potentially several)
|
|
|
|
* set(s) of contiguous points. this will not happen with a normal
|
|
|
|
* drag, but if the user does a discontiguous selection, it can.
|
|
|
|
*/
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
uint32_t expected_view_index = 0;
|
|
|
|
CCP contig;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
for (list<ControlPoint*>::iterator i = _drag_points.begin(); i != _drag_points.end(); ++i) {
|
|
|
|
if (i == _drag_points.begin() || (*i)->view_index() != expected_view_index) {
|
|
|
|
contig.reset (new ContiguousControlPoints (*this));
|
|
|
|
contiguous_points.push_back (contig);
|
2012-05-31 13:08:08 -04:00
|
|
|
}
|
2012-11-17 17:55:03 -05:00
|
|
|
contig->push_back (*i);
|
|
|
|
expected_view_index = (*i)->view_index() + 1;
|
2010-01-11 14:36:29 -05:00
|
|
|
}
|
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
if (contiguous_points.back()->empty()) {
|
|
|
|
contiguous_points.pop_back ();
|
|
|
|
}
|
2010-01-11 14:36:29 -05:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
for (vector<CCP>::iterator ccp = contiguous_points.begin(); ccp != contiguous_points.end(); ++ccp) {
|
2014-06-07 11:43:12 -04:00
|
|
|
(*ccp)->compute_x_bounds (trackview.editor());
|
2012-11-17 17:55:03 -05:00
|
|
|
}
|
2015-06-18 10:02:09 -04:00
|
|
|
_drag_had_movement = true;
|
2015-10-05 10:17:49 -04:00
|
|
|
}
|
2012-11-17 17:55:03 -05:00
|
|
|
|
|
|
|
/* OK, now on to the stuff related to *this* motion event. First, for
|
|
|
|
* each contiguous range, figure out the maximum x-axis motion we are
|
|
|
|
* allowed (because of neighbouring points that are not moving.
|
2015-10-04 14:51:05 -04:00
|
|
|
*
|
|
|
|
* if we are moving forwards with push, we don't need to do this,
|
2012-11-17 17:55:03 -05:00
|
|
|
* since all later points will move too.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (dx < 0 || ((dx > 0) && !with_push)) {
|
|
|
|
for (vector<CCP>::iterator ccp = contiguous_points.begin(); ccp != contiguous_points.end(); ++ccp) {
|
2022-05-16 08:09:58 -04:00
|
|
|
dx = (*ccp)->clamp_dx (dx);
|
2012-11-17 17:55:03 -05:00
|
|
|
}
|
2010-01-11 14:36:29 -05:00
|
|
|
}
|
|
|
|
|
2017-06-21 07:03:00 -04:00
|
|
|
/* compute deflection */
|
|
|
|
double delta_value;
|
|
|
|
{
|
|
|
|
double value0 = _last_drag_fraction;
|
|
|
|
double value1 = _last_drag_fraction + dy;
|
|
|
|
view_to_model_coord_y (value0);
|
|
|
|
view_to_model_coord_y (value1);
|
|
|
|
delta_value = compute_delta (value0, value1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* special case -inf */
|
|
|
|
if (delta_value == 0 && dy > 0 && !_desc.is_linear ()) {
|
|
|
|
assert (_desc.lower == 0);
|
|
|
|
delta_value = 1.0;
|
|
|
|
}
|
|
|
|
|
2010-01-11 14:36:29 -05:00
|
|
|
/* clamp y */
|
2012-11-17 17:55:03 -05:00
|
|
|
for (list<ControlPoint*>::iterator i = _drag_points.begin(); i != _drag_points.end(); ++i) {
|
2017-06-21 07:03:00 -04:00
|
|
|
double vy = 1.0 - (*i)->get_y() / _height;
|
|
|
|
view_to_model_coord_y (vy);
|
|
|
|
const double orig = vy;
|
|
|
|
apply_delta (vy, delta_value);
|
|
|
|
if (vy < _desc.lower) {
|
|
|
|
delta_value = compute_delta (orig, _desc.lower);
|
2010-01-01 20:32:14 -05:00
|
|
|
}
|
2017-06-21 07:03:00 -04:00
|
|
|
if (vy > _desc.upper) {
|
|
|
|
delta_value = compute_delta (orig, _desc.upper);
|
2010-01-01 21:10:49 -05:00
|
|
|
}
|
2010-01-01 20:32:14 -05:00
|
|
|
}
|
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
if (dx || dy) {
|
|
|
|
/* and now move each section */
|
|
|
|
for (vector<CCP>::iterator ccp = contiguous_points.begin(); ccp != contiguous_points.end(); ++ccp) {
|
2017-06-21 07:03:00 -04:00
|
|
|
(*ccp)->move (dx, delta_value);
|
2012-11-17 17:55:03 -05:00
|
|
|
}
|
2017-06-21 07:03:00 -04:00
|
|
|
|
2012-11-17 17:55:03 -05:00
|
|
|
if (with_push) {
|
2012-12-19 10:55:06 -05:00
|
|
|
final_index = contiguous_points.back()->back()->view_index () + 1;
|
2012-11-17 17:55:03 -05:00
|
|
|
ControlPoint* p;
|
2012-12-19 10:55:06 -05:00
|
|
|
uint32_t i = final_index;
|
2012-11-17 17:55:03 -05:00
|
|
|
while ((p = nth (i)) != 0 && p->can_slide()) {
|
|
|
|
p->move_to (p->get_x() + dx, p->get_y(), ControlPoint::Full);
|
|
|
|
reset_line_coords (*p);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
2012-11-19 13:18:09 -05:00
|
|
|
|
2017-06-21 07:03:00 -04:00
|
|
|
/* update actual line coordinates (will queue a redraw) */
|
2013-01-07 15:10:18 -05:00
|
|
|
|
|
|
|
if (line_points.size() > 1) {
|
2014-11-28 19:17:39 -05:00
|
|
|
line->set_steps (line_points, is_stepped());
|
2013-01-07 15:10:18 -05:00
|
|
|
}
|
2010-01-01 17:11:15 -05:00
|
|
|
}
|
2017-06-21 07:03:00 -04:00
|
|
|
|
|
|
|
/* calculate effective delta */
|
|
|
|
ControlPoint* cp = _drag_points.front();
|
|
|
|
double vy = 1.0 - cp->get_y() / (double)_height;
|
|
|
|
view_to_model_coord_y (vy);
|
|
|
|
float val = (*(cp->model ()))->value;
|
|
|
|
float effective_delta = _desc.compute_delta (val, vy);
|
|
|
|
/* special case recovery from -inf */
|
|
|
|
if (val == 0 && effective_delta == 0 && vy > 0) {
|
|
|
|
assert (!_desc.is_linear ());
|
|
|
|
effective_delta = HUGE_VAL; // +Infinity
|
|
|
|
}
|
|
|
|
|
2015-10-27 12:14:10 -04:00
|
|
|
double const result_frac = _last_drag_fraction + dy;
|
2012-11-17 17:55:03 -05:00
|
|
|
_drag_distance += dx;
|
|
|
|
_drag_x += dx;
|
2015-10-27 12:14:10 -04:00
|
|
|
_last_drag_fraction = result_frac;
|
2012-11-17 17:55:03 -05:00
|
|
|
did_push = with_push;
|
2010-01-08 14:55:37 -05:00
|
|
|
|
2017-06-21 07:03:00 -04:00
|
|
|
return pair<float, float> (result_frac, effective_delta);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2010-01-01 17:11:15 -05:00
|
|
|
/** Should be called to indicate the end of a drag */
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2012-12-19 10:55:06 -05:00
|
|
|
AutomationLine::end_drag (bool with_push, uint32_t final_index)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-01-01 17:11:15 -05:00
|
|
|
if (!_drag_had_movement) {
|
2006-11-28 12:52:09 -05:00
|
|
|
return;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
alist->freeze ();
|
2015-03-26 13:22:57 -04:00
|
|
|
bool moved = sync_model_with_view_points (_drag_points);
|
2012-12-19 10:55:06 -05:00
|
|
|
|
|
|
|
if (with_push) {
|
|
|
|
ControlPoint* p;
|
|
|
|
uint32_t i = final_index;
|
|
|
|
while ((p = nth (i)) != 0 && p->can_slide()) {
|
2015-03-26 13:22:57 -04:00
|
|
|
moved = sync_model_with_view_point (*p) || moved;
|
2012-12-19 10:55:06 -05:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
alist->thaw ();
|
2006-11-28 12:52:09 -05:00
|
|
|
|
|
|
|
update_pending = false;
|
|
|
|
|
2015-03-26 13:22:57 -04:00
|
|
|
if (moved) {
|
|
|
|
/* A point has moved as a result of sync (clamped to integer or boolean
|
|
|
|
value), update line accordingly. */
|
|
|
|
line->set_steps (line_points, is_stepped());
|
|
|
|
}
|
|
|
|
|
2010-07-14 08:27:37 -04:00
|
|
|
trackview.editor().session()->add_command (
|
2014-01-06 15:32:37 -05:00
|
|
|
new MementoCommand<AutomationList>(memento_command_binder (), 0, &alist->get_state()));
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
trackview.editor().session()->set_dirty ();
|
2012-04-22 20:35:49 -04:00
|
|
|
did_push = false;
|
2012-11-17 17:55:03 -05:00
|
|
|
|
|
|
|
contiguous_points.clear ();
|
2006-11-28 12:52:09 -05:00
|
|
|
}
|
|
|
|
|
2021-02-16 17:58:37 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* get model coordinates synced with (possibly changed) view coordinates.
|
|
|
|
*
|
|
|
|
* For example, we call this in ::end_drag(), when we have probably moved a
|
|
|
|
* point in the view, and now want to "push" that change back into the
|
|
|
|
* corresponding model point.
|
|
|
|
*/
|
2015-03-26 13:22:57 -04:00
|
|
|
bool
|
2012-07-09 18:03:32 -04:00
|
|
|
AutomationLine::sync_model_with_view_point (ControlPoint& cp)
|
2006-11-28 12:52:09 -05:00
|
|
|
{
|
2012-04-05 12:53:55 -04:00
|
|
|
/* find out where the visual control point is.
|
2022-03-17 15:15:19 -04:00
|
|
|
* ControlPoint uses canvas-units. The origin
|
|
|
|
* is the RegionView's top-left corner.
|
|
|
|
*/
|
2012-04-05 12:53:55 -04:00
|
|
|
double view_x = cp.get_x();
|
2017-06-21 07:03:00 -04:00
|
|
|
double view_y = 1.0 - cp.get_y() / (double)_height;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-03-17 15:15:19 -04:00
|
|
|
/* model time is relative to the Region (regardless of region->start offset) */
|
2021-02-16 17:58:37 -05:00
|
|
|
timepos_t model_time = (*cp.model())->when;
|
|
|
|
|
2022-03-17 15:15:19 -04:00
|
|
|
/* convert to absolute time on timeline */
|
2021-02-16 17:58:37 -05:00
|
|
|
const timepos_t absolute_time = model_time + get_origin();
|
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
/* now convert it back to match the view_x (RegionView pixel pos) */
|
2022-03-17 15:15:19 -04:00
|
|
|
const double model_x = trackview.editor().time_to_pixel_unrounded (absolute_time.earlier (_offset).earlier (get_origin ()));
|
2020-10-02 23:26:17 -04:00
|
|
|
|
2021-02-16 17:58:37 -05:00
|
|
|
if (view_x != model_x) {
|
|
|
|
|
|
|
|
/* convert the current position in the view (units: pixels)
|
|
|
|
* into samples, then use that to create a timecnt_t that
|
|
|
|
* measures the distance from the origin for this line.
|
2022-03-17 15:15:19 -04:00
|
|
|
*
|
|
|
|
* Note that the offset and origin is irrelevant here,
|
|
|
|
* pixel_to_sample() islinear only depending on zoom level.
|
2020-10-02 23:26:17 -04:00
|
|
|
*/
|
2021-02-16 17:58:37 -05:00
|
|
|
|
2022-03-17 15:15:19 -04:00
|
|
|
const timecnt_t view_samples (trackview.editor().pixel_to_sample (view_x));
|
2021-02-16 17:58:37 -05:00
|
|
|
|
2022-03-17 15:15:19 -04:00
|
|
|
/* measure distance from RegionView origin (this preserves time domain) */
|
|
|
|
model_time = timepos_t (the_list()->time_domain()).distance (timepos_t (view_samples));
|
2021-02-16 17:58:37 -05:00
|
|
|
|
2022-03-17 15:15:19 -04:00
|
|
|
/* convert RegionView to Region position (account for region->start() _offset) */
|
|
|
|
model_time += _offset;
|
2006-11-28 12:52:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
update_pending = true;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
view_to_model_coord_y (view_y);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2021-02-16 17:58:37 -05:00
|
|
|
alist->modify (cp.model(), model_time, view_y);
|
2015-03-26 13:22:57 -04:00
|
|
|
|
|
|
|
/* convert back from model to view y for clamping position (for integer/boolean/etc) */
|
2022-10-25 13:10:32 -04:00
|
|
|
view_y = model_to_view_coord_y (view_y);
|
2015-03-26 13:22:57 -04:00
|
|
|
const double point_y = _height - (view_y * _height);
|
|
|
|
if (point_y != cp.get_y()) {
|
|
|
|
cp.move_to (cp.get_x(), point_y, ControlPoint::Full);
|
|
|
|
reset_line_coords (cp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
bool
|
2005-09-25 14:42:24 -04:00
|
|
|
AutomationLine::control_points_adjacent (double xval, uint32_t & before, uint32_t& after)
|
|
|
|
{
|
|
|
|
ControlPoint *bcp = 0;
|
|
|
|
ControlPoint *acp = 0;
|
|
|
|
double unit_xval;
|
|
|
|
|
2013-04-12 11:15:45 -04:00
|
|
|
unit_xval = trackview.editor().sample_to_pixel_unrounded (xval);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if ((*i)->get_x() <= unit_xval) {
|
|
|
|
|
|
|
|
if (!bcp || (*i)->get_x() > bcp->get_x()) {
|
|
|
|
bcp = *i;
|
2007-07-06 23:19:04 -04:00
|
|
|
before = bcp->view_index();
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
} else if ((*i)->get_x() > unit_xval) {
|
|
|
|
acp = *i;
|
2007-07-06 23:19:04 -04:00
|
|
|
after = acp->view_index();
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bcp && acp;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AutomationLine::is_last_point (ControlPoint& cp)
|
|
|
|
{
|
2012-04-05 12:53:55 -04:00
|
|
|
// If the list is not empty, and the point is the last point in the list
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
if (alist->empty()) {
|
|
|
|
return false;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
AutomationList::const_iterator i = alist->end();
|
|
|
|
--i;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
if (cp.model() == i) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return true;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AutomationLine::is_first_point (ControlPoint& cp)
|
|
|
|
{
|
|
|
|
// If the list is not empty, and the point is the first point in the list
|
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
if (!alist->empty() && cp.model() == alist->begin()) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return true;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is copied into AudioRegionGainLine
|
|
|
|
void
|
|
|
|
AutomationLine::remove_point (ControlPoint& cp)
|
|
|
|
{
|
2014-12-14 08:13:38 -05:00
|
|
|
trackview.editor().begin_reversible_command (_("remove control point"));
|
2007-08-17 13:25:20 -04:00
|
|
|
XMLNode &before = alist->get_state();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2015-10-04 11:56:56 -04:00
|
|
|
trackview.editor ().get_selection ().clear_points ();
|
2012-04-05 12:53:55 -04:00
|
|
|
alist->erase (cp.model());
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2010-07-14 08:27:37 -04:00
|
|
|
trackview.editor().session()->add_command(
|
2014-01-06 15:32:37 -05:00
|
|
|
new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state()));
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2014-12-14 08:13:38 -05:00
|
|
|
trackview.editor().commit_reversible_command ();
|
2009-12-17 13:24:23 -05:00
|
|
|
trackview.editor().session()->set_dirty ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2010-08-05 09:36:38 -04:00
|
|
|
/** Get selectable points within an area.
|
2017-09-18 12:39:17 -04:00
|
|
|
* @param start Start position in session samples.
|
|
|
|
* @param end End position in session samples.
|
2010-08-06 19:28:44 -04:00
|
|
|
* @param bot Bottom y range, as a fraction of line height, where 0 is the bottom of the line.
|
|
|
|
* @param top Top y range, as a fraction of line height, where 0 is the bottom of the line.
|
2010-08-10 21:23:03 -04:00
|
|
|
* @param result Filled in with selectable things; in this case, ControlPoints.
|
2010-08-05 09:36:38 -04:00
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2020-10-05 00:52:17 -04:00
|
|
|
AutomationLine::get_selectables (timepos_t const & start, timepos_t const & end, double botfrac, double topfrac, list<Selectable*>& results)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-08-06 19:28:44 -04:00
|
|
|
/* convert fractions to display coordinates with 0 at the top of the track */
|
|
|
|
double const bot_track = (1 - topfrac) * trackview.current_height ();
|
|
|
|
double const top_track = (1 - botfrac) * trackview.current_height ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-08-11 15:36:46 -04:00
|
|
|
for (auto const & cp : control_points) {
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2022-08-11 15:36:46 -04:00
|
|
|
const timepos_t w = session_position ((*cp->model())->when);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
|
2022-08-11 15:36:46 -04:00
|
|
|
if (w >= start && w <= end && cp->get_y() >= bot_track && cp->get_y() <= top_track) {
|
|
|
|
results.push_back (cp);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-07-21 11:55:17 -04:00
|
|
|
AutomationLine::get_inverted_selectables (Selection&, list<Selectable*>& /*results*/)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
// hmmm ....
|
|
|
|
}
|
|
|
|
|
2010-01-04 21:22:58 -05:00
|
|
|
void
|
2011-07-13 15:24:46 -04:00
|
|
|
AutomationLine::set_selected_points (PointSelection const & points)
|
2010-01-04 21:22:58 -05:00
|
|
|
{
|
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
|
|
|
(*i)->set_selected (false);
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-04-22 10:03:07 -04:00
|
|
|
for (PointSelection::const_iterator i = points.begin(); i != points.end(); ++i) {
|
|
|
|
(*i)->set_selected (true);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2014-11-16 22:46:59 -05:00
|
|
|
if (points.empty()) {
|
|
|
|
remove_visibility (SelectedControlPoints);
|
|
|
|
} else {
|
|
|
|
add_visibility (SelectedControlPoints);
|
|
|
|
}
|
|
|
|
|
2010-01-02 19:08:58 -05:00
|
|
|
set_colors ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2015-06-20 15:27:45 -04:00
|
|
|
void
|
|
|
|
AutomationLine::set_colors ()
|
2010-01-01 21:10:49 -05:00
|
|
|
{
|
2015-01-02 09:44:54 -05:00
|
|
|
set_line_color (UIConfiguration::instance().color ("automation line"));
|
2007-04-02 22:05:34 -04:00
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
2010-01-02 19:08:58 -05:00
|
|
|
(*i)->set_color ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-11-16 13:42:48 -05:00
|
|
|
AutomationLine::list_changed ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2012-07-13 17:05:45 -04:00
|
|
|
DEBUG_TRACE (DEBUG::Automation, string_compose ("\tline changed, existing update pending? %1\n", update_pending));
|
|
|
|
|
|
|
|
if (!update_pending) {
|
|
|
|
update_pending = true;
|
|
|
|
Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&AutomationLine::queue_reset, this));
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
void
|
|
|
|
AutomationLine::tempo_map_changed ()
|
|
|
|
{
|
|
|
|
if (alist->time_domain() != Temporal::BeatTime) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
redisplay (true, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationLine::redisplay (bool view_only, bool with_y)
|
|
|
|
{
|
|
|
|
have_redisplay_timeout = false;
|
|
|
|
|
|
|
|
if (view_only) {
|
|
|
|
|
|
|
|
|
|
|
|
for (std::vector<ControlPoint *>::iterator i = control_points.begin(); i != control_points.end(); i++) {
|
|
|
|
|
|
|
|
AutomationList::iterator ai ((*i)->model());
|
|
|
|
|
|
|
|
/* drop points outside our range */
|
|
|
|
|
|
|
|
if (((*ai)->when < _offset)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
if ((*ai)->when >= _offset + _maximum_time) {
|
2022-10-25 13:10:32 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we do not need to recompute the y coordinate here */
|
|
|
|
|
|
|
|
double ty;
|
|
|
|
timecnt_t tx;
|
|
|
|
|
|
|
|
if (!with_y) {
|
|
|
|
|
|
|
|
/* re-use existing y-coordinate */
|
|
|
|
|
|
|
|
ty = (*i)->get_y();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* convert to absolute position */
|
|
|
|
|
|
|
|
ty = model_to_view_coord_y ((*ai)->value);
|
|
|
|
|
|
|
|
if (isnan_local (ty)) {
|
|
|
|
warning << string_compose (_("Ignoring illegal points on AutomationLine \"%1\""),
|
|
|
|
_name) << endmsg;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ty = _height - (ty * _height);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* tx is currently the distance of this point from
|
|
|
|
* _offset, which may be either:
|
|
|
|
*
|
|
|
|
* a) zero, for an automation line not connected to a
|
|
|
|
* region
|
|
|
|
*
|
|
|
|
* b) some non-zero value, corresponding to the start
|
|
|
|
* of the region within its source(s). Remember that
|
|
|
|
* this start is an offset within the source, not a
|
|
|
|
* position on the timeline.
|
|
|
|
*
|
|
|
|
* We need to convert tx to a global position, and to
|
|
|
|
* do that we need to measure the distance from the
|
|
|
|
* result of get_origin(), which tells ut the timeline
|
|
|
|
* position of _offset
|
|
|
|
*/
|
|
|
|
|
|
|
|
tx = model_to_view_coord_x ((*ai)->when);
|
|
|
|
|
|
|
|
/* convert x-coordinate to a canvas unit coordinate (this takes
|
|
|
|
* zoom and scroll into account).
|
|
|
|
*/
|
|
|
|
|
|
|
|
double px = trackview.editor().duration_to_pixels_unrounded (tx);
|
|
|
|
|
|
|
|
(*i)->move_to (px, ty);
|
|
|
|
|
|
|
|
reset_line_coords (**i);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (line_points.size() > 1) {
|
|
|
|
line->set_steps (line_points, is_stepped());
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
reset ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2008-09-18 20:47:49 -04:00
|
|
|
AutomationLine::reset_callback (const Evoral::ControlList& events)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2012-04-05 12:53:55 -04:00
|
|
|
uint32_t vp = 0;
|
|
|
|
uint32_t pi = 0;
|
|
|
|
uint32_t np;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
if (events.empty()) {
|
2005-09-25 14:42:24 -04:00
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
control_points.clear ();
|
2005-11-12 22:53:51 -05:00
|
|
|
line->hide();
|
2005-09-25 14:42:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
/* hide all existing points, and the line */
|
|
|
|
|
|
|
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
|
|
|
(*i)->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
line->hide ();
|
|
|
|
np = events.size();
|
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
Evoral::ControlList& e (const_cast<Evoral::ControlList&> (events));
|
|
|
|
AutomationList::iterator preceding (e.end());
|
|
|
|
AutomationList::iterator following (e.end());
|
|
|
|
|
|
|
|
std::cerr << "-------- build line from " << e.size() << " points\n";
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
for (AutomationList::iterator ai = e.begin(); ai != e.end(); ++ai, ++pi) {
|
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
/* drop points outside our range */
|
2012-04-05 12:53:55 -04:00
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
if (((*ai)->when < _offset)) {
|
2022-10-26 14:28:36 -04:00
|
|
|
preceding = ai;
|
|
|
|
std::cerr << " skip " << (*ai)->when << " too early for " << _offset << std::endl;
|
2022-10-25 13:10:32 -04:00
|
|
|
continue;
|
|
|
|
}
|
2012-04-05 12:53:55 -04:00
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
if ((*ai)->when >= _offset + _maximum_time) {
|
|
|
|
std::cerr << " break " << (*ai)->when << " too late for " << _offset + _maximum_time << std::endl;
|
|
|
|
following = ai;
|
2022-10-25 13:10:32 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
double ty = model_to_view_coord_y ((*ai)->value);
|
2012-04-05 12:53:55 -04:00
|
|
|
|
2020-10-05 00:52:17 -04:00
|
|
|
if (isnan_local (ty)) {
|
2012-04-05 12:53:55 -04:00
|
|
|
warning << string_compose (_("Ignoring illegal points on AutomationLine \"%1\""),
|
2014-01-06 15:32:37 -05:00
|
|
|
_name) << endmsg;
|
2012-04-05 12:53:55 -04:00
|
|
|
continue;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
ty = _height - (ty * _height);
|
|
|
|
|
|
|
|
/* convert from model coordinates to canonical view coordinates */
|
|
|
|
|
|
|
|
timecnt_t tx = model_to_view_coord_x ((*ai)->when);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
/* convert x-coordinate to a canvas unit coordinate (this takes
|
|
|
|
* zoom and scroll into account).
|
|
|
|
*/
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
double px = trackview.editor().duration_to_pixels_unrounded (tx);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
/* convert from canonical view height (0..1.0) to actual
|
|
|
|
* height coordinates (using X11's top-left rooted system)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
std::cerr << " add " << (*ai)->when << std::endl;
|
2020-10-05 00:52:17 -04:00
|
|
|
add_visible_control_point (vp, pi, px, ty, ai, np);
|
2022-08-11 15:36:46 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
vp++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* discard extra CP's to avoid confusing ourselves */
|
|
|
|
|
|
|
|
while (control_points.size() > vp) {
|
|
|
|
ControlPoint* cp = control_points.back();
|
|
|
|
control_points.pop_back ();
|
|
|
|
delete cp;
|
|
|
|
}
|
|
|
|
|
2022-05-28 22:42:39 -04:00
|
|
|
if (!terminal_points_can_slide && !control_points.empty()) {
|
2012-04-05 12:53:55 -04:00
|
|
|
control_points.back()->set_can_slide(false);
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
if (vp) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
/* reset the line coordinates given to the CanvasLine */
|
2010-12-12 17:25:27 -05:00
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
/* 2 extra in case we need hidden points for line start and end */
|
|
|
|
|
|
|
|
line_points.resize (vp + 2, ArdourCanvas::Duple (0, 0));
|
|
|
|
|
|
|
|
ArdourCanvas::Points::size_type n = 0;
|
|
|
|
|
|
|
|
/* potentially insert front hidden (line) point to make the line draw from
|
|
|
|
* zero to the first actual point
|
|
|
|
*/
|
|
|
|
|
|
|
|
std::cerr << "prec @ end ? " << (preceding == e.end()) << " foll @ end " << (following == e.end()) << std::endl;
|
|
|
|
|
|
|
|
if (control_points[0]->get_x() != 0 && preceding != e.end()) {
|
|
|
|
double ty = model_to_view_coord_y (e.unlocked_eval (_offset));
|
|
|
|
|
|
|
|
if (isnan_local (ty)) {
|
|
|
|
warning << string_compose (_("Ignoring illegal points on AutomationLine \"%1\""), _name) << endmsg;
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
line_points[n].y = _height - (ty * _height);
|
|
|
|
line_points[n].x = 0;
|
|
|
|
std::cerr << "Add initial point" << std::endl;
|
|
|
|
++n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto const & cp : control_points) {
|
|
|
|
line_points[n].x = cp->get_x();
|
|
|
|
line_points[n].y = cp->get_y();
|
|
|
|
++n;
|
2012-04-05 12:53:55 -04:00
|
|
|
}
|
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
/* potentially insert final hidden (line) point to make the line draw
|
|
|
|
* from the last point to the very end
|
|
|
|
*/
|
|
|
|
|
|
|
|
double px = trackview.editor().duration_to_pixels_unrounded (model_to_view_coord_x (_offset + _maximum_time));
|
|
|
|
|
|
|
|
if (control_points[control_points.size() - 1]->get_x() != px && following != e.end()) {
|
|
|
|
double ty = model_to_view_coord_y (e.unlocked_eval (_offset + _maximum_time));
|
|
|
|
|
|
|
|
if (isnan_local (ty)) {
|
|
|
|
warning << string_compose (_("Ignoring illegal points on AutomationLine \"%1\""), _name) << endmsg;
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
line_points[n].y = _height - (ty * _height);
|
|
|
|
line_points[n].x = px;
|
|
|
|
std::cerr << "Add final point for " << _offset + _maximum_time << std::endl;
|
|
|
|
++n;
|
|
|
|
}
|
2012-04-05 12:53:55 -04:00
|
|
|
}
|
|
|
|
|
2022-10-26 14:28:36 -04:00
|
|
|
line_points.resize (n);
|
|
|
|
std::cerr << "total points for line: " << line_points.size() << " total CP's " << control_points.size() << std::endl;
|
|
|
|
|
|
|
|
for (auto const & l : line_points) {
|
|
|
|
std::cerr << l.x << ", " << l.y << std::endl;
|
2012-04-05 12:53:55 -04:00
|
|
|
}
|
|
|
|
|
2014-11-28 19:17:39 -05:00
|
|
|
line->set_steps (line_points, is_stepped());
|
2012-04-05 12:53:55 -04:00
|
|
|
|
2014-03-05 12:11:22 -05:00
|
|
|
update_visibility ();
|
2005-11-13 13:13:50 -05:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-04-05 12:53:55 -04:00
|
|
|
set_selected_points (trackview.editor().get_selection().points);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationLine::reset ()
|
|
|
|
{
|
2012-07-13 17:05:45 -04:00
|
|
|
DEBUG_TRACE (DEBUG::Automation, "\t\tLINE RESET\n");
|
2005-09-25 14:42:24 -04:00
|
|
|
update_pending = false;
|
2022-10-25 13:10:32 -04:00
|
|
|
have_reset_timeout = false;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (no_draw) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
Fix typos in gtk2_ardour/ directory
Found via `codespell -q 3 -S *.po,./share/patchfiles,./libs -L ba,buss,busses,doubleclick,hsi,ontop,ro,seh,siz,sur,te,trough,ue`
2022-01-26 12:35:38 -05:00
|
|
|
/* TODO: abort any drags in progress, e.g. dragging points while writing automation
|
2017-07-23 18:52:38 -04:00
|
|
|
* (the control-point model, used by AutomationLine::drag_motion, will be invalid).
|
|
|
|
*
|
|
|
|
* Note: reset() may also be called from an aborted drag (LineDrag::aborted)
|
|
|
|
* maybe abort in list_changed(), interpolation_changed() and ... ?
|
|
|
|
* XXX
|
|
|
|
*/
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
alist->apply_to_points (*this, &AutomationLine::reset_callback);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2012-07-13 17:05:45 -04:00
|
|
|
void
|
|
|
|
AutomationLine::queue_reset ()
|
|
|
|
{
|
2017-07-23 18:52:38 -04:00
|
|
|
/* this must be called from the GUI thread */
|
2012-07-13 17:05:45 -04:00
|
|
|
|
|
|
|
if (trackview.editor().session()->transport_rolling() && alist->automation_write()) {
|
|
|
|
/* automation write pass ... defer to a timeout */
|
|
|
|
/* redraw in 1/4 second */
|
2022-10-25 13:10:32 -04:00
|
|
|
if (!have_reset_timeout) {
|
2012-07-13 17:05:45 -04:00
|
|
|
DEBUG_TRACE (DEBUG::Automation, "\tqueue timeout\n");
|
|
|
|
Glib::signal_timeout().connect (sigc::bind_return (sigc::mem_fun (*this, &AutomationLine::reset), false), 250);
|
2022-10-25 13:10:32 -04:00
|
|
|
have_reset_timeout = true;
|
2012-07-13 17:05:45 -04:00
|
|
|
} else {
|
|
|
|
DEBUG_TRACE (DEBUG::Automation, "\ttimeout already queued, change ignored\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reset ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
void
|
|
|
|
AutomationLine::queue_redisplay (bool for_height)
|
|
|
|
{
|
|
|
|
/* this must be called from the GUI thread */
|
|
|
|
|
|
|
|
if (trackview.editor().session()->transport_rolling() && alist->automation_write()) {
|
|
|
|
/* automation write pass ... defer to a timeout */
|
|
|
|
/* redraw in 1/4 second */
|
|
|
|
if (!have_redisplay_timeout) {
|
|
|
|
DEBUG_TRACE (DEBUG::Automation, "\tqueue timeout\n");
|
|
|
|
Glib::signal_timeout().connect (sigc::bind_return (sigc::bind (sigc::mem_fun (*this, &AutomationLine::redisplay), true, for_height), true), 250);
|
|
|
|
have_redisplay_timeout = true;
|
|
|
|
} else {
|
|
|
|
DEBUG_TRACE (DEBUG::Automation, "\ttimeout already queued, change ignored\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
redisplay (true, for_height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
|
|
|
AutomationLine::clear ()
|
|
|
|
{
|
2010-07-30 20:44:26 -04:00
|
|
|
/* parent must create and commit command */
|
2010-05-21 11:08:57 -04:00
|
|
|
XMLNode &before = alist->get_state();
|
2007-06-29 00:02:58 -04:00
|
|
|
alist->clear();
|
2010-07-14 08:27:37 -04:00
|
|
|
|
|
|
|
trackview.editor().session()->add_command (
|
2014-01-06 15:32:37 -05:00
|
|
|
new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2008-09-21 12:17:02 -04:00
|
|
|
void
|
2010-07-13 20:58:15 -04:00
|
|
|
AutomationLine::set_list (boost::shared_ptr<ARDOUR::AutomationList> list)
|
2008-09-21 12:17:02 -04:00
|
|
|
{
|
|
|
|
alist = list;
|
2010-07-13 20:58:15 -04:00
|
|
|
queue_reset ();
|
|
|
|
connect_to_list ();
|
2008-09-21 12:17:02 -04:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2012-05-29 14:30:10 -04:00
|
|
|
AutomationLine::add_visibility (VisibleAspects va)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-12-31 13:28:20 -05:00
|
|
|
VisibleAspects old = _visible;
|
|
|
|
|
2012-05-29 14:30:10 -04:00
|
|
|
_visible = VisibleAspects (_visible | va);
|
2013-12-31 13:28:20 -05:00
|
|
|
|
|
|
|
if (old != _visible) {
|
2014-03-05 12:11:22 -05:00
|
|
|
update_visibility ();
|
2013-12-31 13:28:20 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-05-29 14:30:10 -04:00
|
|
|
AutomationLine::set_visibility (VisibleAspects va)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-12-31 13:28:20 -05:00
|
|
|
if (_visible != va) {
|
|
|
|
_visible = va;
|
2014-03-05 12:11:22 -05:00
|
|
|
update_visibility ();
|
2013-12-31 13:28:20 -05:00
|
|
|
}
|
2012-05-29 14:30:10 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-05-29 14:30:10 -04:00
|
|
|
void
|
|
|
|
AutomationLine::remove_visibility (VisibleAspects va)
|
|
|
|
{
|
2013-12-31 13:28:20 -05:00
|
|
|
VisibleAspects old = _visible;
|
|
|
|
|
2012-05-29 14:30:10 -04:00
|
|
|
_visible = VisibleAspects (_visible & ~va);
|
2013-12-31 13:28:20 -05:00
|
|
|
|
|
|
|
if (old != _visible) {
|
2014-03-05 12:11:22 -05:00
|
|
|
update_visibility ();
|
2013-12-31 13:28:20 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
void
|
|
|
|
AutomationLine::track_entered()
|
|
|
|
{
|
2014-11-28 19:17:39 -05:00
|
|
|
add_visibility (ControlPoints);
|
2007-07-06 23:19:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationLine::track_exited()
|
|
|
|
{
|
2014-11-28 19:17:39 -05:00
|
|
|
remove_visibility (ControlPoints);
|
2007-07-06 23:19:04 -04:00
|
|
|
}
|
2006-08-03 17:54:14 -04:00
|
|
|
|
2006-10-30 21:40:08 -05:00
|
|
|
XMLNode &
|
2022-04-06 23:56:45 -04:00
|
|
|
AutomationLine::get_state () const
|
2006-08-03 17:54:14 -04:00
|
|
|
{
|
2006-10-30 21:40:08 -05:00
|
|
|
/* function as a proxy for the model */
|
2007-06-29 00:02:58 -04:00
|
|
|
return alist->get_state();
|
2006-08-03 17:54:14 -04:00
|
|
|
}
|
|
|
|
|
2009-10-23 01:17:14 -04:00
|
|
|
int
|
2009-10-14 20:57:55 -04:00
|
|
|
AutomationLine::set_state (const XMLNode &node, int version)
|
2006-08-03 17:54:14 -04:00
|
|
|
{
|
2006-10-30 21:40:08 -05:00
|
|
|
/* function as a proxy for the model */
|
2009-10-15 14:56:11 -04:00
|
|
|
return alist->set_state (node, version);
|
2006-08-03 17:54:14 -04:00
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
|
2010-07-20 12:53:30 -04:00
|
|
|
void
|
|
|
|
AutomationLine::view_to_model_coord_y (double& y) const
|
2007-06-30 14:41:50 -04:00
|
|
|
{
|
2017-06-19 10:51:17 -04:00
|
|
|
if (alist->default_interpolation () != alist->interpolation()) {
|
2017-06-21 07:03:00 -04:00
|
|
|
switch (alist->interpolation()) {
|
2017-10-02 13:43:55 -04:00
|
|
|
case AutomationList::Discrete:
|
|
|
|
/* toggles and MIDI only -- see is_stepped() */
|
|
|
|
assert (alist->default_interpolation () == AutomationList::Linear);
|
|
|
|
break;
|
2017-06-21 07:03:00 -04:00
|
|
|
case AutomationList::Linear:
|
|
|
|
y = y * (_desc.upper - _desc.lower) + _desc.lower;
|
|
|
|
return;
|
|
|
|
default:
|
2017-10-02 13:43:55 -04:00
|
|
|
/* types that default to linear, can't be use
|
|
|
|
* Logarithmic or Exponential interpolation.
|
|
|
|
* "Curved" is invalid for automation (only x-fads)
|
|
|
|
*/
|
2017-06-21 07:03:00 -04:00
|
|
|
assert (0);
|
|
|
|
break;
|
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
}
|
2017-06-19 10:51:17 -04:00
|
|
|
y = _desc.from_interface (y);
|
2007-06-30 14:41:50 -04:00
|
|
|
}
|
|
|
|
|
2017-06-21 07:03:00 -04:00
|
|
|
double
|
|
|
|
AutomationLine::compute_delta (double from, double to) const
|
|
|
|
{
|
|
|
|
return _desc.compute_delta (from, to);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationLine::apply_delta (double& val, double delta) const
|
|
|
|
{
|
|
|
|
if (val == 0 && !_desc.is_linear () && delta >= 1.0) {
|
|
|
|
/* recover from -inf */
|
|
|
|
val = 1.0 / _height;
|
|
|
|
view_to_model_coord_y (val);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
val = _desc.apply_delta (val, delta);
|
|
|
|
}
|
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
double
|
|
|
|
AutomationLine::model_to_view_coord_y (double y) const
|
2007-06-30 14:41:50 -04:00
|
|
|
{
|
2017-06-19 10:51:17 -04:00
|
|
|
if (alist->default_interpolation () != alist->interpolation()) {
|
2017-06-21 07:03:00 -04:00
|
|
|
switch (alist->interpolation()) {
|
2017-10-02 13:43:55 -04:00
|
|
|
case AutomationList::Discrete:
|
|
|
|
/* toggles and MIDI only -- see is_stepped */
|
|
|
|
assert (alist->default_interpolation () == AutomationList::Linear);
|
|
|
|
break;
|
2017-06-21 07:03:00 -04:00
|
|
|
case AutomationList::Linear:
|
2022-10-25 13:10:32 -04:00
|
|
|
return (y - _desc.lower) / (_desc.upper - _desc.lower);
|
2017-06-21 07:03:00 -04:00
|
|
|
default:
|
2017-10-02 13:43:55 -04:00
|
|
|
/* types that default to linear, can't be use
|
|
|
|
* Logarithmic or Exponential interpolation.
|
|
|
|
* "Curved" is invalid for automation (only x-fads)
|
|
|
|
*/
|
2017-06-21 07:03:00 -04:00
|
|
|
assert (0);
|
|
|
|
break;
|
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
}
|
2022-10-25 13:10:32 -04:00
|
|
|
return _desc.to_interface (y);
|
2014-11-29 01:25:27 -05:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-10-25 13:10:32 -04:00
|
|
|
timecnt_t
|
|
|
|
AutomationLine::model_to_view_coord_x (timepos_t const & when) const
|
2014-11-29 01:25:27 -05:00
|
|
|
{
|
2022-10-25 13:10:32 -04:00
|
|
|
/* @param when is a distance (with implicit origin) from the start of the
|
|
|
|
* source. So we subtract the offset (from the region if this is
|
|
|
|
* related to a region; zero otherwise) to get the distance (again,
|
|
|
|
* implicit origin) from the start of the line.
|
|
|
|
*
|
|
|
|
* Then we construct a timecnt_t from this duration, and the origin of
|
|
|
|
* the line on the timeline.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return timecnt_t (when.earlier (_offset), get_origin());
|
2007-06-30 14:41:50 -04:00
|
|
|
}
|
|
|
|
|
2010-07-13 20:58:15 -04:00
|
|
|
/** Called when our list has announced that its interpolation style has changed */
|
2007-07-06 23:19:04 -04:00
|
|
|
void
|
2010-07-13 20:58:15 -04:00
|
|
|
AutomationLine::interpolation_changed (AutomationList::InterpolationStyle style)
|
2007-07-06 23:19:04 -04:00
|
|
|
{
|
2014-11-28 19:17:39 -05:00
|
|
|
if (line_points.size() > 1) {
|
2017-06-21 07:03:00 -04:00
|
|
|
reset ();
|
2014-11-28 19:17:39 -05:00
|
|
|
line->set_steps(line_points, is_stepped());
|
2007-07-06 23:19:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-21 20:11:06 -05:00
|
|
|
void
|
2015-10-04 14:51:05 -04:00
|
|
|
AutomationLine::add_visible_control_point (uint32_t view_index, uint32_t pi, double tx, double ty,
|
2014-01-06 15:32:37 -05:00
|
|
|
AutomationList::iterator model, uint32_t npoints)
|
2009-12-21 20:11:06 -05:00
|
|
|
{
|
2012-04-05 12:53:55 -04:00
|
|
|
ControlPoint::ShapeType shape;
|
|
|
|
|
2009-12-21 20:11:06 -05:00
|
|
|
if (view_index >= control_points.size()) {
|
|
|
|
|
|
|
|
/* make sure we have enough control points */
|
|
|
|
|
|
|
|
ControlPoint* ncp = new ControlPoint (*this);
|
|
|
|
ncp->set_size (control_point_box_size ());
|
|
|
|
|
|
|
|
control_points.push_back (ncp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!terminal_points_can_slide) {
|
|
|
|
if (pi == 0) {
|
2012-04-05 12:53:55 -04:00
|
|
|
control_points[view_index]->set_can_slide (false);
|
2009-12-21 20:11:06 -05:00
|
|
|
if (tx == 0) {
|
|
|
|
shape = ControlPoint::Start;
|
|
|
|
} else {
|
|
|
|
shape = ControlPoint::Full;
|
|
|
|
}
|
|
|
|
} else if (pi == npoints - 1) {
|
2012-04-05 12:53:55 -04:00
|
|
|
control_points[view_index]->set_can_slide (false);
|
2009-12-21 20:11:06 -05:00
|
|
|
shape = ControlPoint::End;
|
|
|
|
} else {
|
2012-04-05 12:53:55 -04:00
|
|
|
control_points[view_index]->set_can_slide (true);
|
2009-12-21 20:11:06 -05:00
|
|
|
shape = ControlPoint::Full;
|
|
|
|
}
|
|
|
|
} else {
|
2012-04-05 12:53:55 -04:00
|
|
|
control_points[view_index]->set_can_slide (true);
|
2009-12-21 20:11:06 -05:00
|
|
|
shape = ControlPoint::Full;
|
|
|
|
}
|
2010-01-01 17:11:15 -05:00
|
|
|
|
2009-12-21 20:11:06 -05:00
|
|
|
control_points[view_index]->reset (tx, ty, model, view_index, shape);
|
|
|
|
|
|
|
|
/* finally, control visibility */
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2012-05-29 14:30:10 -04:00
|
|
|
if (_visible & ControlPoints) {
|
2009-12-21 20:11:06 -05:00
|
|
|
control_points[view_index]->show ();
|
|
|
|
} else {
|
2013-12-31 11:55:30 -05:00
|
|
|
control_points[view_index]->hide ();
|
2009-12-21 20:11:06 -05:00
|
|
|
}
|
|
|
|
}
|
2010-01-01 17:11:15 -05:00
|
|
|
|
2010-07-13 20:58:15 -04:00
|
|
|
void
|
|
|
|
AutomationLine::connect_to_list ()
|
|
|
|
{
|
|
|
|
_list_connections.drop_connections ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-07-13 20:58:15 -04:00
|
|
|
alist->StateChanged.connect (_list_connections, invalidator (*this), boost::bind (&AutomationLine::list_changed, this), gui_context());
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-07-13 20:58:15 -04:00
|
|
|
alist->InterpolationChanged.connect (
|
2014-01-06 15:32:37 -05:00
|
|
|
_list_connections, invalidator (*this), boost::bind (&AutomationLine::interpolation_changed, this, _1), gui_context());
|
2010-07-13 20:58:15 -04:00
|
|
|
}
|
2010-07-14 08:27:37 -04:00
|
|
|
|
|
|
|
MementoCommandBinder<AutomationList>*
|
|
|
|
AutomationLine::memento_command_binder ()
|
|
|
|
{
|
|
|
|
return new SimpleMementoCommandBinder<AutomationList> (*alist.get());
|
|
|
|
}
|
2010-08-20 18:43:10 -04:00
|
|
|
|
|
|
|
/** Set the maximum time that points on this line can be at, relative
|
|
|
|
* to the start of the track or region that it is on.
|
|
|
|
*/
|
|
|
|
void
|
2020-09-26 11:14:59 -04:00
|
|
|
AutomationLine::set_maximum_time (Temporal::timepos_t const & t)
|
2010-08-20 18:43:10 -04:00
|
|
|
{
|
2010-12-12 17:25:27 -05:00
|
|
|
if (_maximum_time == t) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-20 18:43:10 -04:00
|
|
|
_maximum_time = t;
|
2010-12-12 17:25:27 -05:00
|
|
|
reset ();
|
2010-08-20 18:43:10 -04:00
|
|
|
}
|
2010-09-09 17:35:28 -04:00
|
|
|
|
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
/** @return min and max x positions of points that are in the list, in session samples */
|
2020-10-05 00:52:17 -04:00
|
|
|
pair<timepos_t, timepos_t>
|
2010-09-09 17:35:28 -04:00
|
|
|
AutomationLine::get_point_x_range () const
|
|
|
|
{
|
2020-10-05 00:52:17 -04:00
|
|
|
pair<timepos_t, timepos_t> r (timepos_t::max (the_list()->time_domain()), timepos_t::zero (the_list()->time_domain()));
|
2010-09-09 17:35:28 -04:00
|
|
|
|
2022-08-11 15:36:46 -04:00
|
|
|
for (auto const & cp : *the_list()) {
|
|
|
|
const timepos_t w (session_position (cp->when));
|
|
|
|
r.first = min (r.first, w);
|
|
|
|
r.second = max (r.second, w);
|
2010-09-09 17:35:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2010-12-12 17:25:27 -05:00
|
|
|
|
2020-10-02 23:26:17 -04:00
|
|
|
timepos_t
|
2022-08-11 15:36:46 -04:00
|
|
|
AutomationLine::session_position (timepos_t const & when) const
|
2012-04-22 10:03:07 -04:00
|
|
|
{
|
2022-08-11 15:36:46 -04:00
|
|
|
return when + get_origin();
|
2012-04-22 10:03:07 -04:00
|
|
|
}
|
|
|
|
|
2010-12-12 17:25:27 -05:00
|
|
|
void
|
2021-03-03 12:04:33 -05:00
|
|
|
AutomationLine::set_offset (timepos_t const & off)
|
2010-12-12 17:25:27 -05:00
|
|
|
{
|
|
|
|
_offset = off;
|
|
|
|
reset ();
|
|
|
|
}
|