Remove dead 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 "ardour/automation_control.h"
24
25 #include "controls.h"
26 #include "types.h"
27 #include "surface.h"
28 #include "control_group.h"
29 #include "button.h"
30 #include "led.h"
31 #include "pot.h"
32 #include "fader.h"
33 #include "jog.h"
34 #include "meter.h"
35
36
37 using namespace Mackie;
38 using namespace std;
39 using ARDOUR::AutomationControl;
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(2) << setfill('0') << hex << control.id() << setfill(' ');
79         os << ", ";
80         os << "group: " << control.group().name();
81         os << " }";
82         
83         return os;
84 }
85
86 void
87 Control::set_control (boost::shared_ptr<AutomationControl> ac)
88 {
89         normal_ac = ac;
90 }
91
92 void
93 Control::set_value (float val)
94 {
95         if (normal_ac) {
96                 normal_ac->set_value (normal_ac->interface_to_internal (val));
97         }
98 }
99
100 float
101 Control::get_value ()
102 {
103         if (!normal_ac) {
104                 return 0.0f;
105         }
106         return normal_ac->internal_to_interface (normal_ac->get_value());
107 }
108
109 void
110 Control::start_touch (double when)
111 {
112         if (normal_ac) {
113                 return normal_ac->start_touch (when);
114         }
115 }
116         
117 void
118 Control::stop_touch (double when, bool mark)
119 {
120         if (normal_ac) {
121                 return normal_ac->stop_touch (mark, when);
122         }
123 }
124