refactor Push2 GUI into modular "layouts" that encapsulate a given screen, its drawin...
[ardour.git] / libs / surfaces / push2 / push2.cc
1 /*
2   Copyright (C) 2016 Paul Davis
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12   GNU General Public License for more details.
13
14   You should have received a copy of the GNU General Public License
15   along with this program; if not, write to the Free Software
16   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include "pbd/compose.h"
20 #include "pbd/convert.h"
21 #include "pbd/debug.h"
22 #include "pbd/failed_constructor.h"
23 #include "pbd/file_utils.h"
24 #include "pbd/search_path.h"
25 #include "pbd/enumwriter.h"
26
27 #include "midi++/parser.h"
28 #include "timecode/time.h"
29 #include "timecode/bbt_time.h"
30
31 #include "ardour/async_midi_port.h"
32 #include "ardour/audioengine.h"
33 #include "ardour/debug.h"
34 #include "ardour/filesystem_paths.h"
35 #include "ardour/midiport_manager.h"
36 #include "ardour/midi_track.h"
37 #include "ardour/midi_port.h"
38 #include "ardour/session.h"
39 #include "ardour/tempo.h"
40
41 #include "push2.h"
42 #include "gui.h"
43 #include "menu.h"
44
45 #include "i18n.h"
46
47 using namespace ARDOUR;
48 using namespace std;
49 using namespace PBD;
50 using namespace Glib;
51 using namespace ArdourSurface;
52
53 #include "pbd/abstract_ui.cc" // instantiate template
54
55 const int Push2::cols = 960;
56 const int Push2::rows = 160;
57 const int Push2::pixels_per_row = 1024;
58
59 #define ABLETON 0x2982
60 #define PUSH2   0x1967
61
62 __attribute__((constructor)) static void
63 register_enums ()
64 {
65         EnumWriter& enum_writer (EnumWriter::instance());
66         vector<int> i;
67         vector<string> s;
68
69         MusicalMode::Type mode;
70
71 #define REGISTER(e) enum_writer.register_distinct (typeid(e).name(), i, s); i.clear(); s.clear()
72 #define REGISTER_CLASS_ENUM(t,e) i.push_back (t::e); s.push_back (#e)
73
74         REGISTER_CLASS_ENUM (MusicalMode,Dorian);
75         REGISTER_CLASS_ENUM (MusicalMode, IonianMajor);
76         REGISTER_CLASS_ENUM (MusicalMode, Minor);
77         REGISTER_CLASS_ENUM (MusicalMode, HarmonicMinor);
78         REGISTER_CLASS_ENUM (MusicalMode, MelodicMinorAscending);
79         REGISTER_CLASS_ENUM (MusicalMode, MelodicMinorDescending);
80         REGISTER_CLASS_ENUM (MusicalMode, Phrygian);
81         REGISTER_CLASS_ENUM (MusicalMode, Lydian);
82         REGISTER_CLASS_ENUM (MusicalMode, Mixolydian);
83         REGISTER_CLASS_ENUM (MusicalMode, Aeolian);
84         REGISTER_CLASS_ENUM (MusicalMode, Locrian);
85         REGISTER_CLASS_ENUM (MusicalMode, PentatonicMajor);
86         REGISTER_CLASS_ENUM (MusicalMode, PentatonicMinor);
87         REGISTER_CLASS_ENUM (MusicalMode, Chromatic);
88         REGISTER_CLASS_ENUM (MusicalMode, BluesScale);
89         REGISTER_CLASS_ENUM (MusicalMode, NeapolitanMinor);
90         REGISTER_CLASS_ENUM (MusicalMode, NeapolitanMajor);
91         REGISTER_CLASS_ENUM (MusicalMode, Oriental);
92         REGISTER_CLASS_ENUM (MusicalMode, DoubleHarmonic);
93         REGISTER_CLASS_ENUM (MusicalMode, Enigmatic);
94         REGISTER_CLASS_ENUM (MusicalMode, Hirajoshi);
95         REGISTER_CLASS_ENUM (MusicalMode, HungarianMinor);
96         REGISTER_CLASS_ENUM (MusicalMode, HungarianMajor);
97         REGISTER_CLASS_ENUM (MusicalMode, Kumoi);
98         REGISTER_CLASS_ENUM (MusicalMode, Iwato);
99         REGISTER_CLASS_ENUM (MusicalMode, Hindu);
100         REGISTER_CLASS_ENUM (MusicalMode, Spanish8Tone);
101         REGISTER_CLASS_ENUM (MusicalMode, Pelog);
102         REGISTER_CLASS_ENUM (MusicalMode, HungarianGypsy);
103         REGISTER_CLASS_ENUM (MusicalMode, Overtone);
104         REGISTER_CLASS_ENUM (MusicalMode, LeadingWholeTone);
105         REGISTER_CLASS_ENUM (MusicalMode, Arabian);
106         REGISTER_CLASS_ENUM (MusicalMode, Balinese);
107         REGISTER_CLASS_ENUM (MusicalMode, Gypsy);
108         REGISTER_CLASS_ENUM (MusicalMode, Mohammedan);
109         REGISTER_CLASS_ENUM (MusicalMode, Javanese);
110         REGISTER_CLASS_ENUM (MusicalMode, Persian);
111         REGISTER_CLASS_ENUM (MusicalMode, Algerian);
112         REGISTER (mode);
113 }
114
115 Push2::Push2 (ARDOUR::Session& s)
116         : ControlProtocol (s, string (X_("Ableton Push 2")))
117         , AbstractUI<Push2Request> (name())
118         , handle (0)
119         , device_buffer (0)
120         , frame_buffer (Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, cols, rows))
121         , _modifier_state (None)
122         , splash_start (0)
123         , _current_layout (0)
124         , drawn_layout (0)
125         , connection_state (ConnectionState (0))
126         , gui (0)
127         , _mode (MusicalMode::IonianMajor)
128         , _scale_root (0)
129         , _root_octave (3)
130         , _in_key (true)
131         , octave_shift (0)
132         , percussion (false)
133 {
134         context = Cairo::Context::create (frame_buffer);
135
136         build_pad_table ();
137         build_maps ();
138
139         /* master cannot be removed, so no need to connect to going-away signal */
140         master = session->master_out ();
141
142         if (open ()) {
143                 throw failed_constructor ();
144         }
145
146         ControlProtocol::StripableSelectionChanged.connect (selection_connection, MISSING_INVALIDATOR, boost::bind (&Push2::stripable_selection_change, this, _1), this);
147
148         /* catch current selection, if any */
149         {
150                 StripableNotificationListPtr sp (new StripableNotificationList (ControlProtocol::last_selected()));
151                 stripable_selection_change (sp);
152         }
153
154         /* catch arrival and departure of Push2 itself */
155         ARDOUR::AudioEngine::instance()->PortRegisteredOrUnregistered.connect (port_reg_connection, MISSING_INVALIDATOR, boost::bind (&Push2::port_registration_handler, this), this);
156
157         /* Catch port connections and disconnections */
158         ARDOUR::AudioEngine::instance()->PortConnectedOrDisconnected.connect (port_connection, MISSING_INVALIDATOR, boost::bind (&Push2::connection_handler, this, _1, _2, _3, _4, _5), this);
159
160         /* ports might already be there */
161         port_registration_handler ();
162 }
163
164 Push2::~Push2 ()
165 {
166         stop ();
167 }
168
169 void
170 Push2::port_registration_handler ()
171 {
172         if (_async_in->connected() && _async_out->connected()) {
173                 /* don't waste cycles here */
174                 return;
175         }
176
177         string input_port_name = X_("Ableton Push 2 MIDI 1 in");
178         string output_port_name = X_("Ableton Push 2 MIDI 1 out");
179         vector<string> in;
180         vector<string> out;
181
182         AudioEngine::instance()->get_ports (string_compose (".*%1", input_port_name), DataType::MIDI, PortFlags (IsPhysical|IsOutput), in);
183         AudioEngine::instance()->get_ports (string_compose (".*%1", output_port_name), DataType::MIDI, PortFlags (IsPhysical|IsInput), out);
184
185         if (!in.empty() && !out.empty()) {
186                 cerr << "Push2: both ports found\n";
187                 cerr << "\tconnecting to " << in.front() <<  " + " << out.front() << endl;
188                 if (!_async_in->connected()) {
189                         AudioEngine::instance()->connect (_async_in->name(), in.front());
190                 }
191                 if (!_async_out->connected()) {
192                         AudioEngine::instance()->connect (_async_out->name(), out.front());
193                 }
194         }
195 }
196
197 int
198 Push2::open ()
199 {
200         int err;
201
202         if (handle) {
203                 /* already open */
204                 return 0;
205         }
206
207         if ((handle = libusb_open_device_with_vid_pid (NULL, ABLETON, PUSH2)) == 0) {
208                 return -1;
209         }
210
211         if ((err = libusb_claim_interface (handle, 0x00))) {
212                 return -1;
213         }
214
215         device_frame_buffer = new uint16_t[rows*pixels_per_row];
216
217         memset (device_frame_buffer, 0, sizeof (uint16_t) * rows * pixels_per_row);
218
219         frame_header[0] = 0xef;
220         frame_header[1] = 0xcd;
221         frame_header[2] = 0xab;
222         frame_header[3] = 0x89;
223         memset (&frame_header[4], 0, 12);
224
225         /* setup ports */
226
227         _async_in  = AudioEngine::instance()->register_input_port (DataType::MIDI, X_("Push 2 in"), true);
228         _async_out = AudioEngine::instance()->register_output_port (DataType::MIDI, X_("Push 2 out"), true);
229
230         if (_async_in == 0 || _async_out == 0) {
231                 return -1;
232         }
233
234         /* We do not add our ports to the input/output bundles because we don't
235          * want users wiring them by hand. They could use JACK tools if they
236          * really insist on that.
237          */
238
239         _input_port = boost::dynamic_pointer_cast<AsyncMIDIPort>(_async_in).get();
240         _output_port = boost::dynamic_pointer_cast<AsyncMIDIPort>(_async_out).get();
241
242         /* Create a shadow port where, depending on the state of the surface,
243          * we will make pad note on/off events appear. The surface code will
244          * automatically this port to the first selected MIDI track.
245          */
246
247         boost::dynamic_pointer_cast<AsyncMIDIPort>(_async_in)->add_shadow_port (string_compose (_("%1 Pads"), X_("Push 2")), boost::bind (&Push2::pad_filter, this, _1, _2));
248         boost::shared_ptr<MidiPort> shadow_port = boost::dynamic_pointer_cast<AsyncMIDIPort>(_async_in)->shadow_port();
249
250         if (shadow_port) {
251
252                 _output_bundle.reset (new ARDOUR::Bundle (_("Push 2 Pads"), false));
253
254                 _output_bundle->add_channel (
255                         shadow_port->name(),
256                         ARDOUR::DataType::MIDI,
257                         session->engine().make_port_name_non_relative (shadow_port->name())
258                         );
259         }
260
261         session->BundleAddedOrRemoved ();
262
263         connect_to_parser ();
264
265         mix_layout = new MixLayout (*this, *session, context);
266         scale_layout = new ScaleLayout (*this, *session, context);
267         _current_layout = mix_layout;
268
269         return 0;
270 }
271
272 list<boost::shared_ptr<ARDOUR::Bundle> >
273 Push2::bundles ()
274 {
275         list<boost::shared_ptr<ARDOUR::Bundle> > b;
276
277         if (_output_bundle) {
278                 b.push_back (_output_bundle);
279         }
280
281         return b;
282 }
283
284 int
285 Push2::close ()
286 {
287         init_buttons (false);
288
289         /* wait for button data to be flushed */
290         AsyncMIDIPort* asp;
291         asp = dynamic_cast<AsyncMIDIPort*> (_output_port);
292         asp->drain (10000, 500000);
293
294         AudioEngine::instance()->unregister_port (_async_in);
295         AudioEngine::instance()->unregister_port (_async_out);
296
297         _async_in.reset ((ARDOUR::Port*) 0);
298         _async_out.reset ((ARDOUR::Port*) 0);
299         _input_port = 0;
300         _output_port = 0;
301
302         vblank_connection.disconnect ();
303         periodic_connection.disconnect ();
304         session_connections.drop_connections ();
305
306         if (handle) {
307                 libusb_release_interface (handle, 0x00);
308                 libusb_close (handle);
309                 handle = 0;
310         }
311
312         delete [] device_frame_buffer;
313         device_frame_buffer = 0;
314
315         return 0;
316 }
317
318 void
319 Push2::init_buttons (bool startup)
320 {
321         /* This is a list of buttons that we want lit because they do something
322            in ardour related (loosely, sometimes) to their illuminated label.
323         */
324
325         ButtonID buttons[] = { Mute, Solo, Master, Up, Right, Left, Down, Note, Session, Mix, AddTrack, Delete, Undo,
326                                Metronome, Shift, Select, Play, RecordEnable, Automate, Repeat, Note, Session, DoubleLoop,
327                                Quantize, Duplicate, Browse, PageRight, PageLeft, OctaveUp, OctaveDown, Layout, Scale
328         };
329
330         for (size_t n = 0; n < sizeof (buttons) / sizeof (buttons[0]); ++n) {
331                 Button* b = id_button_map[buttons[n]];
332
333                 if (startup) {
334                         b->set_color (LED::White);
335                 } else {
336                         b->set_color (LED::Black);
337                 }
338                 b->set_state (LED::OneShot24th);
339                 write (b->state_msg());
340         }
341
342         /* Strip buttons should all be off (black) by default. They will change
343          * color to reflect various conditions
344          */
345
346         ButtonID strip_buttons[] = { Upper1, Upper2, Upper3, Upper4, Upper5, Upper6, Upper7, Upper8,
347                                      Lower1, Lower2, Lower3, Lower4, Lower5, Lower6, Lower7, Lower8, };
348
349         for (size_t n = 0; n < sizeof (strip_buttons) / sizeof (strip_buttons[0]); ++n) {
350                 Button* b = id_button_map[strip_buttons[n]];
351
352                 b->set_color (LED::Black);
353                 b->set_state (LED::OneShot24th);
354                 write (b->state_msg());
355         }
356
357         if (startup) {
358
359                 /* all other buttons are off (black) */
360
361                 ButtonID off_buttons[] = { TapTempo, Setup, User, Stop, Convert, New, FixedLength,
362                                            Fwd32ndT, Fwd32nd, Fwd16thT, Fwd16th, Fwd8thT, Fwd8th, Fwd4trT, Fwd4tr,
363                                            Accent, Note, Session,  };
364
365                 for (size_t n = 0; n < sizeof (off_buttons) / sizeof (off_buttons[0]); ++n) {
366                         Button* b = id_button_map[off_buttons[n]];
367
368                         b->set_color (LED::Black);
369                         b->set_state (LED::OneShot24th);
370                         write (b->state_msg());
371                 }
372         }
373
374         if (!startup) {
375                 for (NNPadMap::iterator pi = nn_pad_map.begin(); pi != nn_pad_map.end(); ++pi) {
376                         Pad* pad = pi->second;
377
378                         pad->set_color (LED::Black);
379                         pad->set_state (LED::OneShot24th);
380                         write (pad->state_msg());
381                 }
382         }
383 }
384
385 bool
386 Push2::probe ()
387 {
388         libusb_device_handle *h;
389         libusb_init (NULL);
390
391         if ((h = libusb_open_device_with_vid_pid (NULL, ABLETON, PUSH2)) == 0) {
392                 DEBUG_TRACE (DEBUG::Push2, "no Push2 device found\n");
393                 return false;
394         }
395
396         libusb_close (h);
397         DEBUG_TRACE (DEBUG::Push2, "Push2 device located\n");
398         return true;
399 }
400
401 void*
402 Push2::request_factory (uint32_t num_requests)
403 {
404         /* AbstractUI<T>::request_buffer_factory() is a template method only
405            instantiated in this source module. To provide something visible for
406            use in the interface/descriptor, we have this static method that is
407            template-free.
408         */
409         return request_buffer_factory (num_requests);
410 }
411
412 void
413 Push2::do_request (Push2Request * req)
414 {
415         DEBUG_TRACE (DEBUG::Push2, string_compose ("doing request type %1\n", req->type));
416         if (req->type == CallSlot) {
417
418                 call_slot (MISSING_INVALIDATOR, req->the_slot);
419
420         } else if (req->type == Quit) {
421
422                 stop ();
423         }
424 }
425
426 int
427 Push2::stop ()
428 {
429         BaseUI::quit ();
430         close ();
431         return 0;
432 }
433
434 /** render host-side frame buffer (a Cairo ImageSurface) to the current
435  * device-side frame buffer. The device frame buffer will be pushed to the
436  * device on the next call to vblank()
437  */
438
439 int
440 Push2::blit_to_device_frame_buffer ()
441 {
442         /* ensure that all drawing has been done before we fetch pixel data */
443
444         frame_buffer->flush ();
445
446         const int stride = 3840; /* bytes per row for Cairo::FORMAT_ARGB32 */
447         const uint8_t* data = frame_buffer->get_data ();
448
449         /* fill frame buffer (320kB) */
450
451         uint16_t* fb = (uint16_t*) device_frame_buffer;
452
453         for (int row = 0; row < rows; ++row) {
454
455                 const uint8_t* dp = data + row * stride;
456
457                 for (int col = 0; col < cols; ++col) {
458
459                         /* fetch r, g, b (range 0..255). Ignore alpha */
460
461                         const int r = (*((const uint32_t*)dp) >> 16) & 0xff;
462                         const int g = (*((const uint32_t*)dp) >> 8) & 0xff;
463                         const int b = *((const uint32_t*)dp) & 0xff;
464
465                         /* convert to 5 bits, 6 bits, 5 bits, respectively */
466                         /* generate 16 bit BGB565 value */
467
468                         *fb++ = (r >> 3) | ((g & 0xfc) << 3) | ((b & 0xf8) << 8);
469
470                         /* the push2 docs state that we should xor the pixel
471                          * data. Doing so doesn't work correctly, and not doing
472                          * so seems to work fine (colors roughly match intended
473                          * values).
474                          */
475
476                         dp += 4;
477                 }
478
479                 /* skip 128 bytes to next line. This is filler, used to avoid line borders occuring in the middle of 512
480                    byte USB buffers
481                 */
482
483                 fb += 64; /* 128 bytes = 64 int16_t */
484         }
485
486         return 0;
487 }
488
489 bool
490 Push2::redraw ()
491 {
492         if (splash_start) {
493
494                 /* display splash for 3 seconds */
495
496                 if (get_microseconds() - splash_start > 3000000) {
497                         splash_start = 0;
498                 } else {
499                         return false;
500                 }
501         }
502
503         Glib::Threads::Mutex::Lock lm (layout_lock, Glib::Threads::TRY_LOCK);
504
505         if (!lm.locked()) {
506                 /* can't get layout, no re-render needed */
507                 return false;
508         }
509
510         bool render_needed = false;
511
512         if (drawn_layout != _current_layout) {
513                 render_needed = true;
514         }
515
516         bool dirty = _current_layout->redraw (context);
517         drawn_layout = _current_layout;
518
519         return dirty || render_needed;
520 }
521
522 bool
523 Push2::vblank ()
524 {
525         int transferred = 0;
526         const int timeout_msecs = 1000;
527         int err;
528
529         if ((err = libusb_bulk_transfer (handle, 0x01, frame_header, sizeof (frame_header), &transferred, timeout_msecs))) {
530                 return false;
531         }
532
533         if (redraw()) {
534                 /* things changed */
535                 blit_to_device_frame_buffer ();
536         }
537
538         if ((err = libusb_bulk_transfer (handle, 0x01, (uint8_t*) device_frame_buffer , 2 * rows * pixels_per_row, &transferred, timeout_msecs))) {
539                 return false;
540         }
541
542         return true;
543 }
544
545 int
546 Push2::set_active (bool yn)
547 {
548         DEBUG_TRACE (DEBUG::Push2, string_compose("Push2Protocol::set_active init with yn: '%1'\n", yn));
549
550         if (yn == active()) {
551                 return 0;
552         }
553
554         if (yn) {
555
556                 /* start event loop */
557
558                 BaseUI::run ();
559
560                 if (open ()) {
561                         DEBUG_TRACE (DEBUG::Push2, "device open failed\n");
562                         close ();
563                         return -1;
564                 }
565
566                 /* Connect input port to event loop */
567
568                 AsyncMIDIPort* asp;
569
570                 asp = dynamic_cast<AsyncMIDIPort*> (_input_port);
571                 asp->xthread().set_receive_handler (sigc::bind (sigc::mem_fun (this, &Push2::midi_input_handler), _input_port));
572                 asp->xthread().attach (main_loop()->get_context());
573
574                 connect_session_signals ();
575
576                 /* set up periodic task used to push a frame buffer to the
577                  * device (25fps). The device can handle 60fps, but we don't
578                  * need that frame rate.
579                  */
580
581                 Glib::RefPtr<Glib::TimeoutSource> vblank_timeout = Glib::TimeoutSource::create (40); // milliseconds
582                 vblank_connection = vblank_timeout->connect (sigc::mem_fun (*this, &Push2::vblank));
583                 vblank_timeout->attach (main_loop()->get_context());
584
585
586                 Glib::RefPtr<Glib::TimeoutSource> periodic_timeout = Glib::TimeoutSource::create (1000); // milliseconds
587                 periodic_connection = periodic_timeout->connect (sigc::mem_fun (*this, &Push2::periodic));
588                 periodic_timeout->attach (main_loop()->get_context());
589
590                 init_buttons (true);
591                 init_touch_strip ();
592                 set_pad_scale (_scale_root, _root_octave, _mode, _in_key);
593                 splash ();
594
595
596         } else {
597
598                 stop ();
599
600         }
601
602         ControlProtocol::set_active (yn);
603
604         DEBUG_TRACE (DEBUG::Push2, string_compose("Push2Protocol::set_active done with yn: '%1'\n", yn));
605
606         return 0;
607 }
608
609 void
610 Push2::init_touch_strip ()
611 {
612         MidiByteArray msg (9, 0xf0, 0x00, 0x21, 0x1d, 0x01, 0x01, 0x17, 0x00, 0xf7);
613         /* flags are the final byte (ignore end-of-sysex */
614
615         /* show bar, not point
616            autoreturn to center
617            bar starts at center
618         */
619         msg[7] = (1<<4) | (1<<5) | (1<<6);
620         write (msg);
621 }
622
623 void
624 Push2::write (const MidiByteArray& data)
625 {
626         /* immediate delivery */
627         _output_port->write (&data[0], data.size(), 0);
628 }
629
630 bool
631 Push2::midi_input_handler (IOCondition ioc, MIDI::Port* port)
632 {
633         if (ioc & ~IO_IN) {
634                 DEBUG_TRACE (DEBUG::Push2, "MIDI port closed\n");
635                 return false;
636         }
637
638         if (ioc & IO_IN) {
639
640                 // DEBUG_TRACE (DEBUG::Push2, string_compose ("something happend on  %1\n", port->name()));
641
642                 AsyncMIDIPort* asp = dynamic_cast<AsyncMIDIPort*>(port);
643                 if (asp) {
644                         asp->clear ();
645                 }
646
647                 //DEBUG_TRACE (DEBUG::Push2, string_compose ("data available on %1\n", port->name()));
648                 framepos_t now = AudioEngine::instance()->sample_time();
649                 port->parse (now);
650         }
651
652         return true;
653 }
654
655 bool
656 Push2::periodic ()
657 {
658         return true;
659 }
660
661 void
662 Push2::connect_to_parser ()
663 {
664         DEBUG_TRACE (DEBUG::Push2, string_compose ("Connecting to signals on port %2\n", _input_port->name()));
665
666         MIDI::Parser* p = _input_port->parser();
667
668         /* Incoming sysex */
669         p->sysex.connect_same_thread (*this, boost::bind (&Push2::handle_midi_sysex, this, _1, _2, _3));
670         /* V-Pot messages are Controller */
671         p->controller.connect_same_thread (*this, boost::bind (&Push2::handle_midi_controller_message, this, _1, _2));
672         /* Button messages are NoteOn */
673         p->note_on.connect_same_thread (*this, boost::bind (&Push2::handle_midi_note_on_message, this, _1, _2));
674         /* Button messages are NoteOn but libmidi++ sends note-on w/velocity = 0 as note-off so catch them too */
675         p->note_off.connect_same_thread (*this, boost::bind (&Push2::handle_midi_note_on_message, this, _1, _2));
676         /* Fader messages are Pitchbend */
677         p->channel_pitchbend[0].connect_same_thread (*this, boost::bind (&Push2::handle_midi_pitchbend_message, this, _1, _2));
678 }
679
680 void
681 Push2::handle_midi_sysex (MIDI::Parser&, MIDI::byte* raw_bytes, size_t sz)
682 {
683         DEBUG_TRACE (DEBUG::Push2, string_compose ("Sysex, %1 bytes\n", sz));
684 }
685
686 void
687 Push2::handle_midi_controller_message (MIDI::Parser&, MIDI::EventTwoBytes* ev)
688 {
689         DEBUG_TRACE (DEBUG::Push2, string_compose ("CC %1 (value %2)\n", (int) ev->controller_number, (int) ev->value));
690
691         CCButtonMap::iterator b = cc_button_map.find (ev->controller_number);
692
693         if (ev->value) {
694                 /* any press cancels any pending long press timeouts */
695                 for (set<ButtonID>::iterator x = buttons_down.begin(); x != buttons_down.end(); ++x) {
696                         Button* bb = id_button_map[*x];
697                         bb->timeout_connection.disconnect ();
698                 }
699         }
700
701         if (b != cc_button_map.end()) {
702
703                 Button* button = b->second;
704
705                 if (ev->value) {
706                         buttons_down.insert (button->id);
707                         start_press_timeout (*button, button->id);
708                 } else {
709                         buttons_down.erase (button->id);
710                         button->timeout_connection.disconnect ();
711                 }
712
713
714                 set<ButtonID>::iterator c = consumed.find (button->id);
715
716                 if (c == consumed.end()) {
717                         if (ev->value == 0) {
718                                 (this->*button->release_method)();
719                         } else {
720                                 (this->*button->press_method)();
721                         }
722                 } else {
723                         DEBUG_TRACE (DEBUG::Push2, "button was consumed, ignored\n");
724                         consumed.erase (c);
725                 }
726
727         } else {
728
729                 /* encoder/vpot */
730
731                 int delta = ev->value;
732
733                 if (delta > 63) {
734                         delta = -(128 - delta);
735                 }
736
737                 switch (ev->controller_number) {
738                 case 71:
739                         _current_layout->strip_vpot (0, delta);
740                         break;
741                 case 72:
742                         _current_layout->strip_vpot (1, delta);
743                         break;
744                 case 73:
745                         _current_layout->strip_vpot (2, delta);
746                         break;
747                 case 74:
748                         _current_layout->strip_vpot (3, delta);
749                         break;
750                 case 75:
751                         _current_layout->strip_vpot (4, delta);
752                         break;
753                 case 76:
754                         _current_layout->strip_vpot (5, delta);
755                         break;
756                 case 77:
757                         _current_layout->strip_vpot (6, delta);
758                         break;
759                 case 78:
760                         _current_layout->strip_vpot (7, delta);
761                         break;
762
763                         /* left side pair */
764                 case 14:
765                         other_vpot (8, delta);
766                         break;
767                 case 15:
768                         other_vpot (1, delta);
769                         break;
770
771                         /* right side */
772                 case 79:
773                         other_vpot (2, delta);
774                         break;
775                 }
776         }
777 }
778
779 void
780 Push2::handle_midi_note_on_message (MIDI::Parser& parser, MIDI::EventTwoBytes* ev)
781 {
782         DEBUG_TRACE (DEBUG::Push2, string_compose ("Note On %1 (velocity %2)\n", (int) ev->note_number, (int) ev->velocity));
783
784         if (ev->velocity == 0) {
785                 handle_midi_note_off_message (parser, ev);
786                 return;
787         }
788
789         switch (ev->note_number) {
790         case 0:
791                 _current_layout->strip_vpot_touch (0, ev->velocity > 64);
792                 break;
793         case 1:
794                 _current_layout->strip_vpot_touch (1, ev->velocity > 64);
795                 break;
796         case 2:
797                 _current_layout->strip_vpot_touch (2, ev->velocity > 64);
798                 break;
799         case 3:
800                 _current_layout->strip_vpot_touch (3, ev->velocity > 64);
801                 break;
802         case 4:
803                 _current_layout->strip_vpot_touch (4, ev->velocity > 64);
804                 break;
805         case 5:
806                 _current_layout->strip_vpot_touch (5, ev->velocity > 64);
807                 break;
808         case 6:
809                 _current_layout->strip_vpot_touch (6, ev->velocity > 64);
810                 break;
811         case 7:
812                 _current_layout->strip_vpot_touch (7, ev->velocity > 64);
813                 break;
814
815                 /* left side */
816         case 10:
817                 other_vpot_touch (0, ev->velocity > 64);
818                 break;
819         case 9:
820                 other_vpot_touch (1, ev->velocity > 64);
821                 break;
822
823                 /* right side */
824         case 8:
825                 other_vpot_touch (3, ev->velocity > 64);
826                 break;
827
828                 /* touch strip */
829         case 12:
830                 if (ev->velocity < 64) {
831                         transport_stop ();
832                 }
833                 break;
834         }
835
836         if (ev->note_number < 11) {
837                 return;
838         }
839
840         /* Pad */
841
842         NNPadMap::iterator pi = nn_pad_map.find (ev->note_number);
843
844         if (pi == nn_pad_map.end()) {
845                 return;
846         }
847
848         Pad* pad = pi->second;
849
850         if (pad->do_when_pressed == Pad::FlashOn) {
851                 pad->set_color (LED::White);
852                 pad->set_state (LED::OneShot24th);
853                 write (pad->state_msg());
854         } else if (pad->do_when_pressed == Pad::FlashOff) {
855                 pad->set_color (LED::Black);
856                 pad->set_state (LED::OneShot24th);
857                 write (pad->state_msg());
858         }
859 }
860
861 void
862 Push2::handle_midi_note_off_message (MIDI::Parser&, MIDI::EventTwoBytes* ev)
863 {
864         DEBUG_TRACE (DEBUG::Push2, string_compose ("Note Off %1 (velocity %2)\n", (int) ev->note_number, (int) ev->velocity));
865
866         if (ev->note_number < 11) {
867                 /* theoretically related to encoder touch start/end, but
868                  * actually they send note on with two different velocity
869                  * values (127 & 64).
870                  */
871                 return;
872         }
873
874         NNPadMap::iterator pi = nn_pad_map.find (ev->note_number);
875
876         if (pi == nn_pad_map.end()) {
877                 return;
878         }
879
880         Pad* pad = pi->second;
881
882         if (pad->do_when_pressed == Pad::FlashOn) {
883                 pad->set_color (LED::Black);
884                 pad->set_state (LED::OneShot24th);
885                 write (pad->state_msg());
886         } else if (pad->do_when_pressed == Pad::FlashOff) {
887                 pad->set_color (pad->perma_color);
888                 pad->set_state (LED::OneShot24th);
889                 write (pad->state_msg());
890         }
891 }
892
893 void
894 Push2::handle_midi_pitchbend_message (MIDI::Parser&, MIDI::pitchbend_t pb)
895 {
896         if (!session) {
897                 return;
898         }
899
900         float speed;
901
902         /* range of +1 .. -1 */
903         speed = ((int32_t) pb - 8192) / 8192.0;
904         /* convert to range of +3 .. -3 */
905         session->request_transport_speed (speed * 3.0);
906 }
907
908 void
909 Push2::thread_init ()
910 {
911         struct sched_param rtparam;
912
913         pthread_set_name (event_loop_name().c_str());
914
915         PBD::notify_event_loops_about_thread_creation (pthread_self(), event_loop_name(), 2048);
916         ARDOUR::SessionEvent::create_per_thread_pool (event_loop_name(), 128);
917
918         memset (&rtparam, 0, sizeof (rtparam));
919         rtparam.sched_priority = 9; /* XXX should be relative to audio (JACK) thread */
920
921         if (pthread_setschedparam (pthread_self(), SCHED_FIFO, &rtparam) != 0) {
922                 // do we care? not particularly.
923         }
924 }
925
926 void
927 Push2::connect_session_signals()
928 {
929         // receive routes added
930         //session->RouteAdded.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&MackieControlProtocol::notify_routes_added, this, _1), this);
931         // receive VCAs added
932         //session->vca_manager().VCAAdded.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&Push2::notify_vca_added, this, _1), this);
933
934         // receive record state toggled
935         session->RecordStateChanged.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&Push2::notify_record_state_changed, this), this);
936         // receive transport state changed
937         session->TransportStateChange.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&Push2::notify_transport_state_changed, this), this);
938         session->TransportLooped.connect (session_connections, MISSING_INVALIDATOR, boost::bind (&Push2::notify_loop_state_changed, this), this);
939         // receive punch-in and punch-out
940         Config->ParameterChanged.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&Push2::notify_parameter_changed, this, _1), this);
941         session->config.ParameterChanged.connect (session_connections, MISSING_INVALIDATOR, boost::bind (&Push2::notify_parameter_changed, this, _1), this);
942         // receive rude solo changed
943         session->SoloActive.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&Push2::notify_solo_active_changed, this, _1), this);
944 }
945
946 void
947 Push2::notify_record_state_changed ()
948 {
949         IDButtonMap::iterator b = id_button_map.find (RecordEnable);
950
951         if (b == id_button_map.end()) {
952                 return;
953         }
954
955         switch (session->record_status ()) {
956         case Session::Disabled:
957                 b->second->set_color (LED::White);
958                 b->second->set_state (LED::NoTransition);
959                 break;
960         case Session::Enabled:
961                 b->second->set_color (LED::Red);
962                 b->second->set_state (LED::Blinking4th);
963                 break;
964         case Session::Recording:
965                 b->second->set_color (LED::Red);
966                 b->second->set_state (LED::OneShot24th);
967                 break;
968         }
969
970         write (b->second->state_msg());
971 }
972
973 void
974 Push2::notify_transport_state_changed ()
975 {
976         Button* b = id_button_map[Play];
977
978         if (session->transport_rolling()) {
979                 b->set_state (LED::OneShot24th);
980                 b->set_color (LED::Green);
981         } else {
982
983                 /* disable any blink on FixedLength from pending edit range op */
984                 Button* fl = id_button_map[FixedLength];
985
986                 fl->set_color (LED::Black);
987                 fl->set_state (LED::NoTransition);
988                 write (fl->state_msg());
989
990                 b->set_color (LED::White);
991                 b->set_state (LED::NoTransition);
992         }
993
994         write (b->state_msg());
995 }
996
997 void
998 Push2::notify_loop_state_changed ()
999 {
1000 }
1001
1002 void
1003 Push2::notify_parameter_changed (std::string param)
1004 {
1005         IDButtonMap::iterator b;
1006
1007         if (param == "clicking") {
1008                 if ((b = id_button_map.find (Metronome)) == id_button_map.end()) {
1009                         return;
1010                 }
1011                 if (Config->get_clicking()) {
1012                         b->second->set_state (LED::Blinking4th);
1013                         b->second->set_color (LED::White);
1014                 } else {
1015                         b->second->set_color (LED::White);
1016                         b->second->set_state (LED::NoTransition);
1017                 }
1018                 write (b->second->state_msg ());
1019         }
1020 }
1021
1022 void
1023 Push2::notify_solo_active_changed (bool yn)
1024 {
1025         IDButtonMap::iterator b = id_button_map.find (Solo);
1026
1027         if (b == id_button_map.end()) {
1028                 return;
1029         }
1030
1031         if (yn) {
1032                 b->second->set_state (LED::Blinking4th);
1033                 b->second->set_color (LED::Red);
1034         } else {
1035                 b->second->set_state (LED::NoTransition);
1036                 b->second->set_color (LED::White);
1037         }
1038
1039         write (b->second->state_msg());
1040 }
1041
1042 XMLNode&
1043 Push2::get_state()
1044 {
1045         XMLNode& node (ControlProtocol::get_state());
1046         XMLNode* child;
1047
1048         child = new XMLNode (X_("Input"));
1049         child->add_child_nocopy (_async_in->get_state());
1050         node.add_child_nocopy (*child);
1051         child = new XMLNode (X_("Output"));
1052         child->add_child_nocopy (_async_out->get_state());
1053         node.add_child_nocopy (*child);
1054
1055         node.add_property (X_("root"), to_string (_scale_root, std::dec));
1056         node.add_property (X_("root_octave"), to_string (_root_octave, std::dec));
1057         node.add_property (X_("in_key"), _in_key ? X_("yes") : X_("no"));
1058         node.add_property (X_("mode"), enum_2_string (_mode));
1059
1060         return node;
1061 }
1062
1063 int
1064 Push2::set_state (const XMLNode & node, int version)
1065 {
1066         DEBUG_TRACE (DEBUG::Push2, string_compose ("Push2::set_state: active %1\n", active()));
1067
1068         int retval = 0;
1069
1070         if (ControlProtocol::set_state (node, version)) {
1071                 return -1;
1072         }
1073
1074         XMLNode* child;
1075
1076         if ((child = node.child (X_("Input"))) != 0) {
1077                 XMLNode* portnode = child->child (Port::state_node_name.c_str());
1078                 if (portnode) {
1079                         _async_in->set_state (*portnode, version);
1080                 }
1081         }
1082
1083         if ((child = node.child (X_("Output"))) != 0) {
1084                 XMLNode* portnode = child->child (Port::state_node_name.c_str());
1085                 if (portnode) {
1086                         _async_out->set_state (*portnode, version);
1087                 }
1088         }
1089
1090         XMLProperty const* prop;
1091
1092         if ((prop = node.property (X_("root"))) != 0) {
1093                 _scale_root = atoi (prop->value());
1094         }
1095
1096         if ((prop = node.property (X_("root_octave"))) != 0) {
1097                 _root_octave = atoi (prop->value());
1098         }
1099
1100         if ((prop = node.property (X_("in_key"))) != 0) {
1101                 _in_key = string_is_affirmative (prop->value());
1102         }
1103
1104         if ((prop = node.property (X_("mode"))) != 0) {
1105                 _mode = (MusicalMode::Type) string_2_enum (prop->value(), _mode);
1106         }
1107
1108         return retval;
1109 }
1110
1111 void
1112 Push2::other_vpot (int n, int delta)
1113 {
1114         switch (n) {
1115         case 0:
1116                 break;
1117         case 1:
1118                 break;
1119         case 2:
1120                 /* master gain control */
1121                 if (master) {
1122                         boost::shared_ptr<AutomationControl> ac = master->gain_control();
1123                         if (ac) {
1124                                 ac->set_value (ac->get_value() + ((2.0/64.0) * delta), PBD::Controllable::UseGroup);
1125                         }
1126                 }
1127                 break;
1128         }
1129 }
1130
1131 void
1132 Push2::other_vpot_touch (int n, bool touching)
1133 {
1134         switch (n) {
1135         case 0:
1136                 break;
1137         case 1:
1138                 break;
1139         case 2:
1140                 if (master) {
1141                         boost::shared_ptr<AutomationControl> ac = master->gain_control();
1142                         if (ac) {
1143                                 if (touching) {
1144                                         ac->start_touch (session->audible_frame());
1145                                 } else {
1146                                         ac->stop_touch (true, session->audible_frame());
1147                                 }
1148                         }
1149                 }
1150         }
1151 }
1152
1153 void
1154 Push2::start_shift ()
1155 {
1156         cerr << "start shift\n";
1157         _modifier_state = ModifierState (_modifier_state | ModShift);
1158         Button* b = id_button_map[Shift];
1159         b->set_color (LED::White);
1160         b->set_state (LED::Blinking16th);
1161         write (b->state_msg());
1162 }
1163
1164 void
1165 Push2::end_shift ()
1166 {
1167         if (_modifier_state & ModShift) {
1168                 cerr << "end shift\n";
1169                 _modifier_state = ModifierState (_modifier_state & ~(ModShift));
1170                 Button* b = id_button_map[Shift];
1171                 b->timeout_connection.disconnect ();
1172                 b->set_color (LED::White);
1173                 b->set_state (LED::OneShot24th);
1174                 write (b->state_msg());
1175         }
1176 }
1177
1178 void
1179 Push2::splash ()
1180 {
1181         std::string splash_file;
1182
1183         Searchpath rc (ARDOUR::ardour_data_search_path());
1184         rc.add_subdirectory_to_paths ("resources");
1185
1186         if (!find_file (rc, PROGRAM_NAME "-splash.png", splash_file)) {
1187                 cerr << "Cannot find splash screen image file\n";
1188                 throw failed_constructor();
1189         }
1190
1191         Cairo::RefPtr<Cairo::ImageSurface> img = Cairo::ImageSurface::create_from_png (splash_file);
1192
1193         double x_ratio = (double) img->get_width() / (cols - 20);
1194         double y_ratio = (double) img->get_height() / (rows - 20);
1195         double scale = min (x_ratio, y_ratio);
1196
1197         /* background */
1198
1199         context->set_source_rgb (0.764, 0.882, 0.882);
1200         context->paint ();
1201
1202         /* image */
1203
1204         context->save ();
1205         context->translate (5, 5);
1206         context->scale (scale, scale);
1207         context->set_source (img, 0, 0);
1208         context->paint ();
1209         context->restore ();
1210
1211         /* text */
1212
1213         Glib::RefPtr<Pango::Layout> some_text = Pango::Layout::create (context);
1214
1215         Pango::FontDescription fd ("Sans 38");
1216         some_text->set_font_description (fd);
1217         some_text->set_text (string_compose ("%1 %2", PROGRAM_NAME, VERSIONSTRING));
1218
1219         context->move_to (200, 10);
1220         context->set_source_rgb (0, 0, 0);
1221         some_text->update_from_cairo_context (context);
1222         some_text->show_in_cairo_context (context);
1223
1224         Pango::FontDescription fd2 ("Sans Italic 18");
1225         some_text->set_font_description (fd2);
1226         some_text->set_text (_("Ableton Push 2 Support"));
1227
1228         context->move_to (200, 80);
1229         context->set_source_rgb (0, 0, 0);
1230         some_text->update_from_cairo_context (context);
1231         some_text->show_in_cairo_context (context);
1232
1233         splash_start = get_microseconds ();
1234         blit_to_device_frame_buffer ();
1235 }
1236
1237 bool
1238 Push2::pad_filter (MidiBuffer& in, MidiBuffer& out) const
1239 {
1240         /* This filter is called asynchronously from a realtime process
1241            context. It must use atomics to check state, and must not block.
1242         */
1243
1244         bool matched = false;
1245
1246         for (MidiBuffer::iterator ev = in.begin(); ev != in.end(); ++ev) {
1247                 if ((*ev).is_note_on() || (*ev).is_note_off()) {
1248
1249                         /* encoder touch start/touch end use note
1250                          * 0-10. touchstrip uses note 12
1251                          */
1252
1253                         if ((*ev).note() > 10 && (*ev).note() != 12) {
1254
1255                                 const int n = (*ev).note ();
1256                                 NNPadMap::const_iterator nni = nn_pad_map.find (n);
1257
1258                                 if (nni != nn_pad_map.end()) {
1259                                         Pad const * pad = nni->second;
1260                                         /* shift for output to the shadow port */
1261                                         if (pad->filtered >= 0) {
1262                                                 (*ev).set_note (pad->filtered);
1263                                                 out.push_back (*ev);
1264                                                 /* shift back so that the pads light correctly  */
1265                                                 (*ev).set_note (n);
1266                                         } else {
1267                                                 /* no mapping, don't send event */
1268                                         }
1269                                 } else {
1270                                         out.push_back (*ev);
1271                                 }
1272
1273                                 matched = true;
1274                         }
1275                 } else if ((*ev).is_pitch_bender() || (*ev).is_aftertouch() || (*ev).is_channel_pressure()) {
1276                         out.push_back (*ev);
1277                 }
1278         }
1279
1280         return matched;
1281 }
1282
1283 bool
1284 Push2::connection_handler (boost::weak_ptr<ARDOUR::Port>, std::string name1, boost::weak_ptr<ARDOUR::Port>, std::string name2, bool yn)
1285 {
1286         DEBUG_TRACE (DEBUG::FaderPort, "FaderPort::connection_handler  start\n");
1287         if (!_input_port || !_output_port) {
1288                 return false;
1289         }
1290
1291         string ni = ARDOUR::AudioEngine::instance()->make_port_name_non_relative (boost::shared_ptr<ARDOUR::Port>(_async_in)->name());
1292         string no = ARDOUR::AudioEngine::instance()->make_port_name_non_relative (boost::shared_ptr<ARDOUR::Port>(_async_out)->name());
1293
1294         if (ni == name1 || ni == name2) {
1295                 if (yn) {
1296                         connection_state |= InputConnected;
1297                 } else {
1298                         connection_state &= ~InputConnected;
1299                 }
1300         } else if (no == name1 || no == name2) {
1301                 if (yn) {
1302                         connection_state |= OutputConnected;
1303                 } else {
1304                         connection_state &= ~OutputConnected;
1305                 }
1306         } else {
1307                 DEBUG_TRACE (DEBUG::FaderPort, string_compose ("Connections between %1 and %2 changed, but I ignored it\n", name1, name2));
1308                 /* not our ports */
1309                 return false;
1310         }
1311
1312         if ((connection_state & (InputConnected|OutputConnected)) == (InputConnected|OutputConnected)) {
1313
1314                 /* XXX this is a horrible hack. Without a short sleep here,
1315                    something prevents the device wakeup messages from being
1316                    sent and/or the responses from being received.
1317                 */
1318
1319                 g_usleep (100000);
1320                 DEBUG_TRACE (DEBUG::FaderPort, "device now connected for both input and output\n");
1321                 // connected ();
1322
1323         } else {
1324                 DEBUG_TRACE (DEBUG::FaderPort, "Device disconnected (input or output or both) or not yet fully connected\n");
1325         }
1326
1327         ConnectionChange (); /* emit signal for our GUI */
1328
1329         DEBUG_TRACE (DEBUG::FaderPort, "FaderPort::connection_handler  end\n");
1330
1331         return true; /* connection status changed */
1332 }
1333
1334 boost::shared_ptr<Port>
1335 Push2::output_port()
1336 {
1337         return _async_out;
1338 }
1339
1340 boost::shared_ptr<Port>
1341 Push2::input_port()
1342 {
1343         return _async_in;
1344 }
1345
1346 void
1347 Push2::build_pad_table ()
1348 {
1349         for (int n = 36; n < 100; ++n) {
1350                 pad_map[n] = n + (octave_shift*12);
1351         }
1352
1353         PadChange (); /* emit signal */
1354 }
1355
1356 int
1357 Push2::pad_note (int row, int col) const
1358 {
1359         NNPadMap::const_iterator nni = nn_pad_map.find (36+(row*8)+col);
1360
1361         if (nni != nn_pad_map.end()) {
1362                 return nni->second->filtered;
1363         }
1364
1365         return 0;
1366 }
1367
1368 void
1369 Push2::set_pad_scale (int root, int octave, MusicalMode::Type mode, bool inkey)
1370 {
1371         MusicalMode m (mode);
1372         vector<float>::iterator interval;
1373         int note;
1374         const int original_root = root;
1375
1376         interval = m.steps.begin();
1377         root += (octave*12);
1378         note = root;
1379
1380         const int root_start = root;
1381
1382         set<int> mode_map; /* contains only notes in mode, O(logN) lookup */
1383         vector<int> mode_vector; /* sorted in note order */
1384
1385         mode_map.insert (note);
1386         mode_vector.push_back (note);
1387
1388         /* build a map of all notes in the mode, from the root to 127 */
1389
1390         while (note < 128) {
1391
1392                 if (interval == m.steps.end()) {
1393
1394                         /* last distance was the end of the scale,
1395                            so wrap, adding the next note at one
1396                            octave above the last root.
1397                         */
1398
1399                         interval = m.steps.begin();
1400                         root += 12;
1401                         mode_map.insert (root);
1402                         mode_vector.push_back (root);
1403
1404                 } else {
1405                         note = (int) floor (root + (2.0 * (*interval)));
1406                         interval++;
1407                         mode_map.insert (note);
1408                         mode_vector.push_back (note);
1409                 }
1410         }
1411
1412         if (inkey) {
1413
1414                 vector<int>::iterator notei;
1415                 int row_offset = 0;
1416                 for (int row = 0; row < 8; ++row) {
1417
1418                         /* Ableton's grid layout wraps the available notes in the scale
1419                          * by offsetting 3 notes per row (from the bottom)
1420                          */
1421
1422                         notei = mode_vector.begin();
1423                         notei += row_offset;
1424                         row_offset += 3;
1425
1426                         for (int col = 0; col < 8; ++col) {
1427                                 int index = 36 + (row*8) + col;
1428                                 Pad* pad = nn_pad_map[index];
1429                                 int notenum;
1430                                 if (notei != mode_vector.end()) {
1431
1432                                         notenum = *notei;
1433                                         pad->filtered = notenum;
1434
1435                                         if ((notenum % 12) == original_root) {
1436                                                 pad->set_color (LED::Green);
1437                                                 pad->perma_color = LED::Green;
1438                                         } else {
1439                                                 pad->set_color (LED::White);
1440                                                 pad->perma_color = LED::White;
1441                                         }
1442
1443                                         pad->do_when_pressed = Pad::FlashOff;
1444                                         notei++;
1445
1446                                 } else {
1447
1448                                         pad->set_color (LED::Black);
1449                                         pad->do_when_pressed = Pad::Nothing;
1450                                         pad->filtered = -1;
1451                                 }
1452
1453                                 write (pad->state_msg());
1454                         }
1455                 }
1456
1457         } else {
1458
1459                 /* chromatic: all notes available, but highlight those in the scale */
1460
1461                 for (note = 36; note < 100; ++note) {
1462
1463                         Pad* pad = nn_pad_map[note];
1464
1465                         /* Chromatic: all pads play, half-tone steps. Light
1466                          * those in the scale, and highlight root notes
1467                          */
1468
1469                         pad->filtered = root_start + (note - 36);
1470
1471                         if (mode_map.find (note) != mode_map.end()) {
1472
1473                                 if ((note % 12) == original_root) {
1474                                         pad->set_color (LED::Green);
1475                                         pad->perma_color = LED::Green;
1476                                 } else {
1477                                         pad->set_color (LED::White);
1478                                         pad->perma_color = LED::White;
1479                                 }
1480
1481                                 pad->do_when_pressed = Pad::FlashOff;
1482
1483                         } else {
1484
1485                                 /* note is not in mode, turn it off */
1486
1487                                 pad->do_when_pressed = Pad::FlashOn;
1488                                 pad->set_color (LED::Black);
1489
1490                         }
1491
1492                         write (pad->state_msg());
1493                 }
1494         }
1495
1496         PadChange (); /* EMIT SIGNAL */
1497
1498         /* store state */
1499
1500         _scale_root = original_root;
1501         _root_octave = octave;
1502         _in_key = inkey;
1503         _mode = mode;
1504 }
1505
1506 void
1507 Push2::set_percussive_mode (bool yn)
1508 {
1509         if (!yn) {
1510                 cerr << "back to scale\n";
1511                 set_pad_scale (_scale_root, _root_octave, _mode, _in_key);
1512                 percussion = false;
1513                 return;
1514         }
1515
1516         int drum_note = 36;
1517
1518         for (int row = 0; row < 8; ++row) {
1519
1520                 for (int col = 0; col < 4; ++col) {
1521
1522                         int index = 36 + (row*8) + col;
1523                         Pad* pad = nn_pad_map[index];
1524
1525                         pad->filtered = drum_note;
1526                         drum_note++;
1527                 }
1528         }
1529
1530         for (int row = 0; row < 8; ++row) {
1531
1532                 for (int col = 4; col < 8; ++col) {
1533
1534                         int index = 36 + (row*8) + col;
1535                         Pad* pad = nn_pad_map[index];
1536
1537                         pad->filtered = drum_note;
1538                         drum_note++;
1539                 }
1540         }
1541
1542         percussion = true;
1543
1544         PadChange (); /* EMIT SIGNAL */
1545 }
1546
1547 Push2Layout*
1548 Push2::current_layout () const
1549 {
1550         Glib::Threads::Mutex::Lock lm (layout_lock);
1551         return _current_layout;
1552 }
1553
1554 void
1555 Push2::stripable_selection_change (StripableNotificationListPtr selected)
1556 {
1557         boost::shared_ptr<MidiPort> pad_port = boost::dynamic_pointer_cast<AsyncMIDIPort>(_async_in)->shadow_port();
1558         boost::shared_ptr<MidiTrack> current_midi_track = current_pad_target.lock();
1559         boost::shared_ptr<MidiTrack> new_pad_target;
1560
1561         /* See if there's a MIDI track selected */
1562
1563         for (StripableNotificationList::iterator si = selected->begin(); si != selected->end(); ++si) {
1564
1565                 new_pad_target = boost::dynamic_pointer_cast<MidiTrack> ((*si).lock());
1566
1567                 if (new_pad_target) {
1568                         break;
1569                 }
1570         }
1571
1572         if (new_pad_target) {
1573                 cerr << "new midi pad target " << new_pad_target->name() << endl;
1574         } else {
1575                 cerr << "no midi pad target\n";
1576         }
1577
1578         if (current_midi_track == new_pad_target) {
1579                 /* nothing to do */
1580                 return;
1581         }
1582
1583         if (!new_pad_target) {
1584                 /* leave existing connection alone */
1585                 return;
1586         }
1587
1588         /* disconnect from pad port, if appropriate */
1589
1590         if (current_midi_track && pad_port) {
1591                 cerr << "Disconnect pads from " << current_midi_track->name() << endl;
1592                 current_midi_track->input()->disconnect (current_midi_track->input()->nth(0), pad_port->name(), this);
1593         }
1594
1595         /* now connect the pad port to this (newly) selected midi
1596          * track, if indeed there is one.
1597          */
1598
1599         if (new_pad_target && pad_port) {
1600                 cerr << "Reconnect pads to " << new_pad_target->name() << endl;
1601                 new_pad_target->input()->connect (new_pad_target->input()->nth (0), pad_port->name(), this);
1602                 current_pad_target = new_pad_target;
1603         } else {
1604                 current_pad_target.reset ();
1605         }
1606 }
1607
1608 Push2::Button*
1609 Push2::button_by_id (ButtonID bid)
1610 {
1611         return id_button_map[bid];
1612 }