update JACK backend to use new inheritance structure for AudioBackend
[ardour.git] / libs / surfaces / wiimote / interface.cc
1 /*
2     Copyright (C) 2009-2013 Paul Davis
3     Authors: Sampo Savolainen, Jannis Pohlmann
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
21 #include "pbd/failed_constructor.h"
22 #include "pbd/error.h"
23
24 #include "ardour/session.h"
25 #include "control_protocol/control_protocol.h"
26
27 #include "wiimote.h"
28
29 using namespace ARDOUR;
30 using namespace PBD;
31
32 ControlProtocol*
33 new_wiimote_protocol (ControlProtocolDescriptor*, Session* s)
34 {
35         WiimoteControlProtocol* wmcp = new WiimoteControlProtocol (*s);
36         wmcp->set_active (true);
37         return wmcp;
38 }
39
40 void
41 delete_wiimote_protocol (ControlProtocolDescriptor* /*descriptor*/, ControlProtocol* cp)
42 {
43         delete cp;
44 }
45
46 bool
47 probe_wiimote_protocol (ControlProtocolDescriptor*)
48 {
49         return WiimoteControlProtocol::probe ();
50 }
51
52 static ControlProtocolDescriptor wiimote_descriptor = {
53         name : "Wiimote",
54         id : "uri://ardour.org/surfaces/wiimote:0",
55         ptr : 0,
56         module : 0,
57         mandatory : 0,
58         supports_feedback : false,
59         probe : probe_wiimote_protocol,
60         initialize : new_wiimote_protocol,
61         destroy : delete_wiimote_protocol
62 };
63
64
65 extern "C" {
66
67 ControlProtocolDescriptor*
68 protocol_descriptor () {
69         return &wiimote_descriptor;
70 }
71
72 }
73