Code styling: remove whitespaces between parenthesis
[ardour.git] / libs / surfaces / launch_control_xl / interface.cc
1 /*
2         Copyright (C) 2017 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
19 #include <stdexcept>
20
21 #include "pbd/error.h"
22
23 #include "ardour/rc_configuration.h"
24
25 #include "control_protocol/control_protocol.h"
26 #include "launch_control_xl.h"
27
28 using namespace ARDOUR;
29 using namespace PBD;
30 using namespace std;
31 using namespace ArdourSurface;
32
33 static ControlProtocol*
34 new_launch_control_xl (ControlProtocolDescriptor*, Session* s)
35 {
36         LaunchControlXL * lcxl = 0;
37
38         try {
39                 lcxl = new LaunchControlXL (*s);
40                 /* do not set active here - wait for set_state() */
41         }
42         catch (exception & e) {
43                 error << "Error instantiating LaunchControlXL support: " << e.what() << endmsg;
44                 delete lcxl;
45                 lcxl = 0;
46         }
47
48         return lcxl;
49 }
50
51 static void
52 delete_launch_control_xl (ControlProtocolDescriptor*, ControlProtocol* cp)
53 {
54         try
55         {
56                 delete cp;
57         }
58         catch ( exception & e )
59         {
60                 cout << "Exception caught trying to finalize LaunchControlXL support: " << e.what() << endl;
61         }
62 }
63
64 /**
65         This is called on startup to check whether the lib should be loaded.
66
67         So anything that can be changed in the UI should not be used here to
68         prevent loading of the lib.
69 */
70 static bool
71 probe_launch_control_xl (ControlProtocolDescriptor*)
72 {
73         return LaunchControlXL::probe();
74 }
75
76 static void*
77 lcxl_request_buffer_factory (uint32_t num_requests)
78 {
79         return LaunchControlXL::request_factory (num_requests);
80 }
81
82 static ControlProtocolDescriptor launch_control_xl_descriptor = {
83         /*name :              */   "Novation Launch Control XL",
84         /*id :                */   "uri://ardour.org/surfaces/launch_control_xl:0",
85         /*ptr :               */   0,
86         /*module :            */   0,
87         /*mandatory :         */   0,
88         // actually, the surface does support feedback, but all this
89         // flag does is show a submenu on the UI, which is useless for the mackie
90         // because feedback is always on. In any case, who'd want to use the
91         // mcu without the motorised sliders doing their thing?
92         /*supports_feedback : */   true,
93         /*probe :             */   probe_launch_control_xl,
94         /*initialize :        */   new_launch_control_xl,
95         /*destroy :           */   delete_launch_control_xl,
96         /*request_buffer_factory */ lcxl_request_buffer_factory
97 };
98
99 extern "C" ARDOURSURFACE_API ControlProtocolDescriptor* protocol_descriptor () { return &launch_control_xl_descriptor; }