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