2007-08-17 13:25:20 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2007 Paul Davis
|
2011-04-06 11:00:16 -04:00
|
|
|
Author: David Robillard
|
2007-08-17 13:25:20 -04:00
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2011-10-19 17:53:09 -04:00
|
|
|
#include <utility>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/memento_command.h"
|
2011-10-19 17:53:09 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/automation_control.h"
|
|
|
|
#include "ardour/event_type_map.h"
|
2010-07-14 08:27:37 -04:00
|
|
|
#include "ardour/midi_automation_list_binder.h"
|
|
|
|
#include "ardour/midi_region.h"
|
2011-10-19 17:53:09 -04:00
|
|
|
#include "ardour/session.h"
|
2009-12-21 13:23:07 -05:00
|
|
|
|
2014-02-19 23:37:46 -05:00
|
|
|
#include "gtkmm2ext/keyboard.h"
|
|
|
|
|
2007-08-17 13:25:20 -04:00
|
|
|
#include "automation_region_view.h"
|
2011-10-19 17:53:09 -04:00
|
|
|
#include "editing.h"
|
|
|
|
#include "editor.h"
|
|
|
|
#include "editor_drag.h"
|
2009-12-21 13:23:07 -05:00
|
|
|
#include "gui_thread.h"
|
2010-07-14 08:27:37 -04:00
|
|
|
#include "midi_automation_line.h"
|
2011-10-19 17:53:09 -04:00
|
|
|
#include "public_editor.h"
|
2015-01-02 09:44:54 -05:00
|
|
|
#include "ui_config.h"
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2007-08-17 13:25:20 -04:00
|
|
|
|
2014-11-20 17:36:09 -05:00
|
|
|
AutomationRegionView::AutomationRegionView (ArdourCanvas::Container* parent,
|
|
|
|
AutomationTimeAxisView& time_axis,
|
|
|
|
boost::shared_ptr<ARDOUR::Region> region,
|
|
|
|
const Evoral::Parameter& param,
|
|
|
|
boost::shared_ptr<ARDOUR::AutomationList> list,
|
|
|
|
double spu,
|
|
|
|
uint32_t basic_color)
|
2010-09-01 18:35:46 -04:00
|
|
|
: RegionView(parent, time_axis, region, spu, basic_color, true)
|
2014-11-20 17:36:09 -05:00
|
|
|
, _region_relative_time_converter(region->session().tempo_map(), region->position())
|
|
|
|
, _source_relative_time_converter(region->session().tempo_map(), region->position() - region->start())
|
2008-09-19 02:30:49 -04:00
|
|
|
, _parameter(param)
|
2009-10-14 12:10:01 -04:00
|
|
|
{
|
2016-10-15 08:17:19 -04:00
|
|
|
TimeAxisViewItem::set_position (_region->position(), this);
|
|
|
|
|
2007-09-10 23:14:32 -04:00
|
|
|
if (list) {
|
2008-09-19 02:30:49 -04:00
|
|
|
assert(list->parameter() == param);
|
|
|
|
create_line(list);
|
2007-09-10 23:14:32 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-10-23 16:17:41 -04:00
|
|
|
group->raise_to_top();
|
2014-12-16 20:37:16 -05:00
|
|
|
|
|
|
|
trackview.editor().MouseModeChanged.connect(_mouse_mode_connection, invalidator (*this),
|
|
|
|
boost::bind (&AutomationRegionView::mouse_mode_changed, this),
|
|
|
|
gui_context ());
|
2007-09-03 12:12:07 -04:00
|
|
|
}
|
|
|
|
|
2011-07-10 11:28:36 -04:00
|
|
|
AutomationRegionView::~AutomationRegionView ()
|
|
|
|
{
|
2016-11-22 23:29:57 -05:00
|
|
|
in_destructor = true;
|
2014-11-13 22:18:15 -05:00
|
|
|
RegionViewGoingAway (this); /* EMIT_SIGNAL */
|
2011-07-10 11:28:36 -04:00
|
|
|
}
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
void
|
2014-06-09 23:28:32 -04:00
|
|
|
AutomationRegionView::init (bool /*wfd*/)
|
2007-09-05 22:30:39 -04:00
|
|
|
{
|
|
|
|
_enable_display = false;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2014-06-09 23:28:32 -04:00
|
|
|
RegionView::init (false);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2013-04-12 11:31:50 -04:00
|
|
|
reset_width_dependent_items ((double) _region->length() / samples_per_pixel);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
set_height (trackview.current_height());
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2017-09-19 10:03:40 -04:00
|
|
|
fill_color_name = "midi frame base";
|
2007-09-05 22:30:39 -04:00
|
|
|
set_colors ();
|
|
|
|
|
|
|
|
_enable_display = true;
|
|
|
|
}
|
2007-09-03 12:12:07 -04:00
|
|
|
|
2008-09-19 02:30:49 -04:00
|
|
|
void
|
|
|
|
AutomationRegionView::create_line (boost::shared_ptr<ARDOUR::AutomationList> list)
|
|
|
|
{
|
2010-07-14 08:27:37 -04:00
|
|
|
_line = boost::shared_ptr<AutomationLine> (new MidiAutomationLine(
|
2008-09-29 18:47:40 -04:00
|
|
|
ARDOUR::EventTypeMap::instance().to_symbol(list->parameter()),
|
2010-07-14 08:27:37 -04:00
|
|
|
trackview, *get_canvas_group(), list,
|
|
|
|
boost::dynamic_pointer_cast<ARDOUR::MidiRegion> (_region),
|
|
|
|
_parameter,
|
2011-08-16 10:24:41 -04:00
|
|
|
&_source_relative_time_converter));
|
2008-09-19 02:30:49 -04:00
|
|
|
_line->set_colors();
|
2015-03-26 11:48:13 -04:00
|
|
|
_line->set_height ((uint32_t)rint(trackview.current_height() - 2.5 - NAME_HIGHLIGHT_SIZE));
|
2012-05-29 14:30:10 -04:00
|
|
|
_line->set_visibility (AutomationLine::VisibleAspects (AutomationLine::Line|AutomationLine::ControlPoints));
|
2010-08-20 18:43:10 -04:00
|
|
|
_line->set_maximum_time (_region->length());
|
2010-12-12 17:25:27 -05:00
|
|
|
_line->set_offset (_region->start ());
|
2008-09-19 02:30:49 -04:00
|
|
|
}
|
|
|
|
|
2014-12-16 20:37:16 -05:00
|
|
|
uint32_t
|
|
|
|
AutomationRegionView::get_fill_color() const
|
|
|
|
{
|
|
|
|
const std::string mod_name = (_dragging ? "dragging region" :
|
|
|
|
trackview.editor().internal_editing() ? "editable region" :
|
2017-09-19 10:03:40 -04:00
|
|
|
"midi frame base");
|
2014-12-16 20:37:16 -05:00
|
|
|
if (_selected) {
|
2015-01-02 09:44:54 -05:00
|
|
|
return UIConfiguration::instance().color_mod ("selected region base", mod_name);
|
|
|
|
} else if (high_enough_for_name || !UIConfiguration::instance().get_color_regions_using_track_color()) {
|
2017-09-19 10:03:40 -04:00
|
|
|
return UIConfiguration::instance().color_mod ("midi frame base", mod_name);
|
2014-12-16 20:37:16 -05:00
|
|
|
}
|
2015-01-02 09:44:54 -05:00
|
|
|
return UIConfiguration::instance().color_mod (fill_color, mod_name);
|
2014-12-16 20:37:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationRegionView::mouse_mode_changed ()
|
|
|
|
{
|
2019-04-08 18:27:05 -04:00
|
|
|
/* Adjust frame colour (become more transparent for internal tools) */
|
2019-04-08 14:00:02 -04:00
|
|
|
set_frame_color();
|
2014-12-16 20:37:16 -05:00
|
|
|
}
|
|
|
|
|
2007-09-03 12:12:07 -04:00
|
|
|
bool
|
2014-11-15 02:58:39 -05:00
|
|
|
AutomationRegionView::canvas_group_event (GdkEvent* ev)
|
2007-09-03 12:12:07 -04:00
|
|
|
{
|
2014-11-15 15:56:56 -05:00
|
|
|
if (in_destructor) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-07 19:54:47 -05:00
|
|
|
PublicEditor& e = trackview.editor ();
|
|
|
|
|
2015-01-13 23:53:28 -05:00
|
|
|
if (trackview.editor().internal_editing() &&
|
|
|
|
ev->type == GDK_BUTTON_RELEASE &&
|
2017-08-15 17:36:50 -04:00
|
|
|
ev->button.button == 1 &&
|
2015-01-13 23:53:28 -05:00
|
|
|
e.current_mouse_mode() == Editing::MouseDraw &&
|
|
|
|
!e.drags()->active()) {
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-05-21 20:56:39 -04:00
|
|
|
double x = ev->button.x;
|
|
|
|
double y = ev->button.y;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-05-21 20:56:39 -04:00
|
|
|
/* convert to item coordinates in the time axis view */
|
2013-04-04 00:32:52 -04:00
|
|
|
automation_view()->canvas_display()->canvas_to_item (x, y);
|
2010-05-21 20:56:39 -04:00
|
|
|
|
2010-07-20 20:15:43 -04:00
|
|
|
/* clamp y */
|
2011-10-19 17:53:09 -04:00
|
|
|
y = std::max (y, 0.0);
|
|
|
|
y = std::min (y, _height - NAME_HIGHLIGHT_SIZE);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2014-02-21 15:30:33 -05:00
|
|
|
/* guard points only if primary modifier is used */
|
2014-02-19 12:54:00 -05:00
|
|
|
bool with_guard_points = Gtkmm2ext::Keyboard::modifier_state_equals (ev->button.state, Gtkmm2ext::Keyboard::PrimaryModifier);
|
2014-11-15 03:48:40 -05:00
|
|
|
add_automation_event (ev, e.pixel_to_sample (x) - _region->position() + _region->start(), y, with_guard_points);
|
|
|
|
return true;
|
2007-09-05 22:30:39 -04:00
|
|
|
}
|
2007-09-03 12:12:07 -04:00
|
|
|
|
2014-12-05 16:54:29 -05:00
|
|
|
return RegionView::canvas_group_event (ev);
|
2007-08-17 13:25:20 -04:00
|
|
|
}
|
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
/** @param when Position in samples, where 0 is the start of the region.
|
2010-05-21 20:56:39 -04:00
|
|
|
* @param y y position, relative to our TimeAxisView.
|
|
|
|
*/
|
2007-09-05 22:30:39 -04:00
|
|
|
void
|
2017-09-18 12:39:17 -04:00
|
|
|
AutomationRegionView::add_automation_event (GdkEvent *, samplepos_t when, double y, bool with_guard_points)
|
2007-09-05 22:30:39 -04:00
|
|
|
{
|
2007-09-10 23:14:32 -04:00
|
|
|
if (!_line) {
|
2008-09-19 02:30:49 -04:00
|
|
|
boost::shared_ptr<Evoral::Control> c = _region->control(_parameter, true);
|
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> ac
|
|
|
|
= boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(c);
|
|
|
|
assert(ac);
|
|
|
|
create_line(ac->alist());
|
2007-09-10 23:14:32 -04:00
|
|
|
}
|
2008-09-19 02:30:49 -04:00
|
|
|
assert(_line);
|
2007-09-10 23:14:32 -04:00
|
|
|
|
2010-05-21 20:56:39 -04:00
|
|
|
AutomationTimeAxisView* const view = automation_view ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
/* compute vertical fractional position */
|
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
const double h = trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 2;
|
2008-09-10 11:03:30 -04:00
|
|
|
y = 1.0 - (y / h);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
/* snap sample */
|
2011-09-06 19:28:55 -04:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
when = snap_sample_to_sample (when - _region->start ()).sample + _region->start ();
|
2011-09-06 19:28:55 -04:00
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
/* map using line */
|
|
|
|
|
2010-05-21 20:56:39 -04:00
|
|
|
double when_d = when;
|
|
|
|
_line->view_to_model_coord (when_d, y);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2007-09-10 23:14:32 -04:00
|
|
|
XMLNode& before = _line->the_list()->get_state();
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2015-09-13 15:24:28 -04:00
|
|
|
if (_line->the_list()->editor_add (when_d, y, with_guard_points)) {
|
|
|
|
view->editor().begin_reversible_command (_("add automation event"));
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2015-09-13 15:24:28 -04:00
|
|
|
XMLNode& after = _line->the_list()->get_state();
|
2010-07-14 08:27:37 -04:00
|
|
|
|
2015-09-13 15:24:28 -04:00
|
|
|
view->session()->add_command (new MementoCommand<ARDOUR::AutomationList> (_line->memento_command_binder(), &before, &after));
|
|
|
|
view->editor().commit_reversible_command ();
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2015-09-13 15:24:28 -04:00
|
|
|
view->session()->set_dirty ();
|
|
|
|
}
|
2007-09-05 22:30:39 -04:00
|
|
|
}
|
|
|
|
|
2014-11-16 17:04:27 -05:00
|
|
|
bool
|
2019-04-08 18:27:05 -04:00
|
|
|
AutomationRegionView::paste (samplepos_t pos,
|
2014-11-16 17:04:27 -05:00
|
|
|
unsigned paste_count,
|
|
|
|
float times,
|
|
|
|
boost::shared_ptr<const ARDOUR::AutomationList> slist)
|
|
|
|
{
|
2017-04-26 10:21:39 -04:00
|
|
|
using namespace ARDOUR;
|
|
|
|
|
2014-11-16 17:04:27 -05:00
|
|
|
AutomationTimeAxisView* const view = automation_view();
|
|
|
|
boost::shared_ptr<ARDOUR::AutomationList> my_list = _line->the_list();
|
|
|
|
|
|
|
|
if (view->session()->transport_rolling() && my_list->automation_write()) {
|
|
|
|
/* do not paste if this control is in write mode and we're rolling */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-26 10:21:39 -04:00
|
|
|
AutomationType src_type = (AutomationType)slist->parameter().type ();
|
|
|
|
double len = slist->length();
|
|
|
|
|
2014-11-16 17:04:27 -05:00
|
|
|
/* add multi-paste offset if applicable */
|
2017-04-26 10:21:39 -04:00
|
|
|
if (parameter_is_midi (src_type)) {
|
|
|
|
// convert length to samples (incl tempo-ramps)
|
2017-09-18 12:39:17 -04:00
|
|
|
len = DoubleBeatsSamplesConverter (view->session()->tempo_map(), pos).to (len * paste_count);
|
2017-04-26 10:21:39 -04:00
|
|
|
pos += view->editor ().get_paste_offset (pos, paste_count > 0 ? 1 : 0, len);
|
|
|
|
} else {
|
|
|
|
pos += view->editor ().get_paste_offset (pos, paste_count, len);
|
|
|
|
}
|
2014-11-16 17:04:27 -05:00
|
|
|
|
2017-04-26 10:21:39 -04:00
|
|
|
/* convert sample-position to model's unit and position */
|
|
|
|
const double model_pos = _source_relative_time_converter.from (
|
2014-12-06 10:27:18 -05:00
|
|
|
pos - _source_relative_time_converter.origin_b());
|
2014-11-16 17:04:27 -05:00
|
|
|
|
|
|
|
XMLNode& before = my_list->get_state();
|
2017-09-18 12:39:17 -04:00
|
|
|
my_list->paste(*slist, model_pos, DoubleBeatsSamplesConverter (view->session()->tempo_map(), pos));
|
2014-11-16 17:04:27 -05:00
|
|
|
view->session()->add_command(
|
2014-11-20 12:01:39 -05:00
|
|
|
new MementoCommand<ARDOUR::AutomationList>(_line->memento_command_binder(), &before, &my_list->get_state()));
|
2014-11-16 17:04:27 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-09-19 02:30:49 -04:00
|
|
|
void
|
|
|
|
AutomationRegionView::set_height (double h)
|
|
|
|
{
|
|
|
|
RegionView::set_height(h);
|
2008-09-19 15:32:10 -04:00
|
|
|
|
2010-07-20 20:15:43 -04:00
|
|
|
if (_line) {
|
2015-03-26 11:48:13 -04:00
|
|
|
_line->set_height ((uint32_t)rint(h - 2.5 - NAME_HIGHLIGHT_SIZE));
|
2010-07-20 20:15:43 -04:00
|
|
|
}
|
2007-08-17 13:25:20 -04:00
|
|
|
}
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
bool
|
2017-09-18 12:39:17 -04:00
|
|
|
AutomationRegionView::set_position (samplepos_t pos, void* src, double* ignored)
|
2007-09-05 22:30:39 -04:00
|
|
|
{
|
2010-08-20 18:43:10 -04:00
|
|
|
if (_line) {
|
|
|
|
_line->set_maximum_time (_region->length ());
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2009-02-16 02:04:27 -05:00
|
|
|
return RegionView::set_position(pos, src, ignored);
|
2007-09-05 22:30:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationRegionView::reset_width_dependent_items (double pixel_width)
|
|
|
|
{
|
|
|
|
RegionView::reset_width_dependent_items(pixel_width);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-08-20 18:43:10 -04:00
|
|
|
if (_line) {
|
2007-09-10 23:14:32 -04:00
|
|
|
_line->reset();
|
2010-08-20 18:43:10 -04:00
|
|
|
}
|
2007-09-05 22:30:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-03 12:12:07 -04:00
|
|
|
void
|
2010-02-19 13:09:08 -05:00
|
|
|
AutomationRegionView::region_resized (const PBD::PropertyChange& what_changed)
|
2007-09-03 12:12:07 -04:00
|
|
|
{
|
2010-12-12 17:25:27 -05:00
|
|
|
RegionView::region_resized (what_changed);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2014-11-20 17:36:09 -05:00
|
|
|
if (what_changed.contains (ARDOUR::Properties::position)) {
|
|
|
|
_region_relative_time_converter.set_origin_b(_region->position());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (what_changed.contains (ARDOUR::Properties::start) ||
|
|
|
|
what_changed.contains (ARDOUR::Properties::position)) {
|
|
|
|
_source_relative_time_converter.set_origin_b (_region->position() - _region->start());
|
|
|
|
}
|
|
|
|
|
2010-12-12 17:25:27 -05:00
|
|
|
if (!_line) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (what_changed.contains (ARDOUR::Properties::start)) {
|
|
|
|
_line->set_offset (_region->start ());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (what_changed.contains (ARDOUR::Properties::length)) {
|
2010-08-20 18:43:10 -04:00
|
|
|
_line->set_maximum_time (_region->length());
|
|
|
|
}
|
2007-09-03 12:12:07 -04:00
|
|
|
}
|
|
|
|
|
2007-08-17 13:25:20 -04:00
|
|
|
|
|
|
|
void
|
2014-12-08 23:00:00 -05:00
|
|
|
AutomationRegionView::entered ()
|
2007-08-17 13:25:20 -04:00
|
|
|
{
|
2011-02-17 11:18:36 -05:00
|
|
|
if (_line) {
|
2007-09-10 23:14:32 -04:00
|
|
|
_line->track_entered();
|
2011-02-17 11:18:36 -05:00
|
|
|
}
|
2007-08-17 13:25:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2011-02-17 11:18:36 -05:00
|
|
|
AutomationRegionView::exited ()
|
2007-08-17 13:25:20 -04:00
|
|
|
{
|
2011-02-17 11:18:36 -05:00
|
|
|
if (_line) {
|
2007-09-10 23:14:32 -04:00
|
|
|
_line->track_exited();
|
2011-02-17 11:18:36 -05:00
|
|
|
}
|
2007-08-17 13:25:20 -04:00
|
|
|
}
|