remove unnecessary (?) conditional.
[ardour.git] / libs / surfaces / faderport / faderport.cc
1 /*
2     Copyright (C) 2015 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
20 #include <cstdlib>
21 #include <sstream>
22 #include <algorithm>
23
24 #include <stdint.h>
25
26 #include <glibmm/fileutils.h>
27 #include <glibmm/miscutils.h>
28
29 #include "pbd/controllable_descriptor.h"
30 #include "pbd/error.h"
31 #include "pbd/failed_constructor.h"
32 #include "pbd/file_utils.h"
33 #include "pbd/pthread_utils.h"
34 #include "pbd/compose.h"
35 #include "pbd/xml++.h"
36
37 #include "midi++/port.h"
38
39 #include "ardour/async_midi_port.h"
40 #include "ardour/audioengine.h"
41 #include "ardour/amp.h"
42 #include "ardour/bundle.h"
43 #include "ardour/debug.h"
44 #include "ardour/filesystem_paths.h"
45 #include "ardour/midi_port.h"
46 #include "ardour/midiport_manager.h"
47 #include "ardour/monitor_processor.h"
48 #include "ardour/profile.h"
49 #include "ardour/rc_configuration.h"
50 #include "ardour/route.h"
51 #include "ardour/session.h"
52 #include "ardour/session_configuration.h"
53 #include "ardour/track.h"
54
55 #include "faderport.h"
56
57 using namespace ARDOUR;
58 using namespace ArdourSurface;
59 using namespace PBD;
60 using namespace Glib;
61 using namespace std;
62
63 #include "i18n.h"
64
65 #include "pbd/abstract_ui.cc" // instantiate template
66
67 FaderPort::FaderPort (Session& s)
68         : ControlProtocol (s, _("Faderport"))
69         , AbstractUI<FaderPortRequest> ("faderport")
70         , gui (0)
71         , connection_state (ConnectionState (0))
72         , _device_active (false)
73         , fader_msb (0)
74         , fader_lsb (0)
75         , fader_is_touched (false)
76         , button_state (ButtonState (0))
77         , blink_state (false)
78 {
79         last_encoder_time = 0;
80
81         boost::shared_ptr<ARDOUR::Port> inp;
82         boost::shared_ptr<ARDOUR::Port> outp;
83
84         inp  = AudioEngine::instance()->register_input_port (DataType::MIDI, "Faderport Recv", true);
85         outp = AudioEngine::instance()->register_output_port (DataType::MIDI, "Faderport Send", true);
86
87         _input_port = boost::dynamic_pointer_cast<AsyncMIDIPort>(inp);
88         _output_port = boost::dynamic_pointer_cast<AsyncMIDIPort>(outp);
89
90         if (_input_port == 0 || _output_port == 0) {
91                 throw failed_constructor();
92         }
93
94         _input_bundle.reset (new ARDOUR::Bundle (_("Faderport Support (Receive)"), true));
95         _output_bundle.reset (new ARDOUR::Bundle (_("Faderport Support (Send) "), false));
96
97         _input_bundle->add_channel (
98                 inp->name(),
99                 ARDOUR::DataType::MIDI,
100                 session->engine().make_port_name_non_relative (inp->name())
101                 );
102
103         _output_bundle->add_channel (
104                 outp->name(),
105                 ARDOUR::DataType::MIDI,
106                 session->engine().make_port_name_non_relative (outp->name())
107                 );
108
109
110         TrackSelectionChanged.connect (selection_connection, MISSING_INVALIDATOR, boost::bind (&FaderPort::gui_track_selection_changed, this, _1), this);
111
112         /* Catch port connections and disconnections */
113         ARDOUR::AudioEngine::instance()->PortConnectedOrDisconnected.connect (port_connection, MISSING_INVALIDATOR, boost::bind (&FaderPort::connection_handler, this, _1, _2, _3, _4, _5), this);
114
115         buttons.insert (std::make_pair (Mute, Button (*this, _("Mute"), Mute, 21)));
116         buttons.insert (std::make_pair (Solo, Button (*this, _("Solo"), Solo, 22)));
117         buttons.insert (std::make_pair (Rec, Button (*this, _("Rec"), Rec, 23)));
118         buttons.insert (std::make_pair (Left, Button (*this, _("Left"), Left, 20)));
119         buttons.insert (std::make_pair (Bank, Button (*this, _("Bank"), Bank, 19)));
120         buttons.insert (std::make_pair (Right, Button (*this, _("Right"), Right, 18)));
121         buttons.insert (std::make_pair (Output, Button (*this, _("Output"), Output, 17)));
122         buttons.insert (std::make_pair (FP_Read, Button (*this, _("Read"), FP_Read, 13)));
123         buttons.insert (std::make_pair (FP_Write, Button (*this, _("Write"), FP_Write, 14)));
124         buttons.insert (std::make_pair (FP_Touch, Button (*this, _("Touch"), FP_Touch, 15)));
125         buttons.insert (std::make_pair (FP_Off, Button (*this, _("Off"), FP_Off, 16)));
126         buttons.insert (std::make_pair (Mix, Button (*this, _("Mix"), Mix, 12)));
127         buttons.insert (std::make_pair (Proj, Button (*this, _("Proj"), Proj, 11)));
128         buttons.insert (std::make_pair (Trns, Button (*this, _("Trns"), Trns, 10)));
129         buttons.insert (std::make_pair (Undo, Button (*this, _("Undo"), Undo, 9)));
130         buttons.insert (std::make_pair (Shift, Button (*this, _("Shift"), Shift, 5)));
131         buttons.insert (std::make_pair (Punch, Button (*this, _("Punch"), Punch, 6)));
132         buttons.insert (std::make_pair (User, Button (*this, _("User"), User, 7)));
133         buttons.insert (std::make_pair (Loop, Button (*this, _("Loop"), Loop, 8)));
134         buttons.insert (std::make_pair (Rewind, Button (*this, _("Rewind"), Rewind, 4)));
135         buttons.insert (std::make_pair (Ffwd, Button (*this, _("Ffwd"), Ffwd, 3)));
136         buttons.insert (std::make_pair (Stop, Button (*this, _("Stop"), Stop, 2)));
137         buttons.insert (std::make_pair (Play, Button (*this, _("Play"), Play, 1)));
138         buttons.insert (std::make_pair (RecEnable, Button (*this, _("RecEnable"), RecEnable, 0)));
139         buttons.insert (std::make_pair (FaderTouch, Button (*this, _("Fader (touch)"), FaderTouch, -1)));
140
141         get_button (Shift).set_flash (true);
142         get_button (Mix).set_flash (true);
143         get_button (Proj).set_flash (true);
144         get_button (Trns).set_flash (true);
145         get_button (User).set_flash (true);
146
147         get_button (Left).set_action ( boost::bind (&FaderPort::left, this), true);
148         get_button (Right).set_action ( boost::bind (&FaderPort::right, this), true);
149
150         get_button (Undo).set_action (boost::bind (&FaderPort::undo, this), true);
151         get_button (Undo).set_action (boost::bind (&FaderPort::redo, this), true, ShiftDown);
152         get_button (Undo).set_flash (true);
153
154         get_button (FP_Read).set_action (boost::bind (&FaderPort::read, this), true);
155         get_button (FP_Write).set_action (boost::bind (&FaderPort::write, this), true);
156         get_button (FP_Touch).set_action (boost::bind (&FaderPort::touch, this), true);
157         get_button (FP_Off).set_action (boost::bind (&FaderPort::off, this), true);
158
159         get_button (Play).set_action (boost::bind (&BasicUI::transport_play, this, true), true);
160         get_button (RecEnable).set_action (boost::bind (&BasicUI::rec_enable_toggle, this), true);
161         /* Stop is a modifier, so we have to use its own button state to get
162            the default action (since StopDown will be set when looking for the
163            action to invoke.
164         */
165         get_button (Stop).set_action (boost::bind (&BasicUI::transport_stop, this), true, StopDown);
166         get_button (Ffwd).set_action (boost::bind (&BasicUI::ffwd, this), true);
167
168         /* See comments about Stop above .. */
169         get_button (Rewind).set_action (boost::bind (&BasicUI::rewind, this), true, RewindDown);
170         get_button (Rewind).set_action (boost::bind (&BasicUI::goto_zero, this), true, ButtonState (RewindDown|StopDown));
171         get_button (Rewind).set_action (boost::bind (&BasicUI::goto_start, this), true, ButtonState (RewindDown|ShiftDown));
172
173         get_button (Ffwd).set_action (boost::bind (&BasicUI::ffwd, this), true);
174         get_button (Ffwd).set_action (boost::bind (&BasicUI::goto_end, this), true, ShiftDown);
175
176         get_button (Punch).set_action (boost::bind (&FaderPort::punch, this), true);
177
178         get_button (Loop).set_action (boost::bind (&BasicUI::loop_toggle, this), true);
179         get_button (Loop).set_action (boost::bind (&BasicUI::add_marker, this, string()), true, ShiftDown);
180
181         get_button (Punch).set_action (boost::bind (&BasicUI::prev_marker, this), true, ShiftDown);
182         get_button (User).set_action (boost::bind (&BasicUI::next_marker, this), true, ShiftDown);
183
184         get_button (Mute).set_action (boost::bind (&FaderPort::mute, this), true);
185         get_button (Solo).set_action (boost::bind (&FaderPort::solo, this), true);
186         get_button (Rec).set_action (boost::bind (&FaderPort::rec_enable, this), true);
187
188         get_button (Output).set_action (boost::bind (&FaderPort::use_master, this), true);
189         get_button (Output).set_action (boost::bind (&FaderPort::use_monitor, this), true, ShiftDown);
190 }
191
192 FaderPort::~FaderPort ()
193 {
194         if (_input_port) {
195                 DEBUG_TRACE (DEBUG::FaderPort, string_compose ("unregistering input port %1\n", boost::shared_ptr<ARDOUR::Port>(_input_port)->name()));
196                 AudioEngine::instance()->unregister_port (_input_port);
197                 _input_port.reset ();
198         }
199
200         if (_output_port) {
201 //              _output_port->drain (10000);  //ToDo:  is this necessary?  It hangs the shutdown, for me
202                 DEBUG_TRACE (DEBUG::FaderPort, string_compose ("unregistering output port %1\n", boost::shared_ptr<ARDOUR::Port>(_output_port)->name()));
203                 AudioEngine::instance()->unregister_port (_output_port);
204                 _output_port.reset ();
205         }
206
207         tear_down_gui ();
208 }
209
210 void
211 FaderPort::start_midi_handling ()
212 {
213         /* handle device inquiry response */
214         _input_port->parser()->sysex.connect_same_thread (midi_connections, boost::bind (&FaderPort::sysex_handler, this, _1, _2, _3));
215         /* handle buttons */
216         _input_port->parser()->poly_pressure.connect_same_thread (midi_connections, boost::bind (&FaderPort::button_handler, this, _1, _2));
217         /* handle encoder */
218         _input_port->parser()->pitchbend.connect_same_thread (midi_connections, boost::bind (&FaderPort::encoder_handler, this, _1, _2));
219         /* handle fader */
220         _input_port->parser()->controller.connect_same_thread (midi_connections, boost::bind (&FaderPort::fader_handler, this, _1, _2));
221
222         /* This connection means that whenever data is ready from the input
223          * port, the relevant thread will invoke our ::midi_input_handler()
224          * method, which will read the data, and invoke the parser.
225          */
226
227         _input_port->xthread().set_receive_handler (sigc::bind (sigc::mem_fun (this, &FaderPort::midi_input_handler), _input_port));
228         _input_port->xthread().attach (main_loop()->get_context());
229 }
230
231 void
232 FaderPort::stop_midi_handling ()
233 {
234         midi_connections.drop_connections ();
235
236         /* Note: the input handler is still active at this point, but we're no
237          * longer connected to any of the parser signals
238          */
239 }
240
241 void
242 FaderPort::do_request (FaderPortRequest* req)
243 {
244         if (req->type == CallSlot) {
245
246                 call_slot (MISSING_INVALIDATOR, req->the_slot);
247
248         } else if (req->type == Quit) {
249
250                 stop ();
251         }
252 }
253
254 int
255 FaderPort::stop ()
256 {
257         BaseUI::quit ();
258
259         return 0;
260 }
261
262 void
263 FaderPort::thread_init ()
264 {
265         struct sched_param rtparam;
266
267         pthread_set_name (X_("FaderPort"));
268
269         PBD::notify_gui_about_thread_creation (X_("gui"), pthread_self(), X_("FaderPort"), 2048);
270         ARDOUR::SessionEvent::create_per_thread_pool (X_("FaderPort"), 128);
271
272         memset (&rtparam, 0, sizeof (rtparam));
273         rtparam.sched_priority = 9; /* XXX should be relative to audio (JACK) thread */
274
275         if (pthread_setschedparam (pthread_self(), SCHED_FIFO, &rtparam) != 0) {
276                 // do we care? not particularly.
277         }
278 }
279
280 void
281 FaderPort::all_lights_out ()
282 {
283         for (ButtonMap::iterator b = buttons.begin(); b != buttons.end(); ++b) {
284                 b->second.set_led_state (_output_port, false, true);
285         }
286 }
287
288 FaderPort::Button&
289 FaderPort::get_button (ButtonID id) const
290 {
291         ButtonMap::const_iterator b = buttons.find (id);
292         assert (b != buttons.end());
293         return const_cast<Button&>(b->second);
294 }
295
296 bool
297 FaderPort::button_long_press_timeout (ButtonID id)
298 {
299         if (buttons_down.find (id) != buttons_down.end()) {
300                 get_button (id).invoke (ButtonState (LongPress|button_state), false);
301         } else {
302                 /* release happened and somehow we were not cancelled */
303         }
304
305         /* whichever button this was, we've used it ... don't invoke the
306            release action.
307         */
308         consumed.insert (id);
309
310         return false; /* don't get called again */
311 }
312
313 void
314 FaderPort::start_press_timeout (Button& button, ButtonID id)
315 {
316         Glib::RefPtr<Glib::TimeoutSource> timeout = Glib::TimeoutSource::create (500); // milliseconds
317         button.timeout_connection = timeout->connect (sigc::bind (sigc::mem_fun (*this, &FaderPort::button_long_press_timeout), id));
318         timeout->attach (main_loop()->get_context());
319 }
320
321 void
322 FaderPort::button_handler (MIDI::Parser &, MIDI::EventTwoBytes* tb)
323 {
324         ButtonID id (ButtonID (tb->controller_number));
325         Button& button (get_button (id));
326
327         if (tb->value) {
328                 buttons_down.insert (id);
329         } else {
330                 buttons_down.erase (id);
331                 button.timeout_connection.disconnect ();
332         }
333
334         ButtonState bs (ButtonState (0));
335
336         switch (id) {
337         case Shift:
338                 /* set this bit on press, do NOT clear it on release */
339                 if (tb->value) {
340                         bs = ShiftDown;
341                 }
342                 break;
343         case Stop:
344                 bs = StopDown;
345                 break;
346         case Rewind:
347                 bs = RewindDown;
348                 break;
349         case User:
350                 bs = UserDown;
351                 break;
352         case FaderTouch:
353                 fader_is_touched = tb->value;
354                 if (_current_route) {
355                         boost::shared_ptr<AutomationControl> gain = _current_route->gain_control ();
356                         if (gain) {
357                                 framepos_t now = session->engine().sample_time();
358                                 if (tb->value) {
359                                         gain->start_touch (now);
360                                 } else {
361                                         gain->stop_touch (true, now);
362                                 }
363                         }
364                 }
365                 break;
366         default:
367                 if (tb->value) {
368                         start_press_timeout (button, id);
369                 }
370                 break;
371         }
372
373         if (bs) {
374                 button_state = (tb->value ? ButtonState (button_state|bs) : ButtonState (button_state&~bs));
375                 DEBUG_TRACE (DEBUG::FaderPort, string_compose ("reset button state to %1%2 using %3%4\n", hex, button_state, bs, dec));
376         }
377
378         if (button.uses_flash()) {
379                 button.set_led_state (_output_port, (int)tb->value);
380         }
381
382         set<ButtonID>::iterator c = consumed.find (id);
383
384         if (c == consumed.end()) {
385                 button.invoke (button_state, tb->value ? true : false);
386         } else {
387                 consumed.erase (c);
388         }
389
390         if (!tb->value && (id != Shift)) {
391                 /* non-shift key was released, clear shift modifier */
392                 button_state = ButtonState (button_state&~ShiftDown);
393                 DEBUG_TRACE (DEBUG::FaderPort, "clear shift modifier\n");
394         }
395
396         if (!tb->value && (id != User)) {
397                 consumed.insert (User);
398                 DEBUG_TRACE (DEBUG::FaderPort, "clear user modifier\n");
399         }
400 }
401
402 void
403 FaderPort::encoder_handler (MIDI::Parser &, MIDI::pitchbend_t pb)
404 {
405         int delta = 1;
406
407         if (pb >= 8192) {
408                 delta = -1;
409         }
410
411         //knob debouncing and hysteresis.  The presonus encoder often sends bursts of events, or goes the wrong direction
412         {
413                 last_last_encoder_delta = last_encoder_delta;
414                 last_encoder_delta = delta;
415                 microseconds_t now = get_microseconds ();
416                 if ((now - last_encoder_time) < 10*1000) { //require at least 10ms interval between changes, because the device sometimes sends multiple deltas
417                         return;
418                 }
419                 if ((now - last_encoder_time) < 100*1000) { //avoid directional changes while "spinning", 100ms window
420                         if ( (delta == last_encoder_delta) && (delta == last_last_encoder_delta) ) {
421                                 last_good_encoder_delta = delta;  //3 in a row, grudgingly accept this as the new direction
422                         }
423                         if (delta != last_good_encoder_delta) {  //otherwise ensure we keep going the same way
424                                 delta = last_good_encoder_delta;
425                         }
426                 } else {  //we aren't yet in a spin window, just assume this move is really what we want
427                         //NOTE:  if you are worried about where these get initialized, here it is.
428                         last_last_encoder_delta = delta;
429                         last_encoder_delta = delta;
430                 }
431                 last_encoder_time = now;
432                 last_good_encoder_delta = delta;
433         }
434
435         if (_current_route) {
436
437                 ButtonState trim_modifier;
438                 ButtonState width_modifier;
439
440                 if (Profile->get_mixbus()) {
441                         trim_modifier = ShiftDown;
442                         width_modifier = ButtonState (0);
443                 } else {
444                         trim_modifier = UserDown;
445                         width_modifier = ShiftDown;
446                 }
447
448                 if ((button_state & trim_modifier) == trim_modifier ) {    // mod+encoder = input trim
449                         boost::shared_ptr<AutomationControl> trim = _current_route->trim()->gain_control ();
450                         if (trim) {
451                                 float val = trim->get_user();  //for gain elements, the "user" value is in dB
452                                 val += delta;
453                                 trim->set_user(val);
454                         }
455                 } else if (width_modifier && ((button_state & width_modifier) == width_modifier)) {
456                         ardour_pan_width (delta);
457
458                 } else {  // pan/balance
459                         if (!Profile->get_mixbus()) {
460                                 ardour_pan_azimuth (delta);
461                         } else {
462                                 mixbus_pan (delta);
463                         }
464                 }
465         }
466
467         /* if the user button was pressed, mark it as consumed so that its
468          * release action has no effect.
469          */
470
471         if (!Profile->get_mixbus() && (button_state & UserDown)) {
472                 consumed.insert (User);
473         }
474 }
475
476 void
477 FaderPort::fader_handler (MIDI::Parser &, MIDI::EventTwoBytes* tb)
478 {
479         bool was_fader = false;
480
481         if (tb->controller_number == 0x0) {
482                 fader_msb = tb->value;
483                 was_fader = true;
484         } else if (tb->controller_number == 0x20) {
485                 fader_lsb = tb->value;
486                 was_fader = true;
487         }
488
489         if (was_fader) {
490                 if (_current_route) {
491                         boost::shared_ptr<AutomationControl> gain = _current_route->gain_control ();
492                         if (gain) {
493                                 int ival = (fader_msb << 7) | fader_lsb;
494                                 float val = gain->interface_to_internal (ival/16384.0);
495                                 _current_route->set_gain (val, this);
496                         }
497                 }
498         }
499 }
500
501 void
502 FaderPort::sysex_handler (MIDI::Parser &p, MIDI::byte *buf, size_t sz)
503 {
504         if (sz < 17) {
505                 return;
506         }
507
508         if (buf[2] != 0x7f ||
509             buf[3] != 0x06 ||
510             buf[4] != 0x02 ||
511             buf[5] != 0x0 ||
512             buf[6] != 0x1 ||
513             buf[7] != 0x06 ||
514             buf[8] != 0x02 ||
515             buf[9] != 0x0 ||
516             buf[10] != 0x01 ||
517             buf[11] != 0x0) {
518                 return;
519         }
520
521         _device_active = true;
522
523         DEBUG_TRACE (DEBUG::FaderPort, "FaderPort identified via MIDI Device Inquiry response\n");
524
525         /* put it into native mode */
526
527         MIDI::byte native[3];
528         native[0] = 0x91;
529         native[1] = 0x00;
530         native[2] = 0x64;
531
532         _output_port->write (native, 3, 0);
533
534         all_lights_out ();
535
536         /* catch up on state */
537
538         notify_transport_state_changed ();
539         notify_record_state_changed ();
540 }
541
542 int
543 FaderPort::set_active (bool yn)
544 {
545         DEBUG_TRACE (DEBUG::FaderPort, string_compose("MackieControlProtocol::set_active init with yn: '%1'\n", yn));
546
547         if (yn == active()) {
548                 return 0;
549         }
550
551         if (yn) {
552
553                 /* start event loop */
554
555                 BaseUI::run ();
556
557                 connect_session_signals ();
558
559                 Glib::RefPtr<Glib::TimeoutSource> blink_timeout = Glib::TimeoutSource::create (200); // milliseconds
560                 blink_connection = blink_timeout->connect (sigc::mem_fun (*this, &FaderPort::blink));
561                 blink_timeout->attach (main_loop()->get_context());
562
563         } else {
564
565                 BaseUI::quit ();
566                 close ();
567
568         }
569
570         ControlProtocol::set_active (yn);
571
572         DEBUG_TRACE (DEBUG::FaderPort, string_compose("MackieControlProtocol::set_active done with yn: '%1'\n", yn));
573
574         return 0;
575 }
576
577 void
578 FaderPort::stop_blinking (ButtonID id)
579 {
580         blinkers.remove (id);
581         get_button (id).set_led_state (_output_port, false);
582 }
583
584 void
585 FaderPort::start_blinking (ButtonID id)
586 {
587         blinkers.push_back (id);
588         get_button (id).set_led_state (_output_port, true);
589 }
590
591 bool
592 FaderPort::blink ()
593 {
594         blink_state = !blink_state;
595
596         for (Blinkers::iterator b = blinkers.begin(); b != blinkers.end(); b++) {
597                 get_button(*b).set_led_state (_output_port, blink_state);
598         }
599
600         return true;
601 }
602
603 void
604 FaderPort::close ()
605 {
606         all_lights_out ();
607
608         stop_midi_handling ();
609         session_connections.drop_connections ();
610         port_connection.disconnect ();
611         blink_connection.disconnect ();
612         selection_connection.disconnect ();
613         route_connections.drop_connections ();
614
615 #if 0
616         route_connections.drop_connections ();
617 #endif
618 }
619
620 void
621 FaderPort::notify_record_state_changed ()
622 {
623         switch (session->record_status()) {
624         case Session::Disabled:
625                 stop_blinking (RecEnable);
626                 break;
627         case Session::Enabled:
628                 start_blinking (RecEnable);
629                 break;
630         case Session::Recording:
631                 stop_blinking (RecEnable);
632                 break;
633         }
634 }
635
636 void
637 FaderPort::notify_transport_state_changed ()
638 {
639         get_button (Loop).set_led_state (_output_port, session->get_play_loop());
640         get_button (Play).set_led_state (_output_port, session->transport_speed() == 1.0);
641         get_button (Stop).set_led_state (_output_port, session->transport_stopped ());
642         get_button (Rewind).set_led_state (_output_port, session->transport_speed() < 0.0);
643         get_button (Ffwd).set_led_state (_output_port, session->transport_speed() > 1.0);
644 }
645
646 void
647 FaderPort::parameter_changed (string what)
648 {
649         if (what == "punch-in" || what == "punch-out") {
650                 bool in = session->config.get_punch_in ();
651                 bool out = session->config.get_punch_out ();
652                 if (in && out) {
653                         get_button (Punch).set_led_state (_output_port, true);
654                         blinkers.remove (Punch);
655                 } else if (in || out) {
656                         start_blinking (Punch);
657                 } else {
658                         stop_blinking (Punch);
659                 }
660         }
661 }
662
663 void
664 FaderPort::connect_session_signals()
665 {
666         session->RecordStateChanged.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::notify_record_state_changed, this), this);
667         session->TransportStateChange.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::notify_transport_state_changed, this), this);
668         /* not session, but treat it similarly */
669         session->config.ParameterChanged.connect (session_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::parameter_changed, this, _1), this);
670 }
671
672 bool
673 FaderPort::midi_input_handler (Glib::IOCondition ioc, boost::shared_ptr<ARDOUR::AsyncMIDIPort> port)
674 {
675         DEBUG_TRACE (DEBUG::FaderPort, string_compose ("something happend on  %1\n", boost::shared_ptr<MIDI::Port>(port)->name()));
676
677         if (ioc & ~IO_IN) {
678                 return false;
679         }
680
681         if (ioc & IO_IN) {
682
683                 port->clear ();
684                 DEBUG_TRACE (DEBUG::FaderPort, string_compose ("data available on %1\n", boost::shared_ptr<MIDI::Port>(port)->name()));
685                 framepos_t now = session->engine().sample_time();
686                 port->parse (now);
687         }
688
689         return true;
690 }
691
692
693 XMLNode&
694 FaderPort::get_state ()
695 {
696         XMLNode& node (ControlProtocol::get_state());
697
698         XMLNode* child;
699
700         child = new XMLNode (X_("Input"));
701         child->add_child_nocopy (boost::shared_ptr<ARDOUR::Port>(_input_port)->get_state());
702         node.add_child_nocopy (*child);
703
704
705         child = new XMLNode (X_("Output"));
706         child->add_child_nocopy (boost::shared_ptr<ARDOUR::Port>(_output_port)->get_state());
707         node.add_child_nocopy (*child);
708
709         /* Save action state for Mix, Proj, Trns and User buttons, since these
710          * are user controlled. We can only save named-action operations, since
711          * internal functions are just pointers to functions and hard to
712          * serialize without enumerating them all somewhere.
713          */
714
715         node.add_child_nocopy (get_button (Mix).get_state());
716         node.add_child_nocopy (get_button (Proj).get_state());
717         node.add_child_nocopy (get_button (Trns).get_state());
718         node.add_child_nocopy (get_button (User).get_state());
719
720         return node;
721 }
722
723 int
724 FaderPort::set_state (const XMLNode& node, int version)
725 {
726         XMLNodeList nlist;
727         XMLNodeConstIterator niter;
728         XMLNode const* child;
729
730         if (ControlProtocol::set_state (node, version)) {
731                 return -1;
732         }
733
734         if ((child = node.child (X_("Input"))) != 0) {
735                 XMLNode* portnode = child->child (Port::state_node_name.c_str());
736                 if (portnode) {
737                         boost::shared_ptr<ARDOUR::Port>(_input_port)->set_state (*portnode, version);
738                 }
739         }
740
741         if ((child = node.child (X_("Output"))) != 0) {
742                 XMLNode* portnode = child->child (Port::state_node_name.c_str());
743                 if (portnode) {
744                         boost::shared_ptr<ARDOUR::Port>(_output_port)->set_state (*portnode, version);
745                 }
746         }
747
748         for (XMLNodeList::const_iterator n = node.children().begin(); n != node.children().end(); ++n) {
749                 if ((*n)->name() == X_("Button")) {
750                         XMLProperty const * prop = (*n)->property (X_("id"));
751                         if (!prop) {
752                                 continue;
753                         }
754                         int xid = atoi (prop->value());
755                         ButtonMap::iterator b = buttons.find (ButtonID (xid));
756                         if (b == buttons.end()) {
757                                 continue;
758                         }
759                         b->second.set_state (**n);
760                 }
761         }
762
763         return 0;
764 }
765
766 bool
767 FaderPort::connection_handler (boost::weak_ptr<ARDOUR::Port>, std::string name1, boost::weak_ptr<ARDOUR::Port>, std::string name2, bool yn)
768 {
769         DEBUG_TRACE (DEBUG::FaderPort, "FaderPort::connection_handler  start\n");
770         if (!_input_port || !_output_port) {
771                 return false;
772         }
773
774         string ni = ARDOUR::AudioEngine::instance()->make_port_name_non_relative (boost::shared_ptr<ARDOUR::Port>(_input_port)->name());
775         string no = ARDOUR::AudioEngine::instance()->make_port_name_non_relative (boost::shared_ptr<ARDOUR::Port>(_output_port)->name());
776
777         if (ni == name1 || ni == name2) {
778                 if (yn) {
779                         connection_state |= InputConnected;
780                 } else {
781                         connection_state &= ~InputConnected;
782                 }
783         } else if (no == name1 || no == name2) {
784                 if (yn) {
785                         connection_state |= OutputConnected;
786                 } else {
787                         connection_state &= ~OutputConnected;
788                 }
789         } else {
790                 DEBUG_TRACE (DEBUG::FaderPort, string_compose ("Connections between %1 and %2 changed, but I ignored it\n", name1, name2));
791                 /* not our ports */
792                 return false;
793         }
794
795         if ((connection_state & (InputConnected|OutputConnected)) == (InputConnected|OutputConnected)) {
796
797                 /* XXX this is a horrible hack. Without a short sleep here,
798                    something prevents the device wakeup messages from being
799                    sent and/or the responses from being received.
800                 */
801
802                 g_usleep (100000);
803                 connected ();
804
805         } else {
806                 DEBUG_TRACE (DEBUG::FaderPort, "Device disconnected (input or output or both) or not yet fully connected\n");
807                 _device_active = false;
808         }
809
810         ConnectionChange (); /* emit signal for our GUI */
811
812         DEBUG_TRACE (DEBUG::FaderPort, "FaderPort::connection_handler  end\n");
813
814         return true; /* connection status changed */
815 }
816
817 void
818 FaderPort::connected ()
819 {
820         DEBUG_TRACE (DEBUG::FaderPort, "connection status changed\n");
821
822         start_midi_handling ();
823
824         /* send device inquiry */
825
826         MIDI::byte buf[6];
827
828         buf[0] = 0xf0;
829         buf[1] = 0x7e;
830         buf[2] = 0x7f;
831         buf[3] = 0x06;
832         buf[4] = 0x01;
833         buf[5] = 0xf7;
834
835         _output_port->write (buf, 6, 0);
836 }
837
838 void
839 FaderPort::Button::invoke (FaderPort::ButtonState bs, bool press)
840 {
841         DEBUG_TRACE (DEBUG::FaderPort, string_compose ("invoke button %1 for %2 state %3%4%5\n", id, (press ? "press":"release"), hex, bs, dec));
842
843         ToDoMap::iterator x;
844
845         if (press) {
846                 if ((x = on_press.find (bs)) == on_press.end()) {
847                         DEBUG_TRACE (DEBUG::FaderPort, string_compose ("no press action for button %1 state %2%3\%4\n", id, hex, bs, dec));
848                         return;
849                 }
850         } else {
851                 if ((x = on_release.find (bs)) == on_release.end()) {
852                         DEBUG_TRACE (DEBUG::FaderPort, string_compose ("no release action for button %1 state %2%3\%4\n", id, hex, bs, dec));
853                         return;
854                 }
855         }
856
857         switch (x->second.type) {
858         case NamedAction:
859                 if (!x->second.action_name.empty()) {
860                         fp.access_action (x->second.action_name);
861                 }
862                 break;
863         case InternalFunction:
864                 if (x->second.function) {
865                         x->second.function ();
866                 }
867         }
868 }
869
870 void
871 FaderPort::Button::set_action (string const& name, bool when_pressed, FaderPort::ButtonState bs)
872 {
873         ToDo todo;
874
875         todo.type = NamedAction;
876
877         if (when_pressed) {
878                 if (name.empty()) {
879                         on_press.erase (bs);
880                 } else {
881                         DEBUG_TRACE (DEBUG::FaderPort, string_compose ("set button %1 to action %2 on press + %3%4%5\n", id, name, bs));
882                         todo.action_name = name;
883                         on_press[bs] = todo;
884                 }
885         } else {
886                 if (name.empty()) {
887                         on_release.erase (bs);
888                 } else {
889                         DEBUG_TRACE (DEBUG::FaderPort, string_compose ("set button %1 to action %2 on release + %3%4%5\n", id, name, bs));
890                         todo.action_name = name;
891                         on_release[bs] = todo;
892                 }
893         }
894 }
895
896 string
897 FaderPort::Button::get_action (bool press, FaderPort::ButtonState bs)
898 {
899         ToDoMap::iterator x;
900
901         if (press) {
902                 if ((x = on_press.find (bs)) == on_press.end()) {
903                         return string();
904                 }
905                 if (x->second.type != NamedAction) {
906                         return string ();
907                 }
908                 return x->second.action_name;
909         } else {
910                 if ((x = on_release.find (bs)) == on_release.end()) {
911                         return string();
912                 }
913                 if (x->second.type != NamedAction) {
914                         return string ();
915                 }
916                 return x->second.action_name;
917         }
918 }
919
920 void
921 FaderPort::Button::set_action (boost::function<void()> f, bool when_pressed, FaderPort::ButtonState bs)
922 {
923         ToDo todo;
924         todo.type = InternalFunction;
925
926         if (when_pressed) {
927                 todo.function = f;
928                 on_press[bs] = todo;
929         } else {
930                 todo.function = f;
931                 on_release[bs] = todo;
932         }
933 }
934
935 void
936 FaderPort::Button::set_led_state (boost::shared_ptr<MIDI::Port> port, int onoff, bool force)
937 {
938         if (!force && (led_on == (bool) onoff)) {
939                 /* nothing to do */
940                 return;
941         }
942
943         if (out < 0) {
944                 /* fader button ID - no LED */
945                 return;
946         }
947
948         MIDI::byte buf[3];
949         buf[0] = 0xa0;
950         buf[1] = out;
951         buf[2] = onoff ? 1 : 0;
952         port->write (buf, 3, 0);
953         led_on = (onoff ? true : false);
954 }
955
956 int
957 FaderPort::Button::set_state (XMLNode const& node)
958 {
959         const XMLProperty* prop = node.property ("id");
960         if (!prop) {
961                 return -1;
962         }
963
964         int xid = atoi (prop->value());
965         if (xid != id) {
966                 return -1;
967         }
968
969         typedef pair<string,FaderPort::ButtonState> state_pair_t;
970         vector<state_pair_t> state_pairs;
971
972         state_pairs.push_back (make_pair (string ("plain"), ButtonState (0)));
973         state_pairs.push_back (make_pair (string ("shift"), ShiftDown));
974         state_pairs.push_back (make_pair (string ("long"), LongPress));
975
976         on_press.clear ();
977         on_release.clear ();
978
979         for (vector<state_pair_t>::const_iterator sp = state_pairs.begin(); sp != state_pairs.end(); ++sp) {
980                 string propname;
981
982                 propname = sp->first + X_("-press");
983                 if ((prop = node.property (propname)) != 0) {
984                         set_action (prop->value(), true, sp->second);
985                 }
986
987                 propname = sp->first + X_("-release");
988                 if ((prop = node.property (propname)) != 0) {
989                         set_action (prop->value(), false, sp->second);
990                 }
991         }
992
993         return 0;
994 }
995
996 XMLNode&
997 FaderPort::Button::get_state () const
998 {
999         XMLNode* node = new XMLNode (X_("Button"));
1000         char buf[16];
1001         snprintf (buf, sizeof (buf), "%d", id);
1002
1003         node->add_property (X_("id"), buf);
1004
1005         ToDoMap::const_iterator x;
1006         ToDo null;
1007         null.type = NamedAction;
1008
1009         typedef pair<string,FaderPort::ButtonState> state_pair_t;
1010         vector<state_pair_t> state_pairs;
1011
1012         state_pairs.push_back (make_pair (string ("plain"), ButtonState (0)));
1013         state_pairs.push_back (make_pair (string ("shift"), ShiftDown));
1014         state_pairs.push_back (make_pair (string ("long"), LongPress));
1015
1016         for (vector<state_pair_t>::const_iterator sp = state_pairs.begin(); sp != state_pairs.end(); ++sp) {
1017                 if ((x = on_press.find (sp->second)) != on_press.end()) {
1018                         if (x->second.type == NamedAction) {
1019                                 node->add_property (string (sp->first + X_("-press")).c_str(), x->second.action_name);
1020                         }
1021                 }
1022
1023                 if ((x = on_release.find (sp->second)) != on_release.end()) {
1024                         if (x->second.type == NamedAction) {
1025                                 node->add_property (string (sp->first + X_("-release")).c_str(), x->second.action_name);
1026                         }
1027                 }
1028         }
1029
1030         return *node;
1031 }
1032
1033 void
1034 FaderPort::gui_track_selection_changed (RouteNotificationListPtr routes)
1035 {
1036         boost::shared_ptr<Route> r;
1037
1038         if (!routes->empty()) {
1039                 r = routes->front().lock();
1040         }
1041
1042         set_current_route (r);
1043 }
1044
1045 void
1046 FaderPort::drop_current_route ()
1047 {
1048         if (_current_route) {
1049                 if (_current_route == session->monitor_out()) {
1050                         set_current_route (session->master_out());
1051                 } else {
1052                         set_current_route (boost::shared_ptr<Route>());
1053                 }
1054         }
1055 }
1056
1057 void
1058 FaderPort::set_current_route (boost::shared_ptr<Route> r)
1059 {
1060         route_connections.drop_connections ();
1061
1062         _current_route = r;
1063
1064         /* turn this off. It will be turned on back on in use_master() or
1065            use_monitor() as appropriate.
1066         */
1067         get_button(Output).set_led_state (_output_port, false);
1068
1069         if (_current_route) {
1070                 _current_route->DropReferences.connect (route_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::drop_current_route, this), this);
1071
1072                 _current_route->mute_changed.connect (route_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::map_mute, this, _1), this);
1073                 _current_route->solo_changed.connect (route_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::map_solo, this, _1, _2, _3), this);
1074                 _current_route->listen_changed.connect (route_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::map_listen, this, _1, _2), this);
1075
1076                 boost::shared_ptr<Track> t = boost::dynamic_pointer_cast<Track> (_current_route);
1077                 if (t) {
1078                         t->RecordEnableChanged.connect (route_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::map_recenable, this), this);
1079                 }
1080
1081                 boost::shared_ptr<AutomationControl> control = _current_route->gain_control ();
1082                 if (control) {
1083                         control->Changed.connect (route_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::map_gain, this), this);
1084                         control->alist()->automation_state_changed.connect (route_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::map_auto, this), this);
1085                 }
1086
1087                 boost::shared_ptr<MonitorProcessor> mp = _current_route->monitor_control();
1088                 if (mp) {
1089                         mp->cut_control()->Changed.connect (route_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort::map_cut, this), this);
1090                 }
1091         }
1092
1093         //ToDo: subscribe to the fader automation modes so we can light the LEDs
1094
1095         map_route_state ();
1096 }
1097
1098 void
1099 FaderPort::map_auto ()
1100 {
1101         boost::shared_ptr<AutomationControl> control = _current_route->gain_control ();
1102         const AutoState as = control->automation_state ();
1103
1104         switch (as) {
1105                 case ARDOUR::Play:
1106                         get_button (FP_Read).set_led_state (_output_port, true);
1107                         get_button (FP_Write).set_led_state (_output_port, false);
1108                         get_button (FP_Touch).set_led_state (_output_port, false);
1109                         get_button (FP_Off).set_led_state (_output_port, false);
1110                 break;
1111                 case ARDOUR::Write:
1112                         get_button (FP_Read).set_led_state (_output_port, false);
1113                         get_button (FP_Write).set_led_state (_output_port, true);
1114                         get_button (FP_Touch).set_led_state (_output_port, false);
1115                         get_button (FP_Off).set_led_state (_output_port, false);
1116                 break;
1117                 case ARDOUR::Touch:
1118                         get_button (FP_Read).set_led_state (_output_port, false);
1119                         get_button (FP_Write).set_led_state (_output_port, false);
1120                         get_button (FP_Touch).set_led_state (_output_port, true);
1121                         get_button (FP_Off).set_led_state (_output_port, false);
1122                 break;
1123                 case ARDOUR::Off:
1124                         get_button (FP_Read).set_led_state (_output_port, false);
1125                         get_button (FP_Write).set_led_state (_output_port, false);
1126                         get_button (FP_Touch).set_led_state (_output_port, false);
1127                         get_button (FP_Off).set_led_state (_output_port, true);
1128                 break;
1129         }
1130
1131 }
1132
1133
1134 void
1135 FaderPort::map_cut ()
1136 {
1137         boost::shared_ptr<MonitorProcessor> mp = _current_route->monitor_control();
1138
1139         if (mp) {
1140                 bool yn = mp->cut_all ();
1141                 if (yn) {
1142                         start_blinking (Mute);
1143                 } else {
1144                         stop_blinking (Mute);
1145                 }
1146         } else {
1147                 stop_blinking (Mute);
1148         }
1149 }
1150
1151 void
1152 FaderPort::map_mute (void*)
1153 {
1154         get_button (Mute).set_led_state (_output_port, _current_route->muted());
1155 }
1156
1157 void
1158 FaderPort::map_solo (bool, void*, bool)
1159 {
1160         get_button (Solo).set_led_state (_output_port, _current_route->soloed() || _current_route->listening_via_monitor());
1161 }
1162
1163 void
1164 FaderPort::map_listen (void*, bool)
1165 {
1166         get_button (Solo).set_led_state (_output_port, _current_route->listening_via_monitor());
1167 }
1168
1169 void
1170 FaderPort::map_recenable ()
1171 {
1172         boost::shared_ptr<Track> t = boost::dynamic_pointer_cast<Track> (_current_route);
1173         if (t) {
1174                 get_button (Rec).set_led_state (_output_port, t->record_enabled());
1175         } else {
1176                 get_button (Rec).set_led_state (_output_port, false);
1177         }
1178 }
1179
1180 void
1181 FaderPort::map_gain ()
1182 {
1183         if (fader_is_touched) {
1184                 /* Do not send fader moves while the user is touching the fader */
1185                 return;
1186         }
1187
1188         if (!_current_route) {
1189                 return;
1190         }
1191
1192         boost::shared_ptr<AutomationControl> control = _current_route->gain_control ();
1193         double val;
1194
1195         if (!control) {
1196                 val = 0.0;
1197         } else {
1198                 val = control->internal_to_interface (control->get_value ());
1199         }
1200
1201         /* Faderport sends fader position with range 0..16384 (though some of
1202          * the least-significant bits at the top end are missing - it may only
1203          * get to 1636X or so).
1204          *
1205          * But ... position must be sent in the range 0..1023.
1206          *
1207          * Thanks, Obama.
1208          */
1209
1210         int ival = (int) lrintf (val * 1023.0);
1211
1212         /* MIDI normalization requires that we send two separate messages here,
1213          * not one single 6 byte one.
1214          */
1215
1216         MIDI::byte buf[3];
1217
1218         buf[0] = 0xb0;
1219         buf[1] = 0x0;
1220         buf[2] = ival >> 7;
1221
1222         _output_port->write (buf, 3, 0);
1223
1224         buf[1] = 0x20;
1225         buf[2] = ival & 0x7f;
1226
1227         _output_port->write (buf, 3, 0);
1228 }
1229
1230 void
1231 FaderPort::map_route_state ()
1232 {
1233         if (!_current_route) {
1234                 stop_blinking (Mute);
1235                 stop_blinking (Solo);
1236                 get_button (Rec).set_led_state (_output_port, false);
1237         } else {
1238                 /* arguments to these map_*() methods are all ignored */
1239                 map_mute (0);
1240                 map_solo (false, 0, false);
1241                 map_recenable ();
1242                 map_gain ();
1243                 map_cut ();
1244                 map_auto ();
1245         }
1246 }
1247
1248 list<boost::shared_ptr<ARDOUR::Bundle> >
1249 FaderPort::bundles ()
1250 {
1251         list<boost::shared_ptr<ARDOUR::Bundle> > b;
1252
1253         if (_input_bundle) {
1254                 b.push_back (_input_bundle);
1255                 b.push_back (_output_bundle);
1256         }
1257
1258         return b;
1259 }
1260
1261 boost::shared_ptr<Port>
1262 FaderPort::output_port()
1263 {
1264         return _output_port;
1265 }
1266
1267 boost::shared_ptr<Port>
1268 FaderPort::input_port()
1269 {
1270         return _input_port;
1271 }
1272
1273 void
1274 FaderPort::set_action (ButtonID id, std::string const& action_name, bool on_press, ButtonState bs)
1275 {
1276         get_button(id).set_action (action_name, on_press, bs);
1277 }
1278
1279 string
1280 FaderPort::get_action (ButtonID id, bool press, ButtonState bs)
1281 {
1282         return get_button(id).get_action (press, bs);
1283 }