use session stripable selection API
[ardour.git] / libs / surfaces / mackie / pot.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 #include <cmath>
20
21 #include "pot.h"
22 #include "surface.h"
23 #include "control_group.h"
24
25 using namespace ArdourSurface;
26 using namespace Mackie;
27
28 int const Pot::External = 0x2e; /* specific ID for "vpot" representing external control */
29 int const Pot::ID       = 0x10; /* base value for v-pot IDs */
30
31 Control*
32 Pot::factory (Surface& surface, int id, const char* name, Group& group)
33 {
34         Pot* p = new Pot (id, name, group);
35         surface.pots[id] = p;
36         surface.controls.push_back (p);
37         group.add (*p);
38         return p;
39 }
40
41 MidiByteArray
42 Pot::set (float val, bool onoff, Mode mode)
43 {
44         // TODO do an exact calc for 0.50? To allow manually re-centering the port.
45
46         // center on if val is "very close" to 0.50
47         MIDI::byte msg =  (val > 0.48 && val < 0.58 ? 1 : 0) << 6;
48
49         // Pot/LED mode
50         msg |=  (mode << 4);
51
52         /*
53          * Even though a width value may be negative, there is
54          * technically still width there, it is just reversed,
55          * so make sure to show it on the LED ring appropriately.
56          */
57         if (val < 0){
58           val = val * -1;
59         }
60
61         // val, but only if off hasn't explicitly been set
62         if (onoff) {
63                 if (mode == spread) {
64                         msg |=  (lrintf (val * 6)) & 0x0f; // 0b00001111
65                 } else {
66                         msg |=  (lrintf (val * 10.0) + 1) & 0x0f; // 0b00001111
67                 }
68         }
69
70         /* outbound LED message requires 0x20 to be added to the LED's id
71          */
72
73         return MidiByteArray (3, 0xb0, 0x20 + id(), msg);
74
75 }
76