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