beat slicing patch #1 from lincoln spiteri
[ardour2.git] / gtk2_ardour / audio_region_view.cc
blob06621a20e2caae0e097890fa0ac01d459893e69f
1 /*
2 Copyright (C) 2001-2006 Paul Davis
4 This program is free software; you can r>edistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 #include <cmath>
20 #include <cassert>
21 #include <algorithm>
23 #include <gtkmm.h>
25 #include <gtkmm2ext/gtk_ui.h>
27 #include "ardour/playlist.h"
28 #include "ardour/audioregion.h"
29 #include "ardour/audiosource.h"
30 #include "ardour/profile.h"
31 #include "ardour/session.h"
33 #include "pbd/memento_command.h"
34 #include "pbd/stacktrace.h"
36 #include "evoral/Curve.hpp"
38 #include "streamview.h"
39 #include "audio_region_view.h"
40 #include "audio_time_axis.h"
41 #include "simplerect.h"
42 #include "simpleline.h"
43 #include "waveview.h"
44 #include "public_editor.h"
45 #include "audio_region_editor.h"
46 #include "region_gain_line.h"
47 #include "control_point.h"
48 #include "ghostregion.h"
49 #include "audio_time_axis.h"
50 #include "utils.h"
51 #include "rgb_macros.h"
52 #include "gui_thread.h"
53 #include "ardour_ui.h"
55 #include "i18n.h"
57 #define MUTED_ALPHA 10
59 using namespace std;
60 using namespace ARDOUR;
61 using namespace PBD;
62 using namespace Editing;
63 using namespace ArdourCanvas;
65 static const int32_t sync_mark_width = 9;
67 AudioRegionView::AudioRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<AudioRegion> r, double spu,
68 Gdk::Color const & basic_color)
69 : RegionView (parent, tv, r, spu, basic_color)
70 , sync_mark(0)
71 , zero_line(0)
72 , fade_in_shape(0)
73 , fade_out_shape(0)
74 , fade_in_handle(0)
75 , fade_out_handle(0)
76 , gain_line(0)
77 , _amplitude_above_axis(1.0)
78 , _flags(0)
79 , fade_color(0)
84 AudioRegionView::AudioRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<AudioRegion> r, double spu,
85 Gdk::Color const & basic_color, bool recording, TimeAxisViewItem::Visibility visibility)
86 : RegionView (parent, tv, r, spu, basic_color, recording, visibility)
87 , sync_mark(0)
88 , zero_line(0)
89 , fade_in_shape(0)
90 , fade_out_shape(0)
91 , fade_in_handle(0)
92 , fade_out_handle(0)
93 , gain_line(0)
94 , _amplitude_above_axis(1.0)
95 , _flags(0)
96 , fade_color(0)
101 AudioRegionView::AudioRegionView (const AudioRegionView& other)
102 : sigc::trackable(other)
103 , RegionView (other)
104 , zero_line(0)
105 , fade_in_shape(0)
106 , fade_out_shape(0)
107 , fade_in_handle(0)
108 , fade_out_handle(0)
109 , gain_line(0)
110 , _amplitude_above_axis(1.0)
111 , _flags(0)
112 , fade_color(0)
114 Gdk::Color c;
115 int r,g,b,a;
117 UINT_TO_RGBA (other.fill_color, &r, &g, &b, &a);
118 c.set_rgb_p (r/255.0, g/255.0, b/255.0);
120 init (c, false);
123 AudioRegionView::AudioRegionView (const AudioRegionView& other, boost::shared_ptr<AudioRegion> other_region)
124 : RegionView (other, boost::shared_ptr<Region> (other_region))
125 , zero_line(0)
126 , fade_in_shape(0)
127 , fade_out_shape(0)
128 , fade_in_handle(0)
129 , fade_out_handle(0)
130 , gain_line(0)
131 , _amplitude_above_axis(1.0)
132 , _flags(0)
133 , fade_color(0)
135 Gdk::Color c;
136 int r,g,b,a;
138 UINT_TO_RGBA (other.fill_color, &r, &g, &b, &a);
139 c.set_rgb_p (r/255.0, g/255.0, b/255.0);
141 init (c, true);
144 void
145 AudioRegionView::init (Gdk::Color const & basic_color, bool wfd)
147 // FIXME: Some redundancy here with RegionView::init. Need to figure out
148 // where order is important and where it isn't...
150 RegionView::init (basic_color, wfd);
152 XMLNode *node;
154 _amplitude_above_axis = 1.0;
155 zero_line = 0;
156 _flags = 0;
158 if ((node = _region->extra_xml ("GUI")) != 0) {
159 set_flags (node);
160 } else {
161 _flags = WaveformVisible;
162 store_flags ();
165 /* make envelope visible if it has anything interesting in it */
166 if (audio_region()->envelope()->size() > 2) {
167 _flags |= EnvelopeVisible;
170 compute_colors (basic_color);
172 create_waves ();
174 fade_in_shape = new ArdourCanvas::Polygon (*group);
175 fade_in_shape->property_fill_color_rgba() = fade_color;
176 fade_in_shape->set_data ("regionview", this);
178 fade_out_shape = new ArdourCanvas::Polygon (*group);
179 fade_out_shape->property_fill_color_rgba() = fade_color;
180 fade_out_shape->set_data ("regionview", this);
183 uint32_t r,g,b,a;
184 UINT_TO_RGBA(fill_color,&r,&g,&b,&a);
186 fade_in_handle = new ArdourCanvas::SimpleRect (*group);
187 fade_in_handle->property_fill_color_rgba() = RGBA_TO_UINT(r,g,b,0);
188 fade_in_handle->property_outline_pixels() = 0;
190 fade_in_handle->set_data ("regionview", this);
192 fade_out_handle = new ArdourCanvas::SimpleRect (*group);
193 fade_out_handle->property_fill_color_rgba() = RGBA_TO_UINT(r,g,b,0);
194 fade_out_handle->property_outline_pixels() = 0;
196 fade_out_handle->set_data ("regionview", this);
199 setup_fade_handle_positions ();
201 if (!trackview.session()->config.get_show_region_fades()) {
202 set_fade_visibility (false);
205 const string line_name = _region->name() + ":gain";
207 if (!Profile->get_sae()) {
208 gain_line = new AudioRegionGainLine (line_name, *this, *group, audio_region()->envelope());
211 if (!(_flags & EnvelopeVisible)) {
212 gain_line->hide ();
213 } else {
214 gain_line->show ();
217 gain_line->reset ();
219 set_height (trackview.current_height());
221 region_muted ();
222 region_sync_changed ();
224 region_resized (ARDOUR::bounds_change);
225 set_waveview_data_src();
226 region_locked ();
227 envelope_active_changed ();
228 fade_in_active_changed ();
229 fade_out_active_changed ();
231 reset_width_dependent_items (_pixel_width);
233 fade_in_shape->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_fade_in_event), fade_in_shape, this));
234 fade_in_handle->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_fade_in_handle_event), fade_in_handle, this));
235 fade_out_shape->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_fade_out_event), fade_out_shape, this));
236 fade_out_handle->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_fade_out_handle_event), fade_out_handle, this));
238 set_colors ();
240 /* XXX sync mark drag? */
243 AudioRegionView::~AudioRegionView ()
245 in_destructor = true;
247 RegionViewGoingAway (this); /* EMIT_SIGNAL */
249 for (vector<GnomeCanvasWaveViewCache *>::iterator cache = wave_caches.begin(); cache != wave_caches.end() ; ++cache) {
250 gnome_canvas_waveview_cache_destroy (*cache);
253 for (vector<ScopedConnection*>::iterator i = _data_ready_connections.begin(); i != _data_ready_connections.end(); ++i) {
254 delete *i;
257 for (list<std::pair<nframes64_t, ArdourCanvas::SimpleLine*> >::iterator i = feature_lines.begin(); i != feature_lines.end(); ++i) {
258 delete ((*i).second);
261 /* all waveviews etc will be destroyed when the group is destroyed */
263 delete gain_line;
266 boost::shared_ptr<ARDOUR::AudioRegion>
267 AudioRegionView::audio_region() const
269 // "Guaranteed" to succeed...
270 return boost::dynamic_pointer_cast<AudioRegion>(_region);
273 void
274 AudioRegionView::region_changed (const PropertyChange& what_changed)
276 ENSURE_GUI_THREAD (*this, &AudioRegionView::region_changed, what_changed);
277 // cerr << "AudioRegionView::region_changed() called" << endl;
279 RegionView::region_changed (what_changed);
281 if (what_changed.contains (ARDOUR::Properties::scale_amplitude)) {
282 region_scale_amplitude_changed ();
284 if (what_changed.contains (ARDOUR::Properties::fade_in)) {
285 fade_in_changed ();
287 if (what_changed.contains (ARDOUR::Properties::fade_out)) {
288 fade_out_changed ();
290 if (what_changed.contains (ARDOUR::Properties::fade_in_active)) {
291 fade_in_active_changed ();
293 if (what_changed.contains (ARDOUR::Properties::fade_out_active)) {
294 fade_out_active_changed ();
296 if (what_changed.contains (ARDOUR::Properties::envelope_active)) {
297 envelope_active_changed ();
299 if (what_changed.contains (ARDOUR::Properties::valid_transients)) {
300 transients_changed ();
304 void
305 AudioRegionView::fade_in_changed ()
307 reset_fade_in_shape ();
310 void
311 AudioRegionView::fade_out_changed ()
313 reset_fade_out_shape ();
315 void
316 AudioRegionView::fade_in_active_changed ()
318 // uint32_t r,g,b,a;
319 // uint32_t col;
320 // UINT_TO_RGBA(fade_color,&r,&g,&b,&a);
322 if (audio_region()->fade_in_active()) {
323 fade_in_shape->property_fill_color_rgba() = RGBA_TO_UINT(45,45,45,90); // FIXME make a themeable colour
324 fade_in_shape->property_width_pixels() = 1;
325 fade_in_shape->property_outline_color_rgba() = RGBA_TO_UINT(180,180,180,190); // FIXME make a themeable colour
326 } else {
327 fade_in_shape->property_fill_color_rgba() = RGBA_TO_UINT(45,45,45,20); // FIXME make a themeable colour
328 fade_in_shape->property_width_pixels() = 1;
329 fade_in_shape->property_outline_color_rgba() = RGBA_TO_UINT(45,45,45,150); // FIXME make a themeable colour
333 void
334 AudioRegionView::fade_out_active_changed ()
336 // uint32_t r,g,b,a;
337 // uint32_t col;
338 // UINT_TO_RGBA(fade_color,&r,&g,&b,&a);
340 if (audio_region()->fade_out_active()) {
341 fade_out_shape->property_fill_color_rgba() = RGBA_TO_UINT(45,45,45,90); // FIXME make a themeable colour
342 fade_out_shape->property_width_pixels() = 1;
343 fade_out_shape->property_outline_color_rgba() = RGBA_TO_UINT(180,180,180,200); // FIXME make a themeable colour
344 } else {
345 fade_out_shape->property_fill_color_rgba() = RGBA_TO_UINT(45,45,45,20); // FIXME make a themeable colour
346 fade_out_shape->property_width_pixels() = 1;
347 fade_out_shape->property_outline_color_rgba() = RGBA_TO_UINT(45,45,45,200); // FIXME make a themeable colour
352 void
353 AudioRegionView::region_scale_amplitude_changed ()
355 ENSURE_GUI_THREAD (*this, &AudioRegionView::region_scale_amplitude_changed)
357 for (uint32_t n = 0; n < waves.size(); ++n) {
358 // force a reload of the cache
359 waves[n]->property_data_src() = _region.get();
363 void
364 AudioRegionView::region_renamed ()
366 Glib::ustring str = RegionView::make_name ();
368 if (audio_region()->speed_mismatch (trackview.session()->frame_rate())) {
369 str = string ("*") + str;
372 if (_region->muted()) {
373 str = string ("!") + str;
376 set_item_name (str, this);
377 set_name_text (str);
380 void
381 AudioRegionView::region_resized (const PropertyChange& what_changed)
383 AudioGhostRegion* agr;
385 RegionView::region_resized(what_changed);
386 PropertyChange interesting_stuff;
388 interesting_stuff.add (ARDOUR::Properties::start);
389 interesting_stuff.add (ARDOUR::Properties::length);
391 if (what_changed.contains (interesting_stuff)) {
393 for (uint32_t n = 0; n < waves.size(); ++n) {
394 waves[n]->property_region_start() = _region->start();
397 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
398 if ((agr = dynamic_cast<AudioGhostRegion*>(*i)) != 0) {
400 for (vector<WaveView*>::iterator w = agr->waves.begin(); w != agr->waves.end(); ++w) {
401 (*w)->property_region_start() = _region->start();
406 /* hide transient lines that extend beyond the region end */
408 list<std::pair<nframes64_t, ArdourCanvas::SimpleLine*> >::iterator l;
410 for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
411 if ((*l).first > _region->length()- 1){
412 (*l).second->hide();
414 else {
415 (*l).second->show();
421 void
422 AudioRegionView::reset_width_dependent_items (double pixel_width)
424 RegionView::reset_width_dependent_items(pixel_width);
425 assert(_pixel_width == pixel_width);
427 if (zero_line) {
428 zero_line->property_x2() = pixel_width - 1.0;
431 if (fade_in_handle) {
432 if (pixel_width <= 6.0) {
433 fade_in_handle->hide();
434 fade_out_handle->hide();
435 } else {
436 if (_height < 5.0) {
437 fade_in_handle->hide();
438 fade_out_handle->hide();
439 } else {
440 if (trackview.session()->config.get_show_region_fades()) {
441 fade_in_handle->show();
442 fade_out_handle->show();
448 AnalysisFeatureList analysis_features = _region->transients();
449 AnalysisFeatureList::const_iterator i;
450 list<std::pair<nframes64_t, ArdourCanvas::SimpleLine*> >::iterator l;
452 for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
453 (*l).second->property_x1() = trackview.editor().frame_to_pixel (*i);
454 (*l).second->property_x2() = trackview.editor().frame_to_pixel (*i);
457 reset_fade_shapes ();
460 void
461 AudioRegionView::region_muted ()
463 RegionView::region_muted();
465 for (uint32_t n=0; n < waves.size(); ++n) {
466 if (_region->muted()) {
467 waves[n]->property_wave_color() = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->canvasvar_WaveForm.get(), MUTED_ALPHA);
468 } else {
469 waves[n]->property_wave_color() = ARDOUR_UI::config()->canvasvar_WaveForm.get();
474 void
475 AudioRegionView::setup_fade_handle_positions()
477 /* position of fade handle offset from the top of the region view */
478 double const handle_pos = 2;
479 /* height of fade handles */
480 double const handle_height = 5;
482 if (fade_in_handle) {
483 fade_in_handle->property_y1() = handle_pos;
484 fade_in_handle->property_y2() = handle_pos + handle_height;
487 if (fade_out_handle) {
488 fade_out_handle->property_y1() = handle_pos;
489 fade_out_handle->property_y2() = handle_pos + handle_height;
493 void
494 AudioRegionView::set_height (gdouble height)
496 RegionView::set_height (height);
498 uint32_t wcnt = waves.size();
500 // FIXME: ick
501 height -= 2;
503 for (uint32_t n = 0; n < wcnt; ++n) {
504 gdouble ht;
506 if ((height) < NAME_HIGHLIGHT_THRESH) {
507 ht = ((height - 2 * wcnt) / (double) wcnt);
508 } else {
509 ht = (((height - 2 * wcnt) - NAME_HIGHLIGHT_SIZE) / (double) wcnt);
512 gdouble yoff = n * (ht + 1);
514 waves[n]->property_height() = ht;
515 waves[n]->property_y() = yoff + 2;
518 if (gain_line) {
520 if ((height/wcnt) < NAME_HIGHLIGHT_THRESH) {
521 gain_line->hide ();
522 } else {
523 if (_flags & EnvelopeVisible) {
524 gain_line->show ();
528 gain_line->set_height ((uint32_t) rint (height - NAME_HIGHLIGHT_SIZE) - 2);
531 manage_zero_line ();
532 reset_fade_shapes ();
534 /* Update hights for any active feature lines */
535 list<std::pair<nframes64_t, ArdourCanvas::SimpleLine*> >::iterator l;
537 for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
538 (*l).second->property_y2() = _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1;
541 if (name_pixbuf) {
542 name_pixbuf->raise_to_top();
546 void
547 AudioRegionView::manage_zero_line ()
549 if (!zero_line) {
550 return;
553 if (_height >= 100) {
554 double const wave_midpoint = (_height - NAME_HIGHLIGHT_SIZE) / 2.0;
555 zero_line->property_y1() = wave_midpoint;
556 zero_line->property_y2() = wave_midpoint;
557 zero_line->show();
558 } else {
559 zero_line->hide();
563 void
564 AudioRegionView::reset_fade_shapes ()
566 reset_fade_in_shape ();
567 reset_fade_out_shape ();
570 void
571 AudioRegionView::reset_fade_in_shape ()
573 reset_fade_in_shape_width ((nframes_t) audio_region()->fade_in()->back()->when);
576 void
577 AudioRegionView::reset_fade_in_shape_width (nframes_t width)
579 if (fade_in_handle == 0) {
580 return;
583 /* smallest size for a fade is 64 frames */
585 width = std::max ((nframes_t) 64, width);
587 Points* points;
588 double pwidth = width / samples_per_unit;
589 uint32_t npoints = std::min (gdk_screen_width(), (int) pwidth);
590 double h;
592 if (_height < 5) {
593 fade_in_shape->hide();
594 fade_in_handle->hide();
595 return;
598 double handle_center;
599 handle_center = pwidth;
601 if (handle_center > 7.0) {
602 handle_center -= 3.0;
603 } else {
604 handle_center = 3.0;
607 fade_in_handle->property_x1() = handle_center - 3.0;
608 fade_in_handle->property_x2() = handle_center + 3.0;
610 if (pwidth < 5) {
611 fade_in_shape->hide();
612 return;
615 if (trackview.session()->config.get_show_region_fades()) {
616 fade_in_shape->show();
619 float curve[npoints];
620 audio_region()->fade_in()->curve().get_vector (0, audio_region()->fade_in()->back()->when, curve, npoints);
622 points = get_canvas_points ("fade in shape", npoints + 3);
624 if (_height >= NAME_HIGHLIGHT_THRESH) {
625 h = _height - NAME_HIGHLIGHT_SIZE;
626 } else {
627 h = _height;
630 /* points *MUST* be in anti-clockwise order */
632 uint32_t pi, pc;
633 double xdelta = pwidth/npoints;
635 for (pi = 0, pc = 0; pc < npoints; ++pc) {
636 (*points)[pi].set_x(1 + (pc * xdelta));
637 (*points)[pi++].set_y(2 + (h - (curve[pc] * h)));
640 /* fold back */
642 (*points)[pi].set_x(pwidth);
643 (*points)[pi++].set_y(2);
645 (*points)[pi].set_x(1);
646 (*points)[pi++].set_y(2);
648 /* connect the dots ... */
650 (*points)[pi] = (*points)[0];
652 fade_in_shape->property_points() = *points;
653 delete points;
655 /* ensure trim handle stays on top */
656 frame_handle_start->raise_to_top();
659 void
660 AudioRegionView::reset_fade_out_shape ()
662 reset_fade_out_shape_width ((nframes_t) audio_region()->fade_out()->back()->when);
665 void
666 AudioRegionView::reset_fade_out_shape_width (nframes_t width)
668 if (fade_out_handle == 0) {
669 return;
672 /* smallest size for a fade is 64 frames */
674 width = std::max ((nframes_t) 64, width);
676 Points* points;
677 double pwidth = width / samples_per_unit;
678 uint32_t npoints = std::min (gdk_screen_width(), (int) pwidth);
679 double h;
681 if (_height < 5) {
682 fade_out_shape->hide();
683 fade_out_handle->hide();
684 return;
687 double handle_center;
688 handle_center = (_region->length() - width) / samples_per_unit;
690 if (handle_center > 7.0) {
691 handle_center -= 3.0;
692 } else {
693 handle_center = 3.0;
696 fade_out_handle->property_x1() = handle_center - 3.0;
697 fade_out_handle->property_x2() = handle_center + 3.0;
699 /* don't show shape if its too small */
701 if (pwidth < 5) {
702 fade_out_shape->hide();
703 return;
706 if (trackview.session()->config.get_show_region_fades()) {
707 fade_out_shape->show();
710 float curve[npoints];
711 audio_region()->fade_out()->curve().get_vector (0, audio_region()->fade_out()->back()->when, curve, npoints);
713 if (_height >= NAME_HIGHLIGHT_THRESH) {
714 h = _height - NAME_HIGHLIGHT_SIZE;
715 } else {
716 h = _height;
719 /* points *MUST* be in anti-clockwise order */
721 points = get_canvas_points ("fade out shape", npoints + 3);
723 uint32_t pi, pc;
724 double xdelta = pwidth/npoints;
726 for (pi = 0, pc = 0; pc < npoints; ++pc) {
727 (*points)[pi].set_x(_pixel_width - 1 - pwidth + (pc*xdelta));
728 (*points)[pi++].set_y(2 + (h - (curve[pc] * h)));
731 /* fold back */
733 (*points)[pi].set_x(_pixel_width);
734 (*points)[pi++].set_y(h);
736 (*points)[pi].set_x(_pixel_width);
737 (*points)[pi++].set_y(2);
739 /* connect the dots ... */
741 (*points)[pi] = (*points)[0];
743 fade_out_shape->property_points() = *points;
744 delete points;
746 /* ensure trim handle stays on top */
747 frame_handle_end->raise_to_top();
750 void
751 AudioRegionView::set_samples_per_unit (gdouble spu)
753 RegionView::set_samples_per_unit (spu);
755 if (_flags & WaveformVisible) {
756 for (uint32_t n=0; n < waves.size(); ++n) {
757 waves[n]->property_samples_per_unit() = spu;
761 if (gain_line) {
762 gain_line->reset ();
765 reset_fade_shapes ();
768 void
769 AudioRegionView::set_amplitude_above_axis (gdouble spp)
771 for (uint32_t n=0; n < waves.size(); ++n) {
772 waves[n]->property_amplitude_above_axis() = spp;
776 void
777 AudioRegionView::compute_colors (Gdk::Color const & basic_color)
779 RegionView::compute_colors (basic_color);
781 uint32_t r, g, b, a;
783 /* gain color computed in envelope_active_changed() */
785 UINT_TO_RGBA (fill_color, &r, &g, &b, &a);
786 fade_color = RGBA_TO_UINT(r,g,b,120);
789 void
790 AudioRegionView::set_colors ()
792 RegionView::set_colors();
794 if (gain_line) {
795 gain_line->set_line_color (audio_region()->envelope_active() ? ARDOUR_UI::config()->canvasvar_GainLine.get() : ARDOUR_UI::config()->canvasvar_GainLineInactive.get());
798 for (uint32_t n=0; n < waves.size(); ++n) {
799 if (_region->muted()) {
800 waves[n]->property_wave_color() = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->canvasvar_WaveForm.get(), MUTED_ALPHA);
801 } else {
802 waves[n]->property_wave_color() = ARDOUR_UI::config()->canvasvar_WaveForm.get();
805 waves[n]->property_clip_color() = ARDOUR_UI::config()->canvasvar_WaveFormClip.get();
806 waves[n]->property_zero_color() = ARDOUR_UI::config()->canvasvar_ZeroLine.get();
810 void
811 AudioRegionView::set_waveform_visible (bool yn)
813 if (((_flags & WaveformVisible) != yn)) {
814 if (yn) {
815 for (uint32_t n=0; n < waves.size(); ++n) {
816 /* make sure the zoom level is correct, since we don't update
817 this when waveforms are hidden.
819 waves[n]->property_samples_per_unit() = samples_per_unit;
820 waves[n]->show();
822 _flags |= WaveformVisible;
823 } else {
824 for (uint32_t n=0; n < waves.size(); ++n) {
825 waves[n]->hide();
827 _flags &= ~WaveformVisible;
829 store_flags ();
833 void
834 AudioRegionView::temporarily_hide_envelope ()
836 if (gain_line) {
837 gain_line->hide ();
841 void
842 AudioRegionView::unhide_envelope ()
844 if (gain_line && (_flags & EnvelopeVisible)) {
845 gain_line->show ();
849 void
850 AudioRegionView::set_envelope_visible (bool yn)
852 if (gain_line && ((_flags & EnvelopeVisible) != yn)) {
853 if (yn) {
854 gain_line->show ();
855 _flags |= EnvelopeVisible;
856 } else {
857 gain_line->hide ();
858 _flags &= ~EnvelopeVisible;
860 store_flags ();
864 void
865 AudioRegionView::create_waves ()
867 // cerr << "AudioRegionView::create_waves() called on " << this << endl;//DEBUG
868 RouteTimeAxisView& atv (*(dynamic_cast<RouteTimeAxisView*>(&trackview))); // ick
870 if (!atv.track()) {
871 return;
874 ChanCount nchans = atv.track()->n_channels();
876 // cerr << "creating waves for " << _region->name() << " with wfd = " << wait_for_data
877 // << " and channels = " << nchans.n_audio() << endl;
879 /* in tmp_waves, set up null pointers for each channel so the vector is allocated */
880 for (uint32_t n = 0; n < nchans.n_audio(); ++n) {
881 tmp_waves.push_back (0);
884 for (vector<ScopedConnection*>::iterator i = _data_ready_connections.begin(); i != _data_ready_connections.end(); ++i) {
885 delete *i;
888 _data_ready_connections.clear ();
890 for (uint32_t i = 0; i < nchans.n_audio(); ++i) {
891 _data_ready_connections.push_back (0);
894 for (uint32_t n = 0; n < nchans.n_audio(); ++n) {
896 if (n >= audio_region()->n_channels()) {
897 break;
900 wave_caches.push_back (WaveView::create_cache ());
902 // cerr << "\tchannel " << n << endl;
904 if (wait_for_data) {
905 if (audio_region()->audio_source(n)->peaks_ready (boost::bind (&AudioRegionView::peaks_ready_handler, this, n), &_data_ready_connections[n], gui_context())) {
906 // cerr << "\tData is ready\n";
907 create_one_wave (n, true);
908 } else {
909 // cerr << "\tdata is not ready\n";
910 // we'll get a PeaksReady signal from the source in the future
911 // and will call create_one_wave(n) then.
914 } else {
915 // cerr << "\tdon't delay, display today!\n";
916 create_one_wave (n, true);
922 void
923 AudioRegionView::create_one_wave (uint32_t which, bool /*direct*/)
925 //cerr << "AudioRegionView::create_one_wave() called which: " << which << " this: " << this << endl;//DEBUG
926 RouteTimeAxisView& atv (*(dynamic_cast<RouteTimeAxisView*>(&trackview))); // ick
927 uint32_t nchans = atv.track()->n_channels().n_audio();
928 uint32_t n;
929 uint32_t nwaves = std::min (nchans, audio_region()->n_channels());
930 gdouble ht;
932 if (trackview.current_height() < NAME_HIGHLIGHT_THRESH) {
933 ht = ((trackview.current_height()) / (double) nchans);
934 } else {
935 ht = ((trackview.current_height() - NAME_HIGHLIGHT_SIZE) / (double) nchans);
938 gdouble yoff = which * ht;
940 WaveView *wave = new WaveView(*group);
942 wave->property_data_src() = (gpointer) _region.get();
943 wave->property_cache() = wave_caches[which];
944 wave->property_cache_updater() = true;
945 wave->property_channel() = which;
946 wave->property_length_function() = (gpointer) region_length_from_c;
947 wave->property_sourcefile_length_function() = (gpointer) sourcefile_length_from_c;
948 wave->property_peak_function() = (gpointer) region_read_peaks_from_c;
949 wave->property_x() = 0.0;
950 wave->property_y() = yoff;
951 wave->property_height() = (double) ht;
952 wave->property_samples_per_unit() = samples_per_unit;
953 wave->property_amplitude_above_axis() = _amplitude_above_axis;
955 if (_recregion) {
956 wave->property_wave_color() = _region->muted() ? UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->canvasvar_RecWaveForm.get(), MUTED_ALPHA) : ARDOUR_UI::config()->canvasvar_RecWaveForm.get();
957 wave->property_fill_color() = ARDOUR_UI::config()->canvasvar_RecWaveFormFill.get();
958 } else {
959 wave->property_wave_color() = _region->muted() ? UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->canvasvar_WaveForm.get(), MUTED_ALPHA) : ARDOUR_UI::config()->canvasvar_WaveForm.get();
960 wave->property_fill_color() = ARDOUR_UI::config()->canvasvar_WaveFormFill.get();
963 wave->property_clip_color() = ARDOUR_UI::config()->canvasvar_WaveFormClip.get();
964 wave->property_zero_color() = ARDOUR_UI::config()->canvasvar_ZeroLine.get();
965 wave->property_region_start() = _region->start();
966 wave->property_rectified() = (bool) (_flags & WaveformRectified);
967 wave->property_logscaled() = (bool) (_flags & WaveformLogScaled);
969 if (!(_flags & WaveformVisible)) {
970 wave->hide();
973 /* note: calling this function is serialized by the lock
974 held in the peak building thread that signals that
975 peaks are ready for use *or* by the fact that it is
976 called one by one from the GUI thread.
979 if (which < nchans) {
980 tmp_waves[which] = wave;
981 } else {
982 /* n-channel track, >n-channel source */
985 /* see if we're all ready */
987 for (n = 0; n < nchans; ++n) {
988 if (tmp_waves[n] == 0) {
989 break;
993 if (n == nwaves && waves.empty()) {
994 /* all waves are ready */
995 tmp_waves.resize(nwaves);
997 waves = tmp_waves;
998 tmp_waves.clear ();
1000 /* all waves created, don't hook into peaks ready anymore */
1001 delete _data_ready_connections[which];
1002 _data_ready_connections[which] = 0;
1004 #if 0
1005 if (!zero_line) {
1006 zero_line = new ArdourCanvas::SimpleLine (*group);
1007 zero_line->property_x1() = (gdouble) 1.0;
1008 zero_line->property_x2() = (gdouble) (_region->length() / samples_per_unit) - 1.0;
1009 zero_line->property_color_rgba() = (guint) ARDOUR_UI::config()->canvasvar_ZeroLine.get();
1010 manage_zero_line ();
1012 #endif
1016 void
1017 AudioRegionView::peaks_ready_handler (uint32_t which)
1019 Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&AudioRegionView::create_one_wave, this, which, false));
1020 // cerr << "AudioRegionView::peaks_ready_handler() called on " << which << " this: " << this << endl;
1023 void
1024 AudioRegionView::add_gain_point_event (ArdourCanvas::Item *item, GdkEvent *ev)
1026 if (gain_line == 0) {
1027 return;
1030 double x, y;
1032 /* don't create points that can't be seen */
1034 set_envelope_visible (true);
1036 x = ev->button.x;
1037 y = ev->button.y;
1039 item->w2i (x, y);
1041 nframes_t fx = trackview.editor().pixel_to_frame (x);
1043 if (fx > _region->length()) {
1044 return;
1047 /* compute vertical fractional position */
1049 y = 1.0 - (y / (_height - NAME_HIGHLIGHT_SIZE));
1051 /* map using gain line */
1053 gain_line->view_to_model_coord (x, y);
1055 /* XXX STATEFUL: can't convert to stateful diff until we
1056 can represent automation data with it.
1059 trackview.session()->begin_reversible_command (_("add gain control point"));
1060 XMLNode &before = audio_region()->envelope()->get_state();
1062 if (!audio_region()->envelope_active()) {
1063 XMLNode &region_before = audio_region()->get_state();
1064 audio_region()->set_envelope_active(true);
1065 XMLNode &region_after = audio_region()->get_state();
1066 trackview.session()->add_command (new MementoCommand<AudioRegion>(*(audio_region().get()), &region_before, &region_after));
1069 audio_region()->envelope()->add (fx, y);
1071 XMLNode &after = audio_region()->envelope()->get_state();
1072 trackview.session()->add_command (new MementoCommand<AutomationList>(*audio_region()->envelope().get(), &before, &after));
1073 trackview.session()->commit_reversible_command ();
1076 void
1077 AudioRegionView::remove_gain_point_event (ArdourCanvas::Item *item, GdkEvent */*ev*/)
1079 ControlPoint *cp = reinterpret_cast<ControlPoint *> (item->get_data ("control_point"));
1080 audio_region()->envelope()->erase (cp->model());
1083 void
1084 AudioRegionView::store_flags()
1086 XMLNode *node = new XMLNode ("GUI");
1088 node->add_property ("waveform-visible", (_flags & WaveformVisible) ? "yes" : "no");
1089 node->add_property ("envelope-visible", (_flags & EnvelopeVisible) ? "yes" : "no");
1090 node->add_property ("waveform-rectified", (_flags & WaveformRectified) ? "yes" : "no");
1091 node->add_property ("waveform-logscaled", (_flags & WaveformLogScaled) ? "yes" : "no");
1093 _region->add_extra_xml (*node);
1096 void
1097 AudioRegionView::set_flags (XMLNode* node)
1099 XMLProperty *prop;
1101 if ((prop = node->property ("waveform-visible")) != 0) {
1102 if (string_is_affirmative (prop->value())) {
1103 _flags |= WaveformVisible;
1107 if ((prop = node->property ("envelope-visible")) != 0) {
1108 if (string_is_affirmative (prop->value())) {
1109 _flags |= EnvelopeVisible;
1113 if ((prop = node->property ("waveform-rectified")) != 0) {
1114 if (string_is_affirmative (prop->value())) {
1115 _flags |= WaveformRectified;
1119 if ((prop = node->property ("waveform-logscaled")) != 0) {
1120 if (string_is_affirmative (prop->value())) {
1121 _flags |= WaveformLogScaled;
1126 void
1127 AudioRegionView::set_waveform_shape (WaveformShape shape)
1129 bool yn;
1131 /* this slightly odd approach is to leave the door open to
1132 other "shapes" such as spectral displays, etc.
1135 switch (shape) {
1136 case Rectified:
1137 yn = true;
1138 break;
1140 default:
1141 yn = false;
1142 break;
1145 if (yn != (bool) (_flags & WaveformRectified)) {
1146 for (vector<WaveView *>::iterator wave = waves.begin(); wave != waves.end() ; ++wave) {
1147 (*wave)->property_rectified() = yn;
1150 if (zero_line) {
1151 if (yn) {
1152 zero_line->hide();
1153 } else {
1154 zero_line->show();
1158 if (yn) {
1159 _flags |= WaveformRectified;
1160 } else {
1161 _flags &= ~WaveformRectified;
1163 store_flags ();
1167 void
1168 AudioRegionView::set_waveform_scale (WaveformScale scale)
1170 bool yn = (scale == Logarithmic);
1172 if (yn != (bool) (_flags & WaveformLogScaled)) {
1173 for (vector<WaveView *>::iterator wave = waves.begin(); wave != waves.end() ; ++wave) {
1174 (*wave)->property_logscaled() = yn;
1177 if (yn) {
1178 _flags |= WaveformLogScaled;
1179 } else {
1180 _flags &= ~WaveformLogScaled;
1182 store_flags ();
1187 GhostRegion*
1188 AudioRegionView::add_ghost (TimeAxisView& tv)
1190 RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(&trackview);
1191 assert(rtv);
1193 double unit_position = _region->position () / samples_per_unit;
1194 AudioGhostRegion* ghost = new AudioGhostRegion (tv, trackview, unit_position);
1195 uint32_t nchans;
1197 nchans = rtv->track()->n_channels().n_audio();
1199 for (uint32_t n = 0; n < nchans; ++n) {
1201 if (n >= audio_region()->n_channels()) {
1202 break;
1205 WaveView *wave = new WaveView(*ghost->group);
1207 wave->property_data_src() = _region.get();
1208 wave->property_cache() = wave_caches[n];
1209 wave->property_cache_updater() = false;
1210 wave->property_channel() = n;
1211 wave->property_length_function() = (gpointer)region_length_from_c;
1212 wave->property_sourcefile_length_function() = (gpointer) sourcefile_length_from_c;
1213 wave->property_peak_function() = (gpointer) region_read_peaks_from_c;
1214 wave->property_x() = 0.0;
1215 wave->property_samples_per_unit() = samples_per_unit;
1216 wave->property_amplitude_above_axis() = _amplitude_above_axis;
1218 wave->property_region_start() = _region->start();
1220 ghost->waves.push_back(wave);
1223 ghost->set_height ();
1224 ghost->set_duration (_region->length() / samples_per_unit);
1225 ghost->set_colors();
1226 ghosts.push_back (ghost);
1228 return ghost;
1231 void
1232 AudioRegionView::entered ()
1234 if (gain_line && _flags & EnvelopeVisible) {
1235 gain_line->show_all_control_points ();
1238 uint32_t r,g,b,a;
1239 UINT_TO_RGBA(fade_color,&r,&g,&b,&a);
1240 a=255;
1242 if (fade_in_handle) {
1243 fade_in_handle->property_fill_color_rgba() = RGBA_TO_UINT(r,g,b,a);
1244 fade_out_handle->property_fill_color_rgba() = RGBA_TO_UINT(r,g,b,a);
1248 void
1249 AudioRegionView::exited ()
1251 if (gain_line) {
1252 gain_line->hide_all_but_selected_control_points ();
1255 uint32_t r,g,b,a;
1256 UINT_TO_RGBA(fade_color,&r,&g,&b,&a);
1257 a=0;
1259 if (fade_in_handle) {
1260 fade_in_handle->property_fill_color_rgba() = RGBA_TO_UINT(r,g,b,a);
1261 fade_out_handle->property_fill_color_rgba() = RGBA_TO_UINT(r,g,b,a);
1265 void
1266 AudioRegionView::envelope_active_changed ()
1268 if (gain_line) {
1269 gain_line->set_line_color (audio_region()->envelope_active() ? ARDOUR_UI::config()->canvasvar_GainLine.get() : ARDOUR_UI::config()->canvasvar_GainLineInactive.get());
1273 void
1274 AudioRegionView::set_waveview_data_src()
1276 AudioGhostRegion* agr;
1277 double unit_length= _region->length() / samples_per_unit;
1279 for (uint32_t n = 0; n < waves.size(); ++n) {
1280 // TODO: something else to let it know the channel
1281 waves[n]->property_data_src() = _region.get();
1284 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
1286 (*i)->set_duration (unit_length);
1288 if((agr = dynamic_cast<AudioGhostRegion*>(*i)) != 0) {
1289 for (vector<WaveView*>::iterator w = agr->waves.begin(); w != agr->waves.end(); ++w) {
1290 (*w)->property_data_src() = _region.get();
1297 void
1298 AudioRegionView::color_handler ()
1300 //case cMutedWaveForm:
1301 //case cWaveForm:
1302 //case cWaveFormClip:
1303 //case cZeroLine:
1304 set_colors ();
1306 //case cGainLineInactive:
1307 //case cGainLine:
1308 envelope_active_changed();
1312 void
1313 AudioRegionView::set_frame_color ()
1315 if (!frame) {
1316 return;
1319 if (_region->opaque()) {
1320 fill_opacity = 130;
1321 } else {
1322 fill_opacity = 0;
1325 uint32_t r,g,b,a;
1327 if (_selected && should_show_selection) {
1328 UINT_TO_RGBA(ARDOUR_UI::config()->canvasvar_SelectedFrameBase.get(), &r, &g, &b, &a);
1329 frame->property_fill_color_rgba() = RGBA_TO_UINT(r, g, b, fill_opacity ? fill_opacity : a);
1331 for (vector<ArdourCanvas::WaveView*>::iterator w = waves.begin(); w != waves.end(); ++w) {
1332 if (_region->muted()) {
1333 (*w)->property_wave_color() = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->canvasvar_SelectedWaveForm.get(), MUTED_ALPHA);
1334 } else {
1335 (*w)->property_wave_color() = ARDOUR_UI::config()->canvasvar_SelectedWaveForm.get();
1336 (*w)->property_fill_color() = ARDOUR_UI::config()->canvasvar_SelectedWaveFormFill.get();
1339 } else {
1340 if (_recregion) {
1341 UINT_TO_RGBA(ARDOUR_UI::config()->canvasvar_RecordingRect.get(), &r, &g, &b, &a);
1342 frame->property_fill_color_rgba() = RGBA_TO_UINT(r, g, b, a);
1344 for (vector<ArdourCanvas::WaveView*>::iterator w = waves.begin(); w != waves.end(); ++w) {
1345 if (_region->muted()) {
1346 (*w)->property_wave_color() = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->canvasvar_RecWaveForm.get(), MUTED_ALPHA);
1347 } else {
1348 (*w)->property_wave_color() = ARDOUR_UI::config()->canvasvar_RecWaveForm.get();
1349 (*w)->property_fill_color() = ARDOUR_UI::config()->canvasvar_RecWaveFormFill.get();
1352 } else {
1353 UINT_TO_RGBA(ARDOUR_UI::config()->canvasvar_FrameBase.get(), &r, &g, &b, &a);
1354 frame->property_fill_color_rgba() = RGBA_TO_UINT(r, g, b, fill_opacity ? fill_opacity : a);
1356 for (vector<ArdourCanvas::WaveView*>::iterator w = waves.begin(); w != waves.end(); ++w) {
1357 if (_region->muted()) {
1358 (*w)->property_wave_color() = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->canvasvar_WaveForm.get(), MUTED_ALPHA);
1359 } else {
1360 (*w)->property_wave_color() = ARDOUR_UI::config()->canvasvar_WaveForm.get();
1361 (*w)->property_fill_color() = ARDOUR_UI::config()->canvasvar_WaveFormFill.get();
1368 void
1369 AudioRegionView::set_fade_visibility (bool yn)
1371 if (yn) {
1372 if (fade_in_shape) {
1373 fade_in_shape->show();
1375 if (fade_out_shape) {
1376 fade_out_shape->show ();
1378 if (fade_in_handle) {
1379 fade_in_handle->show ();
1381 if (fade_out_handle) {
1382 fade_out_handle->show ();
1384 } else {
1385 if (fade_in_shape) {
1386 fade_in_shape->hide();
1388 if (fade_out_shape) {
1389 fade_out_shape->hide ();
1391 if (fade_in_handle) {
1392 fade_in_handle->hide ();
1394 if (fade_out_handle) {
1395 fade_out_handle->hide ();
1400 void
1401 AudioRegionView::update_coverage_frames (LayerDisplay d)
1403 RegionView::update_coverage_frames (d);
1405 fade_in_handle->raise_to_top ();
1406 fade_out_handle->raise_to_top ();
1409 void
1410 AudioRegionView::show_region_editor ()
1412 if (editor == 0) {
1413 editor = new AudioRegionEditor (trackview.session(), audio_region());
1416 editor->present ();
1417 editor->show_all();
1420 void
1421 AudioRegionView::transients_changed ()
1423 AnalysisFeatureList analysis_features = _region->transients();
1425 while (feature_lines.size() < analysis_features.size()) {
1426 ArdourCanvas::SimpleLine* l = new ArdourCanvas::SimpleLine (*group);
1427 l->property_color_rgba() = (guint) ARDOUR_UI::config()->canvasvar_ZeroLine.get();
1428 feature_lines.push_back (make_pair(0, l));
1431 while (feature_lines.size() > analysis_features.size()) {
1432 ArdourCanvas::SimpleLine *line = feature_lines.back().second;
1433 feature_lines.pop_back ();
1434 delete line;
1437 AnalysisFeatureList::const_iterator i;
1438 list<std::pair<nframes64_t, ArdourCanvas::SimpleLine*> >::iterator l;
1440 for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
1441 (*l).first = *i;
1442 (*l).second->property_x1() = trackview.editor().frame_to_pixel (*i);
1443 (*l).second->property_x2() = trackview.editor().frame_to_pixel (*i);
1444 (*l).second->property_y1() = 2;
1445 (*l).second->property_y2() = _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1;
1446 (*l).second->set_data("regionview", this);
1447 (*l).second->show ();
1448 (*l).second->raise_to_top ();
1450 (*l).second->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_feature_line_event), (*l).second, this));
1454 void
1455 AudioRegionView::update_transient(float old_pos, float new_pos)
1457 /* Find frame at old pos, calulate new frame then update region transients*/
1458 list<std::pair<nframes64_t, ArdourCanvas::SimpleLine*> >::iterator l;
1460 for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1461 /* Simple line x1 has been updated in drag so we compare to new_pos */
1462 if (rint(new_pos) == rint((*l).second->property_x1())) {
1464 nframes64_t old_frame = (*l).first;
1465 nframes64_t new_frame = trackview.editor().pixel_to_frame (new_pos);
1467 _region->update_transient (old_frame, new_frame);
1469 break;
1474 void
1475 AudioRegionView::remove_transient(float pos)
1477 /* Find frame at old pos, calulate new frame then update region transients*/
1478 list<std::pair<nframes64_t, ArdourCanvas::SimpleLine*> >::iterator l;
1480 for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1481 /* Simple line x1 has been updated in drag so we compare to new_pos */
1482 if (rint(pos) == rint((*l).second->property_x1())) {
1483 _region->remove_transient ((*l).first);
1484 break;