91de8d6ef69899074ea785c9c71848577a18357d
[ardour.git] / libs / surfaces / mackie / meter.cc
1 /*
2         Copyright (C) 2006,2007 John Anderson
3         Copyright (C) 2012 Paul Davis
4
5         This program is free software; you can redistribute it and/or modify
6         it under the terms of the GNU General Public License as published by
7         the Free Software Foundation; either version 2 of the License, or
8         (at your option) any later version.
9
10         This program is distributed in the hope that it will be useful,
11         but WITHOUT ANY WARRANTY; without even the implied warranty of
12         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13         GNU General Public License for more details.
14
15         You should have received a copy of the GNU General Public License
16         along with this program; if not, write to the Free Software
17         Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <cmath>
21
22 #include "pbd/compose.h"
23 #include "ardour/debug.h"
24
25 #include "meter.h"
26 #include "surface.h"
27 #include "surface_port.h"
28 #include "control_group.h"
29
30 using namespace PBD;
31 using namespace ArdourSurface;
32 using namespace Mackie;
33
34 Control*
35 Meter::factory (Surface& surface, int id, const char* name, Group& group)
36 {
37         Meter* m = new Meter (id, name, group);
38         surface.meters[id] = m;
39         surface.controls.push_back (m);
40         group.add (*m);
41         return m;
42 }
43
44 void
45 Meter::notify_metering_state_changed(Surface& surface, bool transport_is_rolling, bool metering_active)
46 {       
47         MidiByteArray msg;
48                 
49         // sysex header
50         msg << surface.sysex_hdr();
51                 
52         // code for Channel Meter Enable Message
53         msg << 0x20;
54                 
55         // Channel identification
56         msg << id();
57                 
58         // Enable (0x07) / Disable (0x00) level meter on LCD, peak hold display on horizontal meter and signal LED
59         msg << ((transport_is_rolling && metering_active) ? 0x07 : 0x00);
60                 
61         // sysex trailer
62         msg << MIDI::eox;
63                 
64         surface.write (msg);
65 }
66
67 void
68 Meter::send_update (Surface& surface, float dB)
69 {
70         float def = 0.0f; /* Meter deflection %age */
71
72         // DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Meter ID %1 dB %2\n", id(), dB));
73         
74         if (dB < -70.0f) {
75                 def = 0.0f;
76         } else if (dB < -60.0f) {
77                 def = (dB + 70.0f) * 0.25f;
78         } else if (dB < -50.0f) {
79                 def = (dB + 60.0f) * 0.5f + 2.5f;
80         } else if (dB < -40.0f) {
81                 def = (dB + 50.0f) * 0.75f + 7.5f;
82         } else if (dB < -30.0f) {
83                 def = (dB + 40.0f) * 1.5f + 15.0f;
84         } else if (dB < -20.0f) {
85                 def = (dB + 30.0f) * 2.0f + 30.0f;
86         } else if (dB < 6.0f) {
87                 def = (dB + 20.0f) * 2.5f + 50.0f;
88         } else {
89                 def = 115.0f;
90         }
91         
92         /* 115 is the deflection %age that would be
93            when dB=6.0. this is an arbitrary
94            endpoint for our scaling.
95         */
96
97         MidiByteArray msg;
98         
99         if (def > 100.0f) {
100                 if (!overload_on) {
101                         overload_on = true;
102                         surface.write (MidiByteArray (2, 0xd0, (id() << 4) | 0xe));
103                         
104                 }
105         } else {
106                 if (overload_on) {
107                         overload_on = false;
108                         surface.write (MidiByteArray (2, 0xd0, (id() << 4) | 0xf));
109                 }
110         }
111         
112         /* we can use up to 13 segments */
113
114         int segment = lrintf ((def/115.0) * 13.0);
115         
116         surface.write (MidiByteArray (2, 0xd0, (id()<<4) | segment));
117 }
118
119 MidiByteArray
120 Meter::zero ()
121 {
122         return MidiByteArray (2, 0xD0, (id()<<4 | 0));
123 }