propagate GUI track selection to control protocols; make MCP update when GUI track...
[ardour.git] / libs / surfaces / mackie / mackie_control_protocol.cc
1 /*
2         Copyright (C) 2006,2007 John Anderson
3
4         This program is free software; you can redistribute it and/or modify
5         it under the terms of the GNU General Public License as published by
6         the Free Software Foundation; either version 2 of the License, or
7         (at your option) any later version.
8
9         This program is distributed in the hope that it will be useful,
10         but WITHOUT ANY WARRANTY; without even the implied warranty of
11         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12         GNU General Public License for more details.
13
14         You should have received a copy of the GNU General Public License
15         along with this program; if not, write to the Free Software
16         Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <fcntl.h>
20 #include <iostream>
21 #include <algorithm>
22 #include <cmath>
23 #include <sstream>
24 #include <vector>
25 #include <iomanip>
26
27 #include <inttypes.h>
28 #include <float.h>
29 #include <sys/time.h>
30 #include <errno.h>
31 #include <poll.h>
32
33 #include <boost/shared_array.hpp>
34
35 #include "midi++/types.h"
36 #include "midi++/port.h"
37 #include "pbd/pthread_utils.h"
38 #include "pbd/error.h"
39 #include "pbd/memento_command.h"
40 #include "pbd/convert.h"
41
42 #include "ardour/dB.h"
43 #include "ardour/debug.h"
44 #include "ardour/location.h"
45 #include "ardour/meter.h"
46 #include "ardour/panner.h"
47 #include "ardour/panner_shell.h"
48 #include "ardour/route.h"
49 #include "ardour/session.h"
50 #include "ardour/tempo.h"
51 #include "ardour/types.h"
52 #include "ardour/audioengine.h"
53
54 #include "mackie_control_protocol.h"
55
56 #include "midi_byte_array.h"
57 #include "mackie_control_exception.h"
58 #include "surface_port.h"
59 #include "surface.h"
60 #include "strip.h"
61 #include "control_group.h"
62 #include "meter.h"
63 #include "button.h"
64 #include "fader.h"
65 #include "pot.h"
66
67 using namespace ARDOUR;
68 using namespace std;
69 using namespace Mackie;
70 using namespace PBD;
71 using namespace Glib;
72
73 #include "i18n.h"
74
75 #include "pbd/abstract_ui.cc" // instantiate template
76
77 #define ui_bind(f, ...) boost::protect (boost::bind (f, __VA_ARGS__))
78
79 const int MackieControlProtocol::MODIFIER_OPTION = 0x1;
80 const int MackieControlProtocol::MODIFIER_CONTROL = 0x2;
81 const int MackieControlProtocol::MODIFIER_SHIFT = 0x3;
82 const int MackieControlProtocol::MODIFIER_CMDALT = 0x4;
83
84 MackieControlProtocol* MackieControlProtocol::_instance = 0;
85
86 bool MackieControlProtocol::probe()
87 {
88         return true;
89 }
90
91 MackieControlProtocol::MackieControlProtocol (Session& session)
92         : ControlProtocol (session, X_("Mackie"), this)
93         , AbstractUI<MackieControlUIRequest> ("mackie")
94         , _current_initial_bank (0)
95         , _timecode_type (ARDOUR::AnyTime::BBT)
96         , _input_bundle (new ARDOUR::Bundle (_("Mackie Control In"), true))
97         , _output_bundle (new ARDOUR::Bundle (_("Mackie Control Out"), false))
98         , _gui (0)
99         , _zoom_mode (false)
100         , _scrub_mode (false)
101         , _flip_mode (Normal)
102         , _view_mode (Global)
103         , _current_selected_track (-1)
104 {
105         DEBUG_TRACE (DEBUG::MackieControl, "MackieControlProtocol::MackieControlProtocol\n");
106
107         DeviceInfo::reload_device_info ();
108
109         AudioEngine::instance()->PortConnectedOrDisconnected.connect (
110                 audio_engine_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::port_connected_or_disconnected, this, _2, _4, _5),
111                 this
112                 );
113
114         TrackSelectionChanged.connect (gui_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::gui_track_selection_changed, this, _1), this);
115
116         _instance = this;
117
118         build_button_map ();
119 }
120
121 MackieControlProtocol::~MackieControlProtocol()
122 {
123         DEBUG_TRACE (DEBUG::MackieControl, "MackieControlProtocol::~MackieControlProtocol\n");
124
125         _active = false;
126
127         try {
128                 close();
129         }
130         catch (exception & e) {
131                 cout << "~MackieControlProtocol caught " << e.what() << endl;
132         }
133         catch (...) {
134                 cout << "~MackieControlProtocol caught unknown" << endl;
135         }
136
137         DEBUG_TRACE (DEBUG::MackieControl, "finished ~MackieControlProtocol::MackieControlProtocol\n");
138
139         _instance = 0;
140 }
141
142 void
143 MackieControlProtocol::thread_init ()
144 {
145         struct sched_param rtparam;
146
147         pthread_set_name (X_("MackieControl"));
148
149         PBD::notify_gui_about_thread_creation (X_("gui"), pthread_self(), X_("MackieControl"), 2048);
150         ARDOUR::SessionEvent::create_per_thread_pool (X_("MackieControl"), 128);
151
152         memset (&rtparam, 0, sizeof (rtparam));
153         rtparam.sched_priority = 9; /* XXX should be relative to audio (JACK) thread */
154
155         if (pthread_setschedparam (pthread_self(), SCHED_FIFO, &rtparam) != 0) {
156                 // do we care? not particularly.
157         }
158 }
159
160 // go to the previous track.
161 // Assume that get_sorted_routes().size() > route_table.size()
162 void 
163 MackieControlProtocol::prev_track()
164 {
165         if (_current_initial_bank >= 1) {
166                 switch_banks (_current_initial_bank - 1);
167         }
168 }
169
170 // go to the next track.
171 // Assume that get_sorted_routes().size() > route_table.size()
172 void 
173 MackieControlProtocol::next_track()
174 {
175         Sorted sorted = get_sorted_routes();
176         if (_current_initial_bank + n_strips() < sorted.size()) {
177                 switch_banks (_current_initial_bank + 1);
178         }
179 }
180
181 // predicate for sort call in get_sorted_routes
182 struct RouteByRemoteId
183 {
184         bool operator () (const boost::shared_ptr<Route> & a, const boost::shared_ptr<Route> & b) const
185         {
186                 return a->remote_control_id() < b->remote_control_id();
187         }
188
189         bool operator () (const Route & a, const Route & b) const
190         {
191                 return a.remote_control_id() < b.remote_control_id();
192         }
193
194         bool operator () (const Route * a, const Route * b) const
195         {
196                 return a->remote_control_id() < b->remote_control_id();
197         }
198 };
199
200 MackieControlProtocol::Sorted 
201 MackieControlProtocol::get_sorted_routes()
202 {
203         Sorted sorted;
204
205         // fetch all routes
206         boost::shared_ptr<RouteList> routes = session->get_routes();
207         set<uint32_t> remote_ids;
208
209         // routes with remote_id 0 should never be added
210         // TODO verify this with ardour devs
211         // remote_ids.insert (0);
212
213         // sort in remote_id order, and exclude master, control and hidden routes
214         // and any routes that are already set.
215
216         for (RouteList::iterator it = routes->begin(); it != routes->end(); ++it) {
217
218                 Route & route = **it;
219
220                 if (remote_ids.find (route.remote_control_id()) != remote_ids.end()) {
221                         continue;
222                 }
223
224                 if (route.is_hidden() || route.is_master() || route.is_monitor()) {
225                         continue;
226                 }
227
228                 switch (_view_mode) {
229                 case Global:
230                         break;
231                 case AudioTracks:
232                         break;
233                 case Busses:
234                         break;
235                 case MidiTracks:
236                         break;
237                 case Dynamics:
238                         break;
239                 case EQ:
240                         break;
241                 case Loop:
242                         break;
243                 case Sends:
244                         break;
245                 case Plugins:
246                         break;
247                 }
248
249                 sorted.push_back (*it);
250                 remote_ids.insert (route.remote_control_id());
251         }
252
253         sort (sorted.begin(), sorted.end(), RouteByRemoteId());
254         return sorted;
255 }
256
257 void 
258 MackieControlProtocol::refresh_current_bank()
259 {
260         switch_banks (_current_initial_bank, true);
261 }
262
263 uint32_t
264 MackieControlProtocol::n_strips() const
265 {
266         uint32_t strip_count = 0;
267
268         for (Surfaces::const_iterator si = surfaces.begin(); si != surfaces.end(); ++si) {
269                 strip_count += (*si)->n_strips ();
270         }
271
272         return strip_count;
273 }
274
275 void 
276 MackieControlProtocol::switch_banks (uint32_t initial, bool force)
277 {
278         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("switch banking to start at %1 force ? %2 current = %3\n", initial, force, _current_initial_bank));
279
280         if (initial == _current_initial_bank && !force) {
281                 return;
282         }
283
284         Sorted sorted = get_sorted_routes();
285         uint32_t strip_cnt = n_strips();
286
287         if (sorted.size() <= strip_cnt && !force) {
288                 /* no banking - not enough routes to fill all strips */
289                 return;
290         }
291
292         uint32_t delta = sorted.size() - strip_cnt;
293
294         if (delta > 0 && initial > delta) {
295                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("not switching to %1\n", initial));
296                 return;
297         }
298
299         _current_initial_bank = initial;
300         _current_selected_track = -1;
301
302         for (Surfaces::iterator si = surfaces.begin(); si != surfaces.end(); ++si) {
303                 (*si)->drop_routes ();
304         }
305
306         // Map current bank of routes onto each surface(+strip)
307
308         if (_current_initial_bank <= sorted.size()) {
309
310                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("switch to %1, %2, available routes %3\n", _current_initial_bank, strip_cnt, sorted.size()));
311
312                 // link routes to strips
313
314                 Sorted::iterator r = sorted.begin() + _current_initial_bank;
315                 
316                 for (Surfaces::iterator si = surfaces.begin(); si != surfaces.end(); ++si) {
317                         vector<boost::shared_ptr<Route> > routes;
318                         uint32_t added = 0;
319
320                         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("surface has %1 strips\n", (*si)->n_strips()));
321
322                         for (; r != sorted.end() && added < (*si)->n_strips(); ++r, ++added) {
323                                 routes.push_back (*r);
324                                 cerr << "\t\tadded " << (*r)->name() << endl;
325                         }
326
327                         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("give surface %1 routes\n", routes.size()));
328
329                         (*si)->map_routes (routes);
330                 }
331         }
332
333         /* reset this to get the right display of view mode after the switch */
334         set_view_mode (_view_mode);
335         
336         /* current bank has not been saved */
337
338         session->set_dirty();
339 }
340
341 int 
342 MackieControlProtocol::set_active (bool yn)
343 {
344         if (yn == _active) {
345                 return 0;
346         }
347
348         try
349         {
350                 if (yn) {
351
352                         /* start event loop */
353
354                         BaseUI::run ();
355
356                         create_surfaces ();
357                         connect_session_signals ();
358                         
359                         _active = true;
360                         update_surfaces ();
361
362                         /* set up periodic task for metering and automation
363                          */
364
365                         Glib::RefPtr<Glib::TimeoutSource> periodic_timeout = Glib::TimeoutSource::create (100); // milliseconds
366                         periodic_connection = periodic_timeout->connect (sigc::mem_fun (*this, &MackieControlProtocol::periodic));
367                         periodic_timeout->attach (main_loop()->get_context());
368
369                 } else {
370                         BaseUI::quit ();
371                         close();
372                         _active = false;
373                 }
374         }
375         
376         catch (exception & e) {
377                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("set_active to false because exception caught: %1\n", e.what()));
378                 _active = false;
379                 throw;
380         }
381
382         return 0;
383 }
384
385 bool
386 MackieControlProtocol::periodic ()
387 {
388         if (!_active) {
389                 return false;
390         }
391
392         for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
393                 (*s)->periodic ();
394         }
395         
396         return true;
397 }
398
399
400 void 
401 MackieControlProtocol::update_timecode_beats_led()
402 {
403         switch (_timecode_type) {
404                 case ARDOUR::AnyTime::BBT:
405                         update_global_led ("beats", on);
406                         update_global_led ("timecode", off);
407                         break;
408                 case ARDOUR::AnyTime::Timecode:
409                         update_global_led ("timecode", on);
410                         update_global_led ("beats", off);
411                         break;
412                 default:
413                         ostringstream os;
414                         os << "Unknown Anytime::Type " << _timecode_type;
415                         throw runtime_error (os.str());
416         }
417 }
418
419 void 
420 MackieControlProtocol::update_global_button (const string & name, LedState ls)
421 {
422         boost::shared_ptr<Surface> surface = surfaces.front();
423
424         if (!surface->type() == mcu) {
425                 return;
426         }
427
428         if (surface->controls_by_name.find (name) != surface->controls_by_name.end()) {
429                 Button * button = dynamic_cast<Button*> (surface->controls_by_name[name]);
430                 surface->write (button->set_state (ls));
431         } else {
432                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Button %1 not found\n", name));
433         }
434 }
435
436 void 
437 MackieControlProtocol::update_global_led (const string & name, LedState ls)
438 {
439         boost::shared_ptr<Surface> surface = surfaces.front();
440
441         if (!surface->type() == mcu) {
442                 return;
443         }
444
445         if (surface->controls_by_name.find (name) != surface->controls_by_name.end()) {
446                 Led * led = dynamic_cast<Led*> (surface->controls_by_name[name]);
447                 surface->write (led->set_state (ls));
448         } else {
449                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Led %1 not found\n", name));
450         }
451 }
452
453 // send messages to surface to set controls to correct values
454 void 
455 MackieControlProtocol::update_surfaces()
456 {
457         if (!_active) {
458                 return;
459         }
460
461         // do the initial bank switch to connect signals
462         // _current_initial_bank is initialised by set_state
463         switch_banks (_current_initial_bank, true);
464         
465         // sometimes the jog wheel is a pot
466         surfaces.front()->blank_jog_ring ();
467         
468         // update global buttons and displays
469
470         notify_record_state_changed();
471         notify_transport_state_changed();
472         update_timecode_beats_led();
473 }
474
475 void 
476 MackieControlProtocol::connect_session_signals()
477 {
478         // receive routes added
479         session->RouteAdded.connect(session_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::notify_route_added, this, _1), this);
480         // receive record state toggled
481         session->RecordStateChanged.connect(session_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::notify_record_state_changed, this), this);
482         // receive transport state changed
483         session->TransportStateChange.connect(session_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::notify_transport_state_changed, this), this);
484         session->TransportLooped.connect (session_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::notify_loop_state_changed, this), this);
485         // receive punch-in and punch-out
486         Config->ParameterChanged.connect(session_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::notify_parameter_changed, this, _1), this);
487         session->config.ParameterChanged.connect (session_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::notify_parameter_changed, this, _1), this);
488         // receive rude solo changed
489         session->SoloActive.connect(session_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::notify_solo_active_changed, this, _1), this);
490
491         // make sure remote id changed signals reach here
492         // see also notify_route_added
493         Sorted sorted = get_sorted_routes();
494
495         for (Sorted::iterator it = sorted.begin(); it != sorted.end(); ++it) {
496                 (*it)->RemoteControlIDChanged.connect (route_connections, MISSING_INVALIDATOR, ui_bind(&MackieControlProtocol::notify_remote_id_changed, this), this);
497         }
498 }
499
500 void 
501 MackieControlProtocol::create_surfaces ()
502 {
503         string device_name = "mcu";
504         surface_type_t stype = mcu;
505
506         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Create %1 surfaces\n",
507                                                            1 + ARDOUR::Config->get_mackie_extenders()));
508
509         for (uint32_t n = 0; n < 1 + ARDOUR::Config->get_mackie_extenders(); ++n) {
510
511                 boost::shared_ptr<Surface> surface (new Surface (*this, session->engine().jack(), device_name, n, stype));
512                 surfaces.push_back (surface);
513                 
514                 device_name = "mcu_xt";
515                 stype = ext;
516
517                 _input_bundle->add_channel (
518                         surface->port().input_port().name(),
519                         ARDOUR::DataType::MIDI,
520                         session->engine().make_port_name_non_relative (surface->port().input_port().name())
521                         );
522                 
523                 _output_bundle->add_channel (
524                         surface->port().output_port().name(),
525                         ARDOUR::DataType::MIDI,
526                         session->engine().make_port_name_non_relative (surface->port().output_port().name())
527                         );
528
529                 int fd;
530                 MIDI::Port& input_port (surface->port().input_port());
531                 
532                 if ((fd = input_port.selectable ()) >= 0) {
533                         Glib::RefPtr<IOSource> psrc = IOSource::create (fd, IO_IN|IO_HUP|IO_ERR);
534
535                         psrc->connect (sigc::bind (sigc::mem_fun (this, &MackieControlProtocol::midi_input_handler), &input_port));
536                         psrc->attach (main_loop()->get_context());
537                         
538                         // glibmm hack: for now, store only the GSource*
539
540                         port_sources.push_back (psrc->gobj());
541                         g_source_ref (psrc->gobj());
542                 }
543         }
544 }
545
546 void 
547 MackieControlProtocol::close()
548 {
549         clear_ports ();
550
551         port_connections.drop_connections ();
552         session_connections.drop_connections ();
553         route_connections.drop_connections ();
554         periodic_connection.disconnect ();
555
556         surfaces.clear ();
557 }
558
559 XMLNode& 
560 MackieControlProtocol::get_state()
561 {
562         DEBUG_TRACE (DEBUG::MackieControl, "MackieControlProtocol::get_state\n");
563
564         // add name of protocol
565         XMLNode* node = new XMLNode (X_("Protocol"));
566         node->add_property (X_("name"), ARDOUR::ControlProtocol::_name);
567
568         node->add_property (X_("device"), _device_info.name());
569
570         // add current bank
571         ostringstream os;
572         os << _current_initial_bank;
573         node->add_property (X_("bank"), os.str());
574
575         for (uint32_t n = 0; n < 16; ++n) {
576                 ostringstream s;
577                 s << string_compose ("f%1-action", n+1);
578                 node->add_property (s.str().c_str(), f_action (n));
579         }
580
581         return *node;
582 }
583
584 int 
585 MackieControlProtocol::set_state (const XMLNode & node, int /*version*/)
586 {
587         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("MackieControlProtocol::set_state: active %1\n", _active));
588
589         int retval = 0;
590         const XMLProperty* prop;
591
592         if ((prop = node.property (X_("device"))) != 0) {
593                 load_device_info (prop->value());
594         }
595
596         // fetch current bank
597         if ((prop = node.property (X_("bank"))) != 0) {
598                 string bank = prop->value();
599                 set_active (true);
600                 uint32_t new_bank = atoi (bank.c_str());
601                 if (_current_initial_bank != new_bank) {
602                         switch_banks (new_bank);
603                 }
604         }
605
606         _f_actions.clear ();
607         _f_actions.resize (16);
608
609         for (uint32_t n = 0; n < 16; ++n) {
610                 string action;
611                 if ((prop = node.property (string_compose ("f%1-action", n+1))) != 0) {
612                         action = prop->value();
613                 }
614
615                 if (action.empty()) {
616                         /* default action if nothing is specified */
617                         action = string_compose ("Editor/goto-visual-state-%1", n+1);
618                 }
619
620                 _f_actions[n] = action;
621         }
622
623         return retval;
624 }
625
626
627 /////////////////////////////////////////////////
628 // handlers for Route signals
629 // TODO should these be part of RouteSignal?
630 // They started off as signal/slot handlers for signals
631 // from Route, but they're also used in polling for automation
632 /////////////////////////////////////////////////
633
634 // TODO handle plugin automation polling
635 string 
636 MackieControlProtocol::format_bbt_timecode (framepos_t now_frame)
637 {
638         Timecode::BBT_Time bbt_time;
639         session->bbt_time (now_frame, bbt_time);
640
641         // According to the Logic docs
642         // digits: 888/88/88/888
643         // BBT mode: Bars/Beats/Subdivisions/Ticks
644         ostringstream os;
645         os << setw(3) << setfill('0') << bbt_time.bars;
646         os << setw(2) << setfill('0') << bbt_time.beats;
647
648         // figure out subdivisions per beat
649         const ARDOUR::Meter & meter = session->tempo_map().meter_at (now_frame);
650         int subdiv = 2;
651         if (meter.note_divisor() == 8 && (meter.divisions_per_bar() == 12.0 || meter.divisions_per_bar() == 9.0 || meter.divisions_per_bar() == 6.0)) {
652                 subdiv = 3;
653         }
654
655         uint32_t subdivisions = bbt_time.ticks / uint32_t (Timecode::BBT_Time::ticks_per_beat / subdiv);
656         uint32_t ticks = bbt_time.ticks % uint32_t (Timecode::BBT_Time::ticks_per_beat / subdiv);
657
658         os << setw(2) << setfill('0') << subdivisions + 1;
659         os << setw(3) << setfill('0') << ticks;
660
661         return os.str();
662 }
663
664 string 
665 MackieControlProtocol::format_timecode_timecode (framepos_t now_frame)
666 {
667         Timecode::Time timecode;
668         session->timecode_time (now_frame, timecode);
669
670         // According to the Logic docs
671         // digits: 888/88/88/888
672         // Timecode mode: Hours/Minutes/Seconds/Frames
673         ostringstream os;
674         os << setw(3) << setfill('0') << timecode.hours;
675         os << setw(2) << setfill('0') << timecode.minutes;
676         os << setw(2) << setfill('0') << timecode.seconds;
677         os << setw(3) << setfill('0') << timecode.frames;
678
679         return os.str();
680 }
681
682 void 
683 MackieControlProtocol::update_timecode_display()
684 {
685         boost::shared_ptr<Surface> surface = surfaces.front();
686
687         if (surface->type() != mcu || !surface->has_timecode_display()) {
688                 return;
689         }
690
691         // do assignment here so current_frame is fixed
692         framepos_t current_frame = session->transport_frame();
693         string timecode;
694
695         switch (_timecode_type) {
696         case ARDOUR::AnyTime::BBT:
697                 timecode = format_bbt_timecode (current_frame);
698                 break;
699         case ARDOUR::AnyTime::Timecode:
700                 timecode = format_timecode_timecode (current_frame);
701                 break;
702         default:
703                 return;
704         }
705         
706         // only write the timecode string to the MCU if it's changed
707         // since last time. This is to reduce midi bandwidth used.
708         if (timecode != _timecode_last) {
709                 surface->display_timecode (timecode, _timecode_last);
710                 _timecode_last = timecode;
711         }
712 }
713
714 ///////////////////////////////////////////
715 // Session signals
716 ///////////////////////////////////////////
717
718 void MackieControlProtocol::notify_parameter_changed (std::string const & p)
719 {
720         if (p == "punch-in") {
721                 update_global_button ("punch_in", session->config.get_punch_in());
722         } else if (p == "punch-out") {
723                 update_global_button ("punch_out", session->config.get_punch_out());
724         } else if (p == "clicking") {
725                 update_global_button ("clicking", Config->get_clicking());
726         } else {
727                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("parameter changed: %1\n", p));
728         }
729 }
730
731 // RouteList is the set of routes that have just been added
732 void 
733 MackieControlProtocol::notify_route_added (ARDOUR::RouteList & rl)
734 {
735         // currently assigned banks are less than the full set of
736         // strips, so activate the new strip now.
737
738         refresh_current_bank();
739
740         // otherwise route added, but current bank needs no updating
741
742         // make sure remote id changes in the new route are handled
743         typedef ARDOUR::RouteList ARS;
744
745         for (ARS::iterator it = rl.begin(); it != rl.end(); ++it) {
746                 (*it)->RemoteControlIDChanged.connect (route_connections, MISSING_INVALIDATOR, ui_bind (&MackieControlProtocol::notify_remote_id_changed, this), this);
747         }
748 }
749
750 void 
751 MackieControlProtocol::notify_solo_active_changed (bool active)
752 {
753         boost::shared_ptr<Surface> surface = surfaces.front();
754         
755         Led* rude_solo = dynamic_cast<Led*> (surface->controls_by_name["solo"]);
756
757         if (rude_solo) {
758                 surface->write (rude_solo->set_state (active ? flashing : off));
759         }
760 }
761
762 void 
763 MackieControlProtocol::notify_remote_id_changed()
764 {
765         Sorted sorted = get_sorted_routes();
766         uint32_t sz = n_strips();
767
768         // if a remote id has been moved off the end, we need to shift
769         // the current bank backwards.
770
771         if (sorted.size() - _current_initial_bank < sz) {
772                 // but don't shift backwards past the zeroth channel
773                 switch_banks (max((Sorted::size_type) 0, sorted.size() - sz));
774         } else {
775                 // Otherwise just refresh the current bank
776                 refresh_current_bank();
777         }
778 }
779
780 ///////////////////////////////////////////
781 // Transport signals
782 ///////////////////////////////////////////
783
784 void 
785 MackieControlProtocol::notify_loop_state_changed()
786 {
787         update_global_button ("loop", session->get_play_loop());
788 }
789
790 void 
791 MackieControlProtocol::notify_transport_state_changed()
792 {
793         // switch various play and stop buttons on / off
794         update_global_button ("play", session->transport_speed() == 1.0);
795         update_global_button ("stop", !session->transport_rolling());
796         update_global_button ("rewind", session->transport_speed() < 0.0);
797         update_global_button ("ffwd", session->transport_speed() > 1.0);
798
799         _transport_previously_rolling = session->transport_rolling();
800 }
801
802 void
803 MackieControlProtocol::notify_record_state_changed ()
804 {
805         /* rec is a tristate */
806
807
808         Button * rec = reinterpret_cast<Button*> (surfaces.front()->controls_by_name["record"]);
809         if (rec) {
810                 LedState ls;
811
812                 switch (session->record_status()) {
813                 case Session::Disabled:
814                         DEBUG_TRACE (DEBUG::MackieControl, "record state changed to disabled, LED off\n");
815                         ls = off;
816                         break;
817                 case Session::Recording:
818                         DEBUG_TRACE (DEBUG::MackieControl, "record state changed to recording, LED on\n");
819                         ls = on;
820                         break;
821                 case Session::Enabled:
822                         DEBUG_TRACE (DEBUG::MackieControl, "record state changed to enabled, LED flashing\n");
823                         ls = flashing;
824                         break;
825                 }
826
827                 surfaces.front()->write (rec->set_state (ls));
828         } else {
829                 DEBUG_TRACE (DEBUG::MackieControl, "record button control not found\n");
830         }
831 }
832
833 list<boost::shared_ptr<ARDOUR::Bundle> >
834 MackieControlProtocol::bundles ()
835 {
836         list<boost::shared_ptr<ARDOUR::Bundle> > b;
837         b.push_back (_input_bundle);
838         b.push_back (_output_bundle);
839         return b;
840 }
841
842 void
843 MackieControlProtocol::port_connected_or_disconnected (string a, string b, bool connected)
844 {
845         /* If something is connected to one of our output ports, send MIDI to update the surface
846            to whatever state it should have.
847         */
848
849         if (!connected) {
850                 return;
851         }
852
853         for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
854                 string const n = AudioEngine::instance()->make_port_name_non_relative ((*s)->port().output_port().name ());
855                 if (a == n || b == n) {
856                         update_surfaces ();
857                         return;
858                 }
859         }
860 }
861
862 void
863 MackieControlProtocol::do_request (MackieControlUIRequest* req)
864 {
865         if (req->type == CallSlot) {
866
867                 call_slot (MISSING_INVALIDATOR, req->the_slot);
868
869         } else if (req->type == Quit) {
870
871                 stop ();
872         }
873 }
874
875 int
876 MackieControlProtocol::stop ()
877 {
878         BaseUI::quit ();
879
880         return 0;
881 }
882
883 /** Add a timeout so that a control's in_use flag will be reset some time in the future.
884  *  @param in_use_control the control whose in_use flag to reset.
885  *  @param touch_control a touch control to emit an event for, or 0.
886  */
887 void
888 MackieControlProtocol::add_in_use_timeout (Surface& surface, Control& in_use_control, Control* touch_control)
889 {
890         Glib::RefPtr<Glib::TimeoutSource> timeout (Glib::TimeoutSource::create (250)); // milliseconds
891
892         in_use_control.in_use_connection.disconnect ();
893         in_use_control.in_use_connection = timeout->connect (
894                 sigc::bind (sigc::mem_fun (*this, &MackieControlProtocol::control_in_use_timeout), &surface, &in_use_control, touch_control));
895         in_use_control.in_use_touch_control = touch_control;
896         
897         timeout->attach (main_loop()->get_context());
898
899         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("timeout queued for surface %1, control %2 touch control %3\n",
900                                                            surface.number(), &in_use_control, touch_control));}
901
902 /** Handle timeouts to reset in_use for controls that can't
903  *  do this by themselves (e.g. pots, and faders without touch support).
904  *  @param in_use_control the control whose in_use flag to reset.
905  *  @param touch_control a touch control to emit an event for, or 0.
906  */
907 bool
908 MackieControlProtocol::control_in_use_timeout (Surface* surface, Control* in_use_control, Control* touch_control)
909 {
910         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("timeout elapsed for surface %1, control %2 touch control %3\n",
911                                                            surface->number(), in_use_control, touch_control));
912
913         in_use_control->set_in_use (false);
914
915         if (touch_control) {
916                 /* figure out what to do here */
917         }
918         
919         // only call this method once from the timer
920         return false;
921 }
922
923 void 
924 MackieControlProtocol::update_led (Surface& surface, Button& button, Mackie::LedState ls)
925 {
926         if (ls != none) {
927                 surface.port().write (button.set_state (ls));
928         }
929 }
930
931 void
932 MackieControlProtocol::build_button_map ()
933 {
934 #define DEFINE_BUTTON_HANDLER(b,p,r) button_map.insert (pair<int,ButtonHandlers> ((b), ButtonHandlers ((p),(r))));
935
936         DEFINE_BUTTON_HANDLER (Button::Io, &MackieControlProtocol::io_press, &MackieControlProtocol::io_release);
937         DEFINE_BUTTON_HANDLER (Button::Sends, &MackieControlProtocol::sends_press, &MackieControlProtocol::sends_release);
938         DEFINE_BUTTON_HANDLER (Button::Pan, &MackieControlProtocol::pan_press, &MackieControlProtocol::pan_release);
939         DEFINE_BUTTON_HANDLER (Button::Plugin, &MackieControlProtocol::plugin_press, &MackieControlProtocol::plugin_release);
940         DEFINE_BUTTON_HANDLER (Button::Eq, &MackieControlProtocol::eq_press, &MackieControlProtocol::eq_release);
941         DEFINE_BUTTON_HANDLER (Button::Dyn, &MackieControlProtocol::dyn_press, &MackieControlProtocol::dyn_release);
942         DEFINE_BUTTON_HANDLER (Button::Left, &MackieControlProtocol::left_press, &MackieControlProtocol::left_release);
943         DEFINE_BUTTON_HANDLER (Button::Right, &MackieControlProtocol::right_press, &MackieControlProtocol::right_release);
944         DEFINE_BUTTON_HANDLER (Button::ChannelLeft, &MackieControlProtocol::channel_left_press, &MackieControlProtocol::channel_left_release);
945         DEFINE_BUTTON_HANDLER (Button::ChannelRight, &MackieControlProtocol::channel_right_press, &MackieControlProtocol::channel_right_release);
946         DEFINE_BUTTON_HANDLER (Button::Flip, &MackieControlProtocol::flip_press, &MackieControlProtocol::flip_release);
947         DEFINE_BUTTON_HANDLER (Button::Edit, &MackieControlProtocol::edit_press, &MackieControlProtocol::edit_release);
948         DEFINE_BUTTON_HANDLER (Button::NameValue, &MackieControlProtocol::name_value_press, &MackieControlProtocol::name_value_release);
949         DEFINE_BUTTON_HANDLER (Button::TimecodeBeats, &MackieControlProtocol::timecode_beats_press, &MackieControlProtocol::timecode_beats_release);
950         DEFINE_BUTTON_HANDLER (Button::F1, &MackieControlProtocol::F1_press, &MackieControlProtocol::F1_release);
951         DEFINE_BUTTON_HANDLER (Button::F2, &MackieControlProtocol::F2_press, &MackieControlProtocol::F2_release);
952         DEFINE_BUTTON_HANDLER (Button::F3, &MackieControlProtocol::F3_press, &MackieControlProtocol::F3_release);
953         DEFINE_BUTTON_HANDLER (Button::F4, &MackieControlProtocol::F4_press, &MackieControlProtocol::F4_release);
954         DEFINE_BUTTON_HANDLER (Button::F5, &MackieControlProtocol::F5_press, &MackieControlProtocol::F5_release);
955         DEFINE_BUTTON_HANDLER (Button::F6, &MackieControlProtocol::F6_press, &MackieControlProtocol::F6_release);
956         DEFINE_BUTTON_HANDLER (Button::F7, &MackieControlProtocol::F7_press, &MackieControlProtocol::F7_release);
957         DEFINE_BUTTON_HANDLER (Button::F8, &MackieControlProtocol::F8_press, &MackieControlProtocol::F8_release);
958         DEFINE_BUTTON_HANDLER (Button::F9, &MackieControlProtocol::F9_press, &MackieControlProtocol::F9_release);
959         DEFINE_BUTTON_HANDLER (Button::F10, &MackieControlProtocol::F10_press, &MackieControlProtocol::F10_release);
960         DEFINE_BUTTON_HANDLER (Button::F11, &MackieControlProtocol::F11_press, &MackieControlProtocol::F11_release);
961         DEFINE_BUTTON_HANDLER (Button::F12, &MackieControlProtocol::F12_press, &MackieControlProtocol::F12_release);
962         DEFINE_BUTTON_HANDLER (Button::F13, &MackieControlProtocol::F13_press, &MackieControlProtocol::F13_release);
963         DEFINE_BUTTON_HANDLER (Button::F14, &MackieControlProtocol::F14_press, &MackieControlProtocol::F14_release);
964         DEFINE_BUTTON_HANDLER (Button::F15, &MackieControlProtocol::F15_press, &MackieControlProtocol::F15_release);
965         DEFINE_BUTTON_HANDLER (Button::F16, &MackieControlProtocol::F16_press, &MackieControlProtocol::F16_release);
966         DEFINE_BUTTON_HANDLER (Button::Shift, &MackieControlProtocol::shift_press, &MackieControlProtocol::shift_release);
967         DEFINE_BUTTON_HANDLER (Button::Option, &MackieControlProtocol::option_press, &MackieControlProtocol::option_release);
968         DEFINE_BUTTON_HANDLER (Button::Ctrl, &MackieControlProtocol::control_press, &MackieControlProtocol::control_release);
969         DEFINE_BUTTON_HANDLER (Button::CmdAlt, &MackieControlProtocol::cmd_alt_press, &MackieControlProtocol::cmd_alt_release);
970         DEFINE_BUTTON_HANDLER (Button::On, &MackieControlProtocol::on_press, &MackieControlProtocol::on_release);
971         DEFINE_BUTTON_HANDLER (Button::RecReady, &MackieControlProtocol::rec_ready_press, &MackieControlProtocol::rec_ready_release);
972         DEFINE_BUTTON_HANDLER (Button::Undo, &MackieControlProtocol::undo_press, &MackieControlProtocol::undo_release);
973         DEFINE_BUTTON_HANDLER (Button::Save, &MackieControlProtocol::save_press, &MackieControlProtocol::save_release);
974         DEFINE_BUTTON_HANDLER (Button::Touch, &MackieControlProtocol::touch_press, &MackieControlProtocol::touch_release);
975         DEFINE_BUTTON_HANDLER (Button::Redo, &MackieControlProtocol::redo_press, &MackieControlProtocol::redo_release);
976         DEFINE_BUTTON_HANDLER (Button::Marker, &MackieControlProtocol::marker_press, &MackieControlProtocol::marker_release);
977         DEFINE_BUTTON_HANDLER (Button::Enter, &MackieControlProtocol::enter_press, &MackieControlProtocol::enter_release);
978         DEFINE_BUTTON_HANDLER (Button::Cancel, &MackieControlProtocol::cancel_press, &MackieControlProtocol::cancel_release);
979         DEFINE_BUTTON_HANDLER (Button::Mixer, &MackieControlProtocol::mixer_press, &MackieControlProtocol::mixer_release);
980         DEFINE_BUTTON_HANDLER (Button::FrmLeft, &MackieControlProtocol::frm_left_press, &MackieControlProtocol::frm_left_release);
981         DEFINE_BUTTON_HANDLER (Button::FrmRight, &MackieControlProtocol::frm_right_press, &MackieControlProtocol::frm_right_release);
982         DEFINE_BUTTON_HANDLER (Button::Loop, &MackieControlProtocol::loop_press, &MackieControlProtocol::loop_release);
983         DEFINE_BUTTON_HANDLER (Button::PunchIn, &MackieControlProtocol::punch_in_press, &MackieControlProtocol::punch_in_release);
984         DEFINE_BUTTON_HANDLER (Button::PunchOut, &MackieControlProtocol::punch_out_press, &MackieControlProtocol::punch_out_release);
985         DEFINE_BUTTON_HANDLER (Button::Home, &MackieControlProtocol::home_press, &MackieControlProtocol::home_release);
986         DEFINE_BUTTON_HANDLER (Button::End, &MackieControlProtocol::end_press, &MackieControlProtocol::end_release);
987         DEFINE_BUTTON_HANDLER (Button::Rewind, &MackieControlProtocol::rewind_press, &MackieControlProtocol::rewind_release);
988         DEFINE_BUTTON_HANDLER (Button::Ffwd, &MackieControlProtocol::ffwd_press, &MackieControlProtocol::ffwd_release);
989         DEFINE_BUTTON_HANDLER (Button::Stop, &MackieControlProtocol::stop_press, &MackieControlProtocol::stop_release);
990         DEFINE_BUTTON_HANDLER (Button::Play, &MackieControlProtocol::play_press, &MackieControlProtocol::play_release);
991         DEFINE_BUTTON_HANDLER (Button::Record, &MackieControlProtocol::record_press, &MackieControlProtocol::record_release);
992         DEFINE_BUTTON_HANDLER (Button::CursorUp, &MackieControlProtocol::cursor_up_press, &MackieControlProtocol::cursor_up_release);
993         DEFINE_BUTTON_HANDLER (Button::CursorDown, &MackieControlProtocol::cursor_down_press, &MackieControlProtocol::cursor_down_release);
994         DEFINE_BUTTON_HANDLER (Button::CursorLeft, &MackieControlProtocol::cursor_left_press, &MackieControlProtocol::cursor_left_release);
995         DEFINE_BUTTON_HANDLER (Button::CursorRight, &MackieControlProtocol::cursor_right_press, &MackieControlProtocol::cursor_right_release);
996         DEFINE_BUTTON_HANDLER (Button::Zoom, &MackieControlProtocol::zoom_press, &MackieControlProtocol::zoom_release);
997         DEFINE_BUTTON_HANDLER (Button::Scrub, &MackieControlProtocol::scrub_press, &MackieControlProtocol::scrub_release);
998         DEFINE_BUTTON_HANDLER (Button::UserA, &MackieControlProtocol::user_a_press, &MackieControlProtocol::user_a_release);
999         DEFINE_BUTTON_HANDLER (Button::UserB, &MackieControlProtocol::user_b_press, &MackieControlProtocol::user_b_release);
1000 }
1001
1002 void 
1003 MackieControlProtocol::handle_button_event (Surface& surface, Button& button, ButtonState bs)
1004 {
1005         if  (bs != press && bs != release) {
1006                 update_led (surface, button, none);
1007                 return;
1008         }
1009         
1010         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Handling %1 for button %2\n", (bs == press ? "press" : "release"), button.id()));
1011
1012         ButtonMap::iterator b = button_map.find (button.id());
1013
1014         if (b != button_map.end()) {
1015
1016                 ButtonHandlers& bh (b->second);
1017
1018                 switch  (bs) {
1019                 case press: 
1020                         surface.write (button.set_state ((this->*(bh.press)) (button)));
1021                 case release: 
1022                         surface.write (button.set_state ((this->*(bh.release)) (button)));
1023                         break;
1024                 default:
1025                         break;
1026                 }
1027         } else {
1028                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("no button handlers for ID %1\n", button.id()));
1029         }
1030 }
1031
1032 void
1033 MackieControlProtocol::select_track (boost::shared_ptr<Route> r)
1034 {
1035         if (_modifier_state == MODIFIER_SHIFT) {
1036                 r->gain_control()->set_value (0.0);
1037         } else {
1038                 if (_current_selected_track > 0 && r->remote_control_id() == (uint32_t) _current_selected_track) {
1039                         UnselectTrack (); /* EMIT SIGNAL */
1040                         _current_selected_track = -1;
1041                 } else {
1042                         SelectByRID (r->remote_control_id()); /* EMIT SIGNAL */
1043                         _current_selected_track = r->remote_control_id();;
1044                 }
1045         }
1046 }
1047
1048 bool
1049 MackieControlProtocol::midi_input_handler (IOCondition ioc, MIDI::Port* port)
1050 {
1051         DEBUG_TRACE (DEBUG::MidiIO, string_compose ("something happend on  %1\n", port->name()));
1052
1053         if (ioc & ~IO_IN) {
1054                 return false;
1055         }
1056
1057         if (ioc & IO_IN) {
1058
1059                 CrossThreadChannel::drain (port->selectable());
1060
1061                 DEBUG_TRACE (DEBUG::MidiIO, string_compose ("data available on %1\n", port->name()));
1062                 framepos_t now = session->engine().frame_time();
1063                 port->parse (now);
1064         }
1065
1066         return true;
1067 }
1068
1069 void
1070 MackieControlProtocol::clear_ports ()
1071 {
1072         for (PortSources::iterator i = port_sources.begin(); i != port_sources.end(); ++i) {
1073                 g_source_destroy (*i);
1074                 g_source_unref (*i);
1075         }
1076
1077         port_sources.clear ();
1078 }
1079
1080 string
1081 MackieControlProtocol::f_action (uint32_t fn)
1082 {
1083         if (fn >= _f_actions.size()) {
1084                 return string();
1085         }
1086
1087         return _f_actions[fn];
1088 }
1089
1090 void
1091 MackieControlProtocol::f_press (uint32_t fn)
1092 {
1093         string action = f_action (0);
1094         if (!action.empty()) {
1095                 access_action (action);
1096         }
1097 }
1098
1099 void
1100 MackieControlProtocol::set_view_mode (ViewMode m)
1101 {
1102         _view_mode = m;
1103
1104         for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
1105                 (*s)->update_view_mode_display ();
1106         }
1107         
1108 }
1109
1110 void
1111 MackieControlProtocol::set_flip_mode (FlipMode m)
1112 {
1113         _flip_mode = m;
1114         
1115         for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
1116                 (*s)->update_flip_mode_display ();
1117         }
1118 }
1119         
1120 void
1121 MackieControlProtocol::set_master_on_surface_strip (uint32_t surface, uint32_t strip_number)
1122 {
1123         force_special_route_to_strip (session->master_out(), surface, strip_number);
1124 }
1125
1126 void
1127 MackieControlProtocol::set_monitor_on_surface_strip (uint32_t surface, uint32_t strip_number)
1128 {
1129         force_special_route_to_strip (session->monitor_out(), surface, strip_number);
1130 }
1131
1132 void
1133 MackieControlProtocol::force_special_route_to_strip (boost::shared_ptr<Route> r, uint32_t surface, uint32_t strip_number)
1134 {
1135         if (!r) {
1136                 return;
1137         }
1138
1139         for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
1140                 if ((*s)->number() == surface) {
1141                         Strip* strip = (*s)->nth_strip (strip_number);
1142                         if (strip) {
1143                                 strip->set_route (session->master_out());
1144                                 strip->lock_route ();
1145                         }
1146                 }
1147         }
1148 }
1149
1150 void
1151 MackieControlProtocol::load_device_info (const string& name)
1152 {
1153         map<string,DeviceInfo>::iterator i = DeviceInfo::device_info.find (name);
1154
1155         if (i == DeviceInfo::device_info.end()) {
1156                 error << string_compose (_("No device info for Mackie Control device \"%1\" - ignored"), name) << endmsg;
1157                 return;
1158         }
1159
1160         _device_info = i->second;
1161 }
1162
1163 void
1164 MackieControlProtocol::gui_track_selection_changed (ARDOUR::RouteNotificationListPtr rl)
1165 {
1166         for (Surfaces::iterator s = surfaces.begin(); s != surfaces.end(); ++s) {
1167                 (*s)->gui_selection_changed (rl);
1168         }
1169 }