MCP: switch devices on the fly; name MIDI ports appropriately; fix active state;...
[ardour.git] / libs / surfaces / mackie / device_info.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 __ardour_mackie_control_protocol_device_info_h__
21 #define __ardour_mackie_control_protocol_device_info_h__
22
23 #include <iostream>
24 #include <stdint.h>
25 #include <string>
26 #include <map>
27
28 class XMLNode;
29
30 namespace Mackie {
31
32 class DeviceInfo 
33 {
34   public:
35         DeviceInfo();
36         ~DeviceInfo();
37
38         int set_state (const XMLNode&, int version);
39
40         uint32_t strip_cnt () const;
41         uint32_t extenders() const;
42         bool has_two_character_display() const; 
43         bool has_master_fader () const;
44         bool has_segmented_display() const;
45         bool has_timecode_display() const;
46         const std::string& name() const;
47
48         static std::map<std::string,DeviceInfo> device_info;
49         static void reload_device_info();
50
51   private:
52         uint32_t _strip_cnt;
53         uint32_t _extenders;
54         bool     _has_two_character_display;
55         bool     _has_master_fader;
56         bool     _has_segmented_display;
57         bool     _has_timecode_display;
58         std::string _name;
59 };
60
61 class DeviceProfile
62 {
63   public:
64         DeviceProfile (DeviceInfo& info);
65         ~DeviceProfile();
66
67         const std::string& get_f_action (uint32_t fn, int modifier_state);
68         void set_f_action (uint32_t fn, int modifier_state, const std::string&);
69 };
70
71 }
72
73 std::ostream& operator<< (std::ostream& os, const Mackie::DeviceInfo& di);
74
75 #endif /* __ardour_mackie_control_protocol_device_info_h__ */