merge r1449 from surfaces branch to include mackie surface and tranzport updates...
[ardour.git] / libs / surfaces / mackie / interface.cc
1 /*
2         Copyright (C) 2006,2007 Paul Davis
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 #include <control_protocol/control_protocol.h>
19 #include "mackie_control_protocol.h"
20
21 #include <stdexcept>
22
23 using namespace ARDOUR;
24 using namespace std;
25
26 ControlProtocol*
27 new_mackie_protocol (ControlProtocolDescriptor* descriptor, Session* s)
28 {
29         MackieControlProtocol * mcp = 0;
30         try
31         {
32                 mcp = new MackieControlProtocol (*s);
33                 mcp->set_active( true );
34         }
35         catch( exception & e )
36         {
37                 cout << "Error instantiating MackieControlProtocol: " << e.what() << endl;
38                 delete mcp;
39                 mcp = 0;
40         }
41         return mcp;
42 }
43
44 void
45 delete_mackie_protocol (ControlProtocolDescriptor* descriptor, ControlProtocol* cp)
46 {
47         delete cp;
48 }
49
50 bool
51 probe_mackie_protocol (ControlProtocolDescriptor* descriptor)
52 {
53         return MackieControlProtocol::probe();
54 }
55
56 static ControlProtocolDescriptor mackie_descriptor = {
57         name : "Mackie",
58         id : "uri://ardour.org/surfaces/mackie:0",
59         ptr : 0,
60         module : 0,
61         mandatory : 0,
62         supports_feedback : true,
63         probe : probe_mackie_protocol,
64         initialize : new_mackie_protocol,
65         destroy : delete_mackie_protocol
66 };
67         
68
69 extern "C" {
70
71 ControlProtocolDescriptor* 
72 protocol_descriptor () {
73         return &mackie_descriptor;
74 }
75
76 }