16ba40de291f6a28d6cc8c2d9b38c1cd7390c781
[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         _enabled = (transport_is_rolling && metering_active);
60         msg << (_enabled ? 0x07 : 0x00);
61
62         // sysex trailer
63         msg << MIDI::eox;
64
65         surface.write (msg);
66 }
67
68 void
69 Meter::send_update (Surface& surface, float dB)
70 {
71         float def = 0.0f; /* Meter deflection %age */
72
73         // DEBUG_TRACE (DEBUG::MackieControl, string_compose ("Meter ID %1 dB %2\n", id(), dB));
74
75         if (dB < -70.0f) {
76                 def = 0.0f;
77         } else if (dB < -60.0f) {
78                 def = (dB + 70.0f) * 0.25f;
79         } else if (dB < -50.0f) {
80                 def = (dB + 60.0f) * 0.5f + 2.5f;
81         } else if (dB < -40.0f) {
82                 def = (dB + 50.0f) * 0.75f + 7.5f;
83         } else if (dB < -30.0f) {
84                 def = (dB + 40.0f) * 1.5f + 15.0f;
85         } else if (dB < -20.0f) {
86                 def = (dB + 30.0f) * 2.0f + 30.0f;
87         } else if (dB < 6.0f) {
88                 def = (dB + 20.0f) * 2.5f + 50.0f;
89         } else {
90                 def = 115.0f;
91         }
92
93         /* 115 is the deflection %age that would be
94            when dB=6.0. this is an arbitrary
95            endpoint for our scaling.
96         */
97
98         MidiByteArray msg;
99
100         if (def > 100.0f) {
101                 if (!overload_on) {
102                         overload_on = true;
103                         surface.write (MidiByteArray (2, 0xd0, (id() << 4) | 0xe));
104
105                 }
106         } else {
107                 if (overload_on) {
108                         overload_on = false;
109                         surface.write (MidiByteArray (2, 0xd0, (id() << 4) | 0xf));
110                 }
111         }
112
113         /* we can use up to 13 segments */
114
115         int segment = lrintf ((def/115.0) * 13.0);
116
117         surface.write (MidiByteArray (2, 0xd0, (id()<<4) | segment));
118 }
119
120 MidiByteArray
121 Meter::zero ()
122 {
123         return MidiByteArray (2, 0xD0, (id()<<4 | 0));
124 }