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