042dac1dedded6200ba181a6d0178942f74933e4
[ardour.git] / libs / surfaces / osc / interface.cc
1 /*
2  *   Copyright (C) 2006 Paul Davis 
3  *   Copyright (C) 2007 Michael Taht
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 <control_protocol/control_protocol.h>
22 #include "osc.h"
23
24 using namespace ARDOUR;
25
26 ControlProtocol*
27 new_osc_protocol (ControlProtocolDescriptor* descriptor, Session* s)
28 {
29         OSC* osc = new OSC (*s, Config->get_osc_port());
30                 
31         osc->set_active (true);
32
33         return osc;
34 }
35
36 void
37 delete_osc_protocol (ControlProtocolDescriptor* descriptor, ControlProtocol* cp)
38 {
39         delete cp;
40 }
41
42 bool
43 probe_osc_protocol (ControlProtocolDescriptor* descriptor)
44 {
45         return true; // we can always do OSC
46 }
47
48 static ControlProtocolDescriptor osc_descriptor = {
49         name : "Open Sound Control (OSC)",
50         id : "uri://ardour.org/surfaces/osc:0",
51         ptr : 0,
52         module : 0,
53         mandatory : 1,
54         supports_feedback : true,
55         probe : probe_osc_protocol,
56         initialize : new_osc_protocol,
57         destroy : delete_osc_protocol
58 };
59
60 extern "C" {
61 ControlProtocolDescriptor* 
62 protocol_descriptor () {
63         return &osc_descriptor;
64 }
65 }
66