MCP: various fixes, plus removal of ui_bind() (just for mackie code)
[ardour.git] / libs / surfaces / mackie / surface.cc
1 #include <sstream>
2 #include <iomanip>
3 #include <iostream>
4 #include <cstdio>
5 #include <cmath>
6
7 #include "midi++/port.h"
8 #include "midi++/manager.h"
9
10 #include "ardour/automation_control.h"
11 #include "ardour/debug.h"
12 #include "ardour/route.h"
13 #include "ardour/panner.h"
14 #include "ardour/panner_shell.h"
15 #include "ardour/rc_configuration.h"
16 #include "ardour/session.h"
17 #include "ardour/utils.h"
18
19 #include "control_group.h"
20 #include "surface_port.h"
21 #include "surface.h"
22 #include "strip.h"
23 #include "mackie_control_protocol.h"
24 #include "jog_wheel.h"
25
26 #include "strip.h"
27 #include "button.h"
28 #include "led.h"
29 #include "pot.h"
30 #include "fader.h"
31 #include "jog.h"
32 #include "meter.h"
33
34 #include "i18n.h"
35
36 using namespace std;
37 using namespace PBD;
38 using namespace Mackie;
39 using ARDOUR::Route;
40 using ARDOUR::Panner;
41 using ARDOUR::Pannable;
42 using ARDOUR::AutomationControl;
43
44 #define ui_context() MackieControlProtocol::instance() /* a UICallback-derived object that specifies the event loop for signal handling */
45
46 // The MCU sysex header.4th byte Will be overwritten
47 // when we get an incoming sysex that identifies
48 // the device type
49 static MidiByteArray mackie_sysex_hdr  (5, MIDI::sysex, 0x0, 0x0, 0x66, 0x14);
50
51 // The MCU extender sysex header.4th byte Will be overwritten
52 // when we get an incoming sysex that identifies
53 // the device type
54 static MidiByteArray mackie_sysex_hdr_xt  (5, MIDI::sysex, 0x0, 0x0, 0x66, 0x15);
55
56 static MidiByteArray empty_midi_byte_array;
57
58 Surface::Surface (MackieControlProtocol& mcp, const std::string& device_name, uint32_t number, surface_type_t stype)
59         : _mcp (mcp)
60         , _stype (stype)
61         , _number (number)
62         , _name (device_name)
63         , _active (false)
64         , _connected (false)
65         , _jog_wheel (0)
66 {
67         DEBUG_TRACE (DEBUG::MackieControl, "Surface::init\n");
68         
69         _port = new SurfacePort (*this);
70
71         /* only the first Surface object has global controls */
72
73         if (_number == 0) {
74                 if (_mcp.device_info().has_global_controls()) {
75                         init_controls ();
76                 }
77
78                 if (_mcp.device_info().has_master_fader()) {
79                         setup_master ();
80                 }
81         }
82
83         uint32_t n = _mcp.device_info().strip_cnt();
84         
85         if (n) {
86                 init_strips (n);
87         }
88         
89         connect_to_signals ();
90
91         DEBUG_TRACE (DEBUG::MackieControl, "Surface::init finish\n");
92 }
93
94 Surface::~Surface ()
95 {
96         DEBUG_TRACE (DEBUG::MackieControl, "Surface: destructor\n");
97
98         zero_all ();
99
100         // delete groups
101         for (Groups::iterator it = groups.begin(); it != groups.end(); ++it) {
102                 delete it->second;
103         }
104         
105         // delete controls
106         for (Controls::iterator it = controls.begin(); it != controls.end(); ++it) {
107                 delete *it;
108         }
109         
110         delete _jog_wheel;
111         delete _port;
112 }
113
114 const MidiByteArray& 
115 Surface::sysex_hdr() const
116 {
117         switch  (_stype) {
118         case mcu: return mackie_sysex_hdr;
119         case ext: return mackie_sysex_hdr_xt;
120         }
121         cout << "SurfacePort::sysex_hdr _port_type not known" << endl;
122         return mackie_sysex_hdr;
123 }
124
125 static GlobalControlDefinition mackie_global_controls[] = {
126         { "external", Pot::External, Pot::factory, "none" },
127         { "fader_touch", Led::FaderTouch, Led::factory, "master" },
128         { "timecode", Led::Timecode, Led::factory, "none" },
129         { "beats", Led::Beats, Led::factory, "none" },
130         { "solo", Led::RudeSolo, Led::factory, "none" },
131         { "relay_click", Led::RelayClick, Led::factory, "none" },
132         { "", 0, Led::factory, "" }
133 };
134
135 void 
136 Surface::init_controls()
137 {
138         Group* group;
139
140         groups["assignment"] = new Group  ("assignment");
141         groups["automation"] = new Group  ("automation");
142         groups["bank"] = new Group  ("bank");
143         groups["cursor"] = new Group  ("cursor");
144         groups["display"] = new Group  ("display");
145         groups["functions"] = new Group  ("functions");
146         groups["modifiers"] = new Group  ("modifiers");
147         groups["none"] = new Group  ("none");
148         groups["transport"] = new Group  ("transport");
149         groups["user"] = new Group  ("user");
150         groups["master"] = new Group ("master");
151         groups["view"] = new Group ("view");
152                 
153         if (_mcp.device_info().has_jog_wheel()) {
154                 _jog_wheel = new Mackie::JogWheel (_mcp);
155         }
156
157         for (uint32_t n = 0; mackie_global_controls[n].name[0]; ++n) {
158                 group = groups[mackie_global_controls[n].group_name];
159                 Control* control = mackie_global_controls[n].factory (*this, mackie_global_controls[n].id, mackie_global_controls[n].name, *group);
160                 controls_by_device_independent_id[mackie_global_controls[n].id] = control;
161         }
162
163         /* add global buttons */
164
165         const map<Button::ID,GlobalButtonInfo>& global_buttons (_mcp.device_info().global_buttons());
166
167         for (map<Button::ID,GlobalButtonInfo>::const_iterator b = global_buttons.begin(); b != global_buttons.end(); ++b){
168                 group = groups[b->second.group];
169                 controls_by_device_independent_id[b->first] = Button::factory (*this, b->first, b->second.id, b->second.label, *group);
170         }
171 }
172
173 void 
174 Surface::init_strips (uint32_t n)
175 {
176         const map<Button::ID,StripButtonInfo>& strip_buttons (_mcp.device_info().strip_buttons());
177
178         for (uint32_t i = 0; i < n; ++i) {
179
180                 char name[32];
181                 
182                 snprintf (name, sizeof (name), "strip_%d", (8* _number) + i);
183
184                 Strip* strip = new Strip (*this, name, i, strip_buttons);
185                 
186                 groups[name] = strip;
187                 strips.push_back (strip);
188         }
189 }
190
191 void
192 Surface::setup_master ()
193 {
194         _master_fader = dynamic_cast<Fader*> (Fader::factory (*this, 8, "master", *groups["master"]));
195         
196         boost::shared_ptr<Route> m;
197         
198         if ((m = _mcp.get_session().monitor_out()) == 0) {
199                 m = _mcp.get_session().master_out();
200         } 
201         
202         if (!m) {
203                 return;
204         }
205         
206         _master_fader->set_control (m->gain_control());
207         m->gain_control()->Changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&Surface::master_gain_changed, this), ui_context());
208 }
209
210 void
211 Surface::master_gain_changed ()
212 {
213         boost::shared_ptr<AutomationControl> ac = _master_fader->control();
214         float pos = ac->internal_to_interface (ac->get_value());
215         _port->write (_master_fader->set_position (pos));
216 }
217
218 float 
219 Surface::scaled_delta (float delta, float current_speed)
220 {
221         /* XXX needs work before use */
222         const float sign = delta < 0.0 ? -1.0 : 1.0;
223
224         return ((sign * std::pow (delta + 1.0, 2.0)) + current_speed) / 100.0;
225 }
226
227 void 
228 Surface::display_bank_start (uint32_t current_bank)
229 {
230         if  (current_bank == 0) {
231                 // send Ar. to 2-char display on the master
232                 show_two_char_display ("Ar", "..");
233         } else {
234                 // write the current first remote_id to the 2-char display
235                 show_two_char_display (current_bank);
236         }
237 }
238
239 void 
240 Surface::blank_jog_ring ()
241 {
242         Control* control = controls_by_device_independent_id[Jog::ID];
243
244         if (control) {
245                 Pot* pot = dynamic_cast<Pot*> (control);
246                 if (pot) {
247                         _port->write (pot->set (0.0, false, Pot::spread));
248                 }
249         }
250 }
251
252 float
253 Surface::scrub_scaling_factor () const
254 {
255         return 100.0;
256 }
257
258 void 
259 Surface::connect_to_signals ()
260 {
261         if (!_connected) {
262
263
264                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Surface %1 connecting to signals on port %2\n", 
265                                                                    number(), _port->input_port().name()));
266
267                 MIDI::Parser* p = _port->input_port().parser();
268
269                 /* Incoming sysex */
270                 p->sysex.connect_same_thread (*this, boost::bind (&Surface::handle_midi_sysex, this, _1, _2, _3));
271                 /* V-Pot messages are Controller */
272                 p->controller.connect_same_thread (*this, boost::bind (&Surface::handle_midi_controller_message, this, _1, _2));
273                 /* Button messages are NoteOn */
274                 p->note_on.connect_same_thread (*this, boost::bind (&Surface::handle_midi_note_on_message, this, _1, _2));
275                 /* Button messages are NoteOn. libmidi++ sends note-on w/velocity = 0 as note-off so catch them too */
276                 p->note_off.connect_same_thread (*this, boost::bind (&Surface::handle_midi_note_on_message, this, _1, _2));
277                 /* Fader messages are Pitchbend */
278                 p->channel_pitchbend[0].connect_same_thread (*this, boost::bind (&Surface::handle_midi_pitchbend_message, this, _1, _2, 0U));
279                 p->channel_pitchbend[1].connect_same_thread (*this, boost::bind (&Surface::handle_midi_pitchbend_message, this, _1, _2, 1U));
280                 p->channel_pitchbend[2].connect_same_thread (*this, boost::bind (&Surface::handle_midi_pitchbend_message, this, _1, _2, 2U));
281                 p->channel_pitchbend[3].connect_same_thread (*this, boost::bind (&Surface::handle_midi_pitchbend_message, this, _1, _2, 3U));
282                 p->channel_pitchbend[4].connect_same_thread (*this, boost::bind (&Surface::handle_midi_pitchbend_message, this, _1, _2, 4U));
283                 p->channel_pitchbend[5].connect_same_thread (*this, boost::bind (&Surface::handle_midi_pitchbend_message, this, _1, _2, 5U));
284                 p->channel_pitchbend[6].connect_same_thread (*this, boost::bind (&Surface::handle_midi_pitchbend_message, this, _1, _2, 6U));
285                 p->channel_pitchbend[7].connect_same_thread (*this, boost::bind (&Surface::handle_midi_pitchbend_message, this, _1, _2, 7U));
286                 
287                 _connected = true;
288         }
289 }
290
291 void
292 Surface::handle_midi_pitchbend_message (MIDI::Parser&, MIDI::pitchbend_t pb, uint32_t fader_id)
293 {
294         /* Pitchbend messages are fader messages. Nothing in the data we get
295          * from the MIDI::Parser conveys the fader ID, which was given by the
296          * channel ID in the status byte.
297          *
298          * Instead, we have used bind() to supply the fader-within-strip ID 
299          * when we connected to the per-channel pitchbend events.
300          */
301
302         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("handle_midi pitchbend on port %3, fader = %1 value = %2\n", 
303                                                            fader_id, pb, _number));
304         
305         Fader* fader = faders[fader_id];
306
307         if (fader) {
308                 Strip* strip = dynamic_cast<Strip*> (&fader->group());
309                 float pos = (pb >> 4)/1023.0; // only the top 10 bytes are used
310                 if (strip) {
311                         strip->handle_fader (*fader, pos);
312                 } else {
313                         /* master fader */
314                         fader->set_value (pos); // alter master gain
315                         _port->write (fader->set_position (pos)); // write back value (required for servo)
316                 }
317         } else {
318                 DEBUG_TRACE (DEBUG::MackieControl, "fader not found\n");
319         }
320 }
321
322 void 
323 Surface::handle_midi_note_on_message (MIDI::Parser &, MIDI::EventTwoBytes* ev)
324 {
325         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("SurfacePort::handle_note_on %1 = %2\n", (int) ev->note_number, (int) ev->velocity));
326         
327         Button* button = buttons[ev->note_number];
328
329         if (button) {
330                 Strip* strip = dynamic_cast<Strip*> (&button->group());
331
332                 if (strip) {
333                         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("strip %1 button %2 pressed ? %3\n",
334                                                                            strip->index(), button->name(), (ev->velocity > 64)));
335                         strip->handle_button (*button, ev->velocity > 64 ? press : release);
336                 } else {
337                         /* global button */
338                         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("global button %1\n", button->id()));
339                         _mcp.handle_button_event (*this, *button, ev->velocity > 64 ? press : release);
340                 }
341         } else {
342                 DEBUG_TRACE (DEBUG::MackieControl, string_compose ("no button found for %1\n", ev->note_number));
343         }
344 }
345
346 void 
347 Surface::handle_midi_controller_message (MIDI::Parser &, MIDI::EventTwoBytes* ev)
348 {
349         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("SurfacePort::handle_midi_controller %1 = %2\n", (int) ev->controller_number, (int) ev->value));
350
351         Pot* pot = pots[ev->controller_number];
352
353         if (!pot) {
354                 if (ev->controller_number == Jog::ID && _jog_wheel) {
355
356                         // bit 6 gives the sign
357                         float sign = (ev->value & 0x40) == 0 ? 1.0 : -1.0; 
358                         // bits 0..5 give the velocity. we interpret this as "ticks
359                         // moved before this message was sent"
360                         float ticks = (ev->value & 0x3f);
361                         if (ticks == 0) {
362                                 /* euphonix and perhaps other devices send zero
363                                    when they mean 1, we think.
364                                 */
365                                 ticks = 1;
366                         }
367                         float delta = sign * (ticks / (float) 0x3f);
368
369                         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Jog wheel moved %1\n", ticks));
370                         _jog_wheel->jog_event (delta);
371                         return;
372                 }
373         }
374
375         if (pot) {
376                 // bit 6 gives the sign
377                 float sign = (ev->value & 0x40) == 0 ? 1.0 : -1.0; 
378                 // bits 0..5 give the velocity. we interpret this as "ticks
379                 // moved before this message was sent"
380                 float ticks = (ev->value & 0x3f);
381                 if (ticks == 0) {
382                         /* euphonix and perhaps other devices send zero
383                            when they mean 1, we think.
384                         */
385                         ticks = 1;
386                 }
387                 float delta = sign * (ticks / (float) 0x3f);
388
389                 Strip* strip = dynamic_cast<Strip*> (&pot->group());
390
391                 if (strip) {
392                         strip->handle_pot (*pot, delta);
393                 } 
394         } else {
395                 DEBUG_TRACE (DEBUG::MackieControl, "pot not found\n");
396         }
397 }
398
399 void 
400 Surface::handle_midi_sysex (MIDI::Parser &, MIDI::byte * raw_bytes, size_t count)
401 {
402         MidiByteArray bytes (count, raw_bytes);
403
404         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("handle_midi_sysex: %1\n", bytes));
405
406         /* always save the device type ID so that our outgoing sysex messages
407          * are correct 
408          */
409
410         if (_stype == mcu) {
411                 mackie_sysex_hdr[3] = bytes[4];
412         } else {
413                 mackie_sysex_hdr_xt[3] = bytes[4];
414         }
415
416         switch (bytes[5]) {
417         case 0x01:
418                 /* MCP: Device Ready 
419                    LCP: Connection Challenge 
420                 */
421                 if (bytes[4] == 0x10 || bytes[4] == 0x11) {
422                         write_sysex (host_connection_query (bytes));
423                 } else {
424                         if (!_active) {
425                                 _active = true;
426                                 zero_controls ();
427                                 for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
428                                         (*s)->notify_all ();
429                                 }
430                                 update_view_mode_display ();
431                         }
432                 }
433                 break;
434
435         case 0x03: /* LCP Connection Confirmation */
436                 if (bytes[4] == 0x10 || bytes[4] == 0x11) {
437                         write_sysex (host_connection_confirmation (bytes));
438                         _active = true;
439                 }
440                 break;
441
442         case 0x04: /* LCP: Confirmation Denied */
443                 _active = false;
444                 break;
445         default:
446                 error << "MCP: unknown sysex: " << bytes << endmsg;
447         }
448 }
449
450 static MidiByteArray 
451 calculate_challenge_response (MidiByteArray::iterator begin, MidiByteArray::iterator end)
452 {
453         MidiByteArray l;
454         back_insert_iterator<MidiByteArray> back  (l);
455         copy (begin, end, back);
456         
457         MidiByteArray retval;
458         
459         // this is how to calculate the response to the challenge.
460         // from the Logic docs.
461         retval <<  (0x7f &  (l[0] +  (l[1] ^ 0xa) - l[3]));
462         retval <<  (0x7f &  ( (l[2] >> l[3]) ^  (l[0] + l[3])));
463         retval <<  (0x7f &  ((l[3] -  (l[2] << 2)) ^  (l[0] | l[1])));
464         retval <<  (0x7f &  (l[1] - l[2] +  (0xf0 ^  (l[3] << 4))));
465         
466         return retval;
467 }
468
469 // not used right now
470 MidiByteArray 
471 Surface::host_connection_query (MidiByteArray & bytes)
472 {
473         MidiByteArray response;
474         
475         if (bytes[4] != 0x10 && bytes[4] != 0x11) {
476                 /* not a Logic Control device - no response required */
477                 return response;
478         }
479
480         // handle host connection query
481         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("host connection query: %1\n", bytes));
482         
483         if  (bytes.size() != 18) {
484                 cerr << "expecting 18 bytes, read " << bytes << " from " << _port->input_port().name() << endl;
485                 return response;
486         }
487
488         // build and send host connection reply
489         response << 0x02;
490         copy (bytes.begin() + 6, bytes.begin() + 6 + 7, back_inserter (response));
491         response << calculate_challenge_response (bytes.begin() + 6 + 7, bytes.begin() + 6 + 7 + 4);
492         return response;
493 }
494
495 // not used right now
496 MidiByteArray 
497 Surface::host_connection_confirmation (const MidiByteArray & bytes)
498 {
499         DEBUG_TRACE (DEBUG::MackieControl, string_compose ("host_connection_confirmation: %1\n", bytes));
500         
501         // decode host connection confirmation
502         if  (bytes.size() != 14) {
503                 ostringstream os;
504                 os << "expecting 14 bytes, read " << bytes << " from " << _port->input_port().name();
505                 throw MackieControlException (os.str());
506         }
507         
508         // send version request
509         return MidiByteArray (2, 0x13, 0x00);
510 }
511
512 void 
513 Surface::handle_port_inactive (SurfacePort * port)
514 {
515         _active = false;
516 }
517
518 void 
519 Surface::write_sysex (const MidiByteArray & mba)
520 {
521         if (mba.empty()) {
522                 return;
523         }
524
525         MidiByteArray buf;
526         buf << sysex_hdr() << mba << MIDI::eox;
527         _port->write (buf);
528 }
529
530 void 
531 Surface::write_sysex (MIDI::byte msg)
532 {
533         MidiByteArray buf;
534         buf << sysex_hdr() << msg << MIDI::eox;
535         _port->write (buf);
536 }
537
538 uint32_t
539 Surface::n_strips () const
540 {
541         return strips.size();
542 }
543
544 Strip*
545 Surface::nth_strip (uint32_t n) const
546 {
547         if (n > n_strips()) {
548                 return 0;
549         }
550         return strips[n];
551 }
552
553 void
554 Surface::zero_all ()
555 {
556         // TODO turn off Timecode displays
557
558         // zero all strips
559         for (Strips::iterator it = strips.begin(); it != strips.end(); ++it) {
560                 (*it)->zero();
561         }
562
563         zero_controls ();
564 }
565
566 void
567 Surface::zero_controls ()
568 {
569         if (_stype != mcu || !_mcp.device_info().has_global_controls()) {
570                 return;
571         }
572
573         // turn off global buttons and leds
574         // global buttons are only ever on mcu_port, so we don't have
575         // to figure out which port.
576
577         for (Controls::iterator it = controls.begin(); it != controls.end(); ++it) {
578                 Control & control = **it;
579                 if (!control.group().is_strip()) {
580                         _port->write (control.zero());
581                 }
582         }
583
584         if (_number == 0 && _mcp.device_info().has_two_character_display()) {
585                 // any hardware-specific stuff
586                 // clear 2-char display
587                 show_two_char_display (" ");
588         }
589
590         // and the led ring for the master strip
591         blank_jog_ring ();
592 }
593
594 void
595 Surface::periodic (uint64_t now_usecs)
596 {
597         for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
598                 (*s)->periodic (now_usecs);
599         }
600 }
601
602 void
603 Surface::write (const MidiByteArray& data) 
604 {
605         if (_active) {
606                 _port->write (data);
607         }
608 }
609
610 void
611 Surface::map_routes (const vector<boost::shared_ptr<Route> >& routes)
612 {
613         vector<boost::shared_ptr<Route> >::const_iterator r;
614         Strips::iterator s;
615
616         for (r = routes.begin(), s = strips.begin(); r != routes.end() && s != strips.end(); ++r, ++s) {
617                 (*s)->set_route (*r);
618         }
619
620         for (; s != strips.end(); ++s) {
621                 (*s)->set_route (boost::shared_ptr<Route>());
622         }
623
624
625 }
626
627 static char 
628 translate_seven_segment (char achar)
629 {
630         achar = toupper (achar);
631
632         if  (achar >= 0x40 && achar <= 0x60) {
633                 return achar - 0x40;
634         } else if  (achar >= 0x21 && achar <= 0x3f) {
635                 return achar;
636         } else {
637                 return 0x00;
638         }
639 }
640
641 void
642 Surface::show_two_char_display (const std::string & msg, const std::string & dots)
643 {
644         if (_stype != mcu || !_mcp.device_info().has_two_character_display() || msg.length() != 2 || dots.length() != 2) {
645                 return;
646         }
647         
648         MidiByteArray right (3, 0xb0, 0x4b, 0x00);
649         MidiByteArray left (3, 0xb0, 0x4a, 0x00);
650         
651         right[2] = translate_seven_segment (msg[0]) +  (dots[0] == '.' ? 0x40 : 0x00);
652         left[2] = translate_seven_segment (msg[1]) +  (dots[1] == '.' ? 0x40 : 0x00);
653         
654         _port->write (right);
655         _port->write (left);
656 }
657
658 void
659 Surface::show_two_char_display (unsigned int value, const std::string & /*dots*/)
660 {
661         ostringstream os;
662         os << setfill('0') << setw(2) << value % 100;
663         show_two_char_display (os.str());
664 }
665
666 void 
667 Surface::display_timecode (const std::string & timecode, const std::string & timecode_last)
668 {
669         if (_active && _mcp.device_info().has_timecode_display()) {
670                 _port->write (timecode_display (timecode, timecode_last));
671         }
672 }
673
674 MidiByteArray 
675 Surface::timecode_display (const std::string & timecode, const std::string & last_timecode)
676 {
677         // if there's no change, send nothing, not even sysex header
678         if  (timecode == last_timecode) return MidiByteArray();
679         
680         // length sanity checking
681         string local_timecode = timecode;
682
683         // truncate to 10 characters
684         if  (local_timecode.length() > 10) {
685                 local_timecode = local_timecode.substr (0, 10);
686         }
687
688         // pad to 10 characters
689         while  (local_timecode.length() < 10) { 
690                 local_timecode += " ";
691         }
692                 
693         // find the suffix of local_timecode that differs from last_timecode
694         std::pair<string::const_iterator,string::iterator> pp = mismatch (last_timecode.begin(), last_timecode.end(), local_timecode.begin());
695         
696         MidiByteArray retval;
697         
698         // sysex header
699         retval << sysex_hdr();
700         
701         // code for timecode display
702         retval << 0x10;
703         
704         // translate characters. These are sent in reverse order of display
705         // hence the reverse iterators
706         string::reverse_iterator rend = reverse_iterator<string::iterator> (pp.second);
707         for  (string::reverse_iterator it = local_timecode.rbegin(); it != rend; ++it) {
708                 retval << translate_seven_segment (*it);
709         }
710         
711         // sysex trailer
712         retval << MIDI::eox;
713         
714         return retval;
715 }
716
717 void
718 Surface::update_flip_mode_display ()
719 {
720         for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
721                 (*s)->flip_mode_changed (true);
722         }
723 }
724
725 void
726 Surface::update_view_mode_display ()
727 {
728         string text;
729         Button* button = 0;
730
731         if (!_active) {
732                 return;
733         }
734
735         switch (_mcp.view_mode()) {
736         case MackieControlProtocol::Mixer:
737                 show_two_char_display ("Mx");
738                 button = buttons[Button::Pan];
739                 break;
740         case MackieControlProtocol::Dynamics:
741                 show_two_char_display ("Dy");
742                 button = buttons[Button::Dyn];
743                 break;
744         case MackieControlProtocol::EQ:
745                 show_two_char_display ("EQ");
746                 button = buttons[Button::Eq];
747                 break;
748         case MackieControlProtocol::Loop:
749                 show_two_char_display ("LP");
750                 button = buttons[Button::Loop];
751                 break;
752         case MackieControlProtocol::AudioTracks:
753                 show_two_char_display ("AT");
754                 break;
755         case MackieControlProtocol::MidiTracks:
756                 show_two_char_display ("MT");
757                 break;
758         case MackieControlProtocol::Sends:
759                 show_two_char_display ("Sn");
760                 button = buttons[Button::Sends];
761                 break;
762         case MackieControlProtocol::Plugins:
763                 show_two_char_display ("Pl");
764                 button = buttons[Button::Plugin];
765                 break;
766         default:
767                 break;
768         }
769
770         if (button) {
771                 _port->write (button->set_state (on));
772         }
773
774         if (!text.empty()) {
775                 for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
776                         _port->write ((*s)->display (1, text));
777                 }
778         }
779 }
780
781 void
782 Surface::gui_selection_changed (ARDOUR::RouteNotificationListPtr routes)
783 {
784         for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
785                 (*s)->gui_selection_changed (routes);
786         }
787 }
788
789 void
790 Surface::say_hello ()
791 {
792         /* wakeup for Mackie Control */
793         MidiByteArray wakeup (7, MIDI::sysex, 0x00, 0x00, 0x66, 0x14, 0x00, MIDI::eox);
794         _port->write (wakeup);
795         wakeup[4] = 0x15; /* wakup Mackie XT */
796         _port->write (wakeup);
797         wakeup[4] = 0x10; /* wakupe Logic Control */
798         _port->write (wakeup);
799         wakeup[4] = 0x11; /* wakeup Logic Control XT */
800         _port->write (wakeup);
801 }
802
803 void
804 Surface::next_jog_mode ()
805 {
806 }
807
808 void
809 Surface::set_jog_mode (JogWheel::Mode m)
810 {
811 }