Fix some more warnings.
[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 <pbd/error.h>
22
23 #include <stdexcept>
24
25 using namespace ARDOUR;
26 using namespace PBD;
27 using namespace std;
28
29 ControlProtocol*
30 new_mackie_protocol (ControlProtocolDescriptor*, Session* s)
31 {
32         if ( Config->get_mmc_port_name().substr(0,3) == "mcu" )
33         {
34                 error << "mcu already used as mmc port" << endmsg;
35         }
36         else if ( Config->get_mtc_port_name().substr(0,3) == "mcu" )
37         {
38                 error << "mcu already used as mtc port" << endmsg;
39         }
40         else if ( Config->get_midi_port_name().substr(0,3) == "mcu" )
41         {
42                 error << "mcu already used as midi port" << endmsg;
43         }
44         else
45         {
46                 // no one else is using the port, so try instantiate the object
47                 MackieControlProtocol * mcp = 0;
48                 try
49                 {
50                         mcp = new MackieControlProtocol (*s);
51                         mcp->set_active( true );
52                 }
53                 catch( exception & e )
54                 {
55                         error << "Error instantiating MackieControlProtocol: " << e.what() << endmsg;
56                         delete mcp;
57                         mcp = 0;
58                 }
59                 return mcp;
60         }
61         return 0;
62 }
63
64 void
65 delete_mackie_protocol (ControlProtocolDescriptor*, ControlProtocol* cp)
66 {
67         try
68         {
69                 delete cp;
70         }
71         catch ( exception & e )
72         {
73                 cout << "Exception caught trying to destroy MackieControlProtocol: " << e.what() << endl;
74         }
75 }
76
77 /**
78         This is called on startup to check whether the lib should be loaded.
79
80         So anything that can be changed in the UI should not be used here to
81         prevent loading of the lib.
82 */
83 bool
84 probe_mackie_protocol (ControlProtocolDescriptor*)
85 {
86         return MackieControlProtocol::probe();
87 }
88
89 static ControlProtocolDescriptor mackie_descriptor = {
90         name : "Mackie",
91         id : "uri://ardour.org/surfaces/mackie:0",
92         ptr : 0,
93         module : 0,
94         mandatory : 0,
95         // actually, the surface does support feedback, but all this
96         // flag does is show a submenu on the UI, which is useless for the mackie
97         // because feedback is always on. In any case, who'd want to use the
98         // mcu without the motorised sliders doing their thing?
99         supports_feedback : false,
100         probe : probe_mackie_protocol,
101         initialize : new_mackie_protocol,
102         destroy : delete_mackie_protocol
103 };
104         
105
106 extern "C" {
107
108 ControlProtocolDescriptor* 
109 protocol_descriptor () {
110         return &mackie_descriptor;
111 }
112
113 }