move all code to construct MIDI messages into relevant Control/Strip/Surface object...
[ardour.git] / libs / surfaces / mackie / controls.h
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 #ifndef __mackie_controls_h__
21 #define __mackie_controls_h__
22
23 #include <map>
24 #include <vector>
25 #include <string>
26 #include <stdint.h>
27
28 #include "pbd/signals.h"
29
30 #include "mackie_control_exception.h"
31 #include "midi_byte_array.h"
32
33 namespace Mackie
34 {
35
36 class Strip;
37 class Group;
38 class Surface;
39
40 class Control
41 {
42 public:
43         enum base_id_t {
44                 fader_base_id = 0xe0,
45                 pot_base_id = 0x30,
46                 jog_base_id = 0x3c,
47                 fader_touch_button_base_id = 0xe0,
48                 vselect_button_base_id = 0x20,
49                 select_button_base_id = 0x18,
50                 mute_button_base_id = 0x10,
51                 solo_button_base_id = 0x08,
52                 recenable_button_base_id = 0x0,
53                 meter_base_id = 0xd0,
54         };
55         
56         Control (int id, std::string name, Group& group);
57         virtual ~Control() {}
58         
59         /// the value of the second bytes of the message. It's
60         /// the id of the control, but only guaranteed to be
61         /// unique within the control type.
62         int raw_id() const { return _id; }
63
64         const std::string & name() const  { return _name; }
65         Group & group() const { return _group; }
66
67         virtual bool accepts_feedback() const  { return true; }
68         
69         bool in_use () const;
70         void set_in_use (bool);
71         
72         /// Keep track of the timeout so it can be updated with more incoming events
73         sigc::connection in_use_connection;
74
75         virtual MidiByteArray zero() = 0;
76
77         /** If we are doing an in_use timeout for a fader without touch, this
78          *  is its touch button control; otherwise 0.
79          */
80         Control* in_use_touch_control;
81
82 private:
83         int _id;
84         std::string _name;
85         Group& _group;
86         bool _in_use;
87 };
88
89 std::ostream & operator <<  (std::ostream & os, const Control & control);
90
91 }
92
93 #endif /* __mackie_controls_h__ */