drastic, fundamental redesign of MCP code
[ardour.git] / libs / surfaces / mackie / controls.cc
1  /*
2         Copyright (C) 2006,2007 John Anderson
3
4         This program is free software; you can redistribute it and/or modify
5         it under the terms of the GNU General Public License as published by
6         the Free Software Foundation; either version 2 of the License, or
7         (at your option) any later version.
8
9         This program is distributed in the hope that it will be useful,
10         but WITHOUT ANY WARRANTY; without even the implied warranty of
11         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12         GNU General Public License for more details.
13
14         You should have received a copy of the GNU General Public License
15         along with this program; if not, write to the Free Software
16         Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <iostream>
20 #include <iomanip>
21 #include <sstream>
22
23 #include "controls.h"
24 #include "types.h"
25 #include "mackie_midi_builder.h"
26 #include "surface.h"
27 #include "control_group.h"
28
29 #include "button.h"
30 #include "led.h"
31 #include "ledring.h"
32 #include "pot.h"
33 #include "fader.h"
34 #include "jog.h"
35 #include "meter.h"
36
37
38 using namespace Mackie;
39 using namespace std;
40
41 void Group::add (Control& control)
42 {
43         _controls.push_back (&control);
44 }
45
46 Control::Control (int id, std::string name, Group & group)
47         : _id (id)
48         , _name (name)
49         , _group (group)
50         , _in_use (false)
51 {
52 }
53
54 /** @return true if the control is in use, or false otherwise.
55     Buttons are `in use' when they are held down.
56     Faders with touch support are `in use' when they are being touched.
57     Pots, or faders without touch support, are `in use' from the first move
58     event until a timeout after the last move event.
59 */
60 bool
61 Control::in_use () const
62 {
63         return _in_use;
64 }
65
66 void
67 Control::set_in_use (bool in_use)
68 {
69         _in_use = in_use;
70 }
71
72 ostream & Mackie::operator <<  (ostream & os, const Mackie::Control & control)
73 {
74         os << typeid (control).name();
75         os << " { ";
76         os << "name: " << control.name();
77         os << ", ";
78         os << "id: " << "0x" << setw(4) << setfill('0') << hex << control.id() << setfill(' ');
79         os << ", ";
80         os << "type: " << "0x" << setw(2) << setfill('0') << hex << control.type() << setfill(' ');
81         os << ", ";
82         os << "raw_id: " << "0x" << setw(2) << setfill('0') << hex << control.raw_id() << setfill(' ');
83         os << ", ";
84         os << "group: " << control.group().name();
85         os << " }";
86         
87         return os;
88 }
89
90 Control*
91 Pot::factory (Surface& surface, int id, const char* name, Group& group)
92 {
93         Pot* p = new Pot (id, name, group);
94         surface.pots[id] = p;
95         surface.controls.push_back (p);
96         group.add (*p);
97         return p;
98 }
99
100 Control*
101 Led::factory (Surface& surface, int id, const char* name, Group& group)
102 {
103         Led* l = new Led (id, name, group);
104         surface.leds[id] = l;
105         surface.controls.push_back (l);
106         group.add (*l);
107         return l;
108 }
109
110 Control*
111 Jog::factory (Surface& surface, int id, const char* name, Group& group)
112 {
113         Jog* j = new Jog (id, name, group);
114         surface.controls.push_back (j);
115         surface.controls_by_name["jog"] = j;
116         group.add (*j);
117         return j;
118 }
119