Fix parameter range stuff and automation time axis height (somewhat...).
[ardour.git] / gtk2_ardour / midi_region_view.cc
1 /*
2     Copyright (C) 2001-2007 Paul Davis
3     Author: Dave Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <cmath>
21 #include <cassert>
22 #include <algorithm>
23
24 #include <gtkmm.h>
25
26 #include <gtkmm2ext/gtk_ui.h>
27
28 #include <sigc++/signal.h>
29
30 #include <ardour/playlist.h>
31 #include <ardour/tempo.h>
32 #include <ardour/midi_region.h>
33 #include <ardour/midi_source.h>
34 #include <ardour/midi_diskstream.h>
35 #include <ardour/midi_model.h>
36
37 #include "streamview.h"
38 #include "midi_region_view.h"
39 #include "midi_streamview.h"
40 #include "midi_time_axis.h"
41 #include "simpleline.h"
42 #include "canvas-hit.h"
43 #include "canvas-note.h"
44 #include "canvas-program-change.h"
45 #include "public_editor.h"
46 #include "ghostregion.h"
47 #include "midi_time_axis.h"
48 #include "automation_time_axis.h"
49 #include "automation_region_view.h"
50 #include "utils.h"
51 #include "midi_util.h"
52 #include "gui_thread.h"
53 #include "keyboard.h"
54
55 #include "i18n.h"
56
57 using namespace sigc;
58 using namespace ARDOUR;
59 using namespace PBD;
60 using namespace Editing;
61 using namespace ArdourCanvas;
62
63 MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<MidiRegion> r, double spu, Gdk::Color& basic_color)
64         : RegionView (parent, tv, r, spu, basic_color)
65         , _force_channel(-1)
66         , _last_channel_selection(0xFFFF)
67         , _default_note_length(0.0)
68         , _active_notes(0)
69         , _note_group(new ArdourCanvas::Group(*parent))
70         , _delta_command(NULL)
71         , _mouse_state(None)
72         , _pressed_button(0)
73 {
74         _note_group->raise_to_top();
75 }
76
77 MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<MidiRegion> r, double spu, Gdk::Color& basic_color, TimeAxisViewItem::Visibility visibility)
78         : RegionView (parent, tv, r, spu, basic_color, false, visibility)
79         , _force_channel(-1)
80         , _last_channel_selection(0xFFFF)
81         , _default_note_length(0.0)
82         , _active_notes(0)
83         , _note_group(new ArdourCanvas::Group(*parent))
84         , _delta_command(NULL)
85         , _mouse_state(None)
86         , _pressed_button(0)
87         
88 {
89         _note_group->raise_to_top();
90 }
91
92 void
93 MidiRegionView::init (Gdk::Color& basic_color, bool wfd)
94 {
95         if (wfd)
96                 midi_region()->midi_source(0)->load_model();
97
98         const Meter& m = trackview.session().tempo_map().meter_at(_region->position());
99         const Tempo& t = trackview.session().tempo_map().tempo_at(_region->position());
100         _default_note_length = m.frames_per_bar(t, trackview.session().frame_rate())
101                         / m.beats_per_bar();
102
103         _model = midi_region()->midi_source(0)->model();
104         _enable_display = false;
105
106         RegionView::init (basic_color, false);
107
108         compute_colors (basic_color);
109
110         set_y_position_and_height (0, trackview.current_height());
111
112         region_muted ();
113         region_sync_changed ();
114         region_resized (BoundsChanged);
115         region_locked ();
116         
117         reset_width_dependent_items (_pixel_width);
118         //reset_width_dependent_items ((double) _region->length() / samples_per_unit);
119
120         set_colors ();
121
122         _enable_display = true;
123         if (_model) {
124                 if (wfd) {
125                         redisplay_model();
126                 }
127                 _model->ContentsChanged.connect(sigc::mem_fun(this, &MidiRegionView::redisplay_model));
128         }
129
130         group->raise_to_top();
131         group->signal_event().connect (mem_fun (this, &MidiRegionView::canvas_event), false);
132
133         midi_view()->signal_channel_mode_changed().connect(
134                         mem_fun(this, &MidiRegionView::midi_channel_mode_changed));
135 }
136
137 bool
138 MidiRegionView::canvas_event(GdkEvent* ev)
139 {
140         static bool delete_mod = false;
141         static Editing::MidiEditMode original_mode;
142
143         static double drag_start_x, drag_start_y;
144         static double last_x, last_y;
145         double event_x, event_y;
146         nframes64_t event_frame = 0;
147
148         static ArdourCanvas::SimpleRect* drag_rect = NULL;
149
150         if (trackview.editor.current_mouse_mode() != MouseNote)
151                 return false;
152
153         // Mmmm, spaghetti
154
155         switch (ev->type) {
156         case GDK_KEY_PRESS:
157                 if (ev->key.keyval == GDK_Delete && !delete_mod) {
158                         delete_mod = true;
159                         original_mode = trackview.editor.current_midi_edit_mode();
160                         trackview.editor.set_midi_edit_mode(MidiEditErase);
161                         start_delta_command(_("erase notes"));
162                         _mouse_state = EraseTouchDragging;
163                         return true;
164                 } else if (ev->key.keyval == GDK_Shift_L || ev->key.keyval == GDK_Control_L) {
165                         _mouse_state = SelectTouchDragging;
166                         return true;
167                 } else if (ev->key.keyval == GDK_Escape) {
168                         clear_selection();
169                         _mouse_state = None;
170                 }
171                 return false;
172
173         case GDK_KEY_RELEASE:
174                 if (ev->key.keyval == GDK_Delete) {
175                         if (_mouse_state == EraseTouchDragging) {
176                                 delete_selection();
177                                 apply_command();
178                         }
179                         if (delete_mod) {
180                                 trackview.editor.set_midi_edit_mode(original_mode);
181                                 _mouse_state = None;
182                                 delete_mod = false;
183                         }
184                         return true;
185                 } else if (ev->key.keyval == GDK_Shift_L || ev->key.keyval == GDK_Control_L) {
186                         _mouse_state = None;
187                         return true;
188                 }
189                 return false;
190
191         case GDK_BUTTON_PRESS:
192                 if (_mouse_state != SelectTouchDragging && 
193                         _mouse_state != EraseTouchDragging &&
194                         ev->button.button == 1) {
195                         _pressed_button = ev->button.button;
196                         _mouse_state = Pressed;
197                         return true;
198                 }
199                 _pressed_button = ev->button.button;
200                 return true;
201
202         case GDK_2BUTTON_PRESS:
203                 return true;
204
205         case GDK_ENTER_NOTIFY:
206                 /* FIXME: do this on switch to note tool, too, if the pointer is already in */
207                 Keyboard::magic_widget_grab_focus();
208                 group->grab_focus();
209                 break;
210
211         case GDK_MOTION_NOTIFY:
212                 event_x = ev->motion.x;
213                 event_y = ev->motion.y;
214                 group->w2i(event_x, event_y);
215
216                 // convert event_x to global frame
217                 event_frame = trackview.editor.pixel_to_frame(event_x) + _region->position();
218                 trackview.editor.snap_to(event_frame);
219                 // convert event_frame back to local coordinates relative to position
220                 event_frame -= _region->position();
221
222                 switch (_mouse_state) {
223                 case Pressed: // Drag start
224
225                         // Select drag start
226                         if (_pressed_button == 1 && trackview.editor.current_midi_edit_mode() == MidiEditSelect) {
227                                 group->grab(GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK,
228                                                 Gdk::Cursor(Gdk::FLEUR), ev->motion.time);
229                                 last_x = event_x;
230                                 last_y = event_y;
231                                 drag_start_x = event_x;
232                                 drag_start_y = event_y;
233
234                                 drag_rect = new ArdourCanvas::SimpleRect(*group);
235                                 drag_rect->property_x1() = event_x;
236                                 drag_rect->property_y1() = event_y;
237                                 drag_rect->property_x2() = event_x;
238                                 drag_rect->property_y2() = event_y;
239                                 drag_rect->property_outline_what() = 0xFF;
240                                 drag_rect->property_outline_color_rgba()
241                                         = ARDOUR_UI::config()->canvasvar_MidiSelectRectOutline.get();
242                                 drag_rect->property_fill_color_rgba()
243                                         = ARDOUR_UI::config()->canvasvar_MidiSelectRectFill.get();
244
245                                 _mouse_state = SelectRectDragging;
246                                 return true;
247
248                         // Add note drag start
249                         } else if (trackview.editor.current_midi_edit_mode() == MidiEditPencil) {
250                                 group->grab(GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK,
251                                                 Gdk::Cursor(Gdk::FLEUR), ev->motion.time);
252                                 last_x = event_x;
253                                 last_y = event_y;
254                                 drag_start_x = event_x;
255                                 drag_start_y = event_y;
256
257                                 drag_rect = new ArdourCanvas::SimpleRect(*group);
258                                 drag_rect->property_x1() = trackview.editor.frame_to_pixel(event_frame);
259
260                                 drag_rect->property_y1() = midi_stream_view()->note_to_y(midi_stream_view()->y_to_note(event_y));
261                                 drag_rect->property_x2() = event_x;
262                                 drag_rect->property_y2() = drag_rect->property_y1() + floor(midi_stream_view()->note_height());
263                                 drag_rect->property_outline_what() = 0xFF;
264                                 drag_rect->property_outline_color_rgba() = 0xFFFFFF99;
265
266                                 drag_rect->property_fill_color_rgba() = 0xFFFFFF66;
267
268                                 _mouse_state = AddDragging;
269                                 return true;
270                         }
271
272                         return false;
273
274                 case SelectRectDragging: // Select drag motion
275                 case AddDragging: // Add note drag motion
276                         if (ev->motion.is_hint) {
277                                 int t_x;
278                                 int t_y;
279                                 GdkModifierType state;
280                                 gdk_window_get_pointer(ev->motion.window, &t_x, &t_y, &state);
281                                 event_x = t_x;
282                                 event_y = t_y;
283                         }
284
285                         if (_mouse_state == AddDragging)
286                                 event_x = trackview.editor.frame_to_pixel(event_frame);
287
288                         if (drag_rect) {
289                                 if (event_x > drag_start_x)
290                                         drag_rect->property_x2() = event_x;
291                                 else
292                                         drag_rect->property_x1() = event_x;
293                         }
294
295                         if (drag_rect && _mouse_state == SelectRectDragging) {
296                                 if (event_y > drag_start_y)
297                                         drag_rect->property_y2() = event_y;
298                                 else
299                                         drag_rect->property_y1() = event_y;
300
301                                 update_drag_selection(drag_start_x, event_x, drag_start_y, event_y);
302                         }
303
304                         last_x = event_x;
305                         last_y = event_y;
306
307                 case EraseTouchDragging:
308                 case SelectTouchDragging:
309                         return false;
310
311                 default:
312                         break;
313                 }
314                 break;
315
316         case GDK_BUTTON_RELEASE:
317                 event_x = ev->motion.x;
318                 event_y = ev->motion.y;
319                 group->w2i(event_x, event_y);
320                 group->ungrab(ev->button.time);
321                 event_frame = trackview.editor.pixel_to_frame(event_x);
322
323                 if (_pressed_button != 1) {
324                         return false;
325                 }
326                         
327                 switch (_mouse_state) {
328                 case Pressed: // Clicked
329                         switch (trackview.editor.current_midi_edit_mode()) {
330                         case MidiEditSelect:
331                         case MidiEditResize:
332                                 clear_selection();
333                                 break;
334                         case MidiEditPencil:
335                                 create_note_at(event_x, event_y, _default_note_length);
336                         default: break;
337                         }
338                         _mouse_state = None;
339                         break;
340                 case SelectRectDragging: // Select drag done
341                         _mouse_state = None;
342                         delete drag_rect;
343                         drag_rect = NULL;
344                         break;
345                 case AddDragging: // Add drag done
346                         _mouse_state = None;
347                         if (drag_rect->property_x2() > drag_rect->property_x1() + 2) {
348                                 const double x      = drag_rect->property_x1();
349                                 const double length = trackview.editor.pixel_to_frame(
350                                                         drag_rect->property_x2() - drag_rect->property_x1());
351                                         
352                                 create_note_at(x, drag_rect->property_y1(), length);
353                         }
354
355                         delete drag_rect;
356                         drag_rect = NULL;
357                 default: break;
358                 }
359
360         default: break;
361         }
362
363         return false;
364 }
365
366
367 /** Add a note to the model, and the view, at a canvas (click) coordinate */
368 void
369 MidiRegionView::create_note_at(double x, double y, double duration)
370 {
371         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
372         MidiStreamView* const view = mtv->midi_view();
373
374         double note = midi_stream_view()->y_to_note(y);
375
376         assert(note >= 0.0);
377         assert(note <= 127.0);
378
379         nframes64_t new_note_time = trackview.editor.pixel_to_frame (x);
380         assert(new_note_time >= 0);
381         new_note_time += _region->start();
382
383         /*
384         const Meter& m = trackview.session().tempo_map().meter_at(new_note_time);
385         const Tempo& t = trackview.session().tempo_map().tempo_at(new_note_time);
386         double duration = m.frames_per_bar(t, trackview.session().frame_rate()) / m.beats_per_bar();
387         */
388         
389         // we need to snap here again in nframes64_t in order to be sample accurate 
390         // since note time is region-absolute but snap_to_frame expects position-relative
391         // time we have to coordinate transform back and forth here.
392         nframes64_t new_note_time_position_relative = new_note_time      - _region->start(); 
393         new_note_time = snap_to_frame(new_note_time_position_relative) + _region->start();
394         
395         // we need to snap the duration too to be sample accurate
396         nframes64_t new_note_duration = nframes_t(duration);
397         new_note_duration = snap_to_frame(new_note_time_position_relative + new_note_duration) + _region->start() 
398                             - new_note_time;
399
400         const boost::shared_ptr<Evoral::Note> new_note(new Evoral::Note(
401                         0, new_note_time, new_note_duration, (uint8_t)note, 0x40));
402         view->update_bounds(new_note->note());
403
404         MidiModel::DeltaCommand* cmd = _model->new_delta_command("add note");
405         cmd->add(new_note);
406         _model->apply_command(cmd);
407 }
408
409
410 void
411 MidiRegionView::clear_events()
412 {
413         clear_selection();
414
415         MidiGhostRegion* gr;
416         for (std::vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
417                 if ((gr = dynamic_cast<MidiGhostRegion*>(*g)) != 0) {
418                         gr->clear_events();
419                 }
420         }
421
422         for (std::vector<CanvasNoteEvent*>::iterator i = _events.begin(); i != _events.end(); ++i)
423                 delete *i;
424
425         _events.clear();
426         _pgm_changes.clear();
427 }
428
429
430 void
431 MidiRegionView::display_model(boost::shared_ptr<MidiModel> model)
432 {
433         _model = model;
434
435         if (_enable_display)
436                 redisplay_model();
437 }
438         
439         
440 void
441 MidiRegionView::start_delta_command(string name)
442 {
443         if (!_delta_command)
444                 _delta_command = _model->new_delta_command(name);
445 }
446
447 void
448 MidiRegionView::command_add_note(const boost::shared_ptr<Evoral::Note> note, bool selected)
449 {
450         if (_delta_command)
451                 _delta_command->add(note);
452
453         if (selected)
454                 _marked_for_selection.insert(note);
455 }
456
457 void
458 MidiRegionView::command_remove_note(ArdourCanvas::CanvasNoteEvent* ev)
459 {
460         if (_delta_command && ev->note()) {
461                 _delta_command->remove(ev->note());
462         }
463 }
464         
465 void
466 MidiRegionView::apply_command()
467 {
468         if (!_delta_command) {
469                 return;
470         }
471
472         // Mark all selected notes for selection when model reloads
473         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
474                 _marked_for_selection.insert((*i)->note());
475         }
476         
477         _model->apply_command(_delta_command);
478         _delta_command = NULL;
479         midi_view()->midi_track()->diskstream()->playlist_modified();
480
481         _marked_for_selection.clear();
482 }
483         
484
485 void
486 MidiRegionView::abort_command()
487 {
488         delete _delta_command;
489         _delta_command = NULL;
490         clear_selection();
491 }
492
493
494 void
495 MidiRegionView::redisplay_model()
496 {
497         // Don't redisplay the model if we're currently recording and displaying that
498         if (_active_notes)
499                 return;
500
501         if (_model) {
502
503                 clear_events();
504                 _model->read_lock();
505                 
506                 /*MidiModel::Notes notes = _model->notes();
507                 cerr << endl << _model->midi_source()->name() << " : redisplaying " << notes.size() << " notes:" << endl;
508                 for (MidiModel::Notes::iterator i = notes.begin(); i != notes.end(); ++i) {
509                         cerr << "NOTE  time: " << (*i)->time()
510                                  << "  pitch: " << int((*i)->note()) 
511                              << "  duration: " << (*i)->duration() 
512                              << "  end-time: " << (*i)->end_time() 
513                              << "  velocity: " << int((*i)->velocity()) 
514                              << endl;
515                 }*/
516                 
517                 for (size_t i = 0; i < _model->n_notes(); ++i)
518                         add_note(_model->note_at(i));
519
520                 // Draw program change 'flags'
521                 for (Automatable::Controls::iterator control = _model->controls().begin();
522                                 control != _model->controls().end(); ++control) {
523                         if (control->first.type() == MidiPgmChangeAutomation) {
524                                 Glib::Mutex::Lock list_lock (control->second->list()->lock());
525                                 
526                                 for (AutomationList::const_iterator event = control->second->list()->begin();
527                                                 event != control->second->list()->end(); ++event) {
528                                         Evoral::ControlIterator iter(control->second->list(), (*event)->when, (*event)->value);
529                                         boost::shared_ptr<Evoral::Event> event(new Evoral::Event());
530                                         _model->control_to_midi_event(event, iter);
531                                         add_pgm_change(event);
532                                 }
533                                 break;
534                         }
535                 }
536
537                 // Is this necessary?
538                 /*for (Automatable::Controls::const_iterator i = _model->controls().begin();
539                                 i != _model->controls().end(); ++i) {
540
541                         assert(i->second);
542
543                         boost::shared_ptr<AutomationTimeAxisView> at
544                                 = midi_view()->automation_child(i->second->parameter());
545                         if (!at)
546                                 continue;
547
548                         Gdk::Color col = midi_stream_view()->get_region_color();
549
550                         boost::shared_ptr<AutomationRegionView> arv;
551
552                         {
553                                 Glib::Mutex::Lock list_lock (i->second->list()->lock());
554
555                                 arv = boost::shared_ptr<AutomationRegionView>(
556                                                 new AutomationRegionView(at->canvas_display,
557                                                         *at.get(), _region, i->second->list(),
558                                                         midi_stream_view()->get_samples_per_unit(), col));
559                         }
560
561                         arv->set_duration(_region->length(), this);
562                         arv->init(col, true);
563
564                         _automation_children.insert(std::make_pair(i->second->parameter(), arv));
565                 }*/
566
567                 _model->read_unlock();
568
569         } else {
570                 cerr << "MidiRegionView::redisplay_model called without a model" << endmsg;
571         }
572 }
573
574
575 MidiRegionView::~MidiRegionView ()
576 {
577         in_destructor = true;
578
579         RegionViewGoingAway (this); /* EMIT_SIGNAL */
580
581         if (_active_notes) {
582                 end_write();
583         }
584
585         _selection.clear();
586         clear_events();
587         delete _note_group;
588         delete _delta_command;
589 }
590
591
592 void
593 MidiRegionView::region_resized (Change what_changed)
594 {
595         RegionView::region_resized(what_changed);
596         
597         if (what_changed & ARDOUR::PositionChanged) {
598                 if (_enable_display)
599                         redisplay_model();
600         } 
601 }
602
603 void
604 MidiRegionView::reset_width_dependent_items (double pixel_width)
605 {
606         RegionView::reset_width_dependent_items(pixel_width);
607         assert(_pixel_width == pixel_width);
608
609         if (_enable_display)
610                 redisplay_model();
611 }
612
613 void
614 MidiRegionView::set_y_position_and_height (double y, double h)
615 {
616         RegionView::set_y_position_and_height(y, h - 1);
617         
618         /* XXX why is this code here */
619
620         _height = h;
621
622         if (_enable_display) {
623
624                 _model->read_lock();
625
626                 for (std::vector<CanvasNoteEvent*>::const_iterator i = _events.begin(); i != _events.end(); ++i) {
627                         CanvasNoteEvent* event = *i;
628                         Item* item = dynamic_cast<Item*>(event);
629                         assert(item);
630                         if (event && event->note()) {
631                                 if (event->note()->note() < midi_stream_view()->lowest_note() ||
632                                    event->note()->note() > midi_stream_view()->highest_note()) {
633                                         
634                                         if (canvas_item_visible(item)) {
635                                                 item->hide();
636                                         }
637                                 } else {
638                                         if (!canvas_item_visible(item)) {
639                                                 item->show();
640                                         }
641
642                                         event->hide_velocity();
643                                         if (CanvasNote* note = dynamic_cast<CanvasNote*>(event)) {
644                                                 const double y1 = midi_stream_view()->note_to_y(event->note()->note());
645                                                 const double y2 = y1 + floor(midi_stream_view()->note_height());
646
647                                                 note->property_y1() = y1;
648                                                 note->property_y2() = y2;
649                                         }
650                                         if (CanvasHit* hit = dynamic_cast<CanvasHit*>(event)) {
651                                                 double x = trackview.editor.frame_to_pixel((nframes64_t)
652                                                                 event->note()->time() - _region->start());
653                                                 const double diamond_size = midi_stream_view()->note_height() / 2.0;
654                                                 double y = midi_stream_view()->note_to_y(event->note()->note()) 
655                                                                  + ((diamond_size-2.0) / 4.0);
656                                                 
657                                                 hit->set_height(diamond_size);
658                                                 hit->move(x-hit->x1(), y-hit->y1());
659                                                 hit->show();
660                                         }
661                                         if (event->selected()) {
662                                                 event->show_velocity();
663                                         }
664                                 }
665                         }
666                 }
667
668                 _model->read_unlock();
669         }
670
671         if (name_text) {
672                 name_text->raise_to_top();
673         }
674 }
675
676 GhostRegion*
677 MidiRegionView::add_ghost (TimeAxisView& tv)
678 {
679         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(&trackview);
680         CanvasNote* note;
681         assert(rtv);
682
683         double unit_position = _region->position () / samples_per_unit;
684         MidiTimeAxisView* mtv = dynamic_cast<MidiTimeAxisView*>(&tv);
685         MidiGhostRegion* ghost;
686
687         if (mtv && mtv->midi_view()) {
688                 /* if ghost is inserted into midi track, use a dedicated midi ghost canvas group.
689                    this is because it's nice to have midi notes on top of the note lines and
690                    audio waveforms under it.
691                  */
692                 ghost = new MidiGhostRegion (*mtv->midi_view(), trackview, unit_position);
693         }
694         else {
695                 ghost = new MidiGhostRegion (tv, trackview, unit_position);
696         }
697
698         ghost->set_height ();
699         ghost->set_duration (_region->length() / samples_per_unit);
700         ghosts.push_back (ghost);
701
702         for (std::vector<CanvasNoteEvent*>::iterator i = _events.begin(); i != _events.end(); ++i) {
703                 if ((note = dynamic_cast<CanvasNote*>(*i)) != 0) {
704                         ghost->add_note(note);
705                 }
706         }
707
708         ghost->GoingAway.connect (mem_fun(*this, &MidiRegionView::remove_ghost));
709
710         return ghost;
711 }
712
713
714 /** Begin tracking note state for successive calls to add_event
715  */
716 void
717 MidiRegionView::begin_write()
718 {
719         assert(!_active_notes);
720         _active_notes = new CanvasNote*[128];
721         for (unsigned i=0; i < 128; ++i) {
722                 _active_notes[i] = NULL;
723         }
724 }
725
726
727 /** Destroy note state for add_event
728  */
729 void
730 MidiRegionView::end_write()
731 {
732         delete[] _active_notes;
733         _active_notes = NULL;
734         _marked_for_selection.clear();
735 }
736
737
738 /** Resolve an active MIDI note (while recording).
739  */
740 void
741 MidiRegionView::resolve_note(uint8_t note, double end_time)
742 {
743         if (midi_view()->note_mode() != Sustained)
744                 return;
745
746         if (_active_notes && _active_notes[note]) {
747                 _active_notes[note]->property_x2() = trackview.editor.frame_to_pixel((nframes64_t)end_time);
748                 _active_notes[note]->property_outline_what() = (guint32) 0xF; // all edges
749                 _active_notes[note] = NULL;
750         }
751 }
752
753
754 /** Extend active notes to rightmost edge of region (if length is changed)
755  */
756 void
757 MidiRegionView::extend_active_notes()
758 {
759         if (!_active_notes) {
760                 return;
761         }
762
763         for (unsigned i=0; i < 128; ++i) {
764                 if (_active_notes[i]) {
765                         _active_notes[i]->property_x2() = trackview.editor.frame_to_pixel(_region->length());
766                 }
767         }
768 }
769
770
771 /** Add a MIDI note to the view (with duration).
772  *
773  * If in sustained mode, notes with duration 0 will be considered active
774  * notes, and resolve_note should be called when the corresponding note off
775  * event arrives, to properly display the note.
776  */
777 void
778 MidiRegionView::add_note(const boost::shared_ptr<Evoral::Note> note)
779 {
780         assert(note->time() >= 0);
781         assert(midi_view()->note_mode() == Sustained || midi_view()->note_mode() == Percussive);
782         
783         // dont display notes beyond the region bounds
784         if ( note->time() - _region->start() >= _region->length() ||
785                 note->time() <  _region->start() ||
786                 note->note() < midi_stream_view()->lowest_note() ||
787                 note->note() > midi_stream_view()->highest_note() ) {
788                 return;
789         }
790         
791         ArdourCanvas::Group* const group = (ArdourCanvas::Group*)get_canvas_group();
792
793         CanvasNoteEvent* event = 0;
794         
795         const double x = trackview.editor.frame_to_pixel((nframes64_t)note->time() - _region->start());
796         
797         if (midi_view()->note_mode() == Sustained) {
798
799                 const double y1 = midi_stream_view()->note_to_y(note->note());
800                 const double note_endpixel = 
801                         trackview.editor.frame_to_pixel((nframes64_t)note->end_time() - _region->start());
802                 
803                 CanvasNote* ev_rect = new CanvasNote(*this, *group, note);
804                 ev_rect->property_x1() = x;
805                 ev_rect->property_y1() = y1;
806                 if (note->duration() > 0)
807                         ev_rect->property_x2() = note_endpixel;
808                 else
809                         ev_rect->property_x2() = trackview.editor.frame_to_pixel(_region->length());
810                 ev_rect->property_y2() = y1 + floor(midi_stream_view()->note_height());
811
812                 if (note->duration() == 0) {
813
814                         if (_active_notes) {
815                                 assert(note->note() < 128);
816                                 // If this note is already active there's a stuck note,
817                                 // finish the old note rectangle
818                                 if (_active_notes[note->note()]) {
819                                         CanvasNote* const old_rect = _active_notes[note->note()];
820                                         boost::shared_ptr<Evoral::Note> old_note = old_rect->note();
821                                         cerr << "MidiModel: WARNING: Note has duration 0: chan " << old_note->channel()
822                                                 << "note " << (int)old_note->note() << " @ " << old_note->time() << endl;
823                                         /* FIXME: How large to make it?  Make it a diamond? */
824                                         old_rect->property_x2() = old_rect->property_x1() + 2.0;
825                                         old_rect->property_outline_what() = (guint32) 0xF;
826                                 }
827                                 _active_notes[note->note()] = ev_rect;
828                         }
829                         /* outline all but right edge */
830                         ev_rect->property_outline_what() = (guint32) (0x1 & 0x4 & 0x8);
831                 } else {
832                         /* outline all edges */
833                         ev_rect->property_outline_what() = (guint32) 0xF;
834                 }
835
836                 ev_rect->show();
837                 _events.push_back(ev_rect);
838                 event = ev_rect;
839
840                 MidiGhostRegion* gr;
841
842                 for (std::vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
843                         if ((gr = dynamic_cast<MidiGhostRegion*>(*g)) != 0) {
844                                 gr->add_note(ev_rect);
845                         }
846                 }
847
848         } else if (midi_view()->note_mode() == Percussive) {
849
850                 //cerr << "MRV::add_note percussive " << note->note() << " @ " << note->time()
851                 //      << " .. " << note->end_time() << endl;
852
853                 const double diamond_size = midi_stream_view()->note_height() / 2.0;
854                 const double y = midi_stream_view()->note_to_y(note->note()) + ((diamond_size-2) / 4.0);
855
856                 CanvasHit* ev_diamond = new CanvasHit(*this, *group, diamond_size, note);
857                 ev_diamond->move(x, y);
858                 ev_diamond->show();
859                 _events.push_back(ev_diamond);
860                 event = ev_diamond;
861         } else {
862                 event = 0;
863         }
864
865         if (event) {                    
866                 if (_marked_for_selection.find(note) != _marked_for_selection.end()) {
867                         note_selected(event, true);
868                 }
869                 event->on_channel_selection_change(_last_channel_selection);
870         }
871 }
872
873 void
874 MidiRegionView::add_pgm_change(boost::shared_ptr<Evoral::Event> event)
875 {
876         assert(event->time() >= 0);
877         
878         // dont display notes beyond the region bounds
879         if (event->time() - _region->start() >= _region->length() || event->time() <  _region->start()) 
880                 return;
881         
882         ArdourCanvas::Group* const group = (ArdourCanvas::Group*)get_canvas_group();
883         const double x = trackview.editor.frame_to_pixel((nframes64_t)event->time() - _region->start());
884         
885         double height = midi_stream_view()->contents_height();
886         _pgm_changes.push_back(
887                 boost::shared_ptr<CanvasProgramChange>(
888                         new CanvasProgramChange(*this, *group, event, height, x, 1.0)));
889 }
890
891 void
892 MidiRegionView::delete_selection()
893 {
894         assert(_delta_command);
895
896         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
897                 if ((*i)->selected()) {
898                         _delta_command->remove((*i)->note());
899                 }
900         }
901
902         _selection.clear();
903 }
904
905 void
906 MidiRegionView::clear_selection_except(ArdourCanvas::CanvasNoteEvent* ev)
907 {
908         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
909                 if ((*i)->selected() && (*i) != ev) {
910                         (*i)->selected(false);
911                 }
912         }
913
914         _selection.clear();
915 }
916
917 void
918 MidiRegionView::unique_select(ArdourCanvas::CanvasNoteEvent* ev)
919 {
920         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
921                 if ((*i) != ev) {
922                         (*i)->selected(false);
923                 }
924         }
925
926         _selection.clear();
927         _selection.insert(ev);
928
929         if ( ! ev->selected()) {
930                 ev->selected(true);
931         }
932 }
933
934 void
935 MidiRegionView::note_selected(ArdourCanvas::CanvasNoteEvent* ev, bool add)
936 {
937         if ( ! add) {
938                 clear_selection_except(ev);
939         }
940
941         _selection.insert(ev);
942
943         if ( ! ev->selected()) {
944                 ev->selected(true);
945         }
946 }
947
948
949 void
950 MidiRegionView::note_deselected(ArdourCanvas::CanvasNoteEvent* ev, bool add)
951 {
952         if ( ! add) {
953                 clear_selection_except(ev);
954         }
955
956         _selection.erase(ev);
957
958         if (ev->selected()) {
959                 ev->selected(false);
960         }
961 }
962
963
964 void
965 MidiRegionView::update_drag_selection(double x1, double x2, double y1, double y2)
966 {
967         const double last_y = std::min(y1, y2);
968         const double y      = std::max(y1, y2);
969
970         // TODO: Make this faster by storing the last updated selection rect, and only
971         // adjusting things that are in the area that appears/disappeared.
972         // We probably need a tree to be able to find events in O(log(n)) time.
973
974 #ifndef NDEBUG
975         double last_x1 = 0.0;
976 #endif
977
978         if (x1 < x2) {
979                 for (std::vector<CanvasNoteEvent*>::iterator i = _events.begin(); i != _events.end(); ++i) {
980 #ifndef NDEBUG
981                         // Events should always be sorted by increasing x1() here
982                         assert((*i)->x1() >= last_x1);
983                         last_x1 = (*i)->x1();
984 #endif
985                         // Inside rectangle
986                         if ((*i)->x1() >= x1 && (*i)->x1() <= x2 && (*i)->y1() >= last_y && (*i)->y1() <= y) {
987                                 if (!(*i)->selected()) {
988                                         (*i)->selected(true);
989                                         _selection.insert(*i);
990                                 }
991                         // Not inside rectangle
992                         } else if ((*i)->selected()) {
993                                 (*i)->selected(false);
994                                 _selection.erase(*i);
995                         }
996                 }
997         } else {
998                 for (std::vector<CanvasNoteEvent*>::iterator i = _events.begin(); i != _events.end(); ++i) {
999 #ifndef NDEBUG
1000                         // Events should always be sorted by increasing x1() here
1001                         assert((*i)->x1() >= last_x1);
1002                         last_x1 = (*i)->x1();
1003 #endif
1004                         // Inside rectangle
1005                         if ((*i)->x2() <= x1 && (*i)->x2() >= x2 && (*i)->y1() >= last_y && (*i)->y1() <= y) {
1006                                 if (!(*i)->selected()) {
1007                                         (*i)->selected(true);
1008                                         _selection.insert(*i);
1009                                 }
1010                         // Not inside rectangle
1011                         } else if ((*i)->selected()) {
1012                                 (*i)->selected(false);
1013                                 _selection.erase(*i);
1014                         }
1015                 }
1016         }
1017 }
1018
1019
1020 void
1021 MidiRegionView::move_selection(double dx, double dy)
1022 {
1023         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i)
1024                 (*i)->move_event(dx, dy);
1025 }
1026
1027
1028 void
1029 MidiRegionView::note_dropped(CanvasNoteEvent* ev, double dt, uint8_t dnote)
1030 {
1031         // TODO: This would be faster/nicer with a MoveCommand that doesn't need to copy...
1032         if (_selection.find(ev) != _selection.end()) {
1033                 uint8_t lowest_note_in_selection  = midi_stream_view()->lowest_note();
1034                 uint8_t highest_note_in_selection = midi_stream_view()->highest_note();
1035                 uint8_t highest_note_difference = 0;
1036
1037                 // find highest and lowest notes first
1038                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1039                         uint8_t pitch = (*i)->note()->note();
1040                         lowest_note_in_selection  = std::min(lowest_note_in_selection,  pitch);
1041                         highest_note_in_selection = std::max(highest_note_in_selection, pitch);
1042                 }
1043                 
1044                 /*
1045                 cerr << "dnote: " << (int) dnote << endl;
1046                 cerr << "lowest note (streamview): " << int(midi_stream_view()->lowest_note()) 
1047                      << " highest note (streamview): " << int(midi_stream_view()->highest_note()) << endl;
1048                 cerr << "lowest note (selection): " << int(lowest_note_in_selection) << " highest note(selection): " 
1049                      << int(highest_note_in_selection) << endl;
1050                 cerr << "selection size: " << _selection.size() << endl;
1051                 cerr << "Highest note in selection: " << (int) highest_note_in_selection << endl;
1052                 */
1053                 
1054                 // Make sure the note pitch does not exceed the MIDI standard range
1055                 if (dnote <= 127 && (highest_note_in_selection + dnote > 127)) {
1056                         highest_note_difference = highest_note_in_selection - 127;
1057                 }
1058                 
1059                 start_delta_command(_("move notes"));
1060
1061                 for (Selection::iterator i = _selection.begin(); i != _selection.end() ; ) {
1062                         Selection::iterator next = i;
1063                         ++next;
1064
1065                         const boost::shared_ptr<Evoral::Note> copy(new Evoral::Note(*(*i)->note().get()));
1066
1067                         // we need to snap here again in nframes64_t in order to be sample accurate 
1068                         double new_note_time = (*i)->note()->time();
1069                         new_note_time +=  dt;
1070
1071                         // keep notes inside region if dragged beyond left region bound
1072                         if (new_note_time < _region->start()) {                         
1073                                 new_note_time = _region->start();
1074                         }
1075                         
1076                         // since note time is region-absolute but snap_to_frame expects position-relative
1077                         // time we have to coordinate transform back and forth here.
1078                         new_note_time = snap_to_frame(nframes64_t(new_note_time) - _region->start()) + _region->start();
1079                         
1080                         copy->set_time(new_note_time);
1081
1082                         uint8_t original_pitch = (*i)->note()->note();
1083                         uint8_t new_pitch =  original_pitch + dnote - highest_note_difference;
1084                         
1085                         // keep notes in standard midi range
1086                         clamp_0_to_127(new_pitch);
1087                         
1088                         //notes which are dragged beyond the standard midi range snap back to their original place
1089                         if ((original_pitch != 0 && new_pitch == 0) || (original_pitch != 127 && new_pitch == 127)) {
1090                                 new_pitch = original_pitch;
1091                         }
1092
1093                         lowest_note_in_selection  = std::min(lowest_note_in_selection,  new_pitch);
1094                         highest_note_in_selection = std::max(highest_note_in_selection, new_pitch);
1095
1096                         copy->set_note(new_pitch);
1097                         
1098                         command_remove_note(*i);
1099                         command_add_note(copy, true);
1100
1101                         i = next;
1102                 }
1103
1104                 apply_command();
1105                 
1106                 // care about notes being moved beyond the upper/lower bounds on the canvas
1107                 if (lowest_note_in_selection  < midi_stream_view()->lowest_note() ||
1108                    highest_note_in_selection > midi_stream_view()->highest_note()) {
1109                         midi_stream_view()->set_note_range(MidiStreamView::ContentsRange);
1110                 }
1111         }
1112 }
1113
1114 nframes64_t
1115 MidiRegionView::snap_to_frame(double x)
1116 {
1117         PublicEditor &editor = trackview.editor;
1118         // x is region relative
1119         // convert x to global frame
1120         nframes64_t frame = editor.pixel_to_frame(x) + _region->position();
1121         editor.snap_to(frame);
1122         // convert event_frame back to local coordinates relative to position
1123         frame -= _region->position();
1124         return frame;
1125 }
1126
1127 nframes64_t
1128 MidiRegionView::snap_to_frame(nframes64_t x)
1129 {
1130         PublicEditor &editor = trackview.editor;
1131         // x is region relative
1132         // convert x to global frame
1133         nframes64_t frame = x + _region->position();
1134         editor.snap_to(frame);
1135         // convert event_frame back to local coordinates relative to position
1136         frame -= _region->position();
1137         return frame;
1138 }
1139
1140 double
1141 MidiRegionView::snap_to_pixel(double x)
1142 {
1143         return (double) trackview.editor.frame_to_pixel(snap_to_frame(x));
1144 }
1145
1146 double
1147 MidiRegionView::get_position_pixels(void)
1148 {
1149         nframes64_t  region_frame  = get_position();
1150         return trackview.editor.frame_to_pixel(region_frame);
1151 }
1152
1153 void
1154 MidiRegionView::begin_resizing(CanvasNote::NoteEnd note_end)
1155 {
1156         _resize_data.clear();
1157
1158         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1159                 CanvasNote *note = dynamic_cast<CanvasNote *> (*i);
1160
1161                 // only insert CanvasNotes into the map
1162                 if (note) {
1163                         NoteResizeData *resize_data = new NoteResizeData();
1164                         resize_data->canvas_note = note;
1165
1166                         // create a new SimpleRect from the note which will be the resize preview
1167                         SimpleRect *resize_rect =
1168                                 new SimpleRect(
1169                                                 *group,
1170                                                 note->x1(),
1171                                                 note->y1(),
1172                                                 note->x2(),
1173                                                 note->y2());
1174
1175                         // calculate the colors: get the color settings
1176                         uint32_t fill_color =
1177                                 UINT_RGBA_CHANGE_A(
1178                                                 ARDOUR_UI::config()->canvasvar_MidiNoteSelectedOutline.get(),
1179                                                 128);
1180
1181                         // make the resize preview notes more transparent and bright
1182                         fill_color = UINT_INTERPOLATE(fill_color, 0xFFFFFF40, 0.5);
1183
1184                         // calculate color based on note velocity
1185                         resize_rect->property_fill_color_rgba() =
1186                                 UINT_INTERPOLATE(
1187                                         note_fill_color(note->note()->velocity()),
1188                                         fill_color,
1189                                         0.85);
1190
1191                         resize_rect->property_outline_color_rgba() =
1192                                 ARDOUR_UI::config()->canvasvar_MidiNoteSelectedOutline.get();
1193
1194                         resize_data->resize_rect = resize_rect;
1195
1196                         if (note_end == CanvasNote::NOTE_ON) {
1197                                 resize_data->current_x = note->x1();
1198                         } else { // NOTE_OFF
1199                                 resize_data->current_x = note->x2();
1200                         }
1201
1202                         _resize_data.push_back(resize_data);
1203                 }
1204         }
1205 }
1206
1207 void
1208 MidiRegionView::update_resizing(CanvasNote::NoteEnd note_end, double x, bool relative)
1209 {
1210         for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
1211                 SimpleRect     *resize_rect = (*i)->resize_rect;
1212                 CanvasNote     *canvas_note = (*i)->canvas_note;
1213
1214                 const double region_start = get_position_pixels();
1215
1216                 if (relative) {
1217                         (*i)->current_x = (*i)->current_x + x;
1218                 } else {
1219                         // x is in track relative, transform it to region relative
1220                         (*i)->current_x = x - region_start;
1221                 }
1222
1223                 double current_x = (*i)->current_x;
1224
1225                 if (note_end == CanvasNote::NOTE_ON) {
1226                         resize_rect->property_x1() = snap_to_pixel(current_x);
1227                         resize_rect->property_x2() = canvas_note->x2();
1228                 } else {
1229                         resize_rect->property_x2() = snap_to_pixel(current_x);
1230                         resize_rect->property_x1() = canvas_note->x1();
1231                 }
1232         }
1233 }
1234
1235 void
1236 MidiRegionView::commit_resizing(CanvasNote::NoteEnd note_end, double event_x, bool relative)
1237 {
1238         start_delta_command(_("resize notes"));
1239
1240         for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
1241                 CanvasNote*  canvas_note = (*i)->canvas_note;
1242                 SimpleRect*  resize_rect = (*i)->resize_rect;
1243                 double       current_x   = (*i)->current_x;
1244                 const double position    = get_position_pixels();
1245
1246                 if (!relative) {
1247                         // event_x is in track relative, transform it to region relative
1248                         current_x = event_x - position;
1249                 }
1250
1251                 // because snapping works on world coordinates we have to transform current_x
1252                 // to world coordinates before snapping and transform it back afterwards
1253                 nframes64_t current_frame = snap_to_frame(current_x);
1254                 // transform to region start relative
1255                 current_frame += _region->start();
1256                 
1257                 const boost::shared_ptr<Evoral::Note> copy(new Evoral::Note(*(canvas_note->note().get())));
1258
1259                 // resize beginning of note
1260                 if (note_end == CanvasNote::NOTE_ON && current_frame < copy->end_time()) {
1261                         command_remove_note(canvas_note);
1262                         copy->on_event().time() = current_frame;
1263                         command_add_note(copy, _selection.find(canvas_note) != _selection.end());
1264                 }
1265                 // resize end of note
1266                 if (note_end == CanvasNote::NOTE_OFF && current_frame > copy->time()) {
1267                         command_remove_note(canvas_note);
1268                         copy->off_event().time() = current_frame;
1269                         command_add_note(copy, _selection.find(canvas_note) != _selection.end());
1270                 }
1271
1272                 delete resize_rect;
1273                 delete (*i);
1274         }
1275
1276         _resize_data.clear();
1277         apply_command();
1278 }
1279
1280
1281 void
1282 MidiRegionView::change_velocity(uint8_t velocity, bool relative)
1283 {
1284         start_delta_command(_("change velocity"));
1285         for (Selection::iterator i = _selection.begin(); i != _selection.end();) {
1286                 Selection::iterator next = i;
1287                 ++next;
1288
1289                 CanvasNoteEvent *event = *i;
1290                 const boost::shared_ptr<Evoral::Note> copy(new Evoral::Note(*(event->note().get())));
1291
1292                 if (relative) {
1293                         uint8_t new_velocity = copy->velocity() + velocity;
1294                         clamp_0_to_127(new_velocity);
1295                                 
1296                         copy->set_velocity(new_velocity);
1297                 } else { // absolute
1298                         copy->set_velocity(velocity);                   
1299                 }
1300                 
1301                 command_remove_note(event);
1302                 command_add_note(copy, true);
1303                 
1304                 i = next;
1305         }
1306         
1307         apply_command();
1308 }
1309
1310 void
1311 MidiRegionView::change_channel(uint8_t channel)
1312 {
1313         start_delta_command(_("change channel"));
1314         for (Selection::iterator i = _selection.begin(); i != _selection.end();) {
1315                 Selection::iterator next = i;
1316                 ++next;
1317
1318                 CanvasNoteEvent *event = *i;
1319                 const boost::shared_ptr<Evoral::Note> copy(new Evoral::Note(*(event->note().get())));
1320
1321                 copy->set_channel(channel);
1322                 
1323                 command_remove_note(event);
1324                 command_add_note(copy, true);
1325                 
1326                 i = next;
1327         }
1328         
1329         apply_command();
1330 }
1331
1332
1333 void
1334 MidiRegionView::note_entered(ArdourCanvas::CanvasNoteEvent* ev)
1335 {
1336         if (ev->note() && _mouse_state == EraseTouchDragging) {
1337                 start_delta_command(_("note entered"));
1338                 ev->selected(true);
1339                 _delta_command->remove(ev->note());
1340         } else if (_mouse_state == SelectTouchDragging) {
1341                 note_selected(ev, true);
1342         }
1343 }
1344
1345
1346 void
1347 MidiRegionView::switch_source(boost::shared_ptr<Source> src)
1348 {
1349         boost::shared_ptr<MidiSource> msrc = boost::dynamic_pointer_cast<MidiSource>(src);
1350         if (msrc)
1351                 display_model(msrc->model());
1352 }
1353
1354 void
1355 MidiRegionView::set_frame_color()
1356 {
1357         if (frame) {
1358                 if (_selected && should_show_selection) {
1359                         frame->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectedFrameBase.get();
1360                 } else {
1361                         frame->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MidiFrameBase.get();
1362                 }
1363         }
1364 }
1365
1366 void 
1367 MidiRegionView::midi_channel_mode_changed(ChannelMode mode, uint16_t mask)
1368 {
1369         switch (mode) {
1370         case AllChannels:
1371         case FilterChannels:
1372                 _force_channel = -1;
1373                 break;
1374         case ForceChannel:
1375                 _force_channel = mask;
1376                 mask = 0xFFFF; // Show all notes as active (below)
1377         };
1378
1379         // Update notes for selection
1380         for (std::vector<ArdourCanvas::CanvasNoteEvent*>::iterator i = _events.begin();
1381                         i != _events.end(); ++i) {
1382                 (*i)->on_channel_selection_change(mask);
1383         }
1384
1385         _last_channel_selection = mask;
1386 }
1387